-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
37 lines (36 loc) · 1.65 KB
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss'
import defaultTheme from 'tailwindcss/defaultTheme'
export default <Partial<Config>>{
theme: {
extend: {
colors: {
black: {
'50': '#f6f6f6',
'100': '#e7e7e7',
'200': '#d1d1d1',
'300': '#b0b0b0',
'400': '#888888',
'500': '#6d6d6d',
'600': '#5d5d5d',
'700': '#4f4f4f',
'800': '#454545',
'900': '#3d3d3d',
'950': '#000000',
},
white: {
'50': '#ffffff',
'100': '#efefef',
'200': '#dcdcdc',
'300': '#bdbdbd',
'400': '#989898',
'500': '#7c7c7c',
'600': '#656565',
'700': '#525252',
'800': '#464646',
'900': '#3d3d3d',
'950': '#292929',
},
}
}
}
}