Skip to content

Commit

Permalink
feat: add new predefined color scheme 'astro dark'
Browse files Browse the repository at this point in the history
  • Loading branch information
satnaing committed Jan 31, 2023
1 parent b9aa569 commit bc263b6
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/content/blog/predefined-color-schemes.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,18 @@ html[data-theme="dark"] {
--color-border: 134, 67, 107;
}
```

### Astro dark

![astro-dark-color-scheme](https://user-images.githubusercontent.com/53733092/215680520-59427bb0-f4cb-48c0-bccc-f182a428d72d.svg)

```css
html[data-theme="dark"] {
--color-fill: 16, 23, 42;
--color-text-base: 234, 237, 243;
--color-accent: 254, 93, 1;
--color-card: 27, 39, 70;
--color-card-muted: 138, 51, 2;
--color-border: 141, 56, 8;
}
```

0 comments on commit bc263b6

Please sign in to comment.