-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
103 lines (103 loc) · 2.58 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
transparent: 'transparent',
current: 'currentColor',
light: {
50: '#ffffff',
100: '#efefef',
200: '#dcdcdc',
300: '#bdbdbd',
400: '#989898',
500: '#7c7c7c',
600: '#656565',
700: '#525252',
800: '#464646',
900: '#3d3d3d',
950: '#292929',
},
golden: {
50: '#fffaeb',
100: '#fff1c6',
200: '#ffe184',
300: '#ffcd4a',
400: '#ffb720',
500: '#f99407',
600: '#dd6d02',
700: '#b74b06',
800: '#94390c',
900: '#7a2f0d',
950: '#461702',
},
cerise: {
50: '#fef1f7',
100: '#fee5f0',
200: '#fecce3',
300: '#ffa2cb',
400: '#fe68a7',
500: '#f83c86',
600: '#e91f64',
700: '#ca0c47',
800: '#a70d3b',
900: '#8b1034',
950: '#55021a',
},
perano: {
50: '#eef3ff',
100: '#dfe9ff',
200: '#bed0ff',
300: '#a3bafe',
400: '#7f93fa',
500: '#606ff4',
600: '#4347e8',
700: '#3535cd',
800: '#2e30a5',
900: '#2c2f83',
950: '#1a1b4c',
},
daisy: {
50: '#f5f4fe',
100: '#ecebfc',
200: '#dcdafa',
300: '#c0bcf6',
400: '#a196ef',
500: '#816ce6',
600: '#6e4cdb',
700: '#5f3ac7',
800: '#5031a9',
900: '#422989',
950: '#28195c',
},
'electric-violet': {
50: '#f4f1ff',
100: '#ece5ff',
200: '#d9cfff',
300: '#bea8ff',
400: '#a076ff',
500: '#843fff',
600: '#7819ff',
700: '#6a06fa',
800: '#5905d2',
900: '#4a07ab',
950: '#2b0075',
},
},
fontFamily: {
display: ['Coustard', 'sans-serif'],
body: ['Poppins', 'sans-serif'],
inter: ['Inter', 'sans-serif'],
merriweather: ['Merriweather', 'sans-serif'],
mulish: ['Mulish', 'sans-serif'],
poppins: ['Poppins', 'sans-serif'],
roboto: ['Roboto', 'sans-serif'],
sans: ['Inter', 'sans-serif'],
rowdies: ['Rowdies', 'sans-serif'],
groteskspace: ['Space Grotesk', 'sans-serif'],
},
},
},
plugins: [],
};