We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01829d2 commit ca4b6c3Copy full SHA for ca4b6c3
src/assets/style/tailwind.css
@@ -26,6 +26,12 @@ html.sepia {
26
--background: 241 231 208;
27
}
28
29
+html.bluer {
30
+ --fg: 236 236 236;
31
+ --fg-dimmed: 147 156 220;
32
+ --background: 24 29 63;
33
+}
34
+
35
@layer components {
36
body {
37
@apply bg-background text-fg;
src/types/config.d.ts
@@ -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[]
0 commit comments