-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
38 lines (37 loc) · 1.08 KB
/
tailwind.config.cjs
File metadata and controls
38 lines (37 loc) · 1.08 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: ["./src/**/*.{js,ts,jsx,tsx}", "./app/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
edge: "#5c7194",
modal: "#1A202C",
"brand-darker": "#1A202C",
"brand-dark": "#2D3748",
"brand-light": "#2a4076",
"brand-lighter": "#4569c2",
"brand-indigo-1": "#5a67d8",
"brand-indigo-2": "#4c51bf",
"brand-teal-1": "#16A394",
"brand-teal-2": "#187367",
"brand-blue": "#2c7ad6",
},
keyframes: {
"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/forms"), require("tailwindcss-animate")],
};