phantasmal-world/antd.customize.less

55 lines
1.5 KiB
Plaintext
Raw Normal View History

2019-06-01 23:57:27 +08:00
@primary-color: hsl(200, 100%, 50%);
@white: #000;
@black: #fff;
// 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%);
@body-background: hsl(200, 10%, 20%);
@component-background: @body-background;
@text-color: hsl(200, 10%, 90%);
@text-color-secondary: hsl(200, 20%, 80%);
@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%);
@border-radius-base: 2px;
@border-radius-sm: 0px;
2019-06-06 08:24:21 +08:00
@background-color-light: lighten(@component-background, 20%); // background of header and selected item
2019-06-01 23:57:27 +08:00
@background-color-base: fade(@primary-color, 20%); // Default grey background color
@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%);
// Animation
@animation-duration-slow: 0.1s; // Modal
@animation-duration-base: 0.066s;
@animation-duration-fast: 0.033s; // Tooltip
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
// Buttons
2019-06-06 08:24:21 +08:00
@btn-default-bg: lighten(@component-background, 10%);
2019-06-01 23:57:27 +08:00
// Modal
@modal-mask-bg: fade(black, 80%);
// Table
@table-selected-row-bg: @item-active-bg;
@table-row-hover-bg: @item-hover-bg;
// Menu
2019-06-06 08:24:21 +08:00
@menu-dark-bg: @component-background;