mirror of
https://github.com/documize/community.git
synced 2025-07-24 15:49:44 +02:00
37 lines
1 KiB
SCSS
37 lines
1 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
|
|
|
|
@import "../colors.scss";
|
|
|
|
/**************************************************************
|
|
* Theme colors.
|
|
*
|
|
* We go from 100 (lightest) to 900 (darkest).
|
|
*
|
|
* Base shade is 500 and is used prominently as the
|
|
* left-side navigation sidebar color.
|
|
**************************************************************/
|
|
$theme-900: #312A09;
|
|
$theme-800: #5C4E12;
|
|
$theme-700: #86731A;
|
|
$theme-600: #B19722;
|
|
$theme-500: #D7B92F;
|
|
$theme-400: #E5D176;
|
|
$theme-300: #EADB93;
|
|
$theme-200: #F2E9BD;
|
|
$theme-100: #FBF7E8;
|
|
|
|
// Set hyperlink color for theme
|
|
// $color-link: map-get($green-shades, 700);
|
|
$color-link: #0080a5;
|
|
$color-link-hover: #0fb4e2;
|
|
|
|
@import "../core/all.scss";
|