-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
48 lines (48 loc) · 1.12 KB
/
tailwind.config.mjs
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
transitionDuration: {
2000: "2000ms",
2500: "2500ms",
3000: "3000ms",
3500: "3500ms",
4000: "4000ms",
4500: "4500ms",
5000: "5000ms",
5500: "5500ms",
6000: "6000ms",
6500: "6500ms",
7000: "7000ms",
7500: "7500ms",
8000: "8000ms",
},
fontFamily: {
smooch: ["Smooch Sans", "sans-serif"],
},
colors: {
primary: "#ffcd00",
"primary-transparent": "#ffcd0099",
secondary: "#012169",
"secondary-transparent": "#01216955",
tertiary: "#070707ff",
danger: "#f6511d",
success: "#2ecf63",
info: "#39c2e1",
warning: "#cf25de",
},
borderRadius: {
none: "0",
sm: "0.125rem",
DEFAULT: "0.25rem",
DEFAULT: "4px",
md: "0.375rem",
lg: "0.5rem",
full: "9999px",
large: "12px",
},
},
},
plugins: [],
};