-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
60 lines (60 loc) · 1.49 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
module.exports = {
mode: 'jit',
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
poppins: ['Poppins'],
josefins: ['Josefin Sans'],
handwriter: ['Sacramento']
},
colors: {
transparent: 'transparent',
current: 'currentColor',
slider_bg: {
blue: '#E9F0F3',
yellow: '#F9F3EB',
orange: '#F1EDEE'
},
white: {
DEFAULT: '#FFFFFF'
},
blue: {
light: '#85d7ff',
DEFAULT: '#1fb6ff',
dark: '#009eeb'
},
pink: {
light: '#ff7ce5',
DEFAULT: '#ff49db',
dark: '#ff16d1'
},
gray: {
darkest: '#1f2d3d',
dark: '#3c4858',
DEFAULT: '#c0ccda',
light: '#e0e6ed',
lightest: '#f9fafc',
footer: '#f4f2f2',
notfound: '#8b8b8b'
},
green: {
DEFAULT: '#00c853',
light: '#b2fab4'
},
konsept: {
DEFAULT: '#1d1d1d',
gray: '#8b8b8b'
},
footer_bg: {
DEFAULT: '#f4f2f2'
}
}
}
},
variants: {
extend: {}
},
plugins: []
}