-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (31 loc) · 783 Bytes
/
tailwind.config.js
File metadata and controls
32 lines (31 loc) · 783 Bytes
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
const { NONAME } = require('dns');
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./src/**/*.{html,ts}'],
theme: {
extend: {
colors: {
accent: 'var(--iwdf-accent-color)',
primary: 'var(--iwdf-primary-color)',
warn: 'var(--iwdf-warn-color)'
},
fontFamily: {
sans: ['Work Sans', ...defaultTheme.fontFamily.sans]
},
typography: {
DEFAULT: {
css: {
a: {
color: 'var(--iwdf-link-color)',
'text-decoration': 'none',
'&:hover': {
color: 'var(--iwdf-link-hover-color)'
}
}
}
}
}
}
},
plugins: [require('@tailwindcss/typography')]
};