-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
47 lines (46 loc) · 1.14 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
40
41
42
43
44
45
46
47
import type { Config } from "tailwindcss";
import defaultTheme from "tailwindcss/defaultTheme";
import colors from "tailwindcss/colors";
import animate from "tailwindcss-animate";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./sanity/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
colors: {
black: colors.zinc[950],
white: colors.zinc[50],
primary: "#2e6570",
secondary: "#83C6C6",
accent: "#6edede",
gray: colors.zinc,
red: colors.red,
transparent: "transparent",
current: "currentColor",
},
extend: {
fontFamily: {
sans: ["Switzer", ...defaultTheme.fontFamily.sans],
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
screens: {
"2xl": "1536px",
// => @media (min-width: 1536px) { ... }
"3xl": "1600px",
// => @media (min-width: 1600px) { ... }
},
},
},
plugins: [
animate,
// ...
],
};
export default config;