-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
62 lines (56 loc) · 1.78 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
experimental: {
optimizeUniversalDefaults: true,
},
darkMode: 'class',
content: [
'./app/**/*.php',
'./public/**/*.html',
'./resources/**/*.{html,js,jsx,md,mdx,php,ts,tsx,twig,vue}'
],
theme: {
extend: {
colors: {
grayBlue: {
DEFAULT: '#353A50',
'100': '#EBEBEE',
'200': '#CDCED3',
'300': '#AEB0B9',
'400': '#878EAF',
'500': '#353A50',
'600': '#2A2F48',
'700': '#23273A',
'800': '#202330',
'900': '#101118',
},
neutral: {
'750': '#333333',
},
orange: {
DEFAULT: '#FF9300',
'50': '#FFF4E5',
'100': '#FFE9CC',
'200': '#FFD499',
'300': '#FFBE66',
'400': '#FFA933',
'500': '#FF9300',
'600': '#E68400',
'700': '#CC7600',
'800': '#B36700',
'900': '#995800'
},
},
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
mono: ['Fira Code VF', ...defaultTheme.fontFamily.mono],
source: ['Source Sans Pro', ...defaultTheme.fontFamily.sans],
'ubuntu-mono': ['Ubuntu Mono', ...defaultTheme.fontFamily.mono],
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography')
],
}