fix(client): update CSS variable values (#42197)

Update rgba instead of rgb to translucent colors and add hex value for --purple-mid
pull/42200/head
ChrisPrzR 2021-05-21 02:25:33 -05:00 committed by GitHub
parent 9088a07dad
commit d636bb8912
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -15,12 +15,12 @@
--yellow-light: #ffc300;
--yellow-dark: #4d3800;
--blue-light: rgb(153, 201, 255);
--blue-light-translucent: rgb(153, 201, 255, 0.3);
--blue-light-translucent: rgba(153, 201, 255, 0.3);
--blue-dark: rgb(0, 46, 173);
--blue-dark-translucent: rgb(0, 46, 173, 0.3);
--blue-dark-translucent: rgba(0, 46, 173, 0.3);
--green-light: #acd157;
--blue-mid: #198eee;
--purple-mid: darkviolet;
--purple-mid: #9400d3;
--green-dark: #00471b;
--red-light: #ffadad;
--red-dark: #850000;