forked from freeCodeCamp/classroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
globals.css
52 lines (45 loc) · 993 Bytes
/
globals.css
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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
/* Colors */
/* Light Gray */
--fcc-gray-00: #ffffff;
--fcc-gray-05: #f5f6f7;
--fcc-gray-10: #dfdfe2;
--fcc-gray-15: #d0d0d5;
/* Dark Gray */
--fcc-gray-80: #2a2a40;
--fcc-gray-75: #3b3b4f;
--fcc-gray-85: #1b1b32;
--fcc-gray-90: #0a0a23;
/* Primary Colors */
--fcc-primary-purple: #dbb8ff;
--fcc-primary-yellow: #f1be32;
--fcc-primary-blue: #99c9ff;
--fcc-primary-lightGreen: #acd157;
/* Secondary Colors */
--fcc-secondary-darkPurple: #5a01a7;
--fcc-secondary-darkYellow: #4d3800;
--fcc-secondary-darkBlue: #002ead;
--fcc-secondary-darkGreen: #00471b;
}
html,
body {
padding: 0;
margin: 0;
font-family: 'Roboto Mono', monospace;
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
.toast-message {
background: var(--fcc-gray-90);
color: var(--fcc-gray-00);
font-size: 20px;
--toastify-font-family: 'Roboto Mono', monospace;
}