-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
125 lines (106 loc) · 2.46 KB
/
tailwind.config.js
File metadata and controls
125 lines (106 loc) · 2.46 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
fontWeight: {
regular: 400,
medium: 500,
bold: 700,
extraBold: 900,
},
fontSize: {
xs: "10px",
sm: "12px",
md: "14px",
lg: "16px",
xl: "18px",
"2xl": "24px",
"3xl": "28px",
"4xl": "32px",
"5xl": "40px",
"6xl": "48px",
},
colors: {
green100: "#D0EC94",
green200: "#70D090",
green300: "#54DC44",
green400: "#1B932C",
purple100: "#8D8ECB",
purple200: "#8849B0",
purple300: "#A98DF8",
purple400: "#6114BC",
orange100: "#F8A801",
orange200: "#EC8C4C",
red: "#F10A34",
pink100: "#FFE0CA",
pink200: "#FDB7DA",
pink300: "#DDA1E7",
pink: "#FF48CC",
yellow: "#FCF47C",
yellow100: "#E6B52F",
blue100: "#20C5F5",
blue200: "#265DFC",
blue300: "#0804B4",
cyan50: "#9EC4DD",
cyan100: "#8FC3E9",
cyan200: "#AACBE1",
cyan300: "#B7DBFF",
black: "#000000",
black100: "#1E1815",
gray50: "#FFFFFF",
gray100: "#F7F7F7",
gray200: "#CDCDCD",
gray300: "#B8B8B8",
gray400: "#8A8886",
gray500: "#555252",
gray600: "#89A0B3",
gray700: "#5D666E",
brown100: "#54473D",
brown200: "#9A8371",
brown300: "#9E6E53",
brown400: "#673E2C",
brown500: "#7D3600",
gray900: "#040534",
ardosia: "#0f172a",
zinc900: "#18181b",
zinc800: "#27272a",
surface: "#18181B",
},
maxWidth: {
max: "1440px",
"card-content": "1225px",
},
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
fire: "linear-gradient(180deg, #EBB753 0%, rgba(198, 0, 0) 100%)",
eletric: "linear-gradient(180deg, #FCF47C 0%, #BC8905 100%)",
water: "linear-gradient(180deg, #20C5F5 0%, #157C9A 100%)",
grass: "linear-gradient(180deg, #70D090 0%, #55A23A 100%)",
},
keyframes: {},
animation: {
spinner: "spin 1s linear infinite forwards",
},
// animation: name duration timing-function delay iteration-count direction fill-mode;
},
backgroundImage: {
pokeBoll: "url(/src/app/assets/icons/pokeball.svg)",
},
dropShadow: {
card: "2px -1px 5px rgba(0, 0, 0, 0.25)",
},
screens: {
"bp-1": "524px",
"bp-2": "600px",
},
},
plugins: [],
};