forked from Logging-Stuff/RetroUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
42 lines (41 loc) · 934 Bytes
/
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./packages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
textColor: {
muted: "var(--muted)",
},
fontFamily: {
head: ["var(--font-head)"],
sans: ["var(--font-sans)"],
},
boxShadow: {
xs: "1px 1px 0 0 #000",
md: "3px 3px 0 0 #000",
"3xl": "10px 10px 0 0 #000",
},
colors: {
primary: {
50: "#FFFEF0",
100: "#FFFAC2",
200: "#FFF299",
300: "#FFE766",
400: "#FFDB33",
500: "#FFCC00",
600: "#FFB700",
700: "#FF9F00",
800: "#E68A00",
900: "#B36B00",
},
},
},
},
plugins: [],
};
export default config;