generated from hcp-uw/react-express-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
44 lines (44 loc) · 1.06 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
navbar: "#002E40",
accent: "#F7B691",
gray: "#D9D9D9",
darkblue: "#175D85",
btn: {
background: "hsl(var(--btn-background))",
"background-hover": "hsl(var(--btn-background-hover))",
},
},
spacing: {
'9px': '0.563rem',
'26px': '1.625rem',
'38px': '2.375rem',
'45px': '2.8125rem',
'48px': '3rem',
'57px' : '3.563rem',
'60px': '3.75rem',
'62px' : '3.875rem',
'70px': '4.375rem',
'111px': '6.938rem',
'133px': '8.313rem',
'143px' : '8.938rem',
'200px': '12.5rem',
'84%' : '84%',
'50%' : '50%',
'10%' : '10%',
'6%' : '6%',
'2%' : '2%',
}
},
},
plugins: [],
};