33 lines
1.0 KiB
CSS
33 lines
1.0 KiB
CSS
/*
|
|
* Copyright (c) 2022, 2025 Sasha Koshka <sashakoshka@tebibyte.media>
|
|
* Copyright (c) 2026 Emma Tebibyte <sashakoshka@tebibyte.media>
|
|
* SPDX-License-Identifier: FSFAP
|
|
*
|
|
* This file is part of Mintee.
|
|
*
|
|
* Copying and distribution of this file, with or without modification, are
|
|
* permitted in any medium without royalty provided the copyright notice and
|
|
* this notice are preserved. This file is offered as-is, without any
|
|
* warranty.
|
|
*/
|
|
|
|
@import url("/res/mint-dark.css") (prefers-color-scheme: dark);
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
/* mint theme */
|
|
:root {
|
|
--glass: #EEEEEE77;
|
|
--background: #EEE;
|
|
--control: #FFF4;
|
|
--foreground: #333;
|
|
--subtle-foreground: #888;
|
|
--outline: #00000015;
|
|
--shine: #00000015;
|
|
--accent: #209D6E;
|
|
--subtle-accent: #209D6E30;
|
|
--subtler-accent: #209D6E12;
|
|
--shadow: 0 4px 32px #03281A12;
|
|
--icon-filter: hue-rotate(157deg) saturate(0.80) brightness(1.3);
|
|
}
|
|
}
|