-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.ts
More file actions
39 lines (35 loc) · 678 Bytes
/
test.ts
File metadata and controls
39 lines (35 loc) · 678 Bytes
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
import { createTheme } from './lib'
export const theme = createTheme({
breakpoints: {
_: 0,
xs: 375,
sm: 640,
md: 768,
lg: 1024,
xl: 1280,
'2xl': 1440,
'3xl': 1600,
'4xl': 1920,
},
color: {
transparent: 'transparent',
current: 'currentColor',
inherit: 'inherit',
white: '#ffffff',
black: '#000000',
neutral: {
0: '#ffffff',
10: '#F6F7F8',
20: '#DFE0E1',
30: '#BDC1C5',
40: '#A1A8AF',
50: '#8C9198',
60: '#676D75',
70: '#50565E',
80: '#3B4047',
90: '#262A30',
100: '#191919',
},
}
})
theme('color.neutral.20')