-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (40 loc) · 1.05 KB
/
tailwind.config.js
File metadata and controls
40 lines (40 loc) · 1.05 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
'neutral-50': '#F5F5F7',
'neutral-100': '#D6D7DE',
'neutral-200': '#C1C4CD',
'neutral-300': '#ADB0BC',
'neutral-400': '#8E92A3',
'neutral-500': '#70758A',
'neutral-600': '#5C6071',
'neutral-700': '#474A58',
'neutral-800': '#33353F',
'neutral-900': '#141519',
'neutral-950': '#1B1C22',
'shade-0': '#FFFFFF',
'shade-100': '#262626',
'error': '#FF3131',
'success': '#00C013',
'secondary-orange': '#F58617',
'secondary-darker-orange': '#be6b14',
'secondary-yellow': '#E2BF08',
'secondary-blue': '#55A3EB',
'secondary-darker-blue': '#3c7db9',
'secondary-purple': '#9045F0',
'secondary-darker-purple': '#602aa9',
'secondary-beige': '#AAAAA4',
}
},
},
corePlugins: {
preflight: false,
},
plugins: [],
}