-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.cjs
80 lines (80 loc) · 2.29 KB
/
tailwind.config.cjs
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,jsx}",
"./node_modules/react-tailwindcss-datepicker/dist/index.esm.js"
],
mode: "jit",
theme: {
listStyleType: {
none: 'none',
disc: 'disc',
decimal: 'decimal',
square: 'square',
roman: 'lower-roman',
alpha: 'lower-alpha'
},
extend: {
colors: {
primary: "#ffffff",
checkWhite: "#ffffff",
checkPurple: "#453D81",
checkLightPurple: "#5E54AC",
checkGreen: "#27A313",
checkBlack: "#525252",
checkGray: "#D9D9D9",
checkGrayModal: "#656565",
checkGrayPrivacy: "#464646",
checkDarkGray: "#6b6b6b",
checkCream: "#FBF6E6",
checkShadeDark: "#525252",
checkBG: "#efefef",
checkBGFooter: "#7c7c7c",
checkPrimary200: "#ffd3a5",
checkPrimary400: "#ff8932",
checkPrimary600: "#ff4d00",
checkPrimary700: "#cc3502",
checkPrimary900: "#82250c",
checkSecondaryYellow200: "#fff485",
checkSecondaryYellow400: "#ffd81b",
checkSecondaryYellow500: "#ffbb0b",
checkSecondaryYellow700: "#bb6302",
checkSecondaryYellow900: "#7c3f0b",
checkSecondaryRed200: "#ffc7a5",
checkSecondaryRed400: "#ff6d31",
checkSecondaryRed600: "#f62900",
checkSecondaryRed700: "#ce1a02",
checkSecondaryRed900: "#82160c",
checkSecondaryGreen100: "#d0ffc5",
checkSecondaryGreen300: "#69ff53",
checkSecondaryGreen500: "#13e900",
checkSecondaryGreen700: "#088902",
checkSecondaryGreen900: "#0e5b0c",
checkCarouselRed: "#ffdbdb",
checkCarouselYellow: "#fff1bf",
checkCarouselGreen: "#e3ffe2",
checkLink: "#278eff"
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
permanentMarker: ["Permanent Marker", "sans-serif"],
workSans: ["Work Sans", "sans-serif"],
},
borderRadius: {
'carousel': '64px',
'card': '24px'
}
},
screens: {
xs: "480px",
ss: "620px",
sm: "768px",
md: "1060px",
lg: "1200px",
xl: "1700px",
},
},
plugins: [require("tailwind-gradient-mask-image")],
darkMode: 'false',
};