-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
55 lines (54 loc) · 1.48 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
53
54
55
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
// Customizing fonts
fontFamily: {
chunkfive: ["ChunkFive Ex", "serif"],
montserrat: ["Montserrat", "sans-serif"],
},
backgroundColor: {
"capx-light-bg": "#FFFFFF",
"capx-dark-bg": "#04222F",
},
textColor: {
"capx-light-text": "#053749",
"capx-dark-text": "#FFFFFF",
},
// Customizing colors
colors: {
"capx-light-bg": "#FFFFFF",
"capx-light-box-bg": "#EFEFEF",
"capx-light-link": "#0070B9",
"capx-dark-bg": "#04222F",
"capx-dark-box-bg": "#053749",
"capx-dark-link": "#66C3FF",
"capx-primary-red": "#D43420",
"capx-primary-yellow": "#f0c626",
"capx-primary-green": "#02AE8C",
"capx-primary-blue": "#0070b9",
"capx-secondary-purple": "#851d6a",
"capx-secondary-gray": "#053749",
"capx-secondary-red": "#B11F0B",
"capx-secondary-green": "#05a300",
"capx-secondary-grey": "#717171",
"capx-secondary-dark-grey": "#4c4c4c",
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
"3xl": "1920px",
"4xl": "2560px",
},
},
},
plugins: [],
};