-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
29 lines (29 loc) · 678 Bytes
/
tailwind.config.cjs
File metadata and controls
29 lines (29 loc) · 678 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
boxShadow: {
sm: "var(--focus-object)",
},
colors: {
brand: {
coal: "#0f0d0e",
gray: "#262522",
charcoal: "#231F20",
charcoalMuted: "#1B1918",
orange: "#FC7428",
yellow: "#FCBA28",
pink: "#F38BA3",
green: "#0BA95B",
purple: "#7B5EA7",
beige: "#F9F4DA",
blue: "#12B5E5",
red: "#ED203D",
white: "#FFFFFF",
},
},
},
},
plugins: [],
};