mirror of
https://github.com/documize/community.git
synced 2025-07-25 08:09:43 +02:00
31 lines
798 B
SCSS
31 lines
798 B
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
|
|
|
|
@import "../colors.scss";
|
|
|
|
$color-primary: #00695C;
|
|
$color-primary-light: #E0F2F1;
|
|
$color-link: #348A37;
|
|
|
|
.color-primary {
|
|
color: $color-primary !important;
|
|
}
|
|
.color-link {
|
|
color: $color-link !important;
|
|
}
|
|
.background-color-theme {
|
|
background-color: $color-primary !important;
|
|
}
|
|
.background-color-theme-light {
|
|
background-color: $color-primary-light !important;
|
|
}
|
|
|
|
@import "../core/all.scss";
|