-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
44 lines (43 loc) · 1.04 KB
/
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
38
39
40
41
42
43
44
const colors = require('tailwindcss/colors')
module.exports = {
purge: [
'./src/**/*.{js,jsx,ts,tsx,vue}',
'./src/**/*.html',
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
transparent: 'transparent',
amber: colors.amber,
blue: colors.blue,
black: colors.black,
blueGray: colors.blueGray,
coolGray: colors.coolGray,
cyan: colors.cyan,
emerald: colors.emerald,
indigo: colors.indigo,
gray: colors.gray,
green: colors.green,
fuchsia: colors.fuchsia,
lightBlue: colors.lightBlue,
lime: colors.lime,
red: colors.red,
rose: colors.rose,
orange: colors.orange,
pink: colors.pink,
purple: colors.purple,
teal: colors.teal,
trueGray: colors.trueGray,
violet: colors.violet,
warmGray: colors.warmGray,
white: colors.white,
yellow: colors.yellow
}
}
},
variants: {
extend: {},
},
plugins: [],
}