forked from EddieHubCommunity/good-first-issue-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
53 lines (51 loc) · 1.31 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
const config = {
content: ['./src/**/*.{html,js,svelte,ts}'],
darkMode: 'class',
theme: {
extend: {
colors: {
skin: {
primary: 'var(--color-primary)',
background: 'var(--color-background)',
'off-background': 'var(--color-off-background)',
text: 'var(--color-text)',
'text-highlight': 'var(--color-text-highlight)',
},
},
boxShadow: {
standard: 'rgba(0, 0, 0, 0.05) 0px 1rem 2rem',
dark: 'rgba(10, 12, 14, 0.9) 0px 1rem 2rem',
},
typography: {
DEFAULT: {
css: {
code: {
color: 'var(--text)',
},
color: 'var(--text)',
h1: {
color: 'var(--color-text-highlight)',
},
h2: {
color: 'var(--color-text-highlight)',
},
h3: {
color: 'var(--color-text-highlight)',
},
h4: {
color: 'var(--color-text-highlight)',
},
h5: {
color: 'var(--color-text-highlight)',
},
h6: {
color: 'var(--color-text-highlight)',
},
},
},
},
},
},
plugins: [require('@tailwindcss/typography')],
};
module.exports = config;