-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
78 lines (77 loc) · 2.01 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/** @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",
organizational: "#0078D4",
communication: "#BE0078",
learning: "#00965A",
community: "#8E44AD",
social: "#D35400",
strategic: "#3498DB",
technology: "#27AE60",
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
"3xl": "1920px",
"4xl": "2560px",
},
},
},
plugins: [],
safelist: [
"bg-organizational",
"bg-communication",
"bg-learning",
"bg-community",
"bg-social",
"bg-strategic",
"bg-technology",
"text-organizational",
"text-communication",
"text-learning",
"text-community",
"text-social",
"text-strategic",
"text-technology",
],
};