2016-02-15 15:27:41 +01:00
|
|
|
// Global values
|
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
2017-10-18 07:49:52 +02:00
|
|
|
$theme-name: dark;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
|
|
|
|
// Grays
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$black: #000;
|
2016-02-18 17:25:11 +01:00
|
|
|
|
2016-02-19 12:26:39 +01:00
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$black: #000;
|
|
|
|
|
$dark-1: #141414;
|
|
|
|
|
$dark-2: #1f1f20;
|
|
|
|
|
$dark-3: #262628;
|
|
|
|
|
$dark-4: #333333;
|
|
|
|
|
$dark-5: #444444;
|
|
|
|
|
$gray-1: #555555;
|
|
|
|
|
$gray-2: #8e8e8e;
|
|
|
|
|
$gray-3: #b3b3b3;
|
|
|
|
|
$gray-4: #d8d9da;
|
|
|
|
|
$gray-5: #ececec;
|
|
|
|
|
$gray-6: #f4f5f8;
|
|
|
|
|
$gray-7: #fbfbfb;
|
|
|
|
|
|
|
|
|
|
$gray-blue: #212327;
|
|
|
|
|
$input-black: #09090b;
|
|
|
|
|
|
|
|
|
|
$white: #fff;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
|
|
|
|
// Accent colors
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$blue: #33b5e5;
|
|
|
|
|
$blue-dark: #005f81;
|
|
|
|
|
$green: #299c46;
|
|
|
|
|
$red: #d44a3a;
|
|
|
|
|
$yellow: #ecbb13;
|
|
|
|
|
$pink: #ff4444;
|
|
|
|
|
$purple: #9933cc;
|
|
|
|
|
$variable: #32d1df;
|
|
|
|
|
$orange: #eb7b18;
|
|
|
|
|
|
|
|
|
|
$brand-primary: $orange;
|
|
|
|
|
$brand-success: $green;
|
|
|
|
|
$brand-warning: $brand-primary;
|
|
|
|
|
$brand-danger: $red;
|
|
|
|
|
|
2018-05-25 12:51:27 +02:00
|
|
|
$query-red: $red;
|
|
|
|
|
$query-green: $green;
|
|
|
|
|
$query-purple: $purple;
|
|
|
|
|
$query-orange: $orange;
|
2017-12-15 11:01:18 +01:00
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
// Status colors
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$online: #10a345;
|
|
|
|
|
$warn: #f79520;
|
|
|
|
|
$critical: #ed2e18;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2016-02-16 09:42:46 +01:00
|
|
|
// Scaffolding
|
2016-02-15 15:27:41 +01:00
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$body-bg: rgb(23, 24, 25);
|
|
|
|
|
$page-bg: rgb(22, 23, 25);
|
2017-11-30 15:37:03 +01:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$body-color: $gray-4;
|
|
|
|
|
$text-color: $gray-4;
|
|
|
|
|
$text-color-strong: $white;
|
|
|
|
|
$text-color-weak: $gray-2;
|
|
|
|
|
$text-color-faint: $dark-5;
|
|
|
|
|
$text-color-emphasis: $gray-5;
|
2016-03-24 22:01:33 -04:00
|
|
|
|
2016-03-28 13:10:42 +02:00
|
|
|
$text-shadow-strong: 1px 1px 4px $black;
|
|
|
|
|
$text-shadow-faint: 1px 1px 4px rgb(45, 45, 45);
|
2016-02-16 08:30:37 +01:00
|
|
|
|
2016-02-24 10:32:22 +01:00
|
|
|
// gradients
|
2017-12-19 16:22:41 +01:00
|
|
|
$brand-gradient: linear-gradient(
|
|
|
|
|
to right,
|
|
|
|
|
rgba(255, 213, 0, 0.7) 0%,
|
|
|
|
|
rgba(255, 68, 0, 0.7) 99%,
|
|
|
|
|
rgba(255, 68, 0, 0.7) 100%
|
|
|
|
|
);
|
2018-11-06 08:01:00 +01:00
|
|
|
|
2017-11-29 13:21:42 +01:00
|
|
|
$page-gradient: linear-gradient(180deg, #222426 10px, rgb(22, 23, 25) 100px);
|
2016-02-24 10:32:22 +01:00
|
|
|
|
2016-02-16 09:42:46 +01:00
|
|
|
// Links
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$link-color: darken($white, 11%);
|
|
|
|
|
$link-color-disabled: darken($link-color, 30%);
|
|
|
|
|
$link-hover-color: $white;
|
|
|
|
|
$external-link-color: $blue;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2016-02-16 09:42:46 +01:00
|
|
|
// Typography
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$headings-color: darken($white, 11%);
|
|
|
|
|
$abbr-border-color: $gray-3 !default;
|
|
|
|
|
$text-muted: $text-color-weak;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$hr-border-color: rgba(0, 0, 0, 0.1) !default;
|
2016-02-16 09:42:46 +01:00
|
|
|
|
|
|
|
|
// Panel
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$panel-bg: #212124;
|
|
|
|
|
$panel-border-color: $dark-1;
|
|
|
|
|
$panel-border: solid 1px $panel-border-color;
|
|
|
|
|
$panel-header-hover-bg: $dark-4;
|
2016-02-16 09:42:46 +01:00
|
|
|
|
2017-12-03 08:11:07 +01:00
|
|
|
// page header
|
|
|
|
|
$page-header-bg: linear-gradient(90deg, #292a2d, black);
|
|
|
|
|
$page-header-shadow: inset 0px -4px 14px $dark-2;
|
|
|
|
|
$page-header-border-color: $dark-4;
|
|
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$divider-border-color: #555;
|
2016-02-16 09:42:46 +01:00
|
|
|
|
|
|
|
|
// Graphite Target Editor
|
2017-12-19 16:22:41 +01:00
|
|
|
$tight-form-bg: $dark-3;
|
|
|
|
|
$tight-form-func-bg: #333334;
|
|
|
|
|
$tight-form-func-highlight-bg: #444445;
|
2016-02-16 09:42:46 +01:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$modal-backdrop-bg: #353c42;
|
2018-10-06 12:09:30 -07:00
|
|
|
$code-tag-bg: $dark-1;
|
|
|
|
|
$code-tag-border: $dark-4;
|
2016-04-14 11:38:07 -04:00
|
|
|
|
2017-11-23 12:54:12 +01:00
|
|
|
// cards
|
|
|
|
|
$card-background: linear-gradient(135deg, #2f2f32, #262628);
|
|
|
|
|
$card-background-hover: linear-gradient(135deg, #343436, #262628);
|
2018-01-18 14:40:08 +01:00
|
|
|
$card-shadow: -1px -1px 0 0 hsla(0, 0%, 100%, 0.1), 1px 1px 0 0 rgba(0, 0, 0, 0.3);
|
2016-02-16 09:42:46 +01:00
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
// Lists
|
2017-12-19 16:22:41 +01:00
|
|
|
$list-item-bg: $card-background;
|
|
|
|
|
$list-item-hover-bg: lighten($gray-blue, 2%);
|
2017-11-23 12:54:12 +01:00
|
|
|
$list-item-link-color: $text-color;
|
2017-12-19 16:22:41 +01:00
|
|
|
$list-item-shadow: $card-shadow;
|
2018-11-06 08:01:00 +01:00
|
|
|
|
2018-01-31 14:14:11 +01:00
|
|
|
$empty-list-cta-bg: $gray-blue;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
|
|
|
|
// Scrollbars
|
2017-12-01 15:56:08 +01:00
|
|
|
$scrollbarBackground: #404357;
|
2016-02-15 15:27:41 +01:00
|
|
|
$scrollbarBackground2: #3a3a3a;
|
2017-12-01 15:56:08 +01:00
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
$scrollbarBorder: black;
|
|
|
|
|
|
|
|
|
|
// Tables
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$table-bg: transparent; // overall background-color
|
|
|
|
|
$table-bg-accent: $dark-3; // for striping
|
|
|
|
|
$table-bg-hover: $dark-4; // for hover
|
|
|
|
|
$table-border: $dark-3; // table and cell border
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$table-bg-odd: $dark-2;
|
2018-01-25 12:17:16 +01:00
|
|
|
$table-bg-hover: $dark-3;
|
2017-12-05 12:48:16 +01:00
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
// Buttons
|
|
|
|
|
// -------------------------
|
|
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$btn-primary-bg: #ff6600;
|
|
|
|
|
$btn-primary-bg-hl: #bc3e06;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$btn-secondary-bg-hl: lighten($blue-dark, 5%);
|
2018-11-06 08:01:00 +01:00
|
|
|
$btn-secondary-bg: $blue-dark;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$btn-success-bg: $green;
|
|
|
|
|
$btn-success-bg-hl: darken($green, 6%);
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$btn-warning-bg: $brand-warning;
|
|
|
|
|
$btn-warning-bg-hl: lighten($brand-warning, 8%);
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$btn-danger-bg: $red;
|
|
|
|
|
$btn-danger-bg-hl: darken($red, 8%);
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$btn-inverse-bg: $dark-3;
|
|
|
|
|
$btn-inverse-bg-hl: lighten($dark-3, 4%);
|
|
|
|
|
$btn-inverse-text-color: $link-color;
|
|
|
|
|
$btn-inverse-text-shadow: 0px 1px 0 rgba(0, 0, 0, 0.1);
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2018-05-25 12:51:27 +02:00
|
|
|
$btn-active-bg: $gray-4;
|
|
|
|
|
$btn-active-text-color: $blue-dark;
|
|
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$btn-link-color: $gray-3;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$iconContainerBackground: $black;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$btn-divider-left: $dark-4;
|
|
|
|
|
$btn-divider-right: $dark-2;
|
2016-08-11 21:22:40 +02:00
|
|
|
|
2018-01-18 14:40:08 +01:00
|
|
|
$btn-drag-image: '../img/grab_dark.svg';
|
2016-08-11 18:25:41 +02:00
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
// Forms
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$input-bg: $input-black;
|
|
|
|
|
$input-bg-disabled: $dark-3;
|
|
|
|
|
|
|
|
|
|
$input-color: $gray-4;
|
|
|
|
|
$input-border-color: $dark-3;
|
|
|
|
|
$input-box-shadow: inset 1px 0px 0.3rem 0px rgba(150, 150, 150, 0.1);
|
|
|
|
|
$input-border-focus: $input-border-color;
|
|
|
|
|
$input-box-shadow-focus: rgba(102, 175, 233, 0.6);
|
|
|
|
|
$input-color-placeholder: $gray-1 !default;
|
|
|
|
|
$input-label-bg: $gray-blue;
|
|
|
|
|
$input-label-border-color: $dark-3;
|
2018-10-08 13:39:00 +02:00
|
|
|
$input-color-select-arrow: $white;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
|
|
|
|
// Search
|
2017-12-08 18:15:24 +01:00
|
|
|
$search-shadow: 0 0 30px 0 $black;
|
2017-11-29 17:13:50 +01:00
|
|
|
$search-filter-box-bg: $gray-blue;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2018-05-25 12:51:27 +02:00
|
|
|
// Typeahead
|
|
|
|
|
$typeahead-shadow: 0 5px 10px 0 $black;
|
|
|
|
|
$typeahead-selected-bg: $dark-4;
|
|
|
|
|
$typeahead-selected-color: $blue;
|
|
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
// Dropdowns
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$dropdownBackground: $dark-3;
|
|
|
|
|
$dropdownBorder: rgba(0, 0, 0, 0.2);
|
|
|
|
|
$dropdownDividerTop: transparent;
|
|
|
|
|
$dropdownDividerBottom: #444;
|
|
|
|
|
$dropdownDivider: $dropdownDividerBottom;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$dropdownLinkColor: $text-color;
|
|
|
|
|
$dropdownLinkColorHover: $white;
|
|
|
|
|
$dropdownLinkColorActive: $white;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$dropdownLinkBackgroundActive: $dark-4;
|
|
|
|
|
$dropdownLinkBackgroundHover: $dark-4;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
|
|
|
|
// COMPONENT VARIABLES
|
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$placeholderText: darken($text-color, 25%);
|
2016-02-15 15:27:41 +01:00
|
|
|
|
|
|
|
|
// Horizontal forms & lists
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$horizontalComponentOffset: 180px;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
|
|
|
|
// Wells
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
|
|
|
|
|
$navbarHeight: 55px;
|
|
|
|
|
$navbarBackground: $panel-bg;
|
|
|
|
|
$navbarBorder: 1px solid $dark-3;
|
|
|
|
|
$navbarShadow: 0 0 20px black;
|
|
|
|
|
|
|
|
|
|
$navbarLinkColor: $gray-4;
|
|
|
|
|
|
|
|
|
|
$navbarButtonBackground: $navbarBackground;
|
2017-06-12 21:11:22 +02:00
|
|
|
$navbarButtonBackgroundHighlight: $body-bg;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2018-01-18 14:40:08 +01:00
|
|
|
$navbar-button-border: #2f2f32;
|
2017-12-05 12:48:16 +01:00
|
|
|
|
2016-02-15 16:02:58 +01:00
|
|
|
// Sidemenu
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$side-menu-bg: $black;
|
2018-03-06 14:16:10 +01:00
|
|
|
$side-menu-bg-mobile: $side-menu-bg;
|
2017-06-08 22:17:43 +02:00
|
|
|
$side-menu-item-hover-bg: $dark-2;
|
2017-12-19 16:22:41 +01:00
|
|
|
$side-menu-shadow: 0 0 20px black;
|
|
|
|
|
$side-menu-link-color: $link-color;
|
2016-02-15 16:02:58 +01:00
|
|
|
|
2017-06-12 16:46:02 +02:00
|
|
|
// Menu dropdowns
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$menu-dropdown-bg: $body-bg;
|
|
|
|
|
$menu-dropdown-hover-bg: $dark-2;
|
2017-06-12 21:11:22 +02:00
|
|
|
$menu-dropdown-shadow: 5px 5px 20px -5px $black;
|
2017-06-12 16:46:02 +02:00
|
|
|
|
2017-08-15 11:04:26 +02:00
|
|
|
// Breadcrumb
|
|
|
|
|
// -------------------------
|
|
|
|
|
|
2017-12-05 12:48:16 +01:00
|
|
|
// Tabs
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$tab-border-color: $dark-4;
|
2016-02-15 16:02:58 +01:00
|
|
|
|
2018-11-11 17:46:40 +01:00
|
|
|
// Toolbar
|
|
|
|
|
$toolbar-bg: $page-header-bg;
|
|
|
|
|
$toolbar-shadow: 0 0 20px black;
|
|
|
|
|
$toolbar-tab-bg: $gray-blue;
|
|
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
// Pagination
|
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
|
|
// Form states and alerts
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$warning-text-color: $warn;
|
|
|
|
|
$error-text-color: #e84d4d;
|
|
|
|
|
$success-text-color: #12d95a;
|
|
|
|
|
$info-text-color: $blue-dark;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$alert-error-bg: linear-gradient(90deg, #d44939, #e0603d);
|
|
|
|
|
$alert-success-bg: linear-gradient(90deg, #3aa655, #47b274);
|
|
|
|
|
$alert-warning-bg: linear-gradient(90deg, #d44939, #e0603d);
|
|
|
|
|
$alert-info-bg: linear-gradient(100deg, #1a4552, #00374a);
|
2016-02-15 15:27:41 +01:00
|
|
|
|
2016-02-22 11:41:50 +01:00
|
|
|
// popover
|
2017-12-19 16:22:41 +01:00
|
|
|
$popover-bg: $page-bg;
|
|
|
|
|
$popover-color: $text-color;
|
|
|
|
|
$popover-border-color: $dark-4;
|
|
|
|
|
$popover-shadow: 0 0 20px black;
|
2016-02-22 18:46:58 +01:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$popover-help-bg: $btn-secondary-bg;
|
|
|
|
|
$popover-help-color: $text-color;
|
2016-02-22 11:41:50 +01:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$popover-error-bg: $btn-danger-bg;
|
2017-09-12 08:01:44 +02:00
|
|
|
|
2016-04-11 20:33:58 -04:00
|
|
|
// Tooltips and popovers
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$tooltipColor: $popover-help-color;
|
|
|
|
|
$tooltipBackground: $popover-help-bg;
|
|
|
|
|
$tooltipArrowWidth: 5px;
|
|
|
|
|
$tooltipArrowColor: $tooltipBackground;
|
|
|
|
|
$tooltipLinkColor: $link-color;
|
|
|
|
|
$graph-tooltip-bg: $dark-1;
|
2016-04-11 20:33:58 -04:00
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
// images
|
2018-01-18 14:40:08 +01:00
|
|
|
$checkboxImageUrl: '../img/checkbox.png';
|
2016-03-15 09:15:24 +01:00
|
|
|
|
2017-07-31 14:39:33 +02:00
|
|
|
// info box
|
2018-10-05 08:43:56 +02:00
|
|
|
$info-box-border-color: darken($blue, 12%);
|
2017-07-31 14:39:33 +02:00
|
|
|
|
2016-05-24 08:11:28 +02:00
|
|
|
// footer
|
2017-12-19 16:22:41 +01:00
|
|
|
$footer-link-color: $gray-2;
|
|
|
|
|
$footer-link-hover: $gray-4;
|
2016-11-01 16:06:49 +01:00
|
|
|
|
2017-05-20 18:21:41 +02:00
|
|
|
// json-explorer
|
2017-05-20 23:43:59 +02:00
|
|
|
$json-explorer-default-color: $text-color;
|
2017-05-20 22:55:36 +02:00
|
|
|
$json-explorer-string-color: #23d662;
|
|
|
|
|
$json-explorer-number-color: $variable;
|
|
|
|
|
$json-explorer-boolean-color: $variable;
|
2017-12-19 16:22:41 +01:00
|
|
|
$json-explorer-null-color: #eec97d;
|
2017-05-20 18:21:41 +02:00
|
|
|
$json-explorer-undefined-color: rgb(239, 143, 190);
|
2017-12-19 16:22:41 +01:00
|
|
|
$json-explorer-function-color: #fd48cb;
|
2017-05-20 18:21:41 +02:00
|
|
|
$json-explorer-rotate-time: 100ms;
|
|
|
|
|
$json-explorer-toggler-opacity: 0.6;
|
2017-12-19 16:22:41 +01:00
|
|
|
$json-explorer-bracket-color: #9494ff;
|
|
|
|
|
$json-explorer-key-color: #23a0db;
|
|
|
|
|
$json-explorer-url-color: #027bff;
|
2017-05-24 19:14:39 -04:00
|
|
|
|
|
|
|
|
// Changelog and diff
|
|
|
|
|
// -------------------------
|
2017-12-19 16:22:41 +01:00
|
|
|
$diff-label-bg: $dark-2;
|
|
|
|
|
$diff-label-fg: $white;
|
2017-05-24 19:14:39 -04:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$diff-group-bg: $dark-4;
|
|
|
|
|
$diff-arrow-color: $white;
|
2017-05-24 19:14:39 -04:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$diff-json-bg: $dark-4;
|
|
|
|
|
$diff-json-fg: $gray-5;
|
2017-05-24 19:14:39 -04:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$diff-json-added: #457740;
|
|
|
|
|
$diff-json-deleted: #a04338;
|
2017-05-24 19:14:39 -04:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$diff-json-old: #a04338;
|
|
|
|
|
$diff-json-new: #457740;
|
2017-05-24 19:14:39 -04:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$diff-json-changed-fg: $gray-5;
|
2017-06-07 12:39:06 +02:00
|
|
|
$diff-json-changed-num: $text-color;
|
2017-05-24 19:14:39 -04:00
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
$diff-json-icon: $gray-7;
|
2018-07-20 16:02:41 +02:00
|
|
|
|
|
|
|
|
//Submenu
|
|
|
|
|
$variable-option-bg: $blue-dark;
|
2018-11-16 13:02:29 +01:00
|
|
|
|
|
|
|
|
//Switch Slider
|
|
|
|
|
// -------------------------
|
2018-11-16 12:45:19 -08:00
|
|
|
$switch-bg: $input-bg;
|
2018-11-16 13:02:29 +01:00
|
|
|
$switch-slider-color: $dark-2;
|
|
|
|
|
$switch-slider-off-bg: $gray-1;
|
|
|
|
|
$switch-slider-on-bg: linear-gradient(90deg, $orange, $red);
|
|
|
|
|
$switch-slider-shadow: 0 0 3px black;
|
2018-11-16 16:35:04 +01:00
|
|
|
|
|
|
|
|
//Checkbox
|
|
|
|
|
// -------------------------
|
|
|
|
|
$checkbox-bg: $dark-1;
|
|
|
|
|
$checkbox-border: 1px solid $gray-2;
|
|
|
|
|
$checkbox-checked-bg: linear-gradient(0deg, $orange, $red);
|
|
|
|
|
$checkbox-color: $dark-1;
|