2019-06-01 23:57:27 +08:00
|
|
|
@primary-color: hsl(200, 100%, 50%);
|
|
|
|
|
|
|
|
@white: #000;
|
|
|
|
@black: #fff;
|
|
|
|
|
2019-06-20 04:14:48 +08:00
|
|
|
// Color used by default to control hover and active backgrounds and for
|
|
|
|
// alert info backgrounds.
|
2019-06-01 23:57:27 +08:00
|
|
|
@primary-1: fade(@primary-color, 50%);
|
|
|
|
@primary-2: fade(@primary-color, 40%);
|
|
|
|
|
2019-07-24 00:39:47 +08:00
|
|
|
@body-background: hsl(200, 0%, 20%);
|
2019-06-01 23:57:27 +08:00
|
|
|
@component-background: @body-background;
|
2019-07-24 00:39:47 +08:00
|
|
|
@text-color: hsl(200, 0%, 90%);
|
|
|
|
@text-color-secondary: hsl(200, 0%, 80%);
|
2019-06-04 03:41:18 +08:00
|
|
|
@text-color-dark: fade(white, 85%);
|
|
|
|
@text-color-secondary-dark: fade(white, 65%);
|
2019-06-01 23:57:27 +08:00
|
|
|
|
|
|
|
@heading-color: fade(@black, 85%);
|
|
|
|
|
2019-07-24 00:39:47 +08:00
|
|
|
@border-radius-base: 0px;
|
2019-06-01 23:57:27 +08:00
|
|
|
@border-radius-sm: 0px;
|
|
|
|
|
2019-07-24 00:39:47 +08:00
|
|
|
// vertical paddings
|
|
|
|
@padding-lg: 12px; // containers
|
|
|
|
@padding-md: 8px; // small containers and buttons
|
|
|
|
@padding-sm: 6px; // Form controls and items
|
|
|
|
@padding-xs: 4px; // small items
|
|
|
|
|
2019-06-06 08:24:21 +08:00
|
|
|
@background-color-light: lighten(@component-background, 20%); // background of header and selected item
|
2019-07-24 00:39:47 +08:00
|
|
|
@background-color-base: @component-background; // Default grey background color
|
2019-06-01 23:57:27 +08:00
|
|
|
|
|
|
|
@item-active-bg: fade(@primary-color, 20%);
|
|
|
|
@item-hover-bg: fade(@primary-color, 10%);
|
|
|
|
|
2019-06-06 08:24:21 +08:00
|
|
|
@border-color-base: lighten(@component-background, 20%); // base border outline a component
|
|
|
|
@border-color-split: lighten(@component-background, 10%); // split border inside a component
|
2019-06-01 23:57:27 +08:00
|
|
|
|
|
|
|
// Disabled states
|
|
|
|
@disabled-color: fade(#fff, 50%);
|
|
|
|
|
2019-06-04 03:41:18 +08:00
|
|
|
// Animation
|
2019-07-24 00:39:47 +08:00
|
|
|
@animation-duration-slow: 0s; // Modal
|
|
|
|
@animation-duration-base: 0s;
|
|
|
|
@animation-duration-fast: 0s; // Tooltip
|
2019-06-04 03:41:18 +08:00
|
|
|
|
2019-06-01 23:57:27 +08:00
|
|
|
// Input
|
2019-06-06 08:24:21 +08:00
|
|
|
@input-bg: darken(@component-background, 5%);
|
2019-06-01 23:57:27 +08:00
|
|
|
|
2019-07-24 00:39:47 +08:00
|
|
|
@input-height-base: 28px;
|
|
|
|
@input-height-lg: 34px;
|
|
|
|
@input-height-sm: 24px;
|
|
|
|
|
2019-06-01 23:57:27 +08:00
|
|
|
// Buttons
|
2019-06-06 08:24:21 +08:00
|
|
|
@btn-default-bg: lighten(@component-background, 10%);
|
2019-06-01 23:57:27 +08:00
|
|
|
|
2019-07-24 00:39:47 +08:00
|
|
|
@btn-height-base: 28px;
|
|
|
|
@btn-height-lg: 34px;
|
|
|
|
@btn-height-sm: 24px;
|
|
|
|
|
2019-06-01 23:57:27 +08:00
|
|
|
// Modal
|
|
|
|
@modal-mask-bg: fade(black, 80%);
|
|
|
|
|
|
|
|
// Table
|
|
|
|
@table-selected-row-bg: @item-active-bg;
|
2019-06-04 03:41:18 +08:00
|
|
|
@table-row-hover-bg: @item-hover-bg;
|
|
|
|
|
|
|
|
// Menu
|
2019-06-06 08:24:21 +08:00
|
|
|
@menu-dark-bg: @component-background;
|
2019-07-24 00:39:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
// Tabs
|
|
|
|
// ---
|
|
|
|
@tabs-card-head-background: darken(@background-color-base, 5%);
|
|
|
|
@tabs-card-height: 28px;
|
|
|
|
@tabs-card-active-color: white;
|
|
|
|
@tabs-highlight-color: white;
|
|
|
|
@tabs-hover-color: white;
|
|
|
|
@tabs-card-active-color: white;
|
|
|
|
@tabs-ink-bar-color: white;
|