-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
55 lines (54 loc) · 1.57 KB
/
Copy pathtailwind.config.ts
File metadata and controls
55 lines (54 loc) · 1.57 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
import { access } from "fs";
import type { Config } from "tailwindcss";
export default {
content: [
"./.storybook/*.css",
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/stories/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.css",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: ['class', '[data-mode="dark"]'],
theme: {
extend: {
fontFamily: {
heading: ["var(--font-manrope)", "sans"],
body: ["var(--font-inter)", "sans"],
sans: ["var(--font-inter)", "sans"],
},
backgroundImage: {
'header-gradient': 'linear-gradient(180deg, #030007 3.38%, rgba(3, 0, 7, 0.75) 44.44%, rgba(3, 0, 7, 0.00) 100%)',
},
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
interactive: "var(--interactive)",
elevation: {
1: "var(--elevation-1)",
2: "var(--elevation-2)",
3: "var(--elevation-3)",
},
accent: "var(--accent)",
},
padding: {
"4.5": "1.375rem",
},
keyframes: {
slideDown: {
from: { height: '0px' },
to: { height: 'var(--radix-accordion-content-height)' },
},
slideUp: {
from: { height: 'var(--radix-accordion-content-height)' },
to: { height: '0px' },
},
},
animation: {
slideDown: 'slideDown 300ms cubic-bezier(0.87, 0, 0.13, 1)',
slideUp: 'slideUp 300ms cubic-bezier(0.87, 0, 0.13, 1)',
},
},
},
plugins: [],
} satisfies Config;