2018-11-24 16:13:21 +00:00
|
|
|
// 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
|
|
|
|
|
2018-12-04 17:26:57 +00:00
|
|
|
@import "../colors.scss";
|
|
|
|
|
2018-11-24 16:13:21 +00:00
|
|
|
$color-primary: #BF360C;
|
|
|
|
$color-primary-light: #FBE9E7;
|
|
|
|
$color-link: #FF8A65;
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2018-12-04 17:26:57 +00:00
|
|
|
@import "../core/all.scss";
|