-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
28 lines (28 loc) · 865 Bytes
/
tailwind.config.js
File metadata and controls
28 lines (28 loc) · 865 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx}"],
theme: {
screens: {
sm: "480px",
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%)",
},
backgroundImage: {
header: "url('/public/img/bg-tablet-pattern.svg')",
},
},
},
plugins: [],
};