2021-05-03 14:54:03 +00:00
|
|
|
/*
|
2022-01-08 16:46:05 +00:00
|
|
|
* Copyright (C) 2022 Aravinth Manivannan <realaravinth@batsense.net>
|
2023-06-26 08:29:03 +00:00
|
|
|
* SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
|
2021-05-03 14:54:03 +00:00
|
|
|
*
|
2023-06-26 08:29:03 +00:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2021-05-03 14:54:03 +00:00
|
|
|
*/
|
|
|
|
|
2021-04-16 18:27:36 +00:00
|
|
|
$green: #5cad66;
|
|
|
|
$violet: #800080;
|
2021-05-03 14:54:03 +00:00
|
|
|
$light-violet: #993299;
|
2021-04-16 18:27:36 +00:00
|
|
|
$backdrop: #f0f0f0;
|
|
|
|
$light-text: rgba(255, 255, 255, 0.87);
|
|
|
|
$secondary-backdrop: #2b2c30;
|
|
|
|
$light-grey: rgba(0, 0, 0, 0.125);
|
2021-05-03 14:54:03 +00:00
|
|
|
$white: #fff;
|
2021-05-04 13:04:36 +00:00
|
|
|
$black-text: #000;
|
2021-05-14 11:03:18 +00:00
|
|
|
|
2021-05-06 15:02:44 +00:00
|
|
|
$auth-content-width: 30%;
|
2021-05-25 15:10:57 +00:00
|
|
|
$auth-content-width-mobile: 80%;
|
2021-05-14 11:03:18 +00:00
|
|
|
|
2021-05-07 18:59:19 +00:00
|
|
|
$blue-link: rgb(3, 102, 214);
|
2021-05-14 11:03:18 +00:00
|
|
|
|
|
|
|
$form-content-width: 90%;
|
|
|
|
$form-input-height: 40px;
|
2021-07-21 09:16:31 +00:00
|
|
|
|
|
|
|
@mixin light-text-icon-filter {
|
|
|
|
filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(325deg)
|
|
|
|
brightness(105%) contrast(101%);
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
|
|
|
$red: #d10028;
|