-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
60 lines (59 loc) · 1.47 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
49
50
51
52
53
54
55
56
57
58
59
60
const defaultTheme = require("tailwindcss/defaultTheme")
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
darkMode: "class",
theme: {
extend: {
spacing: {
"xxs": "1rem",
"xs": "2rem",
"sm": "4rem",
"md": "8rem",
"lg": "15rem",
"xl": "20rem",
"xxl": "30rem",
"nav": "4.5rem",
"big-nav": "6rem",
},
colors: {
neutral: {
"50": "#fafafa",
"100": "#f5f5f5",
"200": "#e5e5e5",
"300": "#d4d4d4",
"400": "#a3a3a3",
"500": "#737373",
"600": "#525252",
"700": "#404040",
"800": "#262626",
"900": "#171717",
"950": "#0a0a0a",
DEFAULT: "#262626",
},
"footer": "#ececec",
"dark-footer": "#434343",
},
fontFamily: {
sans: [...defaultTheme.fontFamily.sans],
zhanku: ["ZhanKu", ...defaultTheme.fontFamily.serif],
jost: ["Jost Variable", ...defaultTheme.fontFamily.sans],
},
backgroundImage: {
"waves": "url(/footer/light-waves.svg)",
"dark-waves": "url(/footer/dark-waves.svg)"
},
borderRadius: {
"sm": "4px",
// "md": "0px"
},
screens: {
"2xl": "1440px",
},
height: {
// "screen": "100dvh",
},
},
},
plugins: [require("@tailwindcss/typography")],
}