[bugfix] properly set colors for lightmode

This commit is contained in:
Zoë Bijl
2025-10-10 14:23:29 +02:00
parent 7138e11984
commit f1eeb89908
2 changed files with 29 additions and 0 deletions
@@ -1,3 +1,4 @@
@import 'mastodon-light/variables';
@import 'index';
@import 'mastodon-light/diff';
@import 'mastodon-light/colors';
@@ -0,0 +1,28 @@
/* 🎨 Colors */
:root {
color-scheme: light;
/* Base */
--color-fg: #000;
--color-bg: #eff3f5;
/* Accent */
--color-accent-bg: #d9e1e8;
--color-accent-fg: #282c37;
--color-accent-lines: #c0cdd9;
/* Notifications */
--color-notifications-bg--active: #fff;
--color-notifications-bg--hover: #fff9;
/* Search */
--color-search-bg--focus: #ccd7e0;
--color-search-fg: #282c37;
--color-search-fg--focus: var(--color-fg);
--color-search-placeholder: var(--color-search-fg);
--color-search-placeholder--focus: #5e6a7a;
/* Status */
--color-status-fg: var(--color-fg);
--color-status-bg: #fff;
}