forked from one-aalam/astro-ink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
103 lines (95 loc) · 3.53 KB
/
tailwind.config.cjs
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
const { fontFamily } = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors')
delete colors['lightBlue'] // A bit hackful but fixes - https://github.com/tailwindlabs/tailwindcss/issues/4690
module.exports = {
mode: 'jit',
darkMode: 'class',
purge: {
content: ['./public/**/*.html', './src/**/*.{astro,js,ts}'],
options: {
safelist: ['dark'],
},
},
theme: {
colors: {
...colors,
// Shades-of-X
// keep one group of colors enabled at a time
primary: colors.purple[700],
primaryDark: colors.purple[300],
primarySecondary: colors.purple[800],
primarySecondaryDark: colors.purple[500],
// primary: colors.pink[700],
// primaryDark: colors.pink[300],
// primarySecondary: colors.pink[800],
// primarySecondaryDark: colors.pink[500],
// primary: colors.orange[700],
// primaryDark: colors.orange[300],
// primarySecondary: colors.orange[800],
// primarySecondaryDark: colors.orange[500],
// primary: colors.amber[700],
// primaryDark: colors.amber[300],
// primarySecondary: colors.amber[800],
// primarySecondaryDark: colors.amber[500],
// primary: colors.lime[700],
// primaryDark: colors.lime[300],
// primarySecondary: colors.lime[800],
// primarySecondaryDark: colors.lime[500],
// primary: colors.indigo[700],
// primaryDark: colors.indigo[300],
// primarySecondary: colors.indigo[800],
// primarySecondaryDark: colors.indigo[500],
// primary: colors.rose[700],
// primaryDark: colors.rose[300],
// primarySecondary: colors.rose[800],
// primarySecondaryDark: colors.rose[500],
},
fontFamily: {
sans: ['Fira Code', ...fontFamily.sans],
},
extend: {
typography: (theme) => ({
dark: {
css: {
color: theme("colors.gray.200"),
},
},
DEFAULT: {
css: {
a: {
color: theme('colors.primarySecondaryDark'),
'&:hover': {
color: theme('colors.primary'),
},
},
blockquote: {
color: theme('colors.primary'),
borderColor: theme('colors.primaryDark')
},
'blockquote > p::before, p::after': {
color: theme('colors.primaryDark'),
},
h1: {
color: theme('colors.primarySecondaryDark'),
},
h2: {
color: theme('colors.primarySecondaryDark'),
},
h3: {
color: theme('colors.primarySecondaryDark'),
},
}
},
}),
},
},
variants: {
extend: { typography: ["dark"] }
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('@tailwindcss/line-clamp'),
require('@tailwindcss/aspect-ratio'),
]
};