Skip to content

Commit

Permalink
Update formatting of new CSS files to use RGBA
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtavis committed Nov 13, 2024
1 parent c6cf2d7 commit 2d6eab5
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 38 deletions.
38 changes: 19 additions & 19 deletions frontend/assets/css/dark.css
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
dark: {
"layer-0": 6, 8, 15, 1,
"layer-1": 19, 19, 22, 1,
"layer-2": 22, 27, 34, 1,
"section-div": 43, 50, 59, 1,
"primary-text": 255, 255, 255, 0.8,
"primary-text-over-layer-2": 208, 209, 211, 1,
"distinct-text": 150, 150, 150, 0.85,
"distinct-text-over-layer-2": 131, 132, 133, 1,
"link-text": 86, 167, 252, 0.9,
"link-text-hover": 134, 192, 253, 0.9,
"menu-selection": 200, 200, 200, 1,
interactive: 133, 126, 123, 1,
"highlight": 70, 70, 70, 0.25,
"highlight-lighter": 120, 120, 120, 0.50,
"cta-orange": 241, 156, 65, 1,
"action-red": 238, 90, 88, 1,
"learn-blue": 62, 146, 204, 1,
"accepted-green": 97, 139, 37, 1,
"warn-yellow": 255, 209, 102, 1,
"layer-0":rgba(6, 8, 15, 1);
"layer-1":rgba(19, 19, 22, 1);
"layer-2":rgba(22, 27, 34, 1);
"section-div":rgba(43, 50, 59, 1);
"primary-text":rgba(255, 255, 255, 0.8);
"primary-text-over-layer-2":rgba(208, 209, 211, 1);
"distinct-text":rgba(150, 150, 150, 0.85);
"distinct-text-over-layer-2":rgba(131, 132, 133, 1);
"link-text":rgba(86, 167, 252, 0.9);
"link-text-hover":rgba(134, 192, 253, 0.9);
"menu-selection":rgba(200, 200, 200, 1);
interactive: rgba(133, 126, 123, 1);
"highlight":rgba(70, 70, 70, 0.25);
"highlight-lighter":rgba(120, 120, 120, 0.50);
"cta-orange":rgba(241, 156, 65, 1);
"action-red":rgba(238, 90, 88, 1);
"learn-blue":rgba(62, 146, 204, 1);
"accepted-green":rgba(97, 139, 37, 1);
"warn-yellow":rgba(255, 209, 102, 1);
}
38 changes: 19 additions & 19 deletions frontend/assets/css/light.css
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
light: {
"layer-0": 255, 255, 255, 1,
"layer-1": 246, 248, 250, 1,
"layer-2": 240, 240, 235, 1,
"section-div": 216, 222, 228, 1,
"primary-text": 0, 0, 0, 0.85,
"primary-text-over-layer-2": 36, 36, 35, 1,
"distinct-text": 90, 90, 90, 0.9,
"distinct-text-over-layer-2": 105, 105, 105, 1,
"link-text": 0, 92, 184, 0.9,
"link-text-hover": 0, 59, 119, 0.9,
"menu-selection": 50, 50, 50, 1,
interactive: 75, 75, 67, 1,
"highlight": 140, 140, 140, 0.20,
"highlight-lighter": 120, 120, 120, 0.30,
"cta-orange": 242, 166, 84, 1,
"action-red": 186, 61, 59, 1,
"learn-blue": 33, 118, 174, 1,
"accepted-green": 62, 137, 20, 1,
"warn-yellow": 255, 191, 0, 1,
"layer-0":rgba(255, 255, 255, 1);
"layer-1":rgba(246, 248, 250, 1);
"layer-2":rgba(240, 240, 235, 1);
"section-div":rgba(216, 222, 228, 1);
"primary-text":rgba(0, 0, 0, 0.85);
"primary-text-over-layer-2":rgba(36, 36, 35, 1);
"distinct-text":rgba(90, 90, 90, 0.9);
"distinct-text-over-layer-2":rgba(105, 105, 105, 1);
"link-text":rgba(0, 92, 184, 0.9);
"link-text-hover":rgba(0, 59, 119, 0.9);
"menu-selection":rgba(50, 50, 50, 1);
interactive: rgba(75, 75, 67, 1);
"highlight":rgba(140, 140, 140, 0.20);
"highlight-lighter":rgba(120, 120, 120, 0.30);
"cta-orange":rgba(242, 166, 84, 1);
"action-red":rgba(186, 61, 59, 1);
"learn-blue":rgba(33, 118, 174, 1);
"accepted-green":rgba(62, 137, 20, 1);
"warn-yellow":rgba(255, 191, 0, 1);
}

0 comments on commit 2d6eab5

Please sign in to comment.