-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
39 lines (37 loc) · 1.1 KB
/
tailwind.config.ts
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
/** @type {import('tailwindcss').Config} */
import type { Config } from "tailwindcss";
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
screens: {
mobile: { max: "780px" },
widescreen: { min: "780px" },
},
colors: {
primary: "rgb(var(--color-primary) / <alpha-value>)",
secondary: "rgb(var(--color-secondary) / <alpha-value>)",
accent: "rgb(var(--color-accent) / <alpha-value>)",
foreground: "rgb(var(--color-foreground) / <alpha-value>)",
background: "rgb(var(--color-background) / <alpha-value>)",
front: "rgb(var(--color-front) / <alpha-value>)",
back: "rgb(var(--color-back) / <alpha-value>)",
},
borderRadius: {
inherit: "inherit",
},
transitionDuration: {
inherit: "inherit",
},
fontFamily: {
poppins: '"Poppins", sans-serif',
raleway: '"Raleway", sans-serif',
geistSans: '"Geist Sans", sans-serif',
},
zIndex: {
1: "1",
},
},
},
plugins: [],
} satisfies Config;