projects
/
rainny.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e191d3
)
fix font-weight in dark theme with unsupported fonts (#1964)
author
Ajay Bura
<32841439+ajbura@users.noreply.github.com>
Sun, 22 Sep 2024 12:31:32 +0000
(22:31 +1000)
committer
GitHub
<noreply@github.com>
Sun, 22 Sep 2024 12:31:32 +0000
(22:31 +1000)
src/config.css.ts
patch
|
blob
|
history
diff --git
a/src/config.css.ts
b/src/config.css.ts
index df04b909630f692069d5cadfcadb26de19a70fca..5d63c34abadb8c92e684b9cc5e1dac00415b748f 100644
(file)
--- a/
src/config.css.ts
+++ b/
src/config.css.ts
@@
-5,7
+5,7
@@
export const onLightFontWeight = createTheme(config.fontWeight, {
W100: '100',
W200: '200',
W300: '300',
- W400: '4
2
0',
+ W400: '4
0
0',
W500: '500',
W600: '600',
W700: '700',
@@
-17,10
+17,10
@@
export const onDarkFontWeight = createTheme(config.fontWeight, {
W100: '100',
W200: '200',
W300: '300',
- W400: '
35
0',
- W500: '
45
0',
- W600: '
55
0',
- W700: '
65
0',
- W800: '
75
0',
- W900: '
85
0',
+ W400: '
40
0',
+ W500: '
50
0',
+ W600: '
60
0',
+ W700: '
70
0',
+ W800: '
80
0',
+ W900: '
90
0',
});