Skip to content

Commit

Permalink
feat(themes): new theme bluer
Browse files Browse the repository at this point in the history
  • Loading branch information
hywax committed May 21, 2024
1 parent 01829d2 commit ca4b6c3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/assets/style/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ html.sepia {
--background: 241 231 208;
}

html.bluer {
--fg: 236 236 236;
--fg-dimmed: 147 156 220;
--background: 24 29 63;
}

@layer components {
body {
@apply bg-background text-fg;
Expand Down
2 changes: 1 addition & 1 deletion src/types/config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export interface Layout {
export interface Config {
title?: string
lang: 'en' | 'ru'
theme?: 'system' | 'light' | 'dark' | 'deep' | 'sepia'
theme?: 'system' | 'light' | 'dark' | 'deep' | 'sepia' | 'bluer'
layout?: Layout
behaviour?: Behaviour
tags: Tag[]
Expand Down

0 comments on commit ca4b6c3

Please sign in to comment.