-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (51 loc) · 1.89 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
49
50
51
52
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
export default {
content: [],
theme: {
colors: {
...colors,
main: "#4C98FC",
mainDark: "#146fe3",
secondary: "#D6EBFF",
warning: "#F4805B",
warningDark: "#E76F3D",
faintGray: '#F2F2F2',
lightGray: '#E7E7E7',
mediumGray: "#BBBBBB",
darkGray: "#828282",
darkerGray: "#4F4F4F",
offBlack: "#213547",
purple: "#7E6AFF",
darkPurple: "#6454cc"
},
boxShadow: {
DEFAULT: 'rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;',
md: 'rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;',
lg: 'rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;',
xl: 'rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;'
},
extend: {
fontSize: {
h1: ["48px", { lineHeight: "56px", fontWeight: "700" }],
h2: ["40px", { lineHeight: "46px", fontWeight: "700" }],
h3: ["32px", { lineHeight: "37px", fontWeight: "700" }],
h4: ["24px", { lineHeight: "35px", fontWeight: "700" }],
h5: ["20px", { lineHeight: "30px", fontWeight: "700" }],
title: ["35px", { lineHeight: "40px", fontWeight: "700" }],
subheading: ["17px", { lineHeight: "28px", fontWeight: "700" }],
large: ["16px", { lineHeight: "24px", fontWeight: "400" }],
regular: ["14px", { lineHeight: "24px", fontWeight: "400" }],
body: ["14px", { lineHeight: "24px", fontWeight: "450" }],
small: ["12px", { lineHeight: "20px", fontWeight: "500" }],
xSmall: ["11px", { lineHeight: "16px", fontWeight: "500" }],
}
},
},
plugins: [],
purge: [
'./src/**/*.html',
'./src/**/*.tsx', // Include TypeScript files
'./src/**/*.jsx', // Include JSX files
],
}