26 lines
852 B
CSS
26 lines
852 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.
|
|
*/
|
|
|
|
/* martian theme */
|
|
:root {
|
|
--glass: url("frost.webp"), hsla(0, 20%, 7%, 0.5);
|
|
--background: hsl(0, 20%, 7%);
|
|
--foreground: hsl(0, 25%, 90%);
|
|
--subtle-foreground: hsl(0, 35%, 55%);
|
|
--outline: hsl(0, 23%, 20%);
|
|
--shine: #FFFFFF10;
|
|
--accent: hsl(0, 80%, 40%);
|
|
--subtle-accent: hsla(0, 80%, 40%, 0.2);
|
|
--shadow: 0 4px 32px #00000070;
|
|
--icon-filter: saturate(0.89) brightness(0.72);
|
|
}
|