-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
46 lines (46 loc) · 977 Bytes
/
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
module.exports = {
theme: {
fontFamily: {
sans: ['Montserrat'],
},
extend: {
colors: {
'emma-yellow' : {
100: '#FEFADC',
200: '#FEF4B9',
300: '#FDEB96',
400: '#FBE27C',
500: '#FAD551',
600: '#D7B13B',
700: '#B38F28',
800: '#B38F28',
900: '#77570F',
},
'emma-blue' : {
100: '#E7FBFE',
200: '#CFF5FE',
300: '#B7EBFD',
400: '#A5DFFB',
500: '#87CEFA',
600: '#62A3D7',
700: '#447BB3',
800: '#2B5790',
900: '#193D77',
},
'emma-purple': {
100: '#E8DCFD',
200: '#D1BBFC',
300: '#B597F6',
400: '#9C7BEE',
500: '#7751E3',
600: '#5A3BC3',
700: '#4228A3',
800: '#2C1983',
900: '#1D0F6C',
},
},
},
},
variants: {},
plugins: [],
}