Skip to content

Commit

Permalink
Update and organize global.css (#797)
Browse files Browse the repository at this point in the history
* Update and organize global.css

* Add lowercase d in hex color.
  • Loading branch information
karnikaavelumani authored Mar 11, 2023
1 parent 640cb5d commit 08c22b6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/lib/public/board/data/teams.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@
"title": "Special Events",
"id": "special-events",
"picture": "/assets/badges/special-events-team.svg",
"color": "var(--acm-yellow)"
"color": "var(--acm-lemon)"
}
]
2 changes: 1 addition & 1 deletion src/routes/(site)/about/officer-profile.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
Dev: 'acm-bluer',
AI: 'acm-emerald',
Marketing: 'acm-red',
'Special Events': 'acm-yellow',
'Special Events': 'acm-lemon',
nodebuds: 'brand-header',
});
Expand Down
25 changes: 14 additions & 11 deletions static/global.css
Original file line number Diff line number Diff line change
@@ -1,29 +1,32 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700');

:root {
--acm-sky: #38b6ff;
--acm-blue: #2c91c6;
--acm-bluer: #1e6cff;
--acm-turquoise: #11d4b1;
--acm-emerald: #21d19f;
--acm-yellow: #ffd029;
--acm-lemon: #ffd029;
--acm-orange: #ff7917;
--acm-red: #d41153;
--acm-pink: #ff4365;
--acm-blush: #fe0ec9;
--acm-purple: #9d35e7;
--acm-darker: #092d71;
--acm-darkest: #052155;
--acm-dark: #101315;
--acm-gray: #292c2f;
--acm-light: #f8f8f8;
--acm-pink: #ff4365;
--acm-purple: #9d35e7;
--acm-red: #d41153;
--acm-sky: #38b6ff;
--acm-canvas: #eaeaea;

--acm-general-rgb: 44, 145, 198;
--acm-ai-rgb: 33, 209, 159;
--acm-general-rgb: 5, 163, 255;
--acm-ai-rgb: 53, 231, 146;
--acm-algo-rgb: 157, 53, 231;
--acm-design-rgb: 255, 67, 101;
--acm-dev-rgb: 30, 108, 255;
--acm-gamedev-rgb: 212, 17, 83;
--acm-icpc-rgb: 255, 121, 23;
--acm-marketing-rgb: 212, 17, 83;
--acm-marketing-rgb: 254, 14, 201;
--acm-oss-rgb: 17, 212, 177;
--acm-special-events-rgb: 255, 208, 41;

Expand Down Expand Up @@ -98,9 +101,9 @@ body:has(nav > input[type='checkbox']:checked) {
color: var(--acm-emerald);
}

.acm-yellow,
.brand-yellow {
color: var(--acm-yellow);
.acm-lemon,
.brand-lemon {
color: var(--acm-lemon);
}

.acm-dark,
Expand Down

0 comments on commit 08c22b6

Please sign in to comment.