-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
64 lines (63 loc) · 1.53 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
import type { Config } from "tailwindcss";
import typographyPlugin from '@tailwindcss/typography';
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
// sans: ['arial', 'sans-serif'],
},
colors: {
skin: {
highlight: 'var(--highlight-color)',
medlight: 'var(--medlight-color)',
lowlight: 'var(--lowlight-color)',
alt: 'var(--alt-color)',
'bg-base': 'var(--bg-base-color)',
'text-muted': 'var(--text-muted-color)',
},
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
},
animation: {
'fade-in': 'fadeIn 1s',
'pulse-fast': 'pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
textColor: {
skin: {
primary: 'var(--text-primary-color)',
secondary: 'var(--text-secondary-color)',
muted: 'var(--text-muted-color)',
// highlight: 'var(--highlight-color)',
},
},
backgroundColor: {
skin: {
base: 'var(--bg-base-color)',
middleground: 'var(--bg-middleground-color)',
foreground: 'var(--bg-foreground-color)',
'line-divider': 'var(--bg-line-divider-color)',
},
},
borderColor: {
skin: {
foreground: 'var(--bg-foreground-color)',
text: 'var(--text-primary-color)',
'text-secondary': 'var(--text-secondary-color)',
},
},
},
},
plugins: [
typographyPlugin,
],
};
export default config;