-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.js
54 lines (52 loc) · 1.05 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
45
46
47
48
49
50
51
52
53
54
const colors = require('tailwindcss/colors')
module.exports = {
mode: "spa",
purge: ["src/**/*.{js,jsx,ts,tsx}", "public/index.html"],
darkMode: false,
theme: {
container: {
center: true,
screens: {
xs: "100%",
sm: "100%",
md: "840px",
lg: "1080px",
xl: "1280px",
},
},
colors: {
gray: colors.coolGray,
blue: colors.sky,
red: colors.rose,
pink: colors.fuchsia,
purple: colors.plum,
green: colors.green,
yellow: colors.yellow,
black: colors.black,
white: colors.white,
transparent: 'transparent',
current: 'currentColor',
},
extend: {
fontFamily: {
},
colors: {
"primary": "#8ec5fc",
"secondary": "#ffc107",
"success": "#28a745",
"info": "#17a2b8",
"warning": "#ffc107",
"danger": "#dc3545",
"light": "#eeeeee",
"dark": "#333333",
},
},
},
variants: {
extend: {
opacity: ["disabled"],
}
},
plugins: [
],
}