-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
38 lines (38 loc) · 928 Bytes
/
tailwind.config.cjs
File metadata and controls
38 lines (38 loc) · 928 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
cream: "#FFF8E7",
ink: "#1A1A2E",
brutal: {
pink: "#FF6B9D",
yellow: "#FFE74C",
blue: "#4DEEEA",
green: "#06D6A0",
orange: "#FF8C42",
purple: "#C77DFF",
},
},
fontFamily: {
sans: ["Inter", "system-ui", "sans-serif"],
mono: [
"ui-monospace",
"SFMono-Regular",
"Consolas",
"Liberation Mono",
"Courier New",
"monospace",
],
display: ["Inter", "system-ui", "sans-serif"],
},
boxShadow: {
brutal: "4px 4px 0 #1A1A2E",
"brutal-lg": "6px 6px 0 #1A1A2E",
"brutal-sm": "3px 3px 0 #1A1A2E",
},
},
},
plugins: [],
};