Skip to content

Commit ca4b6c3

Browse files
author
hywax
committed
feat(themes): new theme bluer
1 parent 01829d2 commit ca4b6c3

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Diff for: src/assets/style/tailwind.css

+6
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ html.sepia {
2626
--background: 241 231 208;
2727
}
2828

29+
html.bluer {
30+
--fg: 236 236 236;
31+
--fg-dimmed: 147 156 220;
32+
--background: 24 29 63;
33+
}
34+
2935
@layer components {
3036
body {
3137
@apply bg-background text-fg;

Diff for: src/types/config.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export interface Layout {
2626
export interface Config {
2727
title?: string
2828
lang: 'en' | 'ru'
29-
theme?: 'system' | 'light' | 'dark' | 'deep' | 'sepia'
29+
theme?: 'system' | 'light' | 'dark' | 'deep' | 'sepia' | 'bluer'
3030
layout?: Layout
3131
behaviour?: Behaviour
3232
tags: Tag[]

0 commit comments

Comments
 (0)