-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
45 lines (44 loc) · 1.11 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
38
39
40
41
42
43
44
45
import type { Config } from 'tailwindcss';
const config: Config = {
content: ['./src/**/*.{js,ts,jsx,tsx,mdx,css}'],
theme: {
colors: {
main: '#33EE94',
'main-dark': '#33EE944D',
'main-light': '#00B86C',
black: {
1: '#000000',
2: '#1b1b1b',
},
gray: {
1: '#262626',
2: '#464646',
3: '#9B9B9B',
4: '#C0C0C0',
},
},
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
fontFamily: {
sans: [
'-apple-system',
'BlinkMacSystemFont',
'Roboto',
'Segoe UI',
'PingFang SC',
'Microsoft YaHei',
'Arial',
'sans-serif',
],
ios: ['-apple-system', 'BlinkMacSystemFont', 'PingFang SC', 'sans-serif'],
android: ['Roboto', 'Noto Sans', 'sans-serif'],
windows: ['Segoe UI', 'Microsoft YaHei', 'sans-serif'],
},
},
},
plugins: [],
};
export default config;