-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
37 lines (36 loc) · 920 Bytes
/
tailwind.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
// if i ever need extra colors
const colors = require('tailwindcss/colors');
module.exports = {
mode: 'jit',
purge: [
"./static/**/*.html",
"./static/**/*.css",
"./static/**/*.js"
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
fontFamily: {
'sans': ["Inter var,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji"]
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.trueGray,
indigo: colors.indigo,
red: colors.rose,
yellow: colors.yellow,
lime: colors.lime,
green: colors.green,
blue: colors.blue,
}
},
variants: {
extend: {
height: ['hover']
},
},
plugins: [],
}