generated from chibat/chrome-extension-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 23
/
tailwind.config.js
45 lines (45 loc) · 1010 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
neutral: {
0: '#FFFFFF',
50: '#FAFAFA',
100: '#F5F5F5',
150: '#EBEBEB',
200: '#E5E5E5',
250: '#DDDDDD',
300: '#D4D4D4',
350: '#BCBCBC',
400: '#A3A3A3',
450: '#8B8B8B',
500: '#737373',
550: '#636363',
600: '#525252',
650: '#4A4A4A',
700: '#404040',
750: '#2F2F2F',
800: '#262626',
850: '#1F1F1F',
900: '#171717',
950: '#0F0F0F',
1000: '#000000',
},
brand: '#FDB952',
'brand-red': '#FC526A',
'brand-green': '#52FD96',
},
spacing: {
30: '7.5rem',
92: '23rem',
100: '25rem',
104: '26rem',
150: '37.5rem',
},
},
},
plugins: [],
};