-
Notifications
You must be signed in to change notification settings - Fork 13
/
docstailwind.config.js
46 lines (45 loc) · 1.05 KB
/
docstailwind.config.js
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
const colors = require('tailwindcss/colors')
module.exports = {
content: ["templates/includes/_header.html", "templates/includes/_footer.html"],
darkMode: 'class',
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
white: colors.white,
emerald: colors.emerald,
gray: colors.gray,
indigo: colors.indigo,
yellow: colors.yellow,
red: colors.red,
sky: colors.sky,
blue: colors.blue,
charcoal: '#172A34',
orange: '#FF9F00',
green: '#5AD599',
black: '#051A26',
slate: '#314A57',
steel: '#B5C9D3',
stone: '#DDE7EC',
'stone-white': '#DDE7EC',
gold: '#F4CA1F',
bronze: '#BB8A56',
silver: '#B5C9D3',
},
extend: {
fontFamily: {
'sans': [
'"Noto Sans"',
process.env.ENVIRONMENT_NAME == 'Development Environment' ?
'serif'
:
'sans-serif',
]
}
}
},
variants: {
extend: {},
},
// plugins: [require("@tailwindcss/forms")],
};