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-12-04 17:36:59 +00:00
|
|
|
/**************************************************************
|
|
|
|
* Theme colors.
|
|
|
|
*
|
|
|
|
* We go from 100 (lightest) to 900 (darkest).
|
|
|
|
*
|
|
|
|
* Base shade is 500 and is used prominmently as the
|
|
|
|
* left-side navigation sidebar color.
|
|
|
|
**************************************************************/
|
2019-01-04 16:33:30 +00:00
|
|
|
$theme-900: #1F2833;
|
|
|
|
$theme-800: #1F2833;
|
|
|
|
$theme-700: #404B5A;
|
|
|
|
$theme-600: #6E7A89;
|
|
|
|
$theme-500: #929FB1;
|
|
|
|
$theme-400: #AEBECC;
|
|
|
|
$theme-300: #CBD4DB;
|
|
|
|
$theme-200: #D5DDE5;
|
|
|
|
$theme-100: #E1E7EB;
|
2018-11-24 16:13:21 +00:00
|
|
|
|
2018-12-04 17:36:59 +00:00
|
|
|
// Set hyperlink color for theme
|
|
|
|
$color-link: map-get($green-shades, 700);
|
2018-11-24 16:13:21 +00:00
|
|
|
|
2018-12-04 17:26:57 +00:00
|
|
|
@import "../core/all.scss";
|