-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
48 lines (48 loc) · 1.16 KB
/
tailwind.config.js
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
43
44
45
46
47
48
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
plugins: [require("tailwindcss-hyphens")],
theme: {
screens: {
sm: "576px",
md: "960px",
lg: "1200px",
},
extend: {
colors: {
transparent: "transparent",
white: "#fff",
lowWhite: "#FCFCFC",
offWhite: "#F5F5F5",
lightGrey: "#E4E4E4",
mediumGrey: "#565656",
darkGrey: "#3A4342",
black: "#000",
darkPurple: "#3F3F67",
lightPurple: "#DDDDE6",
darkPetrol: "#375C62",
lightPetrol: "#C2E3E9",
vibrantRed: "#FF3939",
darkRed: "#810000",
mediumRed: "#FFCACA",
lightRed: "#FFEDED",
darkOrange: "#894200",
lightOrange: "#FFF1E3",
vibrantGreen: "#64E08E",
darkGreen: "#007552",
lightGreen: "#E6EAD5",
marker: {
red: "#FCA5A5",
orange: "#FDBA74",
yellow: "#FDE047",
green: "#86EFAC",
blue: "#93C5FD",
purple: "#D8B4FE",
},
transitionProperty: {
width: "width",
},
},
},
},
};