mirror of
https://github.com/documize/community.git
synced 2025-07-23 07:09:43 +02:00
93 lines
2 KiB
SCSS
93 lines
2 KiB
SCSS
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
|
//
|
|
// This software (Documize Community Edition) is licensed under
|
|
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
|
//
|
|
// You can operate outside the AGPL restrictions by purchasing
|
|
// Documize Enterprise Edition and obtaining a commercial license
|
|
// by contacting <sales@documize.com>.
|
|
//
|
|
// https://documize.com
|
|
|
|
|
|
// theme
|
|
$color-primary: #176091;
|
|
$color-primary-light: #E6F1F8;
|
|
$color-link: #348A37;
|
|
|
|
// black, white
|
|
$color-black: #000000;
|
|
$color-off-black: #111111;
|
|
$color-white: #ffffff;
|
|
$color-off-white: #f5f5f5;
|
|
|
|
// gray
|
|
$color-dark: #434343;
|
|
$color-gray: #8b9096;
|
|
$color-gray-light: #d8d8d8;
|
|
$color-gray-light2: #eaeaea;
|
|
$color-border: #d3d3d3;
|
|
|
|
// colors
|
|
$color-red: #9E0D1F;
|
|
$color-green: #348A37;
|
|
$color-blue: #2667af;
|
|
$color-goldy: #FFD700;
|
|
|
|
// widgets
|
|
$color-checkbox: #2667af;
|
|
$color-symbol-box: #dce5e8;
|
|
$color-symbol-icon: #a4b8be;
|
|
$color-card: #F9F9F9;
|
|
$color-stroke: #e1e1e1;
|
|
|
|
// Color utility classes for direct usage in HTML
|
|
.color-white {
|
|
color: $color-white !important;
|
|
}
|
|
.color-off-white {
|
|
color: $color-off-white !important;
|
|
}
|
|
.color-black {
|
|
color: $color-black !important;
|
|
}
|
|
.color-off-black {
|
|
color: $color-off-black !important;
|
|
}
|
|
.color-primary {
|
|
color: $color-primary !important;
|
|
}
|
|
.color-link {
|
|
color: $color-link !important;
|
|
}
|
|
.color-blue {
|
|
color: $color-blue !important;
|
|
}
|
|
.color-red {
|
|
color: $color-red !important;
|
|
}
|
|
.color-green {
|
|
color: $color-green !important;
|
|
}
|
|
.color-gray {
|
|
color: $color-gray !important;
|
|
}
|
|
|
|
.background-color-white {
|
|
background-color: $color-white !important;
|
|
}
|
|
.background-color-off-white {
|
|
background-color: $color-off-white !important;
|
|
}
|
|
.background-color-off-black {
|
|
background-color: $color-off-black !important;
|
|
}
|
|
.background-color-green {
|
|
background-color: $color-green !important;
|
|
}
|
|
.background-color-theme {
|
|
background-color: $color-primary !important;
|
|
}
|
|
.background-color-theme-light {
|
|
background-color: $color-primary-light !important;
|
|
}
|