Fix font weight for dark theme
authorAjay Bura <ajbura@gmail.com>
Sun, 16 Jan 2022 08:47:23 +0000 (14:17 +0530)
committerAjay Bura <ajbura@gmail.com>
Sun, 16 Jan 2022 08:47:23 +0000 (14:17 +0530)
Signed-off-by: Ajay Bura <ajbura@gmail.com>
src/font-face.css
src/index.scss

index 94fe4e317f7852f5fab85c91455cf06726aa50b4..dd165c35dfc3d6c7668bde5c26ff5b21c1b44482 100644 (file)
@@ -36,7 +36,7 @@
 @font-face {
   font-family: 'Inter';
   src: url(../public/res/fonts/inter/Inter_vf_slant_weight.ttf);
-  font-weight: 380;
+  font-weight: 350;
   font-display: swap;  
 }
 @font-face {
index e24af3206d31851ac6704b2f63de7a3dfcde9a90..a529b0c3760d6421405f4bd238522f3ad35766f9 100644 (file)
 
 
   /* text color | --tc-[background type]-[priority]: value */
-  --ic-surface-high: rgb(255, 255, 255);;
   --tc-surface-high: rgba(255, 255, 255, 98%);
   --tc-surface-normal: rgba(255, 255, 255, 94%);
   --tc-surface-normal-low: rgba(255, 255, 255, 60%);
   --tc-badge: black;
 
   /* system icons | --ic-[background type]-[priority]: value */
+  --ic-surface-high: rgb(255, 255, 255);
   --ic-surface-normal: rgba(255, 255, 255, 84%);
   --ic-surface-low: rgba(255, 255, 255, 64%);
   --ic-primary-normal: #ffffff;
   --fs-b3: 11.2px;
 
   /* override normal font weight for dark mode */
-  --fw-normal: 380;
+  --fw-normal: 350;
 
   --font-secondary: 'Inter', 'Roboto', sans-serif;
 }