-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
59 lines (57 loc) · 1.28 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import {type Config} from 'tailwindcss';
const config: Config = {
content: [
'./public/**/*.html',
'./src/**/*.{astro,js,jsx,svelte,ts,tsx,vue}',
],
theme: {
colors: {
'bg-primary': '#000000',
'bg-secondary': '#333333',
'bg-tertiary': '#1A1A1A',
'btn-main': {
'normal-bg': '#0C81ED',
'hover-bg': '#3D9DF5',
'active-bg': '#0A6AC2',
color: '#FFFFFF',
},
'btn-link': {
'normal-bg': 'transparent',
'hover-bg': '#333333',
'active-bg': '#4D4D4D',
color: '#FFFFFF',
},
'color-main': '#FFFFFF',
'color-subtitle': '#6EB5F7',
'color-case-title': '#CFE6FC',
'color-description': '#CCCCCC',
'color-success': '#52E078',
'color-blue-50': '#0C81ED',
'color-gray-50': '#808080',
'color-gray-100': '#000000',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
serif: ['Inter', 'serif'],
},
fontSize: {
h1: '56px',
h2: '48px',
h3: '40px',
h4: '32px',
h24: '24px',
h5: '18px',
h6: '16px',
h7: '14px',
h8: '12px',
},
screens: {
sm: '310px',
md: '640px',
lg: '1024px',
xl: '1440px',
'2xl': '1920px',
},
},
};
export default config;