forked from lbw3973/money-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
66 lines (66 loc) · 1.67 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
colors: {
"primary-normal": "#153445",
"primary-light": "#3A7391",
"secondary-normal": "#91580F",
"secondary-light": "#CC9454",
"secondary-heavy": "#453015",
"status-alert": "#EB5147",
"status-caution": "#FA9538",
"status-positive": "#0090FF",
"status-error": "#EB5147",
"background-primary": "#F3F3F3",
"background-secondary": "#EBEBEB",
"background-normal": "#EEEEEE",
"background-disabled": "#ECECEC",
"gray-heavy": "#565656",
"gray-normal": "#949494",
"button-inactive": "#D9D9D9",
placeholder: "#C1C1C1",
white: "#FFFFFF",
black: "#242424",
},
fontSize: {
tiny: "0.625rem",
xs: "0.75rem",
sm: "0.875rem",
base: "1rem",
xl: "1.25rem",
"2xl": "1.5rem",
"3xl": "2rem",
"4xl": "2.25rem",
"5xl": "2.5rem",
},
borderRadius: {
sm: "0.25rem",
md: "0.75rem",
lg: "1.125rem",
xl: "1.25rem",
"2xl": "1.3rem",
"3xl": "1.5rem",
"full": "50%",
},
borderWidth: {
1: "1px",
4: "4px",
},
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic": "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
boxShadow: {
md: "0px 2px 8px rgba(0, 0, 0, 0.1)",
},
},
},
plugins: [],
};