@kolking/react-ui 1.5.0 → 1.7.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/dist/{Input-DbQTM4UI.js → Input-D46mAsdt.js} +1 -1
- package/dist/ValidationTooltip-D8d9O6Re.js +31 -0
- package/dist/components/Avatar/Avatar.js +29 -20
- package/dist/components/Badge/Badge.js +11 -11
- package/dist/components/Breadcrumbs/Breadcrumbs.d.ts +13 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.js +40 -0
- package/dist/components/Breadcrumbs/index.d.ts +1 -0
- package/dist/components/Breadcrumbs/index.js +4 -0
- package/dist/components/Button/Button.js +1 -1
- package/dist/components/Dialog/Dialog.d.ts +9 -5
- package/dist/components/Dialog/Dialog.js +68 -45
- package/dist/components/Dialog/useDialog.d.ts +2 -1
- package/dist/components/Dialog/useDialog.js +29 -42
- package/dist/components/Dialog/withDialog.d.ts +1 -1
- package/dist/components/Fields/Checkbox.js +15 -15
- package/dist/components/Fields/Input.js +2 -2
- package/dist/components/Fields/Numeric.d.ts +8 -2
- package/dist/components/Fields/Numeric.js +22 -22
- package/dist/components/Fields/Radio.js +11 -11
- package/dist/components/Fields/Range.d.ts +20 -0
- package/dist/components/Fields/Range.js +54 -0
- package/dist/components/Fields/Select.js +1 -1
- package/dist/components/Fields/Switch.js +11 -11
- package/dist/components/Fields/Textarea.js +1 -1
- package/dist/components/Fields/ValidationTooltip.d.ts +1 -1
- package/dist/components/Fields/ValidationTooltip.js +3 -2
- package/dist/components/Fields/index.d.ts +1 -0
- package/dist/components/Fields/index.js +14 -12
- package/dist/components/Heading/Heading.js +12 -12
- package/dist/components/Icon/Icon.js +7 -7
- package/dist/components/Menu/Menu.d.ts +6 -2
- package/dist/components/Menu/Menu.js +57 -51
- package/dist/components/Menu/MenuContext.d.ts +1 -0
- package/dist/components/Menu/MenuItem.d.ts +2 -3
- package/dist/components/Menu/MenuItem.js +23 -29
- package/dist/components/Notice/Notice.js +30 -30
- package/dist/components/Progress/ProgressBar.js +30 -23
- package/dist/components/Progress/ProgressCircular.js +13 -12
- package/dist/components/Segmented/Segmented.js +42 -34
- package/dist/components/Spinner/Spinner.js +1 -1
- package/dist/components/Tag/Tag.js +12 -12
- package/dist/components/ToggleButton/ToggleButton.d.ts +15 -1
- package/dist/components/ToggleButton/ToggleButton.js +17 -12
- package/dist/components/ToggleButton/ToggleGroup.js +34 -31
- package/dist/components/Tooltip/Tooltip.d.ts +2 -1
- package/dist/components/Tooltip/Tooltip.js +59 -56
- package/dist/index.d.ts +1 -0
- package/dist/index.js +66 -62
- package/dist/styles/_theme-default.scss +36 -35
- package/dist/styles/style.css +1 -1
- package/dist/styles.module-D1F3R7Vi.js +11 -0
- package/dist/utils/helpers.d.ts +1 -1
- package/dist/utils/helpers.js +3 -3
- package/package.json +3 -1
- package/dist/ValidationTooltip-BgSwl0hJ.js +0 -30
- package/dist/components/Dialog/DialogFocusTrap.d.ts +0 -2
- package/dist/components/Dialog/DialogFocusTrap.js +0 -17
- package/dist/styles.module-CUhWny5T.js +0 -11
|
@@ -1,16 +1,21 @@
|
|
|
1
1
|
import { jsx as i } from "react/jsx-runtime";
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
{
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
import d from "react";
|
|
3
|
+
import { Button as f } from "../Button/Button.js";
|
|
4
|
+
const e = d.forwardRef(
|
|
5
|
+
({ selected: a = !1, role: o, ...r }, t) => /* @__PURE__ */ i(
|
|
6
|
+
f,
|
|
7
|
+
{
|
|
8
|
+
...r,
|
|
9
|
+
ref: t,
|
|
10
|
+
role: o,
|
|
11
|
+
"data-toggle-button": !0,
|
|
12
|
+
"data-selected": a,
|
|
13
|
+
variant: a ? "primary" : "secondary",
|
|
14
|
+
"aria-checked": o === "radio" ? a : void 0,
|
|
15
|
+
"aria-pressed": o !== "radio" ? a : void 0
|
|
16
|
+
}
|
|
17
|
+
)
|
|
13
18
|
);
|
|
14
19
|
export {
|
|
15
|
-
|
|
20
|
+
e as ToggleButton
|
|
16
21
|
};
|
|
@@ -1,43 +1,46 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import
|
|
3
|
-
import x from "
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import t from "react";
|
|
3
|
+
import { Composite as _, CompositeItem as x } from "@floating-ui/react";
|
|
4
|
+
import h from "classnames";
|
|
5
|
+
import { cssProps as k } from "../../utils/helpers.js";
|
|
6
|
+
const B = "ToggleButton_group_yo9Nc", l = {
|
|
7
|
+
group: B
|
|
8
|
+
}, E = ({
|
|
8
9
|
variant: o = "inline",
|
|
9
|
-
selected:
|
|
10
|
-
disabled:
|
|
11
|
-
equalWidth:
|
|
12
|
-
minWidth:
|
|
13
|
-
maxWidth:
|
|
10
|
+
selected: s,
|
|
11
|
+
disabled: p,
|
|
12
|
+
equalWidth: i,
|
|
13
|
+
minWidth: m,
|
|
14
|
+
maxWidth: c,
|
|
14
15
|
className: n,
|
|
15
16
|
style: g,
|
|
16
|
-
children:
|
|
17
|
-
onSelect:
|
|
18
|
-
...
|
|
17
|
+
children: u,
|
|
18
|
+
onSelect: d,
|
|
19
|
+
...a
|
|
19
20
|
}) => {
|
|
20
|
-
const
|
|
21
|
-
return /* @__PURE__ */
|
|
22
|
-
|
|
21
|
+
const f = o === "block" ? "flex" : void 0, y = i ? "0" : void 0;
|
|
22
|
+
return /* @__PURE__ */ e(
|
|
23
|
+
_,
|
|
23
24
|
{
|
|
24
|
-
...
|
|
25
|
+
...a,
|
|
25
26
|
role: "radiogroup",
|
|
26
27
|
"data-toggle-group": !0,
|
|
27
|
-
className:
|
|
28
|
-
style: { ...g, ...
|
|
29
|
-
children:
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
28
|
+
className: h(l.group, l[o], n),
|
|
29
|
+
style: { ...g, ...k({ display: f, flexBasis: y, minWidth: m, maxWidth: c }) },
|
|
30
|
+
children: t.Children.map(u, (C, r) => /* @__PURE__ */ e(
|
|
31
|
+
x,
|
|
32
|
+
{
|
|
33
|
+
render: t.cloneElement(C, {
|
|
34
|
+
role: "radio",
|
|
35
|
+
disabled: p,
|
|
36
|
+
selected: r === s,
|
|
37
|
+
onClick: () => d(r)
|
|
38
|
+
})
|
|
39
|
+
}
|
|
40
|
+
))
|
|
38
41
|
}
|
|
39
42
|
);
|
|
40
43
|
};
|
|
41
44
|
export {
|
|
42
|
-
|
|
45
|
+
E as ToggleGroup
|
|
43
46
|
};
|
|
@@ -5,10 +5,11 @@ export type TooltipProps = Omit<React.HTMLAttributes<HTMLDivElement>, 'content'
|
|
|
5
5
|
trigger?: Trigger;
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
placement?: Placement;
|
|
8
|
+
anchor?: Element | null;
|
|
8
9
|
content: React.ReactNode;
|
|
9
10
|
children: React.JSX.Element;
|
|
10
11
|
minWidth?: React.CSSProperties['minWidth'];
|
|
11
12
|
maxWidth?: React.CSSProperties['maxWidth'];
|
|
12
13
|
};
|
|
13
|
-
export declare const Tooltip: ({ trigger, placement, content, disabled, minWidth, maxWidth, className, children, ...props }: TooltipProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export declare const Tooltip: ({ trigger, placement, anchor, content, disabled, minWidth, maxWidth, className, children, ...props }: TooltipProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
15
|
export {};
|
|
@@ -1,78 +1,81 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import { useFloating as
|
|
5
|
-
const
|
|
6
|
-
tooltip:
|
|
7
|
-
arrow:
|
|
8
|
-
content:
|
|
9
|
-
},
|
|
1
|
+
import { jsxs as m, Fragment as S, jsx as a } from "react/jsx-runtime";
|
|
2
|
+
import j, { useRef as w, useState as g, useEffect as R } from "react";
|
|
3
|
+
import k from "classnames";
|
|
4
|
+
import { useFloating as C, offset as U, flip as W, shift as b, arrow as A, autoUpdate as B, useInteractions as D, useDismiss as H, useRole as I, useHover as V, useFocus as $, useClick as q, useMergeRefs as z, FloatingPortal as G, FloatingArrow as J } from "@floating-ui/react";
|
|
5
|
+
const K = "Tooltip_tooltip_u1Uix", L = "Tooltip_arrow_NBFiV", Q = "Tooltip_content_lfpfM", f = {
|
|
6
|
+
tooltip: K,
|
|
7
|
+
arrow: L,
|
|
8
|
+
content: Q
|
|
9
|
+
}, et = ({
|
|
10
10
|
trigger: r = "hover focus",
|
|
11
|
-
placement:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
11
|
+
placement: c = "top",
|
|
12
|
+
anchor: l,
|
|
13
|
+
content: h,
|
|
14
|
+
disabled: i,
|
|
15
|
+
minWidth: F,
|
|
16
|
+
maxWidth: _,
|
|
17
|
+
className: v,
|
|
18
|
+
children: o,
|
|
19
|
+
...x
|
|
19
20
|
}) => {
|
|
20
|
-
const
|
|
21
|
-
open:
|
|
22
|
-
placement:
|
|
23
|
-
onOpenChange:
|
|
24
|
-
whileElementsMounted:
|
|
21
|
+
const u = w(null), p = w(null), [d, O] = g(!1), [N, P] = g(!1), { refs: t, context: e, floatingStyles: T } = C({
|
|
22
|
+
open: d,
|
|
23
|
+
placement: c,
|
|
24
|
+
onOpenChange: O,
|
|
25
|
+
whileElementsMounted: B,
|
|
25
26
|
middleware: [
|
|
26
|
-
|
|
27
|
-
U(),
|
|
27
|
+
U(8),
|
|
28
28
|
W(),
|
|
29
|
-
b(
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
b(),
|
|
30
|
+
A(({ placement: s, rects: n }) => (P(
|
|
31
|
+
n.floating.width < n.reference.width && (s.endsWith("-start") || s.endsWith("-end"))
|
|
32
|
+
), { element: u, padding: 8 }))
|
|
32
33
|
]
|
|
33
|
-
}), { getReferenceProps:
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
]),
|
|
40
|
-
|
|
41
|
-
"ref" in
|
|
34
|
+
}), { getReferenceProps: y, getFloatingProps: E } = D([
|
|
35
|
+
H(e),
|
|
36
|
+
I(e, { role: "tooltip" }),
|
|
37
|
+
V(e, { move: !1, enabled: r.includes("hover") }),
|
|
38
|
+
$(e, { enabled: r.includes("focus") }),
|
|
39
|
+
q(e, { enabled: r.includes("click") })
|
|
40
|
+
]), M = z([
|
|
41
|
+
t.setReference,
|
|
42
|
+
"ref" in o ? o.ref : null
|
|
42
43
|
]);
|
|
43
|
-
return
|
|
44
|
-
var
|
|
45
|
-
const
|
|
46
|
-
!
|
|
47
|
-
}, [
|
|
48
|
-
|
|
49
|
-
|
|
44
|
+
return R(() => {
|
|
45
|
+
var n;
|
|
46
|
+
const s = (n = t.domReference.current) == null ? void 0 : n.closest("[data-floating-root]");
|
|
47
|
+
!i && s && (p.current = s);
|
|
48
|
+
}, [t, i]), R(() => {
|
|
49
|
+
l && t.setPositionReference(l);
|
|
50
|
+
}, [t, l]), i ? o : /* @__PURE__ */ m(S, { children: [
|
|
51
|
+
j.cloneElement(o, y({ ref: M, ...o.props })),
|
|
52
|
+
d && /* @__PURE__ */ a(G, { root: p, children: /* @__PURE__ */ m(
|
|
50
53
|
"div",
|
|
51
54
|
{
|
|
52
|
-
...
|
|
53
|
-
ref:
|
|
54
|
-
"data-tooltip":
|
|
55
|
-
className:
|
|
56
|
-
style: { ...
|
|
57
|
-
...
|
|
55
|
+
...x,
|
|
56
|
+
ref: t.setFloating,
|
|
57
|
+
"data-tooltip": c,
|
|
58
|
+
className: k(f.tooltip, v),
|
|
59
|
+
style: { ...T, minWidth: F, maxWidth: _ },
|
|
60
|
+
...E(),
|
|
58
61
|
children: [
|
|
59
|
-
/* @__PURE__ */
|
|
60
|
-
|
|
62
|
+
/* @__PURE__ */ a(
|
|
63
|
+
J,
|
|
61
64
|
{
|
|
62
65
|
width: 12,
|
|
63
66
|
height: 6,
|
|
64
|
-
ref:
|
|
67
|
+
ref: u,
|
|
65
68
|
context: e,
|
|
66
|
-
className:
|
|
67
|
-
staticOffset:
|
|
69
|
+
className: f.arrow,
|
|
70
|
+
staticOffset: N ? 8 : null
|
|
68
71
|
}
|
|
69
72
|
),
|
|
70
|
-
/* @__PURE__ */
|
|
73
|
+
/* @__PURE__ */ a("div", { "data-tooltip-content": !0, className: f.content, children: h })
|
|
71
74
|
]
|
|
72
75
|
}
|
|
73
76
|
) })
|
|
74
77
|
] });
|
|
75
78
|
};
|
|
76
79
|
export {
|
|
77
|
-
|
|
80
|
+
et as Tooltip
|
|
78
81
|
};
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,68 +1,72 @@
|
|
|
1
1
|
import { Avatar as e } from "./components/Avatar/Avatar.js";
|
|
2
2
|
import { Badge as p } from "./components/Badge/Badge.js";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
3
|
+
import { Breadcrumbs as x } from "./components/Breadcrumbs/Breadcrumbs.js";
|
|
4
|
+
import { Button as a } from "./components/Button/Button.js";
|
|
5
|
+
import { Dialog as l, DialogClose as g, DialogContent as n, DialogFooter as s, DialogTitle as u } from "./components/Dialog/Dialog.js";
|
|
6
|
+
import { useDialog as d } from "./components/Dialog/useDialog.js";
|
|
7
|
+
import { withDialog as T } from "./components/Dialog/withDialog.js";
|
|
8
|
+
import { Flex as F } from "./components/Flex/Flex.js";
|
|
9
|
+
import { Checkbox as I } from "./components/Fields/Checkbox.js";
|
|
10
|
+
import { Field as b, FieldDescription as h, FieldLabel as w } from "./components/Fields/Field.js";
|
|
11
|
+
import { I as N } from "./Input-D46mAsdt.js";
|
|
12
|
+
import { Numeric as R } from "./components/Fields/Numeric.js";
|
|
13
|
+
import { Radio as k } from "./components/Fields/Radio.js";
|
|
14
|
+
import { Range as A } from "./components/Fields/Range.js";
|
|
15
|
+
import { Select as H } from "./components/Fields/Select.js";
|
|
16
|
+
import { Switch as j } from "./components/Fields/Switch.js";
|
|
17
|
+
import { Textarea as y } from "./components/Fields/Textarea.js";
|
|
18
|
+
import { V as E } from "./ValidationTooltip-D8d9O6Re.js";
|
|
19
|
+
import { Heading as K } from "./components/Heading/Heading.js";
|
|
20
|
+
import { Icon as Q } from "./components/Icon/Icon.js";
|
|
21
|
+
import { Menu as W } from "./components/Menu/Menu.js";
|
|
22
|
+
import { MenuItem as Y } from "./components/Menu/MenuItem.js";
|
|
23
|
+
import { Notice as _ } from "./components/Notice/Notice.js";
|
|
24
|
+
import { ProgressBar as oo } from "./components/Progress/ProgressBar.js";
|
|
25
|
+
import { ProgressCircular as eo } from "./components/Progress/ProgressCircular.js";
|
|
26
|
+
import { Segmented as po } from "./components/Segmented/Segmented.js";
|
|
27
|
+
import { Spinner as xo } from "./components/Spinner/Spinner.js";
|
|
28
|
+
import { Tag as ao } from "./components/Tag/Tag.js";
|
|
29
|
+
import { ToggleButton as lo } from "./components/ToggleButton/ToggleButton.js";
|
|
30
|
+
import { ToggleGroup as no } from "./components/ToggleButton/ToggleGroup.js";
|
|
31
|
+
import { Tooltip as uo } from "./components/Tooltip/Tooltip.js";
|
|
32
|
+
import { palette as Do } from "./utils/colors.js";
|
|
31
33
|
export {
|
|
32
34
|
e as Avatar,
|
|
33
35
|
p as Badge,
|
|
34
|
-
x as
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
h as
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
lo as
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
36
|
+
x as Breadcrumbs,
|
|
37
|
+
a as Button,
|
|
38
|
+
I as Checkbox,
|
|
39
|
+
l as Dialog,
|
|
40
|
+
g as DialogClose,
|
|
41
|
+
n as DialogContent,
|
|
42
|
+
s as DialogFooter,
|
|
43
|
+
u as DialogTitle,
|
|
44
|
+
b as Field,
|
|
45
|
+
h as FieldDescription,
|
|
46
|
+
w as FieldLabel,
|
|
47
|
+
F as Flex,
|
|
48
|
+
K as Heading,
|
|
49
|
+
Q as Icon,
|
|
50
|
+
N as Input,
|
|
51
|
+
W as Menu,
|
|
52
|
+
Y as MenuItem,
|
|
53
|
+
_ as Notice,
|
|
54
|
+
R as Numeric,
|
|
55
|
+
oo as ProgressBar,
|
|
56
|
+
eo as ProgressCircular,
|
|
57
|
+
k as Radio,
|
|
58
|
+
A as Range,
|
|
59
|
+
po as Segmented,
|
|
60
|
+
H as Select,
|
|
61
|
+
xo as Spinner,
|
|
62
|
+
j as Switch,
|
|
63
|
+
ao as Tag,
|
|
64
|
+
y as Textarea,
|
|
65
|
+
lo as ToggleButton,
|
|
66
|
+
no as ToggleGroup,
|
|
67
|
+
uo as Tooltip,
|
|
68
|
+
E as ValidationTooltip,
|
|
69
|
+
Do as palette,
|
|
70
|
+
d as useDialog,
|
|
71
|
+
T as withDialog
|
|
68
72
|
};
|
|
@@ -5,10 +5,11 @@ $font-family: (
|
|
|
5
5
|
);
|
|
6
6
|
|
|
7
7
|
$font-weight: (
|
|
8
|
-
normal:
|
|
9
|
-
medium:
|
|
10
|
-
bold:
|
|
11
|
-
black:
|
|
8
|
+
normal: 400,
|
|
9
|
+
medium: 600,
|
|
10
|
+
bold: 700,
|
|
11
|
+
black: 800,
|
|
12
|
+
heading: 700,
|
|
12
13
|
);
|
|
13
14
|
|
|
14
15
|
$font-size: (
|
|
@@ -66,11 +67,11 @@ $ease-out-bounce: cubic-bezier(0.1, 1.3, 0.7, 1.1);
|
|
|
66
67
|
$light-colors: (
|
|
67
68
|
black: #000000,
|
|
68
69
|
white: #FFFFFF,
|
|
69
|
-
fg: #
|
|
70
|
+
fg: #101010,
|
|
70
71
|
bg: #FFFFFF,
|
|
72
|
+
input: #FFFFFF,
|
|
71
73
|
popup: #FFFFFF,
|
|
72
74
|
dialog: #FFFFFF,
|
|
73
|
-
input: #FFFFFF,
|
|
74
75
|
backdrop: rgb(0 0 0 / 50%),
|
|
75
76
|
focus: var(--color-accent-400),
|
|
76
77
|
link: var(--color-blue-500),
|
|
@@ -79,28 +80,28 @@ $light-colors: (
|
|
|
79
80
|
);
|
|
80
81
|
|
|
81
82
|
$dark-colors: (
|
|
82
|
-
fg: #
|
|
83
|
-
bg: #
|
|
84
|
-
|
|
83
|
+
fg: #F0F0F0,
|
|
84
|
+
bg: #131313,
|
|
85
|
+
input: #0C0C0C,
|
|
86
|
+
popup: #202020,
|
|
85
87
|
dialog: #191919,
|
|
86
|
-
|
|
87
|
-
backdrop: rgb(0 0 0 / 65%),
|
|
88
|
+
backdrop: rgb(0 0 0 / 70%),
|
|
88
89
|
);
|
|
89
90
|
|
|
90
91
|
$light-palette: (
|
|
91
92
|
colors: (
|
|
92
|
-
gray: #
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
accent: #
|
|
93
|
+
gray: #8D8D96,
|
|
94
|
+
brown: #A08060,
|
|
95
|
+
red: #F03020,
|
|
96
|
+
orange: #FF8000,
|
|
97
|
+
yellow: #FFBB00,
|
|
98
|
+
green: #20B610,
|
|
99
|
+
teal: #30B0C0,
|
|
100
|
+
cyan: #30B0F0,
|
|
101
|
+
blue: #0070F7,
|
|
102
|
+
indigo: #6056ED,
|
|
103
|
+
purple: #A949D9,
|
|
104
|
+
accent: #0070F7,
|
|
104
105
|
),
|
|
105
106
|
tints: (
|
|
106
107
|
50: 95%,
|
|
@@ -117,18 +118,18 @@ $light-palette: (
|
|
|
117
118
|
|
|
118
119
|
$dark-palette: (
|
|
119
120
|
colors: (
|
|
120
|
-
gray: #
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
accent: #
|
|
121
|
+
gray: #656573,
|
|
122
|
+
brown: #A08060,
|
|
123
|
+
red: #F03020,
|
|
124
|
+
orange: #FF8000,
|
|
125
|
+
yellow: #FFBB00,
|
|
126
|
+
green: #20B610,
|
|
127
|
+
teal: #30B0C0,
|
|
128
|
+
cyan: #30B0F0,
|
|
129
|
+
blue: #0080FF,
|
|
130
|
+
indigo: #7369FF,
|
|
131
|
+
purple: #B353E3,
|
|
132
|
+
accent: #0080FF,
|
|
132
133
|
),
|
|
133
134
|
tints: (
|
|
134
135
|
50: 95%,
|