-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
95 lines (95 loc) · 2.46 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: [
"./pages/**/*.{ts,tsx, astro}",
"./components/**/*.{ts,tsx, astro}",
"./app/**/*.{ts,tsx, astro}",
"./src/**/*.{ts,tsx,astro}",
],
theme: {
fontFamily: {
sans: ["Nunito", "sans-serif"],
},
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {
colors: {
primary: {
"darkest-2": "#002625",
darkest: "#002c2a",
darker: "#003734",
dark: "#00524f",
default: "#006d69",
light: "#80b6b4",
lighter: "#bfdbd9",
"lightest-2": "#e5f0f0",
"lightest-1": "#f2f8f7",
"gradient-dark": "#006D69",
"gradient-light": "#A1C145",
"contact-us": "#006D68",
},
accent: {
darker: "#576629",
dark: "#83993e",
default: "#aecc53",
light: "#d7e6a9",
lighter: "#ebf2d4",
"lightest-2": "#f7faee",
"lightest-1": "#fbfcf6",
},
gray: {
darker: "#777777",
dark: "#b2b2b2",
default: "#ededed",
light: "#f6f6f6",
lighter: "#fbfbfb",
"lightest-2": "#fdfdfd",
"lightest-1": "#fefefe",
input: "#999999",
timeline: "#1C1D221A",
separator: "#0000001A",
},
black: {
normal: "#000000",
default: "#3c3c3c",
light: "rgba(60, 60, 60, 0.8)",
lighter: "rgba(60, 60, 60, 0.25)",
"lightest-2": "rgba(60, 60, 60, 0.1)",
"lightest-1": "rgba(60, 60, 60, 0.05)",
darkest: "rgba(0, 0, 0, 0.50);",
},
danger: {
dark: "#a61d15",
default: "#dd261c",
light: "#ee938d",
},
},
keyframes: {
shimmer: {
"100%": {
transform: "translateX(100%)",
},
},
"accordion-down": {
from: { height: 0 },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: 0 },
},
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
},
},
},
plugins: [require("tailwindcss-animate")],
};