-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.mjs
111 lines (111 loc) · 2.32 KB
/
tailwind.config.mjs
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
darkMode: 'selector',
theme: {
colors: {
black: '#000',
white: '#fff',
gray: {
50: '#f4f6fe',
100: '#f8f9fa',
200: '#e9ecef',
300: '#dee2e6',
400: '#ced4da',
500: '#adb5bd',
600: '#6c757d',
700: '#495057',
800: '#343a40',
900: '#212529',
950: '#0e1012',
},
blue: '#0002FC',
red: '#D00000',
orange: '#F48C06',
yellow: '#FFBA08',
green: {
DEFAULT: '#67d15a',
dark: '#40AA33',
},
indigo: '#9a86fd',
teal: '#50E3C2',
},
fontFamily: {
sans: [
'Runda',
'ui-sans-serif',
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'"Segoe UI"',
'Roboto',
'"Helvetica Neue"',
'Arial',
'"Noto Sans"',
'sans-serif',
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
serif: [
'CalaWeb',
'ui-serif',
'Georgia',
'Cambria',
'"Times New Roman"',
'Times',
'serif',
],
mono: [
'Fira Code VF',
'SFMono-Regular',
'Menlo',
'Monaco',
'Consolas',
'Liberation Mono',
'Courier New',
'monospace',
],
},
extend: {
fontSize: {
'2xl': '23px',
'2.5xl': '26.5px',
},
rotate: {
135: '135deg',
},
margin: {
0.5: '2px',
'1/4': '25%',
'-1/4': '-25%',
'1/2': '50%',
'-1/2': '-50%',
},
borderWidth: {
3: '3px',
},
maxWidth: {
'screen-2xl': '1600px',
},
keyframes: {
fadeIn: {
'0%': { opacity: 0 },
'100%': { opacity: 1 },
},
fadeInTop: {
'0%': { opacity: 0, transform: 'translateY(50px)', },
'100%': { opacity: 1, transform: 'translateY(0)', },
}
},
animation: {
fadeIn: 'fadeIn 0.8s ease-out both',
fadeInTop: 'fadeInTop 0.5s ease-out both',
}
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
],
};