@ozen-ui/kit 0.30.1 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/__inner__/cjs/components/FieldControl/FieldControl.js +6 -1
- package/__inner__/cjs/components/FieldControl/FieldControlContext.d.ts +2 -0
- package/__inner__/cjs/components/FieldControl/FieldControlContext.js +4 -2
- package/__inner__/cjs/components/FieldHint/FieldHint.js +1 -1
- package/__inner__/cjs/components/FieldIcon/FieldIcon.js +1 -1
- package/__inner__/cjs/components/FieldInput/FieldInput.js +1 -1
- package/__inner__/cjs/components/FieldLabel/FieldLabel.js +1 -1
- package/__inner__/cjs/components/InputNumber/InputNumber.js +3 -3
- package/__inner__/cjs/components/InputNumber/types.d.ts +5 -0
- package/__inner__/cjs/components/Select/components/SelectConsumer/SelectInputConsumer.js +2 -2
- package/__inner__/cjs/components/Textarea/components/TextareaConsumer.js +1 -1
- package/__inner__/cjs/components/Textarea/components/TextareaCounter.js +2 -2
- package/__inner__/cjs/components/ThemeProvider/_color/Theme_color_bBusinessDark.css +39 -39
- package/__inner__/cjs/components/ThemeProvider/_color/Theme_color_bBusinessDefault.css +29 -29
- package/__inner__/cjs/components/ThemeProvider/_color/Theme_color_ozenDark.css +66 -66
- package/__inner__/cjs/components/ThemeProvider/_color/Theme_color_ozenDefault.css +57 -57
- package/__inner__/cjs/hooks/useHover/index.d.ts +1 -0
- package/__inner__/cjs/hooks/useHover/index.js +4 -0
- package/__inner__/cjs/hooks/useHover/useHover.d.ts +14 -0
- package/__inner__/cjs/hooks/useHover/useHover.js +37 -0
- package/__inner__/cjs/locale/locale.js +12 -0
- package/__inner__/esm/components/FieldControl/FieldControl.js +7 -2
- package/__inner__/esm/components/FieldControl/FieldControlContext.d.ts +2 -0
- package/__inner__/esm/components/FieldControl/FieldControlContext.js +2 -1
- package/__inner__/esm/components/FieldHint/FieldHint.js +3 -3
- package/__inner__/esm/components/FieldIcon/FieldIcon.js +3 -3
- package/__inner__/esm/components/FieldInput/FieldInput.js +3 -3
- package/__inner__/esm/components/FieldLabel/FieldLabel.js +3 -3
- package/__inner__/esm/components/InputNumber/InputNumber.js +3 -3
- package/__inner__/esm/components/InputNumber/types.d.ts +5 -0
- package/__inner__/esm/components/Select/components/SelectConsumer/SelectInputConsumer.js +3 -3
- package/__inner__/esm/components/Textarea/components/TextareaConsumer.js +3 -3
- package/__inner__/esm/components/Textarea/components/TextareaCounter.js +3 -3
- package/__inner__/esm/components/ThemeProvider/_color/Theme_color_bBusinessDark.css +39 -39
- package/__inner__/esm/components/ThemeProvider/_color/Theme_color_bBusinessDefault.css +29 -29
- package/__inner__/esm/components/ThemeProvider/_color/Theme_color_ozenDark.css +66 -66
- package/__inner__/esm/components/ThemeProvider/_color/Theme_color_ozenDefault.css +57 -57
- package/__inner__/esm/hooks/useHover/index.d.ts +1 -0
- package/__inner__/esm/hooks/useHover/index.js +1 -0
- package/__inner__/esm/hooks/useHover/useHover.d.ts +14 -0
- package/__inner__/esm/hooks/useHover/useHover.js +33 -0
- package/__inner__/esm/locale/locale.js +12 -0
- package/package.json +1 -1
- package/useHover/package.json +5 -0
|
@@ -4,6 +4,8 @@ exports.FieldControl = exports.cnFieldControl = exports.FIELD_CONTROL_DEFAULT_TA
|
|
|
4
4
|
var tslib_1 = require("tslib");
|
|
5
5
|
require("./FieldControl.css");
|
|
6
6
|
var react_1 = tslib_1.__importStar(require("react"));
|
|
7
|
+
var useHover_1 = require("../../hooks/useHover");
|
|
8
|
+
var useMultiRef_1 = require("../../hooks/useMultiRef");
|
|
7
9
|
var useThemeProps_1 = require("../../hooks/useThemeProps");
|
|
8
10
|
var classname_1 = require("../../utils/classname");
|
|
9
11
|
var polymorphicComponentWithRef_1 = require("../../utils/polymorphicComponentWithRef");
|
|
@@ -15,6 +17,8 @@ exports.FieldControl = (0, polymorphicComponentWithRef_1.polymorphicComponentWit
|
|
|
15
17
|
props: inProps,
|
|
16
18
|
name: 'FieldControl',
|
|
17
19
|
});
|
|
20
|
+
var innerRef = (0, react_1.useRef)(null);
|
|
21
|
+
var hovered = (0, useHover_1.useHover)(innerRef);
|
|
18
22
|
var _a = props.as, Tag = _a === void 0 ? exports.FIELD_CONTROL_DEFAULT_TAG : _a, sizeProp = props.size, disabledProp = props.disabled, requiredProp = props.required, errorProp = props.error, fullWidthProp = props.fullWidth, filledProp = props.filled, focusedProp = props.focused, children = props.children, className = props.className, otherProp = tslib_1.__rest(props, ["as", "size", "disabled", "required", "error", "fullWidth", "filled", "focused", "children", "className"]);
|
|
19
23
|
var focused = focusedProp;
|
|
20
24
|
var filled = filledProp;
|
|
@@ -64,7 +68,7 @@ exports.FieldControl = (0, polymorphicComponentWithRef_1.polymorphicComponentWit
|
|
|
64
68
|
filled: filled,
|
|
65
69
|
focused: focused,
|
|
66
70
|
hasLabel: !!label,
|
|
67
|
-
}, [className]) }, otherProp, { ref: ref }),
|
|
71
|
+
}, [className]) }, otherProp, { ref: (0, useMultiRef_1.useMultiRef)([ref, innerRef]) }),
|
|
68
72
|
react_1.default.createElement(index_1.FieldControlContext.Provider, { value: [
|
|
69
73
|
{
|
|
70
74
|
error: error,
|
|
@@ -75,6 +79,7 @@ exports.FieldControl = (0, polymorphicComponentWithRef_1.polymorphicComponentWit
|
|
|
75
79
|
size: size,
|
|
76
80
|
filled: filled,
|
|
77
81
|
focused: focused,
|
|
82
|
+
hovered: hovered,
|
|
78
83
|
value: value,
|
|
79
84
|
},
|
|
80
85
|
setState,
|
|
@@ -9,7 +9,9 @@ export type FieldControlContextValue = {
|
|
|
9
9
|
fullWidth?: boolean;
|
|
10
10
|
filled?: boolean;
|
|
11
11
|
focused?: boolean;
|
|
12
|
+
hovered?: boolean;
|
|
12
13
|
label?: string;
|
|
13
14
|
value?: string | number;
|
|
14
15
|
};
|
|
15
16
|
export declare const FieldControlContext: React.Context<[FieldControlContextValue, Dispatch<SetStateAction<FieldControlContextValue>>]>;
|
|
17
|
+
export declare const useFieldControl: () => [FieldControlContextValue, Dispatch<SetStateAction<FieldControlContextValue>>];
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FieldControlContext = void 0;
|
|
3
|
+
exports.useFieldControl = exports.FieldControlContext = void 0;
|
|
4
4
|
var tslib_1 = require("tslib");
|
|
5
|
-
var react_1 = tslib_1.
|
|
5
|
+
var react_1 = tslib_1.__importStar(require("react"));
|
|
6
6
|
exports.FieldControlContext = react_1.default.createContext([{}, function () { return undefined; }]);
|
|
7
|
+
var useFieldControl = function () { return (0, react_1.useContext)(exports.FieldControlContext); };
|
|
8
|
+
exports.useFieldControl = useFieldControl;
|
|
@@ -10,7 +10,7 @@ exports.FIELD_HINT_DEFAULT_TAG = 'div';
|
|
|
10
10
|
exports.cnFieldHint = (0, classname_1.cn)('FieldHint');
|
|
11
11
|
exports.FieldHint = (0, react_1.forwardRef)(function (_a, ref) {
|
|
12
12
|
var children = _a.children, errorProp = _a.error, disabledProp = _a.disabled, sizeProp = _a.size, className = _a.className, other = tslib_1.__rest(_a, ["children", "error", "disabled", "size", "className"]);
|
|
13
|
-
var context = (0,
|
|
13
|
+
var context = (0, FieldControl_1.useFieldControl)();
|
|
14
14
|
var _b = tslib_1.__read(context, 1), fieldControl = _b[0];
|
|
15
15
|
var Tag = exports.FIELD_HINT_DEFAULT_TAG;
|
|
16
16
|
var size = sizeProp;
|
|
@@ -12,7 +12,7 @@ exports.FIELD_ICON_DEFAULT_TAG = 'div';
|
|
|
12
12
|
exports.cnFieldIcon = (0, classname_1.cn)('FieldIcon');
|
|
13
13
|
exports.FieldIcon = (0, react_1.forwardRef)(function (_a, ref) {
|
|
14
14
|
var icon = _a.icon, className = _a.className, sizeProp = _a.size, other = tslib_1.__rest(_a, ["icon", "className", "size"]);
|
|
15
|
-
var context = (0,
|
|
15
|
+
var context = (0, FieldControl_1.useFieldControl)();
|
|
16
16
|
var _b = tslib_1.__read(context, 1), fieldControl = _b[0];
|
|
17
17
|
var Tag = exports.FIELD_ICON_DEFAULT_TAG;
|
|
18
18
|
var size = sizeProp;
|
|
@@ -13,7 +13,7 @@ exports.cnFieldInput = (0, classname_1.cn)('FieldInput');
|
|
|
13
13
|
exports.FieldInput = (0, polymorphicComponentWithRef_1.polymorphicComponentWithRef)(function (_a, ref) {
|
|
14
14
|
var _b = _a.as, Tag = _b === void 0 ? exports.FIELD_INPUT_DEFAULT_TAG : _b, className = _a.className, requiredProp = _a.required, disabledProp = _a.disabled, valueProp = _a.value, onChange = _a.onChange, defaultValue = _a.defaultValue, children = _a.children, onFocus = _a.onFocus, onBlur = _a.onBlur, other = tslib_1.__rest(_a, ["as", "className", "required", "disabled", "value", "onChange", "defaultValue", "children", "onFocus", "onBlur"]);
|
|
15
15
|
var _c = tslib_1.__read((0, react_1.useState)(), 2), focused = _c[0], setFocused = _c[1];
|
|
16
|
-
var context = (0,
|
|
16
|
+
var context = (0, FieldControl_1.useFieldControl)();
|
|
17
17
|
var _d = tslib_1.__read(context, 2), fieldControl = _d[0], setFieldControl = _d[1];
|
|
18
18
|
var _e = tslib_1.__read((0, useControlled_1.useControlled)({
|
|
19
19
|
value: valueProp,
|
|
@@ -11,7 +11,7 @@ exports.FIELD_LABEL_DEFAULT_TAG = 'span';
|
|
|
11
11
|
exports.cnFieldLabel = (0, classname_1.cn)('FieldLabel');
|
|
12
12
|
exports.FieldLabel = (0, react_1.forwardRef)(function (_a, ref) {
|
|
13
13
|
var focusedProp = _a.focused, children = _a.children, filledProp = _a.filled, shrink = _a.shrink, requiredProp = _a.required, disabledProp = _a.disabled, className = _a.className, sizeProp = _a.size;
|
|
14
|
-
var context = (0,
|
|
14
|
+
var context = (0, FieldControl_1.useFieldControl)();
|
|
15
15
|
var _b = tslib_1.__read(context, 2), fieldControl = _b[0], setFieldControl = _b[1];
|
|
16
16
|
var Tag = exports.FIELD_LABEL_DEFAULT_TAG;
|
|
17
17
|
var size = sizeProp;
|
|
@@ -27,7 +27,7 @@ exports.InputNumber = (0, react_1.forwardRef)(function (inProps, ref) {
|
|
|
27
27
|
props: inProps,
|
|
28
28
|
name: 'InputNumber',
|
|
29
29
|
});
|
|
30
|
-
var _a = props.size, size = _a === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_SIZE : _a, _b = props.step, step = _b === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_STEP : _b, _c = props.autoFocus, autoFocus = _c === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_AUTO_FOCUS : _c, _d = props.error, error = _d === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_ERROR : _d, _e = props.required, required = _e === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_REQUIRED : _e, _f = props.disabled, disabled = _f === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_DISABLED : _f, _g = props.fullWidth, fullWidth = _g === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_FULL_WIDTH : _g, _h = props.defaultValue, defaultValue = _h === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_VALUE : _h, _j = props.min, min = _j === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_MIN : _j, _k = props.max, max = _k === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_MAX : _k, label = props.label, placeholder = props.placeholder, id = props.id, name = props.name, renderLeft = props.renderLeft, renderRight = props.renderRight, hint = props.hint, className = props.className, inputProps = props.inputProps, valueProp = props.value, onChange = props.onChange, labelRef = props.labelRef, labelProps = props.labelProps, bodyProps = props.bodyProps, other = tslib_1.__rest(props, ["size", "step", "autoFocus", "error", "required", "disabled", "fullWidth", "defaultValue", "min", "max", "label", "placeholder", "id", "name", "renderLeft", "renderRight", "hint", "className", "inputProps", "value", "onChange", "labelRef", "labelProps", "bodyProps"]);
|
|
30
|
+
var _a = props.size, size = _a === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_SIZE : _a, _b = props.step, step = _b === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_STEP : _b, _c = props.autoFocus, autoFocus = _c === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_AUTO_FOCUS : _c, _d = props.error, error = _d === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_ERROR : _d, _e = props.required, required = _e === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_REQUIRED : _e, _f = props.disabled, disabled = _f === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_DISABLED : _f, _g = props.fullWidth, fullWidth = _g === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_FULL_WIDTH : _g, _h = props.defaultValue, defaultValue = _h === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_VALUE : _h, _j = props.min, min = _j === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_MIN : _j, _k = props.max, max = _k === void 0 ? constants_1.INPUT_NUMBER_DEFAULT_MAX : _k, label = props.label, placeholder = props.placeholder, id = props.id, name = props.name, renderLeft = props.renderLeft, renderRight = props.renderRight, hint = props.hint, className = props.className, inputProps = props.inputProps, valueProp = props.value, onChange = props.onChange, labelRef = props.labelRef, labelProps = props.labelProps, bodyProps = props.bodyProps, incrementButtonText = props.incrementButtonText, decrementButtonText = props.decrementButtonText, other = tslib_1.__rest(props, ["size", "step", "autoFocus", "error", "required", "disabled", "fullWidth", "defaultValue", "min", "max", "label", "placeholder", "id", "name", "renderLeft", "renderRight", "hint", "className", "inputProps", "value", "onChange", "labelRef", "labelProps", "bodyProps", "incrementButtonText", "decrementButtonText"]);
|
|
31
31
|
var _l = tslib_1.__read((0, useBoolean_1.useBoolean)(false), 2), focused = _l[0], _m = _l[1], onFocus = _m.on, offFocus = _m.off;
|
|
32
32
|
var _o = tslib_1.__read((0, react_1.useState)(null), 2), timeoutId = _o[0], setTimeoutId = _o[1];
|
|
33
33
|
var _p = tslib_1.__read((0, react_1.useState)(null), 2), countDirection = _p[0], setCountDirection = _p[1];
|
|
@@ -137,8 +137,8 @@ exports.InputNumber = (0, react_1.forwardRef)(function (inProps, ref) {
|
|
|
137
137
|
react_1.default.createElement(FieldInput_1.FieldInput, tslib_1.__assign({ id: id, min: min, max: max, step: step, name: name, type: "number", value: valueState, autoFocus: autoFocus, placeholder: placeholder }, inputProps, { onBlur: handleBlur, onFocus: handleFocus, onChange: handleChange, onKeyDown: handleKeyDown, ref: (0, useMultiRef_1.useMultiRef)([inputProps === null || inputProps === void 0 ? void 0 : inputProps.ref, fieldInnerRef]), className: (0, exports.cnInputNumber)('Field', [inputProps === null || inputProps === void 0 ? void 0 : inputProps.className]) }))),
|
|
138
138
|
react_1.default.createElement(FieldIcon_1.FieldIcon, { icon: renderRight }),
|
|
139
139
|
react_1.default.createElement("span", { className: (0, exports.cnInputNumber)('Controls') },
|
|
140
|
-
react_1.default.createElement(IconButton_1.IconButton, { size: size, type: "button", tabIndex: -1, variant: "ghost", icon: icons_1.SortUpIcon, disabled: disabled, "aria-label":
|
|
141
|
-
react_1.default.createElement(IconButton_1.IconButton, { size: size, tabIndex: -1, type: "button", variant: "ghost", icon: icons_1.SortDownIcon, disabled: disabled, "aria-label":
|
|
140
|
+
react_1.default.createElement(IconButton_1.IconButton, { size: size, type: "button", tabIndex: -1, variant: "ghost", icon: icons_1.SortUpIcon, disabled: disabled, "aria-label": incrementButtonText, className: (0, exports.cnInputNumber)('Increment'), onMouseDown: handleMouseDown('increment') }),
|
|
141
|
+
react_1.default.createElement(IconButton_1.IconButton, { size: size, tabIndex: -1, type: "button", variant: "ghost", icon: icons_1.SortDownIcon, disabled: disabled, "aria-label": decrementButtonText, className: (0, exports.cnInputNumber)('Decrement'), onMouseDown: handleMouseDown('decrement') })),
|
|
142
142
|
react_1.default.createElement(Fieldset_1.Fieldset, { className: (0, exports.cnInputNumber)('Fieldset') })),
|
|
143
143
|
react_1.default.createElement(FieldHint_1.FieldHint, null, hint)));
|
|
144
144
|
});
|
|
@@ -67,6 +67,11 @@ export type InputNumberProps = {
|
|
|
67
67
|
max?: number;
|
|
68
68
|
/** Ссылка на корневой DOM-элемент компонента */
|
|
69
69
|
ref?: Ref<HTMLDivElement>;
|
|
70
|
+
/** data-атрибут для тестирования */
|
|
70
71
|
'data-testid'?: string;
|
|
72
|
+
/** Текст для кнопки увеличения числового значения */
|
|
73
|
+
incrementButtonText?: string;
|
|
74
|
+
/** Текст для кнопки уменьшения числового значения */
|
|
75
|
+
decrementButtonText?: string;
|
|
71
76
|
} & InputNumberPropsDeprecated & Omit<HTMLAttributes<HTMLDivElement>, 'value' | 'defaultValue' | 'onChange'>;
|
|
72
77
|
export {};
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.SelectInputConsumer = void 0;
|
|
4
4
|
var tslib_1 = require("tslib");
|
|
5
|
-
var react_1 = tslib_1.
|
|
5
|
+
var react_1 = tslib_1.__importDefault(require("react"));
|
|
6
6
|
var FieldControl_1 = require("../../../FieldControl");
|
|
7
7
|
var index_1 = require("../../index");
|
|
8
8
|
var SelectInputConsumer = function (_a) {
|
|
9
9
|
var id = _a.id, name = _a.name, _b = _a.value, valueProp = _b === void 0 ? '' : _b, placeholderProp = _a.placeholder, defaultValue = _a.defaultValue, inputProps = _a.inputProps, inputRef = _a.inputRef, fieldRef = _a.fieldRef, fieldProps = _a.fieldProps, renderedValue = _a.renderedValue;
|
|
10
|
-
var context = (0,
|
|
10
|
+
var context = (0, FieldControl_1.useFieldControl)();
|
|
11
11
|
var _c = tslib_1.__read(context, 1), fieldControl = _c[0];
|
|
12
12
|
var disabled = fieldControl.disabled, required = fieldControl.required, filled = fieldControl.filled, focused = fieldControl.focused, label = fieldControl.label;
|
|
13
13
|
var hasLabel = !!label;
|
|
@@ -14,7 +14,7 @@ var index_1 = require("./index");
|
|
|
14
14
|
var TextareaConsumer = function (_a) {
|
|
15
15
|
var labelProps = _a.labelProps, labelRef = _a.labelRef, maxLength = _a.maxLength, label = _a.label, id = _a.id, name = _a.name, cols = _a.cols, rows = _a.rows, disabled = _a.disabled, valueProp = _a.value, required = _a.required, defaultValue = _a.defaultValue, placeholder = _a.placeholder, autoFocus = _a.autoFocus, textareaProps = _a.textareaProps, onChange = _a.onChange, textareaRef = _a.textareaRef, expand = _a.expand, hint = _a.hint;
|
|
16
16
|
var fieldRef = (0, react_1.useRef)(null);
|
|
17
|
-
var context = (0,
|
|
17
|
+
var context = (0, FieldControl_1.useFieldControl)();
|
|
18
18
|
var _b = tslib_1.__read(context, 1), value = _b[0].value;
|
|
19
19
|
// autoSize
|
|
20
20
|
(0, react_1.useEffect)(function () {
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.TextareaCounter = void 0;
|
|
4
4
|
var tslib_1 = require("tslib");
|
|
5
|
-
var react_1 = tslib_1.
|
|
5
|
+
var react_1 = tslib_1.__importDefault(require("react"));
|
|
6
6
|
var FieldControl_1 = require("../../FieldControl");
|
|
7
7
|
var index_1 = require("../index");
|
|
8
8
|
var TextareaCounter = function (_a) {
|
|
9
9
|
var _b, _c, _d;
|
|
10
10
|
var maxLength = _a.maxLength, disabledProp = _a.disabled;
|
|
11
|
-
var context = (0,
|
|
11
|
+
var context = (0, FieldControl_1.useFieldControl)();
|
|
12
12
|
var _e = tslib_1.__read(context, 1), fieldControl = _e[0];
|
|
13
13
|
var disabled = disabledProp;
|
|
14
14
|
// maxLength
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
--color-content-error-hover: #cf4a4b;
|
|
19
19
|
--color-content-error-pressed: #9f3b3d;
|
|
20
20
|
--color-content-error-dark: #ffbdbd;
|
|
21
|
-
--color-content-warning: #
|
|
22
|
-
--color-content-warning-hover: #
|
|
23
|
-
--color-content-warning-pressed: #
|
|
24
|
-
--color-content-warning-dark: #
|
|
21
|
+
--color-content-warning: #ffac30;
|
|
22
|
+
--color-content-warning-hover: #cf8d2a;
|
|
23
|
+
--color-content-warning-pressed: #9f6d24;
|
|
24
|
+
--color-content-warning-dark: #ffdeac;
|
|
25
25
|
--color-content-success: #0b0;
|
|
26
26
|
--color-content-success-hover: #039904;
|
|
27
27
|
--color-content-success-pressed: #067607;
|
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
--color-background-action: #0534d0;
|
|
53
53
|
--color-background-action-hover: #023dff;
|
|
54
54
|
--color-background-action-pressed: #3564ff;
|
|
55
|
-
--color-background-action-active-disabled: #
|
|
56
|
-
--color-background-action-light: #
|
|
57
|
-
--color-background-action-light-hover: #
|
|
58
|
-
--color-background-action-light-pressed: #
|
|
59
|
-
--color-background-accent-action-light: #
|
|
60
|
-
--color-background-accent-action-light-hover: #
|
|
61
|
-
--color-background-accent-action-light-pressed: #
|
|
55
|
+
--color-background-action-active-disabled: #0a2171;
|
|
56
|
+
--color-background-action-light: #0e1636;
|
|
57
|
+
--color-background-action-light-hover: #0d1841;
|
|
58
|
+
--color-background-action-light-pressed: #0a2171;
|
|
59
|
+
--color-background-accent-action-light: #0a2171;
|
|
60
|
+
--color-background-accent-action-light-hover: #082ba0;
|
|
61
|
+
--color-background-accent-action-light-pressed: #0534d0;
|
|
62
62
|
--color-background-action-secondary: #7e8194;
|
|
63
63
|
--color-background-action-secondary-hover: #9a9eb5;
|
|
64
64
|
--color-background-action-secondary-pressed: #aeb1c4;
|
|
@@ -72,39 +72,39 @@
|
|
|
72
72
|
--color-background-error: #cf4a4b;
|
|
73
73
|
--color-background-error-hover: #ff5959;
|
|
74
74
|
--color-background-error-pressed: #ff7a7a;
|
|
75
|
-
--color-background-error-light: #
|
|
76
|
-
--color-background-error-light-hover: #
|
|
77
|
-
--color-background-error-light-pressed: #
|
|
78
|
-
--color-background-accent-error-light: #
|
|
79
|
-
--color-background-accent-error-light-hover: #
|
|
80
|
-
--color-background-accent-error-light-pressed: #
|
|
81
|
-
--color-background-warning: #
|
|
82
|
-
--color-background-warning-hover: #
|
|
83
|
-
--color-background-warning-pressed: #
|
|
84
|
-
--color-background-warning-light: #
|
|
85
|
-
--color-background-warning-light-hover: #
|
|
86
|
-
--color-background-warning-light-pressed: #
|
|
87
|
-
--color-background-accent-warning-light: #
|
|
88
|
-
--color-background-accent-warning-light-hover: #
|
|
89
|
-
--color-background-accent-warning-light-pressed: #
|
|
75
|
+
--color-background-error-light: #341a1d;
|
|
76
|
+
--color-background-error-light-hover: #401e20;
|
|
77
|
+
--color-background-error-light-pressed: #702d2e;
|
|
78
|
+
--color-background-accent-error-light: #702d2e;
|
|
79
|
+
--color-background-accent-error-light-hover: #9f3b3d;
|
|
80
|
+
--color-background-accent-error-light-pressed: #cf4a4b;
|
|
81
|
+
--color-background-warning: #cf8d2a;
|
|
82
|
+
--color-background-warning-hover: #ffac30;
|
|
83
|
+
--color-background-warning-pressed: #ffbd59;
|
|
84
|
+
--color-background-warning-light: #342717;
|
|
85
|
+
--color-background-warning-light-hover: #402e18;
|
|
86
|
+
--color-background-warning-light-pressed: #704e1e;
|
|
87
|
+
--color-background-accent-warning-light: #704e1e;
|
|
88
|
+
--color-background-accent-warning-light-hover: #9f6d24;
|
|
89
|
+
--color-background-accent-warning-light-pressed: #cf8d2a;
|
|
90
90
|
--color-background-success: #039904;
|
|
91
91
|
--color-background-success-hover: #0b0;
|
|
92
92
|
--color-background-success-pressed: #33c933;
|
|
93
|
-
--color-background-success-light: #
|
|
94
|
-
--color-background-success-light-hover: #
|
|
95
|
-
--color-background-success-light-pressed: #
|
|
96
|
-
--color-background-accent-success-light: #
|
|
97
|
-
--color-background-accent-success-light-hover: #
|
|
98
|
-
--color-background-accent-success-light-pressed: #
|
|
93
|
+
--color-background-success-light: #0e290f;
|
|
94
|
+
--color-background-success-light-hover: #0d310e;
|
|
95
|
+
--color-background-success-light-pressed: #0a540b;
|
|
96
|
+
--color-background-accent-success-light: #0a540b;
|
|
97
|
+
--color-background-accent-success-light-hover: #067607;
|
|
98
|
+
--color-background-accent-success-light-pressed: #039904;
|
|
99
99
|
--color-background-info: #6a05d0;
|
|
100
100
|
--color-background-info-hover: #8002ff;
|
|
101
101
|
--color-background-info-pressed: #9a35ff;
|
|
102
|
-
--color-background-info-light: #
|
|
103
|
-
--color-background-info-light-hover: #
|
|
104
|
-
--color-background-info-light-pressed: #
|
|
105
|
-
--color-background-accent-info-light: #
|
|
106
|
-
--color-background-accent-info-light-hover: #
|
|
107
|
-
--color-background-accent-info-light-pressed: #
|
|
102
|
+
--color-background-info-light: #210d36;
|
|
103
|
+
--color-background-info-light-hover: #270d41;
|
|
104
|
+
--color-background-info-light-pressed: #3d0a71;
|
|
105
|
+
--color-background-accent-info-light: #3d0a71;
|
|
106
|
+
--color-background-accent-info-light-hover: #5307a0;
|
|
107
|
+
--color-background-accent-info-light-pressed: #6a05d0;
|
|
108
108
|
--color-background-overlay: rgb(0 0 0 / 60%);
|
|
109
109
|
--color-background-ghost: rgb(255 255 255 / 10%);
|
|
110
110
|
--color-background-ghost-hover: rgb(255 255 255 / 20%);
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
--color-border-action-secondary-hover: #c2c5d3;
|
|
127
127
|
--color-border-action-secondary-pressed: #aeb1c4;
|
|
128
128
|
--color-border-error: #cf4a4b;
|
|
129
|
-
--color-border-warning: #
|
|
129
|
+
--color-border-warning: #cf8d2a;
|
|
130
130
|
--color-border-success: #039904;
|
|
131
131
|
--color-border-info: #6a05d0;
|
|
132
132
|
--color-border-main-on: #fff;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
--color-content-primary: #17161a;
|
|
3
3
|
--color-content-secondary: #636574;
|
|
4
4
|
--color-content-tertiary: #7e8194;
|
|
5
|
-
--color-content-disabled: #
|
|
5
|
+
--color-content-disabled: #9a9eb5;
|
|
6
6
|
--color-content-ghost-disabled: rgb(255 255 255 / 40%);
|
|
7
7
|
--color-content-action: #023dff;
|
|
8
8
|
--color-content-action-hover: #0534d0;
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
--color-content-error-hover: #cf4a4b;
|
|
18
18
|
--color-content-error-pressed: #9f3b3d;
|
|
19
19
|
--color-content-error-dark: #702d2e;
|
|
20
|
-
--color-content-warning: #
|
|
21
|
-
--color-content-warning-hover: #
|
|
22
|
-
--color-content-warning-pressed: #
|
|
23
|
-
--color-content-warning-dark: #
|
|
20
|
+
--color-content-warning: #ffac30;
|
|
21
|
+
--color-content-warning-hover: #cf8d2a;
|
|
22
|
+
--color-content-warning-pressed: #9f6d24;
|
|
23
|
+
--color-content-warning-dark: #704e1e;
|
|
24
24
|
--color-content-success: #0b0;
|
|
25
25
|
--color-content-success-hover: #039904;
|
|
26
26
|
--color-content-success-pressed: #067607;
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
--color-background-action: #023dff;
|
|
52
52
|
--color-background-action-hover: #0534d0;
|
|
53
53
|
--color-background-action-pressed: #082ba0;
|
|
54
|
-
--color-background-action-active-disabled: #
|
|
55
|
-
--color-background-action-light: #
|
|
56
|
-
--color-background-action-light-hover: #
|
|
57
|
-
--color-background-action-light-pressed: #
|
|
54
|
+
--color-background-action-active-disabled: #9ab1ff;
|
|
55
|
+
--color-background-action-light: #d9e2ff;
|
|
56
|
+
--color-background-action-light-hover: #ccd8ff;
|
|
57
|
+
--color-background-action-light-pressed: #9ab1ff;
|
|
58
58
|
--color-background-accent-action-light: #0534d0;
|
|
59
59
|
--color-background-accent-action-light-hover: #082ba0;
|
|
60
60
|
--color-background-accent-action-light-pressed: #0a2171;
|
|
@@ -71,36 +71,36 @@
|
|
|
71
71
|
--color-background-error: #ff5959;
|
|
72
72
|
--color-background-error-hover: #cf4a4b;
|
|
73
73
|
--color-background-error-pressed: #9f3b3d;
|
|
74
|
-
--color-background-error-light: #
|
|
75
|
-
--color-background-error-light-hover: #
|
|
76
|
-
--color-background-error-light-pressed: #
|
|
74
|
+
--color-background-error-light: #ffe6e6;
|
|
75
|
+
--color-background-error-light-hover: #ffdede;
|
|
76
|
+
--color-background-error-light-pressed: #ffbdbd;
|
|
77
77
|
--color-background-accent-error-light: #9f3b3d;
|
|
78
78
|
--color-background-accent-error-light-hover: #702d2e;
|
|
79
79
|
--color-background-accent-error-light-pressed: #401e20;
|
|
80
|
-
--color-background-warning: #
|
|
81
|
-
--color-background-warning-hover: #
|
|
82
|
-
--color-background-warning-pressed: #
|
|
83
|
-
--color-background-warning-light: #
|
|
84
|
-
--color-background-warning-light-hover: #
|
|
85
|
-
--color-background-warning-light-pressed: #
|
|
86
|
-
--color-background-accent-warning-light: #
|
|
87
|
-
--color-background-accent-warning-light-hover: #
|
|
88
|
-
--color-background-accent-warning-light-pressed: #
|
|
80
|
+
--color-background-warning: #ffac30;
|
|
81
|
+
--color-background-warning-hover: #cf8d2a;
|
|
82
|
+
--color-background-warning-pressed: #9f6d24;
|
|
83
|
+
--color-background-warning-light: #fff3e0;
|
|
84
|
+
--color-background-warning-light-hover: #ffeed6;
|
|
85
|
+
--color-background-warning-light-pressed: #ffdeac;
|
|
86
|
+
--color-background-accent-warning-light: #9f6d24;
|
|
87
|
+
--color-background-accent-warning-light-hover: #704e1e;
|
|
88
|
+
--color-background-accent-warning-light-pressed: #402e18;
|
|
89
89
|
--color-background-success: #0b0;
|
|
90
90
|
--color-background-success-hover: #039904;
|
|
91
91
|
--color-background-success-pressed: #067607;
|
|
92
|
-
--color-background-success-light: #
|
|
93
|
-
--color-background-success-light-hover: #
|
|
94
|
-
--color-background-success-light-pressed: #
|
|
92
|
+
--color-background-success-light: #d9f5d9;
|
|
93
|
+
--color-background-success-light-hover: #ccf1cc;
|
|
94
|
+
--color-background-success-light-pressed: #99e499;
|
|
95
95
|
--color-background-accent-success-light: #067607;
|
|
96
96
|
--color-background-accent-success-light-hover: #0a540b;
|
|
97
97
|
--color-background-accent-success-light-pressed: #0d310e;
|
|
98
98
|
--color-background-info: #8002ff;
|
|
99
99
|
--color-background-info-hover: #6a05d0;
|
|
100
100
|
--color-background-info-pressed: #5307a0;
|
|
101
|
-
--color-background-info-light: #
|
|
102
|
-
--color-background-info-light-hover: #
|
|
103
|
-
--color-background-info-light-pressed: #
|
|
101
|
+
--color-background-info-light: #edf;
|
|
102
|
+
--color-background-info-light-hover: #e6ccff;
|
|
103
|
+
--color-background-info-light-pressed: #cd9aff;
|
|
104
104
|
--color-background-accent-info-light: #5307a0;
|
|
105
105
|
--color-background-accent-info-light-hover: #3d0a71;
|
|
106
106
|
--color-background-accent-info-light-pressed: #270d41;
|
|
@@ -126,13 +126,13 @@
|
|
|
126
126
|
--color-border-action-secondary-hover: #1e1d22;
|
|
127
127
|
--color-border-action-secondary-pressed: #17161a;
|
|
128
128
|
--color-border-error: #ff5959;
|
|
129
|
-
--color-border-warning: #
|
|
129
|
+
--color-border-warning: #ffac30;
|
|
130
130
|
--color-border-success: #0b0;
|
|
131
131
|
--color-border-info: #8002ff;
|
|
132
132
|
--color-border-main-on: #fff;
|
|
133
133
|
--color-border-accent-main: #989aa5;
|
|
134
134
|
--color-border-accent-disabled: #5f6374;
|
|
135
|
-
--color-border-accent-focused: #
|
|
135
|
+
--color-border-accent-focused: #0e1636;
|
|
136
136
|
--color-accent-main-hover: #1b1c24;
|
|
137
137
|
--color-accent-main-pressed: #252732;
|
|
138
138
|
--color-accent-primary-hover: #252732;
|
|
@@ -9,27 +9,27 @@
|
|
|
9
9
|
--color-content-action-hover: #039904;
|
|
10
10
|
--color-content-action-pressed: #067607;
|
|
11
11
|
--color-content-action-dark: #99e499;
|
|
12
|
-
--color-content-action-secondary: #
|
|
13
|
-
--color-content-action-secondary-hover: #
|
|
14
|
-
--color-content-action-secondary-pressed: #
|
|
15
|
-
--color-content-action-secondary-dark: #
|
|
12
|
+
--color-content-action-secondary: #9a9eb5;
|
|
13
|
+
--color-content-action-secondary-hover: #7e8194;
|
|
14
|
+
--color-content-action-secondary-pressed: #636574;
|
|
15
|
+
--color-content-action-secondary-dark: #d7d8e1;
|
|
16
16
|
--color-background-main: #1e1d22;
|
|
17
17
|
--color-content-error: #ff5959;
|
|
18
18
|
--color-content-error-hover: #cf4a4b;
|
|
19
19
|
--color-content-error-pressed: #9f3b3d;
|
|
20
20
|
--color-content-error-dark: #ffbdbd;
|
|
21
|
-
--color-content-warning: #
|
|
22
|
-
--color-content-warning-hover: #
|
|
23
|
-
--color-content-warning-pressed: #
|
|
24
|
-
--color-content-warning-dark: #
|
|
21
|
+
--color-content-warning: #ffac30;
|
|
22
|
+
--color-content-warning-hover: #cf8d2a;
|
|
23
|
+
--color-content-warning-pressed: #9f6d24;
|
|
24
|
+
--color-content-warning-dark: #ffdeac;
|
|
25
25
|
--color-content-success: #0b0;
|
|
26
26
|
--color-content-success-hover: #039904;
|
|
27
27
|
--color-content-success-pressed: #067607;
|
|
28
28
|
--color-content-success-dark: #99e499;
|
|
29
|
-
--color-content-info: #
|
|
30
|
-
--color-content-info-hover: #
|
|
31
|
-
--color-content-info-pressed: #
|
|
32
|
-
--color-content-info-dark: #
|
|
29
|
+
--color-content-info: #023dff;
|
|
30
|
+
--color-content-info-hover: #0534d0;
|
|
31
|
+
--color-content-info-pressed: #082ba0;
|
|
32
|
+
--color-content-info-dark: #9ab1ff;
|
|
33
33
|
--color-content-primary-inverse: #1e1d22;
|
|
34
34
|
--color-background-main-inverse: #d9dade;
|
|
35
35
|
--color-content-accent-secondary: #989aa5;
|
|
@@ -52,59 +52,59 @@
|
|
|
52
52
|
--color-background-action: #039904;
|
|
53
53
|
--color-background-action-hover: #0b0;
|
|
54
54
|
--color-background-action-pressed: #33c933;
|
|
55
|
-
--color-background-action-active-disabled: #
|
|
56
|
-
--color-background-action-light: #
|
|
57
|
-
--color-background-action-light-hover: #
|
|
58
|
-
--color-background-action-light-pressed: #
|
|
59
|
-
--color-background-accent-action-light: #
|
|
60
|
-
--color-background-accent-action-light-hover: #
|
|
61
|
-
--color-background-accent-action-light-pressed: #
|
|
62
|
-
--color-background-action-secondary: #
|
|
63
|
-
--color-background-action-secondary-hover: #
|
|
64
|
-
--color-background-action-secondary-pressed: #
|
|
65
|
-
--color-background-action-secondary-active-disabled: #
|
|
66
|
-
--color-background-action-secondary-light: #
|
|
67
|
-
--color-background-action-secondary-light-hover: #
|
|
68
|
-
--color-background-action-secondary-light-pressed: #
|
|
69
|
-
--color-background-accent-action-secondary-light: #
|
|
70
|
-
--color-background-accent-action-secondary-light-hover: #
|
|
71
|
-
--color-background-accent-action-secondary-light-pressed: #
|
|
55
|
+
--color-background-action-active-disabled: #0a540b;
|
|
56
|
+
--color-background-action-light: #0e290f;
|
|
57
|
+
--color-background-action-light-hover: #0d310e;
|
|
58
|
+
--color-background-action-light-pressed: #0a540b;
|
|
59
|
+
--color-background-accent-action-light: #0a540b;
|
|
60
|
+
--color-background-accent-action-light-hover: #067607;
|
|
61
|
+
--color-background-accent-action-light-pressed: #039904;
|
|
62
|
+
--color-background-action-secondary: #7e8194;
|
|
63
|
+
--color-background-action-secondary-hover: #9a9eb5;
|
|
64
|
+
--color-background-action-secondary-pressed: #aeb1c4;
|
|
65
|
+
--color-background-action-secondary-active-disabled: #636574;
|
|
66
|
+
--color-background-action-secondary-light: #2c2c33;
|
|
67
|
+
--color-background-action-secondary-light-hover: #636574;
|
|
68
|
+
--color-background-action-secondary-light-pressed: #474853;
|
|
69
|
+
--color-background-accent-action-secondary-light: #2c2c33;
|
|
70
|
+
--color-background-accent-action-secondary-light-hover: #474853;
|
|
71
|
+
--color-background-accent-action-secondary-light-pressed: #636574;
|
|
72
72
|
--color-background-error: #cf4a4b;
|
|
73
73
|
--color-background-error-hover: #ff5959;
|
|
74
74
|
--color-background-error-pressed: #ff7a7a;
|
|
75
|
-
--color-background-error-light: #
|
|
76
|
-
--color-background-error-light-hover: #
|
|
77
|
-
--color-background-error-light-pressed: #
|
|
78
|
-
--color-background-accent-error-light: #
|
|
79
|
-
--color-background-accent-error-light-hover: #
|
|
80
|
-
--color-background-accent-error-light-pressed: #
|
|
81
|
-
--color-background-warning: #
|
|
82
|
-
--color-background-warning-hover: #
|
|
83
|
-
--color-background-warning-pressed: #
|
|
84
|
-
--color-background-warning-light: #
|
|
85
|
-
--color-background-warning-light-hover: #
|
|
86
|
-
--color-background-warning-light-pressed: #
|
|
87
|
-
--color-background-accent-warning-light: #
|
|
88
|
-
--color-background-accent-warning-light-hover: #
|
|
89
|
-
--color-background-accent-warning-light-pressed: #
|
|
75
|
+
--color-background-error-light: #341a1d;
|
|
76
|
+
--color-background-error-light-hover: #401e20;
|
|
77
|
+
--color-background-error-light-pressed: #702d2e;
|
|
78
|
+
--color-background-accent-error-light: #702d2e;
|
|
79
|
+
--color-background-accent-error-light-hover: #9f3b3d;
|
|
80
|
+
--color-background-accent-error-light-pressed: #cf4a4b;
|
|
81
|
+
--color-background-warning: #cf8d2a;
|
|
82
|
+
--color-background-warning-hover: #ffac30;
|
|
83
|
+
--color-background-warning-pressed: #ffbd59;
|
|
84
|
+
--color-background-warning-light: #342717;
|
|
85
|
+
--color-background-warning-light-hover: #402e18;
|
|
86
|
+
--color-background-warning-light-pressed: #704e1e;
|
|
87
|
+
--color-background-accent-warning-light: #704e1e;
|
|
88
|
+
--color-background-accent-warning-light-hover: #9f6d24;
|
|
89
|
+
--color-background-accent-warning-light-pressed: #cf8d2a;
|
|
90
90
|
--color-background-success: #039904;
|
|
91
91
|
--color-background-success-hover: #0b0;
|
|
92
92
|
--color-background-success-pressed: #33c933;
|
|
93
|
-
--color-background-success-light: #
|
|
94
|
-
--color-background-success-light-hover: #
|
|
95
|
-
--color-background-success-light-pressed: #
|
|
96
|
-
--color-background-accent-success-light: #
|
|
97
|
-
--color-background-accent-success-light-hover: #
|
|
98
|
-
--color-background-accent-success-light-pressed: #
|
|
99
|
-
--color-background-info: #
|
|
100
|
-
--color-background-info-hover: #
|
|
101
|
-
--color-background-info-pressed: #
|
|
102
|
-
--color-background-info-light: #
|
|
103
|
-
--color-background-info-light-hover: #
|
|
104
|
-
--color-background-info-light-pressed: #
|
|
105
|
-
--color-background-accent-info-light: #
|
|
106
|
-
--color-background-accent-info-light-hover: #
|
|
107
|
-
--color-background-accent-info-light-pressed: #
|
|
93
|
+
--color-background-success-light: #0e290f;
|
|
94
|
+
--color-background-success-light-hover: #0d310e;
|
|
95
|
+
--color-background-success-light-pressed: #0a540b;
|
|
96
|
+
--color-background-accent-success-light: #0a540b;
|
|
97
|
+
--color-background-accent-success-light-hover: #067607;
|
|
98
|
+
--color-background-accent-success-light-pressed: #039904;
|
|
99
|
+
--color-background-info: #0534d0;
|
|
100
|
+
--color-background-info-hover: #023dff;
|
|
101
|
+
--color-background-info-pressed: #3564ff;
|
|
102
|
+
--color-background-info-light: #0e1636;
|
|
103
|
+
--color-background-info-light-hover: #0d1841;
|
|
104
|
+
--color-background-info-light-pressed: #0a2171;
|
|
105
|
+
--color-background-accent-info-light: #0a2171;
|
|
106
|
+
--color-background-accent-info-light-hover: #082ba0;
|
|
107
|
+
--color-background-accent-info-light-pressed: #0534d0;
|
|
108
108
|
--color-background-overlay: rgb(0 0 0 / 60%);
|
|
109
109
|
--color-background-ghost: rgb(255 255 255 / 10%);
|
|
110
110
|
--color-background-ghost-hover: rgb(255 255 255 / 20%);
|
|
@@ -118,21 +118,21 @@
|
|
|
118
118
|
--color-border-secondary-pressed: #636574;
|
|
119
119
|
--color-border-disabled: #2c2c33;
|
|
120
120
|
--color-border-ghost-disabled: rgb(255 255 255 / 40%);
|
|
121
|
-
--color-border-focused: #
|
|
121
|
+
--color-border-focused: #0e290f;
|
|
122
122
|
--color-border-action: #067607;
|
|
123
123
|
--color-border-action-hover: #0a540b;
|
|
124
124
|
--color-border-action-pressed: #0d310e;
|
|
125
|
-
--color-border-action-secondary: #
|
|
126
|
-
--color-border-action-secondary-hover: #
|
|
127
|
-
--color-border-action-secondary-pressed: #
|
|
125
|
+
--color-border-action-secondary: #d7d8e1;
|
|
126
|
+
--color-border-action-secondary-hover: #c2c5d3;
|
|
127
|
+
--color-border-action-secondary-pressed: #aeb1c4;
|
|
128
128
|
--color-border-error: #cf4a4b;
|
|
129
|
-
--color-border-warning: #
|
|
129
|
+
--color-border-warning: #cf8d2a;
|
|
130
130
|
--color-border-success: #039904;
|
|
131
|
-
--color-border-info: #
|
|
131
|
+
--color-border-info: #0534d0;
|
|
132
132
|
--color-border-main-on: #fff;
|
|
133
133
|
--color-border-accent-main: #989aa5;
|
|
134
134
|
--color-border-accent-disabled: #5f6374;
|
|
135
|
-
--color-border-accent-focused: #
|
|
135
|
+
--color-border-accent-focused: #0e290f;
|
|
136
136
|
--color-accent-main-hover: #1b1c24;
|
|
137
137
|
--color-accent-main-pressed: #252732;
|
|
138
138
|
--color-accent-primary-hover: #252732;
|