mirror of
https://github.com/szymon-jozef/static-site-generator.git
synced 2026-09-07 12:10:42 +02:00
12 lines
307 B
CSS
12 lines
307 B
CSS
/* use catppuccin color palette */
|
|
@import url('https://unpkg.com/@catppuccin/palette/css/catppuccin.css');
|
|
|
|
:root {
|
|
color-scheme: light dark;
|
|
}
|
|
|
|
* {
|
|
background-color: light-dark(var(--ctp-latte-base), var(--ctp-frappe-base));
|
|
color: light-dark(var(--ctp-latte-text), var(--ctp-frappe-text));
|
|
}
|