Skip to content

Commit f9c5210

Browse files
committed
feat: restore muted color in readme
1 parent b9ea36f commit f9c5210

3 files changed

Lines changed: 4 additions & 9 deletions

File tree

app/assets/main.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
/* text colors */
1616
--fg: oklch(0.982 0 0);
17-
--fg-muted-light: oklch(0.832 0 0);
1817
--fg-muted: oklch(0.749 0 0);
1918
--fg-subtle: oklch(0.673 0 0);
2019

@@ -79,9 +78,6 @@
7978
--bg-elevated: var(--bg-elevated-color, oklch(0.94 0.002 287.29));
8079

8180
--fg: oklch(0.146 0 0);
82-
--fg-muted-light: oklch(
83-
0.284 0 0
84-
); /* TODO fix palette names to match bg - core > subtle > muted > elevated */
8581
--fg-muted: oklch(0.398 0 0);
8682
--fg-subtle: oklch(0.48 0 0);
8783

app/components/Readme.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ function handleClick(event: MouseEvent) {
7676
<style scoped>
7777
/* README prose styling */
7878
.readme {
79-
color: var(--fg-muted-light);
79+
color: var(--fg-muted);
8080
line-height: 1.75;
8181
/* Prevent horizontal overflow on mobile */
8282
overflow-wrap: break-word;

uno.config.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,9 @@ export default defineConfig({
4949
elevated: 'var(--bg-elevated)',
5050
},
5151
fg: {
52-
'DEFAULT': 'var(--fg)',
53-
'muted': 'var(--fg-muted)',
54-
'muted-light': 'var(--fg-muted-light)',
55-
'subtle': 'var(--fg-subtle)',
52+
DEFAULT: 'var(--fg)',
53+
muted: 'var(--fg-muted)',
54+
subtle: 'var(--fg-subtle)',
5655
},
5756
border: {
5857
DEFAULT: 'var(--border)',

0 commit comments

Comments
 (0)