-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (61 loc) · 1.43 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
fontFamily: {
Roboto: ["Roboto", "sans-serif"],
},
colors: {
primary: {
DEFAULT: "#f55951",
dark: "#18122B",
},
primaryHover: "#edd2cb",
secondary: {
DEFAULT: "#361d32",
dark: "#000000",
},
secondaryHover: "#543c52",
gray: {
DEFAULT: "#f1e8e6",
dark: "hsla(0,0%,13%,1)",
},
black: "#000000",
white: "#FFFFFF",
green: "#52c41a",
red: "#f55951",
transparent: {
DEFAULT: "rgb(255 255 255 / 59%)",
dark:"hsl(0deg 0% 13% / 0%)"
},
},
fontSize: {
xs: "0.75rem", // 12 pixels - Extra small font size
sm: "0.875rem", // 14 pixels - Small font size
base: "1rem", // 16 pixels - Default font size
lg: "1.125rem", // 18 pixels - Large font size
xl: "1.25rem", // 20 pixels - Extra large font size
large: "1.5rem", // 24 pixels - 2x large font size
extraLarge: "2rem", //
extraLargeXL: "4rem", //
},
extend: {
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
},
animation: {
shine: "shine 1s",
},
keyframes: {
shine: {
"100%": { left: "125%" },
},
},
},
},
plugins: [],
};