@serendie/ui 2.5.1 → 3.0.0-dev.202602170843
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/README.md +63 -8
- package/dist/client.js +135 -119
- package/dist/components/Avatar/Avatar.js +3 -3
- package/dist/components/Badge/Badge.d.ts +6 -6
- package/dist/components/Badge/Badge.js +21 -21
- package/dist/components/Banner/Banner.d.ts +1 -4
- package/dist/components/Banner/Banner.js +8 -11
- package/dist/components/Button/Button.d.ts +0 -2
- package/dist/components/Button/Button.js +10 -11
- package/dist/components/CheckBox/CheckBox.js +4 -4
- package/dist/components/DatePicker/styles.js +1 -1
- package/dist/components/Divider/Divider.d.ts +2 -2
- package/dist/components/Divider/Divider.js +11 -11
- package/dist/components/Drawer/Drawer.js +3 -3
- package/dist/components/DropdownMenu/DropdownMenu.js +5 -5
- package/dist/components/IconButton/IconButton.d.ts +0 -1
- package/dist/components/IconButton/IconButton.js +0 -1
- package/dist/components/ModalDialog/ModalDialog.js +1 -1
- package/dist/components/ProgressIndicator/ProgressIndicator.js +9 -9
- package/dist/components/Search/Search.js +5 -5
- package/dist/components/Select/Select.js +14 -14
- package/dist/components/Switch/Switch.js +5 -5
- package/dist/components/Toast/Toast.d.ts +3 -5
- package/dist/components/Toast/Toast.js +8 -10
- package/dist/i18n/index.d.ts +1 -1
- package/dist/i18n/provider.d.ts +29 -4
- package/dist/i18n/provider.js +31 -11
- package/dist/index.d.ts +2 -0
- package/dist/index.js +135 -119
- package/dist/node_modules/@serendie/design-token/dist/panda-tokens.js +310 -0
- package/dist/node_modules/@serendie/design-token/dist/tokens.js +126 -0
- package/dist/preset.d.ts +310 -0
- package/dist/styled-system/css/conditions.js +1 -1
- package/dist/styled-system/jsx/is-valid-prop.js +1 -1
- package/dist/styles.css +1 -1
- package/dist/theme/ThemeContext.d.ts +55 -0
- package/dist/theme/ThemeContext.js +15 -0
- package/dist/theme/index.d.ts +3 -0
- package/dist/theme/index.js +11 -0
- package/dist/theme/initColorScheme.d.ts +74 -0
- package/dist/theme/initColorScheme.js +32 -0
- package/dist/theme/useSystemColorScheme.d.ts +15 -0
- package/dist/theme/useSystemColorScheme.js +19 -0
- package/dist/tokens/getToken.d.ts +126 -0
- package/dist/tokens/index.d.ts +310 -0
- package/package.json +2 -2
- package/styled-system/css/conditions.js +1 -1
- package/styled-system/jsx/is-valid-prop.js +1 -1
- package/styled-system/themes/index.d.ts +6 -1
- package/styled-system/themes/theme-konjo-dark.json +5 -0
- package/styled-system/types/conditions.d.ts +2 -0
package/dist/index.js
CHANGED
|
@@ -1,121 +1,137 @@
|
|
|
1
|
-
import { SerendiePreset as
|
|
2
|
-
import {
|
|
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 {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
1
|
+
import { SerendiePreset as r } from "./preset.js";
|
|
2
|
+
import { ThemeContext as a, resolveTheme as m, useThemeContext as p } from "./theme/ThemeContext.js";
|
|
3
|
+
import { useSystemColorScheme as i } from "./theme/useSystemColorScheme.js";
|
|
4
|
+
import { ColorSchemeScript as s, getColorSchemeScript as f } from "./theme/initColorScheme.js";
|
|
5
|
+
import { formatDateByLang as l, getTranslations as d, useTranslations as h } from "./i18n/index.js";
|
|
6
|
+
import { Accordion as C } from "./components/Accordion/Accordion.js";
|
|
7
|
+
import { AccordionGroup as B } from "./components/Accordion/AccordionGroup.js";
|
|
8
|
+
import { Avatar as y, AvatarStyle as T } from "./components/Avatar/Avatar.js";
|
|
9
|
+
import { Badge as P, BadgeCloseButton as D, BadgeStyle as b } from "./components/Badge/Badge.js";
|
|
10
|
+
import { Banner as v } from "./components/Banner/Banner.js";
|
|
11
|
+
import { BottomNavigation as w } from "./components/BottomNavigation/BottomNavigation.js";
|
|
12
|
+
import { BottomNavigationItem as L, BottomNavigationItemStyle as N } from "./components/BottomNavigation/BottomNavigationItem.js";
|
|
13
|
+
import { Button as F, ButtonStyle as G } from "./components/Button/Button.js";
|
|
14
|
+
import { SerendieChartTheme as W } from "./components/Chart/SerendieChartTheme.js";
|
|
15
|
+
import { compactChartMargin as q, defaultChartMargin as z, getChartColor as E, getChartColors as H, legendChartMargin as J, spaciousChartMargin as K, useBarChartProps as O, useChartProps as Q, useLineChartProps as V, usePieChartProps as X } from "./components/Chart/SerendieChartProps.js";
|
|
16
|
+
import { CheckBox as Z, CheckBoxStyle as _, checkboxCheckedIconCss as $, checkboxIconCss as oo, checkboxUncheckedIconCss as eo } from "./components/CheckBox/CheckBox.js";
|
|
17
|
+
import { ChoiceBox as to, ChoiceBoxStyle as ao } from "./components/ChoiceBox/ChoiceBox.js";
|
|
18
|
+
import { DashboardWidget as po } from "./components/DashboardWidget/DashboardWidget.js";
|
|
19
|
+
import { DataTable as io } from "./components/DataTable/index.js";
|
|
20
|
+
import { DatePicker as so } from "./components/DatePicker/DatePicker.js";
|
|
21
|
+
import { Divider as co, DividerStyle as lo } from "./components/Divider/Divider.js";
|
|
22
|
+
import { Drawer as So } from "./components/Drawer/Drawer.js";
|
|
23
|
+
import { DropdownMenu as go, DropdownMenuStyle as Bo } from "./components/DropdownMenu/DropdownMenu.js";
|
|
24
|
+
import { IconButton as yo, IconButtonStyle as To } from "./components/IconButton/IconButton.js";
|
|
25
|
+
import { List as Po } from "./components/List/List.js";
|
|
26
|
+
import { ListItem as bo, ListItemStyle as ko } from "./components/List/ListItem.js";
|
|
27
|
+
import { ModalDialog as Mo } from "./components/ModalDialog/ModalDialog.js";
|
|
28
|
+
import { NotificationBadge as Ao } from "./components/NotificationBadge/NotificationBadge.js";
|
|
29
|
+
import { Pagination as No, PaginationStyle as Ro } from "./components/Pagination/Pagination.js";
|
|
30
|
+
import { PasswordField as Go } from "./components/PasswordField/PasswordField.js";
|
|
31
|
+
import { ProgressIndicator as Wo } from "./components/ProgressIndicator/ProgressIndicator.js";
|
|
32
|
+
import { ProgressIndicatorIndeterminate as qo } from "./components/ProgressIndicator/ProgressIndicatorIndeterminate.js";
|
|
33
|
+
import { RadioButton as Eo, RadioButtonStyle as Ho, radioCheckedIconCss as Jo, radioIconCss as Ko, radioUncheckedIconCss as Oo } from "./components/RadioButton/RadioButton.js";
|
|
34
|
+
import { RadioGroup as Vo } from "./components/RadioButton/RadioGroup.js";
|
|
35
|
+
import { Search as Yo, SearchStyle as Zo } from "./components/Search/Search.js";
|
|
36
|
+
import { Select as $o, SelectStyle as oe } from "./components/Select/Select.js";
|
|
37
|
+
import { Switch as re, SwitchStyle as te } from "./components/Switch/Switch.js";
|
|
38
|
+
import { Tabs as me, TabsStyle as pe } from "./components/Tabs/Tabs.js";
|
|
39
|
+
import { TabItem as ie, TabItemStyle as ne } from "./components/Tabs/TabItem.js";
|
|
40
|
+
import { TextArea as fe } from "./components/TextArea/TextArea.js";
|
|
41
|
+
import { TextField as le } from "./components/TextField/TextField.js";
|
|
42
|
+
import { Toast as he, ToastStyle as Se, toaster as Ce } from "./components/Toast/Toast.js";
|
|
43
|
+
import { Tooltip as Be } from "./components/Tooltip/Tooltip.js";
|
|
44
|
+
import { TopAppBar as ye } from "./components/TopAppBar/TopAppBar.js";
|
|
45
|
+
import { LanguageProvider as Ie, SerendieProvider as Pe } from "./i18n/provider.js";
|
|
46
|
+
import { DataTableComponent as be } from "./components/DataTable/DataTableComponent.js";
|
|
47
|
+
import { parse as ve } from "./node_modules/@zag-js/date-picker/dist/index.js";
|
|
43
48
|
export {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
49
|
+
C as Accordion,
|
|
50
|
+
B as AccordionGroup,
|
|
51
|
+
y as Avatar,
|
|
52
|
+
T as AvatarStyle,
|
|
53
|
+
P as Badge,
|
|
54
|
+
D as BadgeCloseButton,
|
|
55
|
+
b as BadgeStyle,
|
|
56
|
+
v as Banner,
|
|
57
|
+
w as BottomNavigation,
|
|
58
|
+
L as BottomNavigationItem,
|
|
59
|
+
N as BottomNavigationItemStyle,
|
|
60
|
+
F as Button,
|
|
61
|
+
G as ButtonStyle,
|
|
62
|
+
Z as CheckBox,
|
|
63
|
+
_ as CheckBoxStyle,
|
|
64
|
+
to as ChoiceBox,
|
|
65
|
+
ao as ChoiceBoxStyle,
|
|
66
|
+
s as ColorSchemeScript,
|
|
67
|
+
po as DashboardWidget,
|
|
68
|
+
io as DataTable,
|
|
69
|
+
be as DataTableComponent,
|
|
70
|
+
so as DatePicker,
|
|
71
|
+
co as Divider,
|
|
72
|
+
lo as DividerStyle,
|
|
73
|
+
So as Drawer,
|
|
74
|
+
go as DropdownMenu,
|
|
75
|
+
Bo as DropdownMenuStyle,
|
|
76
|
+
yo as IconButton,
|
|
77
|
+
To as IconButtonStyle,
|
|
78
|
+
Ie as LanguageProvider,
|
|
79
|
+
Po as List,
|
|
80
|
+
bo as ListItem,
|
|
81
|
+
ko as ListItemStyle,
|
|
82
|
+
Mo as ModalDialog,
|
|
83
|
+
Ao as NotificationBadge,
|
|
84
|
+
No as Pagination,
|
|
85
|
+
Ro as PaginationStyle,
|
|
86
|
+
Go as PasswordField,
|
|
87
|
+
Wo as ProgressIndicator,
|
|
88
|
+
qo as ProgressIndicatorIndeterminate,
|
|
89
|
+
Eo as RadioButton,
|
|
90
|
+
Ho as RadioButtonStyle,
|
|
91
|
+
Vo as RadioGroup,
|
|
92
|
+
Yo as Search,
|
|
93
|
+
Zo as SearchStyle,
|
|
94
|
+
$o as Select,
|
|
95
|
+
oe as SelectStyle,
|
|
96
|
+
W as SerendieChartTheme,
|
|
97
|
+
r as SerendiePreset,
|
|
98
|
+
Pe as SerendieProvider,
|
|
99
|
+
re as Switch,
|
|
100
|
+
te as SwitchStyle,
|
|
101
|
+
ie as TabItem,
|
|
102
|
+
ne as TabItemStyle,
|
|
103
|
+
me as Tabs,
|
|
104
|
+
pe as TabsStyle,
|
|
105
|
+
fe as TextArea,
|
|
106
|
+
le as TextField,
|
|
107
|
+
a as ThemeContext,
|
|
108
|
+
he as Toast,
|
|
109
|
+
Se as ToastStyle,
|
|
110
|
+
Be as Tooltip,
|
|
111
|
+
ye as TopAppBar,
|
|
112
|
+
$ as checkboxCheckedIconCss,
|
|
113
|
+
oo as checkboxIconCss,
|
|
114
|
+
eo as checkboxUncheckedIconCss,
|
|
115
|
+
q as compactChartMargin,
|
|
116
|
+
z as defaultChartMargin,
|
|
117
|
+
l as formatDateByLang,
|
|
118
|
+
E as getChartColor,
|
|
119
|
+
H as getChartColors,
|
|
120
|
+
f as getColorSchemeScript,
|
|
121
|
+
d as getTranslations,
|
|
122
|
+
J as legendChartMargin,
|
|
123
|
+
ve as parseDate,
|
|
124
|
+
Jo as radioCheckedIconCss,
|
|
125
|
+
Ko as radioIconCss,
|
|
126
|
+
Oo as radioUncheckedIconCss,
|
|
127
|
+
m as resolveTheme,
|
|
128
|
+
K as spaciousChartMargin,
|
|
129
|
+
Ce as toaster,
|
|
130
|
+
O as useBarChartProps,
|
|
131
|
+
Q as useChartProps,
|
|
132
|
+
V as useLineChartProps,
|
|
133
|
+
X as usePieChartProps,
|
|
134
|
+
i as useSystemColorScheme,
|
|
135
|
+
p as useThemeContext,
|
|
136
|
+
h as useTranslations
|
|
121
137
|
};
|
|
@@ -1736,6 +1736,316 @@ const e = {
|
|
|
1736
1736
|
}
|
|
1737
1737
|
}
|
|
1738
1738
|
},
|
|
1739
|
+
"konjo-dark": {
|
|
1740
|
+
tokens: {
|
|
1741
|
+
colors: {
|
|
1742
|
+
sd: {
|
|
1743
|
+
system: {
|
|
1744
|
+
color: {
|
|
1745
|
+
impression: {
|
|
1746
|
+
primary: {
|
|
1747
|
+
value: "#C0CFFD"
|
|
1748
|
+
},
|
|
1749
|
+
onPrimary: {
|
|
1750
|
+
value: "#000000"
|
|
1751
|
+
},
|
|
1752
|
+
primaryContainer: {
|
|
1753
|
+
value: "#C0CFFD"
|
|
1754
|
+
},
|
|
1755
|
+
onPrimaryContainer: {
|
|
1756
|
+
value: "#000000"
|
|
1757
|
+
},
|
|
1758
|
+
secondary: {
|
|
1759
|
+
value: "#043F81"
|
|
1760
|
+
},
|
|
1761
|
+
onSecondary: {
|
|
1762
|
+
value: "#F0F0F0"
|
|
1763
|
+
},
|
|
1764
|
+
secondaryContainer: {
|
|
1765
|
+
value: "#043F81"
|
|
1766
|
+
},
|
|
1767
|
+
onSecondaryContainer: {
|
|
1768
|
+
value: "#F0F0F0"
|
|
1769
|
+
},
|
|
1770
|
+
tertiary: {
|
|
1771
|
+
value: "#081E3F"
|
|
1772
|
+
},
|
|
1773
|
+
onTertiary: {
|
|
1774
|
+
value: "#F0F0F0"
|
|
1775
|
+
},
|
|
1776
|
+
tertiaryContainer: {
|
|
1777
|
+
value: "#081E3F"
|
|
1778
|
+
},
|
|
1779
|
+
onTertiaryContainer: {
|
|
1780
|
+
value: "#F0F0F0"
|
|
1781
|
+
},
|
|
1782
|
+
notice: {
|
|
1783
|
+
value: "#DEC400"
|
|
1784
|
+
},
|
|
1785
|
+
onNotice: {
|
|
1786
|
+
value: "#FFFFFF"
|
|
1787
|
+
},
|
|
1788
|
+
noticeContainer: {
|
|
1789
|
+
value: "#514400"
|
|
1790
|
+
},
|
|
1791
|
+
onNoticeContainer: {
|
|
1792
|
+
value: "#FFFFFF"
|
|
1793
|
+
},
|
|
1794
|
+
noticeContainerVariant: {
|
|
1795
|
+
value: "#3A3000"
|
|
1796
|
+
},
|
|
1797
|
+
onNoticeContainerVariant: {
|
|
1798
|
+
value: "#F0F0F0"
|
|
1799
|
+
},
|
|
1800
|
+
negative: {
|
|
1801
|
+
value: "#FFC0BB"
|
|
1802
|
+
},
|
|
1803
|
+
onNegative: {
|
|
1804
|
+
value: "#000000"
|
|
1805
|
+
},
|
|
1806
|
+
negativeContainer: {
|
|
1807
|
+
value: "#81001F"
|
|
1808
|
+
},
|
|
1809
|
+
onNegativeContainer: {
|
|
1810
|
+
value: "#FFFFFF"
|
|
1811
|
+
},
|
|
1812
|
+
negativeContainerVariant: {
|
|
1813
|
+
value: "#600114"
|
|
1814
|
+
},
|
|
1815
|
+
onNegativeContainerVariant: {
|
|
1816
|
+
value: "#FFDCDA"
|
|
1817
|
+
},
|
|
1818
|
+
positive: {
|
|
1819
|
+
value: "#2EAB80"
|
|
1820
|
+
},
|
|
1821
|
+
onPositive: {
|
|
1822
|
+
value: "#FFFFFF"
|
|
1823
|
+
},
|
|
1824
|
+
positiveContainer: {
|
|
1825
|
+
value: "#146348"
|
|
1826
|
+
},
|
|
1827
|
+
onPositiveContainer: {
|
|
1828
|
+
value: "#F0F0F0"
|
|
1829
|
+
},
|
|
1830
|
+
positiveContainerVariant: {
|
|
1831
|
+
value: "#12372B"
|
|
1832
|
+
},
|
|
1833
|
+
onPositiveContainerVariant: {
|
|
1834
|
+
value: "#F0F0F0"
|
|
1835
|
+
}
|
|
1836
|
+
},
|
|
1837
|
+
component: {
|
|
1838
|
+
surface: {
|
|
1839
|
+
value: "#141414"
|
|
1840
|
+
},
|
|
1841
|
+
onSurface: {
|
|
1842
|
+
value: "#E4E4E3"
|
|
1843
|
+
},
|
|
1844
|
+
onSurfaceVariant: {
|
|
1845
|
+
value: "#B1B0AE"
|
|
1846
|
+
},
|
|
1847
|
+
inverseSurface: {
|
|
1848
|
+
value: "#F0F0F0"
|
|
1849
|
+
},
|
|
1850
|
+
inverseOnSurface: {
|
|
1851
|
+
value: "#000000"
|
|
1852
|
+
},
|
|
1853
|
+
inversePrimary: {
|
|
1854
|
+
value: "#081E3F"
|
|
1855
|
+
},
|
|
1856
|
+
outlineBright: {
|
|
1857
|
+
value: "#424242"
|
|
1858
|
+
},
|
|
1859
|
+
outline: {
|
|
1860
|
+
value: "#575757"
|
|
1861
|
+
},
|
|
1862
|
+
outlineDim: {
|
|
1863
|
+
value: "#8C8B87"
|
|
1864
|
+
},
|
|
1865
|
+
scrim: {
|
|
1866
|
+
value: "#00000099"
|
|
1867
|
+
},
|
|
1868
|
+
surfaceDim: {
|
|
1869
|
+
value: "#141414"
|
|
1870
|
+
},
|
|
1871
|
+
surfaceBright: {
|
|
1872
|
+
value: "#3B3B3B"
|
|
1873
|
+
},
|
|
1874
|
+
surfaceContainerBright: {
|
|
1875
|
+
value: "#212121"
|
|
1876
|
+
},
|
|
1877
|
+
surfaceContainer: {
|
|
1878
|
+
value: "#2E2E2E"
|
|
1879
|
+
},
|
|
1880
|
+
surfaceContainerDim: {
|
|
1881
|
+
value: "#474747"
|
|
1882
|
+
}
|
|
1883
|
+
},
|
|
1884
|
+
interaction: {
|
|
1885
|
+
disabled: {
|
|
1886
|
+
value: "#31312F"
|
|
1887
|
+
},
|
|
1888
|
+
disabledOnSurface: {
|
|
1889
|
+
value: "#6F6F6F"
|
|
1890
|
+
},
|
|
1891
|
+
selected: {
|
|
1892
|
+
value: "#FFFFFF05"
|
|
1893
|
+
},
|
|
1894
|
+
selectedSurface: {
|
|
1895
|
+
value: "#043F81"
|
|
1896
|
+
},
|
|
1897
|
+
hovered: {
|
|
1898
|
+
value: "#FFFFFF33"
|
|
1899
|
+
},
|
|
1900
|
+
hoveredVariant: {
|
|
1901
|
+
value: "#FFFFFF0D"
|
|
1902
|
+
},
|
|
1903
|
+
hoveredOnPrimary: {
|
|
1904
|
+
value: "#00000099"
|
|
1905
|
+
}
|
|
1906
|
+
},
|
|
1907
|
+
chart: {
|
|
1908
|
+
mark: {
|
|
1909
|
+
primary: {
|
|
1910
|
+
"01": {
|
|
1911
|
+
value: "#DDE3FF"
|
|
1912
|
+
},
|
|
1913
|
+
"02": {
|
|
1914
|
+
value: "#C0CFFD"
|
|
1915
|
+
},
|
|
1916
|
+
"03": {
|
|
1917
|
+
value: "#8FAEFE"
|
|
1918
|
+
},
|
|
1919
|
+
"04": {
|
|
1920
|
+
value: "#3B86F9"
|
|
1921
|
+
},
|
|
1922
|
+
"05": {
|
|
1923
|
+
value: "#056AD8"
|
|
1924
|
+
},
|
|
1925
|
+
"06": {
|
|
1926
|
+
value: "#073165"
|
|
1927
|
+
}
|
|
1928
|
+
},
|
|
1929
|
+
positive: {
|
|
1930
|
+
"01": {
|
|
1931
|
+
value: "#BCEEDD"
|
|
1932
|
+
},
|
|
1933
|
+
"02": {
|
|
1934
|
+
value: "#90E4C7"
|
|
1935
|
+
},
|
|
1936
|
+
"03": {
|
|
1937
|
+
value: "#46D2A2"
|
|
1938
|
+
},
|
|
1939
|
+
"04": {
|
|
1940
|
+
value: "#2EAB80"
|
|
1941
|
+
},
|
|
1942
|
+
"05": {
|
|
1943
|
+
value: "#2C7C60"
|
|
1944
|
+
},
|
|
1945
|
+
"06": {
|
|
1946
|
+
value: "#12372B"
|
|
1947
|
+
}
|
|
1948
|
+
},
|
|
1949
|
+
negative: {
|
|
1950
|
+
"01": {
|
|
1951
|
+
value: "#FFDCDA"
|
|
1952
|
+
},
|
|
1953
|
+
"02": {
|
|
1954
|
+
value: "#FFC0BB"
|
|
1955
|
+
},
|
|
1956
|
+
"03": {
|
|
1957
|
+
value: "#FF8F8F"
|
|
1958
|
+
},
|
|
1959
|
+
"04": {
|
|
1960
|
+
value: "#F64157"
|
|
1961
|
+
},
|
|
1962
|
+
"05": {
|
|
1963
|
+
value: "#D00138"
|
|
1964
|
+
},
|
|
1965
|
+
"06": {
|
|
1966
|
+
value: "#600114"
|
|
1967
|
+
}
|
|
1968
|
+
},
|
|
1969
|
+
notice: {
|
|
1970
|
+
"01": {
|
|
1971
|
+
value: "#FCE998"
|
|
1972
|
+
},
|
|
1973
|
+
"02": {
|
|
1974
|
+
value: "#EDD857"
|
|
1975
|
+
},
|
|
1976
|
+
"03": {
|
|
1977
|
+
value: "#DEC400"
|
|
1978
|
+
},
|
|
1979
|
+
"04": {
|
|
1980
|
+
value: "#A78E00"
|
|
1981
|
+
},
|
|
1982
|
+
"05": {
|
|
1983
|
+
value: "#816E00"
|
|
1984
|
+
},
|
|
1985
|
+
"06": {
|
|
1986
|
+
value: "#3A3000"
|
|
1987
|
+
}
|
|
1988
|
+
},
|
|
1989
|
+
multi: {
|
|
1990
|
+
10: {
|
|
1991
|
+
value: "#AE8144"
|
|
1992
|
+
},
|
|
1993
|
+
"01": {
|
|
1994
|
+
value: "#056AD8"
|
|
1995
|
+
},
|
|
1996
|
+
"02": {
|
|
1997
|
+
value: "#46D2A2"
|
|
1998
|
+
},
|
|
1999
|
+
"03": {
|
|
2000
|
+
value: "#FF8F8F"
|
|
2001
|
+
},
|
|
2002
|
+
"04": {
|
|
2003
|
+
value: "#B36CCD"
|
|
2004
|
+
},
|
|
2005
|
+
"05": {
|
|
2006
|
+
value: "#8F3D15"
|
|
2007
|
+
},
|
|
2008
|
+
"06": {
|
|
2009
|
+
value: "#4ACBD4"
|
|
2010
|
+
},
|
|
2011
|
+
"07": {
|
|
2012
|
+
value: "#FCE998"
|
|
2013
|
+
},
|
|
2014
|
+
"08": {
|
|
2015
|
+
value: "#B54E1B"
|
|
2016
|
+
},
|
|
2017
|
+
"09": {
|
|
2018
|
+
value: "#9B2657"
|
|
2019
|
+
}
|
|
2020
|
+
}
|
|
2021
|
+
},
|
|
2022
|
+
component: {
|
|
2023
|
+
onMarkLabel: {
|
|
2024
|
+
value: "#000000"
|
|
2025
|
+
},
|
|
2026
|
+
inverseOnMarkLabel: {
|
|
2027
|
+
value: "#FFFFFF"
|
|
2028
|
+
},
|
|
2029
|
+
scalemark: {
|
|
2030
|
+
value: "#E4E4E3"
|
|
2031
|
+
},
|
|
2032
|
+
threshold: {
|
|
2033
|
+
value: "#3B86F9"
|
|
2034
|
+
},
|
|
2035
|
+
chartSurface: {
|
|
2036
|
+
value: "#FFFFFF"
|
|
2037
|
+
},
|
|
2038
|
+
onChartSurface: {
|
|
2039
|
+
value: "#6F6F6F"
|
|
2040
|
+
}
|
|
2041
|
+
}
|
|
2042
|
+
}
|
|
2043
|
+
}
|
|
2044
|
+
}
|
|
2045
|
+
}
|
|
2046
|
+
}
|
|
2047
|
+
}
|
|
2048
|
+
},
|
|
1739
2049
|
kurikawa: {
|
|
1740
2050
|
tokens: {
|
|
1741
2051
|
colors: {
|