-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (32 loc) · 911 Bytes
/
tailwind.config.js
File metadata and controls
32 lines (32 loc) · 911 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
screens: {
sm: "358px",
md: "768px",
lg: "976px",
xl: "1440px",
},
extend: {
colors: {
brightRed: "hsl(12, 88%, 59%)",
brightRedLight: "hsl(12, 88%, 69%)",
brightRedSupLight: "hsl(12, 88%, 95%)",
darkBlue: "hsl(228, 39%, 23%)",
darkGrayishBlue: "hsl(227, 12%, 61%)",
veryDarkBlue: "hsl(233, 12%, 13%)",
veryPaleRed: "hsl(13, 100%, 96%)",
veryLightGray: "hsl(0, 0%, 98%)",
},
},
fontFamily: {
sans: ["ui-sans-serif", "system-ui"],
serif: ["ui-serif", "Georgia"],
mono: ["ui-monospace", "SFMono-Regular"],
display: ["Oswald"],
body: ['"Open Sans", "Inter", "Dancing Script", "Roboto", "Bebas Neue",'],
},
},
plugins: [],
};