-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
73 lines (71 loc) · 1.35 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import { type Config } from 'tailwindcss'
export default {
content: [
'./pages/**/*.md',
'./components/**/*.vue',
],
theme: {
colors: {
black: '#000000',
white: '#ffffff',
primary: {
50: '#eeeff9',
100: '#cccfed',
200: '#a9b0e1',
300: '#8790d5',
400: '#6570c8',
500: '#4350bc',
600: '#37429a',
700: '#2a3378',
800: '#1e2556',
900: '#121633',
950: '#060711',
},
background: {
teal: '#1e4756',
blue: '#1e2556',
purple: '#3d1e56',
},
'warning-block': '#56491e',
'danger-block': '#561e21',
},
container: {
center: true,
padding: {
DEFAULT: '2rem',
sm: '2rem',
md: '2rem',
lg: '4rem',
xl: '8rem',
'2xl': '16rem',
},
},
fontFamily: {
sans: [
'Inter',
'sans-serif',
],
serif: [
'Aleo',
'serif',
],
mono: [
'Source Code Pro',
'monospace',
],
},
zIndex: {
'body-background-before': '-2',
'body-background-after': '-1',
'code-lang': '1',
'code-copy': '2',
'navigation-bar': '3',
},
extend: {
transitionDuration: {
DEFAULT: '300ms',
},
},
},
plugins: [],
} satisfies Config