-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcolorPalette.ts
executable file
·34 lines (29 loc) · 1.01 KB
/
colorPalette.ts
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
// color palette reference: https://brand.gatech.edu/brand-assets/colors
// primary colors
export const techGold = '#b3a369';
export const navyBlue = '#003057';
export const white = '#ffffff';
// secondary colors
export const grayMatter = '#54585a';
export const piMile = '#d6dbd4';
export const diploma = '#f9f6e5';
export const buzzGold = '#eaaa00';
// accessible tech gold
export const lightGold = '#bfb37c';
export const accessibleGold = '#a4925a';
export const darkGold = '#857437';
// tertiary colors (dark)
export const impactPurple = '#5f249f';
export const boldBlue = '#3a5dae';
export const olympicTeal = '#008c95';
export const electricBlue = '#64ccc9';
export const canopyLime = '#a4d233';
export const RATCap = '#ffcd00';
export const newHorizon = '#e04f39';
// tertiary colors (bright)
export const brightPurple = '#7800ff';
export const brightBlue = '#2961ff';
export const brightElectric = '#00ffff';
export const brightCanopy = '#00ec9c';
export const brightBuzz = '#ffcc00';
export const brightHorizon = '#ff640f';