-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (44 loc) · 891 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
fontSize: {
sm: '0.8rem',
base: '1rem',
xl: '1.25rem',
'2xl': '1.563rem',
'3xl': '1.953rem',
'4xl': '2.441rem',
'5xl': '3.052rem',
},
screens: {
xsm: "220px",
sm: "480px",
md: "768px",
lmd: "952px",
lg: "1024px",
xl: "1440px",
},
colors: {
navyBlue: "#202A44",
lightGreen: "#90FE90",
gray: "rgba(250,250,250,0.1)",
grayishWhite: "#c0c7d1",
white: "#fff",
black: "#000",
ssred: "#bc1718",
ssblue: "#3324A7",
ssyellow: "#F9C512",
purple:"#2f2e5c",
pink:"#f4d4d8",
purple2:"#343663",
},
fontFamily: {
oswald: ["Oswald", "sans-serif"],
mont: ["Montserrat", "sans-serif"],
'aftersick':["Aftersick", "sans-serif"],
'futura':["Futura", "sans-serif"],
},
},
plugins: [],
};