27 lines
792 B
CSS
27 lines
792 B
CSS
/*
|
|
* Copyright (c) 2022 Sasha Koshka <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.
|
|
*/
|
|
|
|
|
|
/* mint theme */
|
|
:root {
|
|
--glass: url("frost.webp"), #33333377;
|
|
--background: #111;
|
|
--foreground: #CCC;
|
|
--subtle-foreground: #777;
|
|
--outline: #FFFFFF15;
|
|
--shine: #FFFFFF18;
|
|
--accent: #209D6E;
|
|
--subtle-accent: #209D6E30;
|
|
--shadow: 0 4px 32px #03281A12;
|
|
--icon-filter: hue-rotate(157deg) saturate(0.80) brightness(1.3);
|
|
}
|