mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
55 lines
2.2 KiB
SCSS
55 lines
2.2 KiB
SCSS
// /***************************************************************************
|
|
// The Disc Image Chef
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// Filename : dicserver_highcharts.scss
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
//
|
|
// Component : DiscImageChef Server.
|
|
//
|
|
// --[ Description ] ----------------------------------------------------------
|
|
//
|
|
// Sets style for server's charts.
|
|
//
|
|
// --[ License ] --------------------------------------------------------------
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as
|
|
// published by the Free Software Foundation; either version 2.1 of the
|
|
// License, or (at your option) any later version.
|
|
//
|
|
// This library is distributed in the hope that it will be useful, but
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
// ----------------------------------------------------------------------------
|
|
// Copyright © 2011-2019 Natalia Portillo
|
|
// ****************************************************************************/
|
|
|
|
@import "_colors";
|
|
@import "_font";
|
|
@import "_fontstyles";
|
|
|
|
$colors: $orange $green $brown $indigo $pink $teal $yellow $purple $cyan $white;
|
|
$background-color: $body-bg;
|
|
|
|
$neutral-color-100: $brightwhite; // Strong text.
|
|
$neutral-color-80: $white; // Main text and some strokes.
|
|
$neutral-color-60: $white; // Axis labels, axis title, connector fallback.
|
|
$neutral-color-40: $white; // Credits text, export menu stroke.
|
|
$neutral-color-20: $darkgray; // Disabled texts, button strokes, crosshair etc.
|
|
$neutral-color-10: $darkgray; // Grid lines etc.
|
|
$neutral-color-5: $darkgray; // Minor grid lines etc.
|
|
$neutral-color-3: $darkgray; // Tooltip backgroud, button fills, map null points.
|
|
|
|
$font-family: $font-family-base;
|
|
|
|
$tooltip-background: $brightwhite;
|
|
|
|
$data-label-color: $yellow;
|
|
|
|
@import "../_highcharts"; |