-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
75 lines (66 loc) · 1.73 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
const path = require("path");
module.exports = {
content: [path.join(__dirname, "./src/**/*.{js,jsx,ts,tsx}")],
theme: {
// fontFamily: {
// sans: ["Graphik", "sans-serif"],
// serif: ["Merriweather", "serif"],
// },
/* colors: {
primary: "#a3e635",
}, */
extend: {
colors: {
primary: "#3b82f6", //blue-500
inputFocusColor: "#a0d911", //hope-500
success: "#a0d911", //hope-500
warning: "#faad14", //gold 6
danger: "#ff4d4f",
hope: {
50: "#fcffe6", //selected bg color
100: "#f4ffb8",
200: "#eaff8f",
300: "#d3f261",
400: "#bae637", //hover
500: "#a0d911", //brand
600: "#7cb305", //click
700: "#5b8c00",
800: "#3f6600",
900: "#254000",
},
auiLight: {
//antD
black85: "#262626", //black 85%,title text
title: "#262626", //black 85%
black65: "#595959", //65%,primary text
primary: "#595959", //65%
black45: "#8c8c8c", //45%,secondary text
secondary: "#8c8c8c", //45%
black25: "#bfbfbf", //25%,border/disable
disable: "#bfbfbf", //25%
black15: "#d9d9d9", //15%,border/disable
border: "#d9d9d9", //15%
black6: "#f0f0f0", //6%,divider
divider: "#f0f0f0", //6%
black4: "#f5f5f5", //4%,background
background: "#f5f5f5", //4%
black2: "#fafafa", //2%,tableHeader
tableHeader: "#fafafa", //2%
},
},
boxShadow: {
primary: `0 0 0 2px #3b82f6`,
input: `0 0 0 2px #3b82f6`,
button: `0 0 0 2px #3b82f6`,
},
// borderRadius: {
// input: `0 0 0 2px #a0d911`,
// },
// transition
},
},
plugins: [],
// purge: ["./src/**/*.{js,jsx,ts,tsx}"],
};