32 lines
738 B
SCSS
32 lines
738 B
SCSS
/*
|
|
* Copyright (C) 2022 Aravinth Manivannan <realaravinth@batsense.net>
|
|
* SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
$green: #5cad66;
|
|
$violet: #800080;
|
|
$light-violet: #993299;
|
|
$backdrop: #f0f0f0;
|
|
$light-text: rgba(255, 255, 255, 0.87);
|
|
$secondary-backdrop: #2b2c30;
|
|
$light-grey: rgba(0, 0, 0, 0.125);
|
|
$white: #fff;
|
|
$black-text: #000;
|
|
|
|
$auth-content-width: 30%;
|
|
$auth-content-width-mobile: 80%;
|
|
|
|
$blue-link: rgb(3, 102, 214);
|
|
|
|
$form-content-width: 90%;
|
|
$form-input-height: 40px;
|
|
|
|
@mixin light-text-icon-filter {
|
|
filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(325deg)
|
|
brightness(105%) contrast(101%);
|
|
opacity: 0.8;
|
|
}
|
|
|
|
$red: #d10028;
|