@sakura-ui/sakura-ui 0.1.20 → 0.1.21
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/package.json +1 -1
- package/packages/config/package.json +1 -1
- package/packages/core/package.json +1 -1
- package/packages/core/src/components/Button.tsx +9 -3
- package/packages/core/src/components/Card.tsx +2 -5
- package/packages/core/src/components/buttonStyle.ts +24 -10
- package/packages/forms/package.json +1 -1
- package/packages/tailwind-theme-plugin/dist/index.cjs.js +1 -0
- package/packages/tailwind-theme-plugin/dist/index.es.js +6476 -0
- package/packages/tailwind-theme-plugin/dist/types/index.d.ts +6 -0
- package/packages/tailwind-theme-plugin/dist/types/index.d.ts.map +1 -0
- package/packages/tailwind-theme-plugin/node_modules/.bin/autoprefixer +17 -0
- package/packages/tailwind-theme-plugin/node_modules/.bin/browserslist +17 -0
- package/packages/tailwind-theme-plugin/node_modules/.bin/tailwind +17 -0
- package/packages/tailwind-theme-plugin/node_modules/.bin/tailwindcss +17 -0
- package/packages/tailwind-theme-plugin/node_modules/.bin/ts-node +17 -0
- package/packages/tailwind-theme-plugin/node_modules/.bin/ts-node-cwd +17 -0
- package/packages/tailwind-theme-plugin/node_modules/.bin/ts-node-esm +17 -0
- package/packages/tailwind-theme-plugin/node_modules/.bin/ts-node-script +17 -0
- package/packages/tailwind-theme-plugin/node_modules/.bin/ts-node-transpile-only +17 -0
- package/packages/tailwind-theme-plugin/node_modules/.bin/ts-script +17 -0
- package/packages/tailwind-theme-plugin/package.json +47 -0
- package/packages/tailwind-theme-plugin/src/index.ts +519 -0
- package/packages/tailwind-theme-plugin/tests/index.test.ts +13 -0
- package/packages/tailwind-theme-plugin/tsconfig.json +13 -0
- package/packages/tailwind-theme-plugin/tsconfig.node.json +6 -0
- package/packages/tailwind-theme-plugin/vite.config.ts +26 -0
- package/packages/forms/dist/components/Checkbox.js +0 -46
- package/packages/forms/dist/components/Checkbox.js.map +0 -1
- package/packages/forms/dist/components/FieldsetControl.js +0 -20
- package/packages/forms/dist/components/FieldsetControl.js.map +0 -1
- package/packages/forms/dist/components/FileInput.js +0 -55
- package/packages/forms/dist/components/FileInput.js.map +0 -1
- package/packages/forms/dist/components/Input.js +0 -29
- package/packages/forms/dist/components/Input.js.map +0 -1
- package/packages/forms/dist/components/LabelControl.js +0 -24
- package/packages/forms/dist/components/LabelControl.js.map +0 -1
- package/packages/forms/dist/components/Radio.js +0 -45
- package/packages/forms/dist/components/Radio.js.map +0 -1
- package/packages/forms/dist/components/Select.js +0 -41
- package/packages/forms/dist/components/Select.js.map +0 -1
- package/packages/forms/dist/components/Textarea.js +0 -36
- package/packages/forms/dist/components/Textarea.js.map +0 -1
- package/packages/forms/dist/components/context.js +0 -8
- package/packages/forms/dist/components/context.js.map +0 -1
- package/packages/forms/dist/components/controlled/CheckboxGroup.js +0 -12
- package/packages/forms/dist/components/controlled/CheckboxGroup.js.map +0 -1
- package/packages/forms/dist/components/controlled/InputItem.js +0 -2
- package/packages/forms/dist/components/controlled/InputItem.js.map +0 -1
- package/packages/forms/dist/components/controlled/RadioGroup.js +0 -12
- package/packages/forms/dist/components/controlled/RadioGroup.js.map +0 -1
- package/packages/forms/dist/components/controlled/SelectControl.js +0 -10
- package/packages/forms/dist/components/controlled/SelectControl.js.map +0 -1
- package/packages/forms/dist/components/controlled/TextareaControl.js +0 -10
- package/packages/forms/dist/components/controlled/TextareaControl.js.map +0 -1
- package/packages/forms/dist/components/controlled/index.js +0 -5
- package/packages/forms/dist/components/controlled/index.js.map +0 -1
- package/packages/forms/dist/components/index.js +0 -9
- package/packages/forms/dist/components/index.js.map +0 -1
- package/packages/forms/dist/index.js +0 -3
- package/packages/forms/dist/index.js.map +0 -1
- package/packages/forms/dist/utils/class.js +0 -2
- package/packages/forms/dist/utils/class.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { cx } from '../libs/cx'
|
|
2
2
|
import { ComponentWithAs } from '../types/component'
|
|
3
3
|
import { forwardRef } from '../libs/forward-ref'
|
|
4
|
-
import {
|
|
4
|
+
import {
|
|
5
|
+
type ButtonVariant,
|
|
6
|
+
type ButtonSize,
|
|
7
|
+
base,
|
|
8
|
+
getVariantStyle,
|
|
9
|
+
getSizeStyle
|
|
10
|
+
} from './buttonStyle'
|
|
5
11
|
|
|
6
12
|
export interface ButtonProps {
|
|
7
|
-
variant?:
|
|
8
|
-
size?:
|
|
13
|
+
variant?: ButtonVariant
|
|
14
|
+
size?: ButtonSize
|
|
9
15
|
}
|
|
10
16
|
|
|
11
17
|
export const Button: ComponentWithAs<'button', ButtonProps> = forwardRef(
|
|
@@ -43,15 +43,13 @@ export const Card = (props: CardProps) => {
|
|
|
43
43
|
export interface CardImgProps extends React.ComponentPropsWithoutRef<'img'> {}
|
|
44
44
|
|
|
45
45
|
export const CardImg = (props: CardImgProps) => {
|
|
46
|
-
const { className,
|
|
47
|
-
|
|
48
|
-
const ctx = React.useContext(IdContext)
|
|
46
|
+
const { className, ...restProps } = props
|
|
49
47
|
|
|
50
48
|
const style = `
|
|
51
49
|
object-cover
|
|
52
50
|
`
|
|
53
51
|
|
|
54
|
-
return <img
|
|
52
|
+
return <img className={cx(style, className)} {...restProps} />
|
|
55
53
|
}
|
|
56
54
|
|
|
57
55
|
export interface CardHeaderProps
|
|
@@ -65,7 +63,6 @@ export const CardHeader = (props: CardHeaderProps) => {
|
|
|
65
63
|
const style = `
|
|
66
64
|
text-base
|
|
67
65
|
font-medium
|
|
68
|
-
first:pt-4
|
|
69
66
|
last:pb-4
|
|
70
67
|
px-6
|
|
71
68
|
`
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export type ButtonVariant = 'primary' | 'secondary' | 'tertiary'
|
|
2
|
+
export type ButtonSize = 'lg' | 'md' | 'sm' | 'xs'
|
|
3
|
+
|
|
1
4
|
export const base = `
|
|
2
5
|
inline-block
|
|
3
6
|
text-button
|
|
@@ -39,18 +42,25 @@ const secondary = `
|
|
|
39
42
|
disabled:bg-transparent
|
|
40
43
|
`
|
|
41
44
|
|
|
42
|
-
const
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
45
|
+
const tertiary = `
|
|
46
|
+
bg-transparent
|
|
47
|
+
text-blue-900
|
|
48
|
+
underline
|
|
49
|
+
hover:bg-blue-200
|
|
50
|
+
hover:text-blue-1000
|
|
51
|
+
active:bg-blue-300
|
|
52
|
+
active:text-blue-1200
|
|
53
|
+
disabled:bg-transparent
|
|
54
|
+
disabled:text-solid-grey-420
|
|
55
|
+
`
|
|
46
56
|
|
|
47
|
-
|
|
48
|
-
|
|
57
|
+
const styles: { [key in ButtonVariant]: string } = {
|
|
58
|
+
primary: primary,
|
|
59
|
+
secondary: secondary,
|
|
60
|
+
tertiary: tertiary
|
|
49
61
|
}
|
|
50
62
|
|
|
51
|
-
const params: {
|
|
52
|
-
[key: string]: string
|
|
53
|
-
} = {
|
|
63
|
+
const params: { [key in ButtonSize]: string } = {
|
|
54
64
|
lg: `
|
|
55
65
|
p-4
|
|
56
66
|
text-button
|
|
@@ -79,6 +89,10 @@ const params: {
|
|
|
79
89
|
`
|
|
80
90
|
}
|
|
81
91
|
|
|
82
|
-
export const
|
|
92
|
+
export const getVariantStyle = (variant: ButtonVariant) => {
|
|
93
|
+
return styles[variant]
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export const getSizeStyle = (size: ButtonSize) => {
|
|
83
97
|
return params[size]
|
|
84
98
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";function s(o){return o&&o.__esModule&&Object.prototype.hasOwnProperty.call(o,"default")?o.default:o}var y={},m={};(function(o){Object.defineProperty(o,"__esModule",{value:!0}),Object.defineProperty(o,"default",{enumerable:!0,get:function(){return a}});function r(l,i){return{handler:l,config:i}}r.withOptions=function(l,i=()=>({})){const t=function(u){return{__options:u,handler:l(u),config:i(u)}};return t.__isOptionsFunction=!0,t.__pluginFunction=l,t.__configFunction=i,t};const a=r})(m);(function(o){Object.defineProperty(o,"__esModule",{value:!0}),Object.defineProperty(o,"default",{enumerable:!0,get:function(){return l}});const r=a(m);function a(i){return i&&i.__esModule?i:{default:i}}const l=r.default})(y);let n=y;var v=(n.__esModule?n:{default:n}).default;const c=s(v);var p={Color:{Neutral:{White:{value:"#ffffff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ffffff",type:"color"},name:"ColorNeutralWhite",attributes:{category:"Color",type:"Neutral",item:"White"},path:["Color","Neutral","White"]},Black:{value:"#000000",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#000000",type:"color"},name:"ColorNeutralBlack",attributes:{category:"Color",type:"Neutral",item:"Black"},path:["Color","Neutral","Black"]},SolidGrey:{50:{value:"#f2f2f2",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#f2f2f2",type:"color"},name:"ColorNeutralSolidGrey50",attributes:{category:"Color",type:"Neutral",item:"SolidGrey",subitem:"50"},path:["Color","Neutral","SolidGrey","50"]},100:{value:"#e6e6e6",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#e6e6e6",type:"color"},name:"ColorNeutralSolidGrey100",attributes:{category:"Color",type:"Neutral",item:"SolidGrey",subitem:"100"},path:["Color","Neutral","SolidGrey","100"]},200:{value:"#cccccc",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#cccccc",type:"color"},name:"ColorNeutralSolidGrey200",attributes:{category:"Color",type:"Neutral",item:"SolidGrey",subitem:"200"},path:["Color","Neutral","SolidGrey","200"]},300:{value:"#b3b3b3",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#b3b3b3",type:"color"},name:"ColorNeutralSolidGrey300",attributes:{category:"Color",type:"Neutral",item:"SolidGrey",subitem:"300"},path:["Color","Neutral","SolidGrey","300"]},400:{value:"#999999",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#999999",type:"color"},name:"ColorNeutralSolidGrey400",attributes:{category:"Color",type:"Neutral",item:"SolidGrey",subitem:"400"},path:["Color","Neutral","SolidGrey","400"]},420:{value:"#949494",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#949494",type:"color"},name:"ColorNeutralSolidGrey420",attributes:{category:"Color",type:"Neutral",item:"SolidGrey",subitem:"420"},path:["Color","Neutral","SolidGrey","420"]},500:{value:"#7f7f7f",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#7f7f7f",type:"color"},name:"ColorNeutralSolidGrey500",attributes:{category:"Color",type:"Neutral",item:"SolidGrey",subitem:"500"},path:["Color","Neutral","SolidGrey","500"]},536:{value:"#767676",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#767676",type:"color"},name:"ColorNeutralSolidGrey536",attributes:{category:"Color",type:"Neutral",item:"SolidGrey",subitem:"536"},path:["Color","Neutral","SolidGrey","536"]},600:{value:"#666666",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#666666",type:"color"},name:"ColorNeutralSolidGrey600",attributes:{category:"Color",type:"Neutral",item:"SolidGrey",subitem:"600"},path:["Color","Neutral","SolidGrey","600"]},700:{value:"#4d4d4d",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#4d4d4d",type:"color"},name:"ColorNeutralSolidGrey700",attributes:{category:"Color",type:"Neutral",item:"SolidGrey",subitem:"700"},path:["Color","Neutral","SolidGrey","700"]},800:{value:"#333333",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#333333",type:"color"},name:"ColorNeutralSolidGrey800",attributes:{category:"Color",type:"Neutral",item:"SolidGrey",subitem:"800"},path:["Color","Neutral","SolidGrey","800"]},900:{value:"#1a1a1a",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#1a1a1a",type:"color"},name:"ColorNeutralSolidGrey900",attributes:{category:"Color",type:"Neutral",item:"SolidGrey",subitem:"900"},path:["Color","Neutral","SolidGrey","900"]}}},Success:{1:{value:"#259D63",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#259D63",type:"color"},name:"ColorSuccess1",attributes:{category:"Color",type:"Success",item:"1"},path:["Color","Success","1"]},2:{value:"#197A4B",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#197A4B",type:"color"},name:"ColorSuccess2",attributes:{category:"Color",type:"Success",item:"2"},path:["Color","Success","2"]}},Error:{1:{value:"#EC0000",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#EC0000",type:"color"},name:"ColorError1",attributes:{category:"Color",type:"Error",item:"1"},path:["Color","Error","1"]},2:{value:"#CE0000",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#CE0000",type:"color"},name:"ColorError2",attributes:{category:"Color",type:"Error",item:"2"},path:["Color","Error","2"]}},Warning:{Yellow:{1:{value:"#B78F00",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#B78F00",type:"color"},name:"ColorWarningYellow1",attributes:{category:"Color",type:"Warning",item:"Yellow",subitem:"1"},path:["Color","Warning","Yellow","1"]},2:{value:"#927200",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#927200",type:"color"},name:"ColorWarningYellow2",attributes:{category:"Color",type:"Warning",item:"Yellow",subitem:"2"},path:["Color","Warning","Yellow","2"]}},Orange:{1:{value:"#FB5B01",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#FB5B01",type:"color"},name:"ColorWarningOrange1",attributes:{category:"Color",type:"Warning",item:"Orange",subitem:"1"},path:["Color","Warning","Orange","1"]},2:{value:"#C74700",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#C74700",type:"color"},name:"ColorWarningOrange2",attributes:{category:"Color",type:"Warning",item:"Orange",subitem:"2"},path:["Color","Warning","Orange","2"]}}},Focus:{Blue:{value:"#0877D7",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#0877D7",type:"color"},name:"ColorFocusBlue",attributes:{category:"Color",type:"Focus",item:"Blue"},path:["Color","Focus","Blue"]},Yellow:{value:"#B78F00",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#B78F00",type:"color"},name:"ColorFocusYellow",attributes:{category:"Color",type:"Focus",item:"Yellow"},path:["Color","Focus","Yellow"]}},Primitive:{Sea:{50:{value:"#e8f1fe",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#e8f1fe",type:"color"},name:"ColorPrimitiveSea50",attributes:{category:"Color",type:"Primitive",item:"Sea",subitem:"50"},path:["Color","Primitive","Sea","50"]},100:{value:"#c5d7fb",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#c5d7fb",type:"color"},name:"ColorPrimitiveSea100",attributes:{category:"Color",type:"Primitive",item:"Sea",subitem:"100"},path:["Color","Primitive","Sea","100"]},200:{value:"#9db7f9",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#9db7f9",type:"color"},name:"ColorPrimitiveSea200",attributes:{category:"Color",type:"Primitive",item:"Sea",subitem:"200"},path:["Color","Primitive","Sea","200"]},300:{value:"#7096f8",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#7096f8",type:"color"},name:"ColorPrimitiveSea300",attributes:{category:"Color",type:"Primitive",item:"Sea",subitem:"300"},path:["Color","Primitive","Sea","300"]},400:{value:"#4979f5",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#4979f5",type:"color"},name:"ColorPrimitiveSea400",attributes:{category:"Color",type:"Primitive",item:"Sea",subitem:"400"},path:["Color","Primitive","Sea","400"]},500:{value:"#264af4",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#264af4",type:"color"},name:"ColorPrimitiveSea500",attributes:{category:"Color",type:"Primitive",item:"Sea",subitem:"500"},path:["Color","Primitive","Sea","500"]},600:{value:"#1a3ee8",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#1a3ee8",type:"color"},name:"ColorPrimitiveSea600",attributes:{category:"Color",type:"Primitive",item:"Sea",subitem:"600"},path:["Color","Primitive","Sea","600"]},700:{value:"#0031d8",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#0031d8",type:"color"},name:"ColorPrimitiveSea700",attributes:{category:"Color",type:"Primitive",item:"Sea",subitem:"700"},path:["Color","Primitive","Sea","700"]},800:{value:"#0017c1",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#0017c1",type:"color"},name:"ColorPrimitiveSea800",attributes:{category:"Color",type:"Primitive",item:"Sea",subitem:"800"},path:["Color","Primitive","Sea","800"]},900:{value:"#000082",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#000082",type:"color"},name:"ColorPrimitiveSea900",attributes:{category:"Color",type:"Primitive",item:"Sea",subitem:"900"},path:["Color","Primitive","Sea","900"]},1e3:{value:"#000071",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#000071",type:"color"},name:"ColorPrimitiveSea1000",attributes:{category:"Color",type:"Primitive",item:"Sea",subitem:"1000"},path:["Color","Primitive","Sea","1000"]},1100:{value:"#000060",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#000060",type:"color"},name:"ColorPrimitiveSea1100",attributes:{category:"Color",type:"Primitive",item:"Sea",subitem:"1100"},path:["Color","Primitive","Sea","1100"]},1200:{value:"#00004f",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#00004f",type:"color"},name:"ColorPrimitiveSea1200",attributes:{category:"Color",type:"Primitive",item:"Sea",subitem:"1200"},path:["Color","Primitive","Sea","1200"]}},Sumi:{50:{value:"#f8f8fb",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#f8f8fb",type:"color"},name:"ColorPrimitiveSumi50",attributes:{category:"Color",type:"Primitive",item:"Sumi",subitem:"50"},path:["Color","Primitive","Sumi","50"]},100:{value:"#f1f1f4",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#f1f1f4",type:"color"},name:"ColorPrimitiveSumi100",attributes:{category:"Color",type:"Primitive",item:"Sumi",subitem:"100"},path:["Color","Primitive","Sumi","100"]},200:{value:"#e8e8eb",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#e8e8eb",type:"color"},name:"ColorPrimitiveSumi200",attributes:{category:"Color",type:"Primitive",item:"Sumi",subitem:"200"},path:["Color","Primitive","Sumi","200"]},300:{value:"#d8d8db",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#d8d8db",type:"color"},name:"ColorPrimitiveSumi300",attributes:{category:"Color",type:"Primitive",item:"Sumi",subitem:"300"},path:["Color","Primitive","Sumi","300"]},400:{value:"#b4b4b7",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#b4b4b7",type:"color"},name:"ColorPrimitiveSumi400",attributes:{category:"Color",type:"Primitive",item:"Sumi",subitem:"400"},path:["Color","Primitive","Sumi","400"]},500:{value:"#949497",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#949497",type:"color"},name:"ColorPrimitiveSumi500",attributes:{category:"Color",type:"Primitive",item:"Sumi",subitem:"500"},path:["Color","Primitive","Sumi","500"]},600:{value:"#757578",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#757578",type:"color"},name:"ColorPrimitiveSumi600",attributes:{category:"Color",type:"Primitive",item:"Sumi",subitem:"600"},path:["Color","Primitive","Sumi","600"]},700:{value:"#626264",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#626264",type:"color"},name:"ColorPrimitiveSumi700",attributes:{category:"Color",type:"Primitive",item:"Sumi",subitem:"700"},path:["Color","Primitive","Sumi","700"]},800:{value:"#414143",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#414143",type:"color"},name:"ColorPrimitiveSumi800",attributes:{category:"Color",type:"Primitive",item:"Sumi",subitem:"800"},path:["Color","Primitive","Sumi","800"]},900:{value:"#1a1a1c",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#1a1a1c",type:"color"},name:"ColorPrimitiveSumi900",attributes:{category:"Color",type:"Primitive",item:"Sumi",subitem:"900"},path:["Color","Primitive","Sumi","900"]},1e3:{value:"#111111",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#111111",type:"color"},name:"ColorPrimitiveSumi1000",attributes:{category:"Color",type:"Primitive",item:"Sumi",subitem:"1000"},path:["Color","Primitive","Sumi","1000"]},1100:{value:"#080808",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#080808",type:"color"},name:"ColorPrimitiveSumi1100",attributes:{category:"Color",type:"Primitive",item:"Sumi",subitem:"1100"},path:["Color","Primitive","Sumi","1100"]},1200:{value:"#000000",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#000000",type:"color"},name:"ColorPrimitiveSumi1200",attributes:{category:"Color",type:"Primitive",item:"Sumi",subitem:"1200"},path:["Color","Primitive","Sumi","1200"]}},Forest:{50:{value:"#e6f5ec",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#e6f5ec",type:"color"},name:"ColorPrimitiveForest50",attributes:{category:"Color",type:"Primitive",item:"Forest",subitem:"50"},path:["Color","Primitive","Forest","50"]},100:{value:"#c2e5d1",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#c2e5d1",type:"color"},name:"ColorPrimitiveForest100",attributes:{category:"Color",type:"Primitive",item:"Forest",subitem:"100"},path:["Color","Primitive","Forest","100"]},200:{value:"#9bd4b5",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#9bd4b5",type:"color"},name:"ColorPrimitiveForest200",attributes:{category:"Color",type:"Primitive",item:"Forest",subitem:"200"},path:["Color","Primitive","Forest","200"]},300:{value:"#71c598",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#71c598",type:"color"},name:"ColorPrimitiveForest300",attributes:{category:"Color",type:"Primitive",item:"Forest",subitem:"300"},path:["Color","Primitive","Forest","300"]},400:{value:"#51b883",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#51b883",type:"color"},name:"ColorPrimitiveForest400",attributes:{category:"Color",type:"Primitive",item:"Forest",subitem:"400"},path:["Color","Primitive","Forest","400"]},500:{value:"#2cac6e",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#2cac6e",type:"color"},name:"ColorPrimitiveForest500",attributes:{category:"Color",type:"Primitive",item:"Forest",subitem:"500"},path:["Color","Primitive","Forest","500"]},600:{value:"#259d63",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#259d63",type:"color"},name:"ColorPrimitiveForest600",attributes:{category:"Color",type:"Primitive",item:"Forest",subitem:"600"},path:["Color","Primitive","Forest","600"]},700:{value:"#1d8b56",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#1d8b56",type:"color"},name:"ColorPrimitiveForest700",attributes:{category:"Color",type:"Primitive",item:"Forest",subitem:"700"},path:["Color","Primitive","Forest","700"]},800:{value:"#197a4b",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#197a4b",type:"color"},name:"ColorPrimitiveForest800",attributes:{category:"Color",type:"Primitive",item:"Forest",subitem:"800"},path:["Color","Primitive","Forest","800"]},900:{value:"#115a36",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#115a36",type:"color"},name:"ColorPrimitiveForest900",attributes:{category:"Color",type:"Primitive",item:"Forest",subitem:"900"},path:["Color","Primitive","Forest","900"]},1e3:{value:"#0c472a",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#0c472a",type:"color"},name:"ColorPrimitiveForest1000",attributes:{category:"Color",type:"Primitive",item:"Forest",subitem:"1000"},path:["Color","Primitive","Forest","1000"]},1100:{value:"#08351f",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#08351f",type:"color"},name:"ColorPrimitiveForest1100",attributes:{category:"Color",type:"Primitive",item:"Forest",subitem:"1100"},path:["Color","Primitive","Forest","1100"]},1200:{value:"#032213",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#032213",type:"color"},name:"ColorPrimitiveForest1200",attributes:{category:"Color",type:"Primitive",item:"Forest",subitem:"1200"},path:["Color","Primitive","Forest","1200"]}},Wood:{50:{value:"#f3eee5",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#f3eee5",type:"color"},name:"ColorPrimitiveWood50",attributes:{category:"Color",type:"Primitive",item:"Wood",subitem:"50"},path:["Color","Primitive","Wood","50"]},100:{value:"#e7d8b9",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#e7d8b9",type:"color"},name:"ColorPrimitiveWood100",attributes:{category:"Color",type:"Primitive",item:"Wood",subitem:"100"},path:["Color","Primitive","Wood","100"]},200:{value:"#e1c383",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#e1c383",type:"color"},name:"ColorPrimitiveWood200",attributes:{category:"Color",type:"Primitive",item:"Wood",subitem:"200"},path:["Color","Primitive","Wood","200"]},300:{value:"#dcac4d",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#dcac4d",type:"color"},name:"ColorPrimitiveWood300",attributes:{category:"Color",type:"Primitive",item:"Wood",subitem:"300"},path:["Color","Primitive","Wood","300"]},400:{value:"#d69c2b",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#d69c2b",type:"color"},name:"ColorPrimitiveWood400",attributes:{category:"Color",type:"Primitive",item:"Wood",subitem:"400"},path:["Color","Primitive","Wood","400"]},500:{value:"#d18d0f",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#d18d0f",type:"color"},name:"ColorPrimitiveWood500",attributes:{category:"Color",type:"Primitive",item:"Wood",subitem:"500"},path:["Color","Primitive","Wood","500"]},600:{value:"#cd820a",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#cd820a",type:"color"},name:"ColorPrimitiveWood600",attributes:{category:"Color",type:"Primitive",item:"Wood",subitem:"600"},path:["Color","Primitive","Wood","600"]},700:{value:"#c87504",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#c87504",type:"color"},name:"ColorPrimitiveWood700",attributes:{category:"Color",type:"Primitive",item:"Wood",subitem:"700"},path:["Color","Primitive","Wood","700"]},800:{value:"#c16800",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#c16800",type:"color"},name:"ColorPrimitiveWood800",attributes:{category:"Color",type:"Primitive",item:"Wood",subitem:"800"},path:["Color","Primitive","Wood","800"]},900:{value:"#b65200",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#b65200",type:"color"},name:"ColorPrimitiveWood900",attributes:{category:"Color",type:"Primitive",item:"Wood",subitem:"900"},path:["Color","Primitive","Wood","900"]},1e3:{value:"#9c4600",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#9c4600",type:"color"},name:"ColorPrimitiveWood1000",attributes:{category:"Color",type:"Primitive",item:"Wood",subitem:"1000"},path:["Color","Primitive","Wood","1000"]},1100:{value:"#833b00",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#833b00",type:"color"},name:"ColorPrimitiveWood1100",attributes:{category:"Color",type:"Primitive",item:"Wood",subitem:"1100"},path:["Color","Primitive","Wood","1100"]},1200:{value:"#662e00",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#662e00",type:"color"},name:"ColorPrimitiveWood1200",attributes:{category:"Color",type:"Primitive",item:"Wood",subitem:"1200"},path:["Color","Primitive","Wood","1200"]}},Sun:{50:{value:"#ffe7e6",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ffe7e6",type:"color"},name:"ColorPrimitiveSun50",attributes:{category:"Color",type:"Primitive",item:"Sun",subitem:"50"},path:["Color","Primitive","Sun","50"]},100:{value:"#ffc8b8",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ffc8b8",type:"color"},name:"ColorPrimitiveSun100",attributes:{category:"Color",type:"Primitive",item:"Sun",subitem:"100"},path:["Color","Primitive","Sun","100"]},200:{value:"#ffa28b",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ffa28b",type:"color"},name:"ColorPrimitiveSun200",attributes:{category:"Color",type:"Primitive",item:"Sun",subitem:"200"},path:["Color","Primitive","Sun","200"]},300:{value:"#ff7b5c",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ff7b5c",type:"color"},name:"ColorPrimitiveSun300",attributes:{category:"Color",type:"Primitive",item:"Sun",subitem:"300"},path:["Color","Primitive","Sun","300"]},400:{value:"#ff5838",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ff5838",type:"color"},name:"ColorPrimitiveSun400",attributes:{category:"Color",type:"Primitive",item:"Sun",subitem:"400"},path:["Color","Primitive","Sun","400"]},500:{value:"#ff4b36",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ff4b36",type:"color"},name:"ColorPrimitiveSun500",attributes:{category:"Color",type:"Primitive",item:"Sun",subitem:"500"},path:["Color","Primitive","Sun","500"]},600:{value:"#ff220d",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ff220d",type:"color"},name:"ColorPrimitiveSun600",attributes:{category:"Color",type:"Primitive",item:"Sun",subitem:"600"},path:["Color","Primitive","Sun","600"]},700:{value:"#fa1606",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#fa1606",type:"color"},name:"ColorPrimitiveSun700",attributes:{category:"Color",type:"Primitive",item:"Sun",subitem:"700"},path:["Color","Primitive","Sun","700"]},800:{value:"#ec0000",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ec0000",type:"color"},name:"ColorPrimitiveSun800",attributes:{category:"Color",type:"Primitive",item:"Sun",subitem:"800"},path:["Color","Primitive","Sun","800"]},900:{value:"#d50000",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#d50000",type:"color"},name:"ColorPrimitiveSun900",attributes:{category:"Color",type:"Primitive",item:"Sun",subitem:"900"},path:["Color","Primitive","Sun","900"]},1e3:{value:"#af0000",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#af0000",type:"color"},name:"ColorPrimitiveSun1000",attributes:{category:"Color",type:"Primitive",item:"Sun",subitem:"1000"},path:["Color","Primitive","Sun","1000"]},1100:{value:"#890101",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#890101",type:"color"},name:"ColorPrimitiveSun1100",attributes:{category:"Color",type:"Primitive",item:"Sun",subitem:"1100"},path:["Color","Primitive","Sun","1100"]},1200:{value:"#640101",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#640101",type:"color"},name:"ColorPrimitiveSun1200",attributes:{category:"Color",type:"Primitive",item:"Sun",subitem:"1200"},path:["Color","Primitive","Sun","1200"]}},Blue:{50:{value:"#e8f1fe",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#e8f1fe",type:"color"},name:"ColorPrimitiveBlue50",attributes:{category:"Color",type:"Primitive",item:"Blue",subitem:"50"},path:["Color","Primitive","Blue","50"]},100:{value:"#d9e6ff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#d9e6ff",type:"color"},name:"ColorPrimitiveBlue100",attributes:{category:"Color",type:"Primitive",item:"Blue",subitem:"100"},path:["Color","Primitive","Blue","100"]},200:{value:"#c5d7fb",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#c5d7fb",type:"color"},name:"ColorPrimitiveBlue200",attributes:{category:"Color",type:"Primitive",item:"Blue",subitem:"200"},path:["Color","Primitive","Blue","200"]},300:{value:"#9db7f9",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#9db7f9",type:"color"},name:"ColorPrimitiveBlue300",attributes:{category:"Color",type:"Primitive",item:"Blue",subitem:"300"},path:["Color","Primitive","Blue","300"]},400:{value:"#7096f8",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#7096f8",type:"color"},name:"ColorPrimitiveBlue400",attributes:{category:"Color",type:"Primitive",item:"Blue",subitem:"400"},path:["Color","Primitive","Blue","400"]},500:{value:"#4979f5",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#4979f5",type:"color"},name:"ColorPrimitiveBlue500",attributes:{category:"Color",type:"Primitive",item:"Blue",subitem:"500"},path:["Color","Primitive","Blue","500"]},600:{value:"#3460fb",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#3460fb",type:"color"},name:"ColorPrimitiveBlue600",attributes:{category:"Color",type:"Primitive",item:"Blue",subitem:"600"},path:["Color","Primitive","Blue","600"]},700:{value:"#264af4",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#264af4",type:"color"},name:"ColorPrimitiveBlue700",attributes:{category:"Color",type:"Primitive",item:"Blue",subitem:"700"},path:["Color","Primitive","Blue","700"]},800:{value:"#0031d8",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#0031d8",type:"color"},name:"ColorPrimitiveBlue800",attributes:{category:"Color",type:"Primitive",item:"Blue",subitem:"800"},path:["Color","Primitive","Blue","800"]},900:{value:"#0017c1",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#0017c1",type:"color"},name:"ColorPrimitiveBlue900",attributes:{category:"Color",type:"Primitive",item:"Blue",subitem:"900"},path:["Color","Primitive","Blue","900"]},1e3:{value:"#00118f",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#00118f",type:"color"},name:"ColorPrimitiveBlue1000",attributes:{category:"Color",type:"Primitive",item:"Blue",subitem:"1000"},path:["Color","Primitive","Blue","1000"]},1100:{value:"#000071",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#000071",type:"color"},name:"ColorPrimitiveBlue1100",attributes:{category:"Color",type:"Primitive",item:"Blue",subitem:"1100"},path:["Color","Primitive","Blue","1100"]},1200:{value:"#000060",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#000060",type:"color"},name:"ColorPrimitiveBlue1200",attributes:{category:"Color",type:"Primitive",item:"Blue",subitem:"1200"},path:["Color","Primitive","Blue","1200"]}},LightBlue:{50:{value:"#f0f9ff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#f0f9ff",type:"color"},name:"ColorPrimitiveLightBlue50",attributes:{category:"Color",type:"Primitive",item:"LightBlue",subitem:"50"},path:["Color","Primitive","LightBlue","50"]},100:{value:"#dcf0ff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#dcf0ff",type:"color"},name:"ColorPrimitiveLightBlue100",attributes:{category:"Color",type:"Primitive",item:"LightBlue",subitem:"100"},path:["Color","Primitive","LightBlue","100"]},200:{value:"#c0e4ff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#c0e4ff",type:"color"},name:"ColorPrimitiveLightBlue200",attributes:{category:"Color",type:"Primitive",item:"LightBlue",subitem:"200"},path:["Color","Primitive","LightBlue","200"]},300:{value:"#97d3ff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#97d3ff",type:"color"},name:"ColorPrimitiveLightBlue300",attributes:{category:"Color",type:"Primitive",item:"LightBlue",subitem:"300"},path:["Color","Primitive","LightBlue","300"]},400:{value:"#57b8ff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#57b8ff",type:"color"},name:"ColorPrimitiveLightBlue400",attributes:{category:"Color",type:"Primitive",item:"LightBlue",subitem:"400"},path:["Color","Primitive","LightBlue","400"]},500:{value:"#39abff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#39abff",type:"color"},name:"ColorPrimitiveLightBlue500",attributes:{category:"Color",type:"Primitive",item:"LightBlue",subitem:"500"},path:["Color","Primitive","LightBlue","500"]},600:{value:"#008bf2",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#008bf2",type:"color"},name:"ColorPrimitiveLightBlue600",attributes:{category:"Color",type:"Primitive",item:"LightBlue",subitem:"600"},path:["Color","Primitive","LightBlue","600"]},700:{value:"#0877d7",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#0877d7",type:"color"},name:"ColorPrimitiveLightBlue700",attributes:{category:"Color",type:"Primitive",item:"LightBlue",subitem:"700"},path:["Color","Primitive","LightBlue","700"]},800:{value:"#0066be",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#0066be",type:"color"},name:"ColorPrimitiveLightBlue800",attributes:{category:"Color",type:"Primitive",item:"LightBlue",subitem:"800"},path:["Color","Primitive","LightBlue","800"]},900:{value:"#0055ad",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#0055ad",type:"color"},name:"ColorPrimitiveLightBlue900",attributes:{category:"Color",type:"Primitive",item:"LightBlue",subitem:"900"},path:["Color","Primitive","LightBlue","900"]},1e3:{value:"#00428c",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#00428c",type:"color"},name:"ColorPrimitiveLightBlue1000",attributes:{category:"Color",type:"Primitive",item:"LightBlue",subitem:"1000"},path:["Color","Primitive","LightBlue","1000"]},1100:{value:"#00316a",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#00316a",type:"color"},name:"ColorPrimitiveLightBlue1100",attributes:{category:"Color",type:"Primitive",item:"LightBlue",subitem:"1100"},path:["Color","Primitive","LightBlue","1100"]},1200:{value:"#00234b",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#00234b",type:"color"},name:"ColorPrimitiveLightBlue1200",attributes:{category:"Color",type:"Primitive",item:"LightBlue",subitem:"1200"},path:["Color","Primitive","LightBlue","1200"]}},Cyan:{50:{value:"#e9f7f9",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#e9f7f9",type:"color"},name:"ColorPrimitiveCyan50",attributes:{category:"Color",type:"Primitive",item:"Cyan",subitem:"50"},path:["Color","Primitive","Cyan","50"]},100:{value:"#c8f8ff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#c8f8ff",type:"color"},name:"ColorPrimitiveCyan100",attributes:{category:"Color",type:"Primitive",item:"Cyan",subitem:"100"},path:["Color","Primitive","Cyan","100"]},200:{value:"#99f2ff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#99f2ff",type:"color"},name:"ColorPrimitiveCyan200",attributes:{category:"Color",type:"Primitive",item:"Cyan",subitem:"200"},path:["Color","Primitive","Cyan","200"]},300:{value:"#79e2f2",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#79e2f2",type:"color"},name:"ColorPrimitiveCyan300",attributes:{category:"Color",type:"Primitive",item:"Cyan",subitem:"300"},path:["Color","Primitive","Cyan","300"]},400:{value:"#2bc8e4",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#2bc8e4",type:"color"},name:"ColorPrimitiveCyan400",attributes:{category:"Color",type:"Primitive",item:"Cyan",subitem:"400"},path:["Color","Primitive","Cyan","400"]},500:{value:"#01b7d6",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#01b7d6",type:"color"},name:"ColorPrimitiveCyan500",attributes:{category:"Color",type:"Primitive",item:"Cyan",subitem:"500"},path:["Color","Primitive","Cyan","500"]},600:{value:"#00a3bf",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#00a3bf",type:"color"},name:"ColorPrimitiveCyan600",attributes:{category:"Color",type:"Primitive",item:"Cyan",subitem:"600"},path:["Color","Primitive","Cyan","600"]},700:{value:"#008da6",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#008da6",type:"color"},name:"ColorPrimitiveCyan700",attributes:{category:"Color",type:"Primitive",item:"Cyan",subitem:"700"},path:["Color","Primitive","Cyan","700"]},800:{value:"#008299",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#008299",type:"color"},name:"ColorPrimitiveCyan800",attributes:{category:"Color",type:"Primitive",item:"Cyan",subitem:"800"},path:["Color","Primitive","Cyan","800"]},900:{value:"#006f83",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#006f83",type:"color"},name:"ColorPrimitiveCyan900",attributes:{category:"Color",type:"Primitive",item:"Cyan",subitem:"900"},path:["Color","Primitive","Cyan","900"]},1e3:{value:"#006173",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#006173",type:"color"},name:"ColorPrimitiveCyan1000",attributes:{category:"Color",type:"Primitive",item:"Cyan",subitem:"1000"},path:["Color","Primitive","Cyan","1000"]},1100:{value:"#004c59",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#004c59",type:"color"},name:"ColorPrimitiveCyan1100",attributes:{category:"Color",type:"Primitive",item:"Cyan",subitem:"1100"},path:["Color","Primitive","Cyan","1100"]},1200:{value:"#003741",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#003741",type:"color"},name:"ColorPrimitiveCyan1200",attributes:{category:"Color",type:"Primitive",item:"Cyan",subitem:"1200"},path:["Color","Primitive","Cyan","1200"]}},Green:{50:{value:"#e6f5ec",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#e6f5ec",type:"color"},name:"ColorPrimitiveGreen50",attributes:{category:"Color",type:"Primitive",item:"Green",subitem:"50"},path:["Color","Primitive","Green","50"]},100:{value:"#c2e5d1",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#c2e5d1",type:"color"},name:"ColorPrimitiveGreen100",attributes:{category:"Color",type:"Primitive",item:"Green",subitem:"100"},path:["Color","Primitive","Green","100"]},200:{value:"#9bd4b5",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#9bd4b5",type:"color"},name:"ColorPrimitiveGreen200",attributes:{category:"Color",type:"Primitive",item:"Green",subitem:"200"},path:["Color","Primitive","Green","200"]},300:{value:"#71c598",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#71c598",type:"color"},name:"ColorPrimitiveGreen300",attributes:{category:"Color",type:"Primitive",item:"Green",subitem:"300"},path:["Color","Primitive","Green","300"]},400:{value:"#51b883",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#51b883",type:"color"},name:"ColorPrimitiveGreen400",attributes:{category:"Color",type:"Primitive",item:"Green",subitem:"400"},path:["Color","Primitive","Green","400"]},500:{value:"#2cac6e",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#2cac6e",type:"color"},name:"ColorPrimitiveGreen500",attributes:{category:"Color",type:"Primitive",item:"Green",subitem:"500"},path:["Color","Primitive","Green","500"]},600:{value:"#259d63",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#259d63",type:"color"},name:"ColorPrimitiveGreen600",attributes:{category:"Color",type:"Primitive",item:"Green",subitem:"600"},path:["Color","Primitive","Green","600"]},700:{value:"#1d8b56",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#1d8b56",type:"color"},name:"ColorPrimitiveGreen700",attributes:{category:"Color",type:"Primitive",item:"Green",subitem:"700"},path:["Color","Primitive","Green","700"]},800:{value:"#197a4b",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#197a4b",type:"color"},name:"ColorPrimitiveGreen800",attributes:{category:"Color",type:"Primitive",item:"Green",subitem:"800"},path:["Color","Primitive","Green","800"]},900:{value:"#115a36",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#115a36",type:"color"},name:"ColorPrimitiveGreen900",attributes:{category:"Color",type:"Primitive",item:"Green",subitem:"900"},path:["Color","Primitive","Green","900"]},1e3:{value:"#0c472a",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#0c472a",type:"color"},name:"ColorPrimitiveGreen1000",attributes:{category:"Color",type:"Primitive",item:"Green",subitem:"1000"},path:["Color","Primitive","Green","1000"]},1100:{value:"#08351f",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#08351f",type:"color"},name:"ColorPrimitiveGreen1100",attributes:{category:"Color",type:"Primitive",item:"Green",subitem:"1100"},path:["Color","Primitive","Green","1100"]},1200:{value:"#032213",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#032213",type:"color"},name:"ColorPrimitiveGreen1200",attributes:{category:"Color",type:"Primitive",item:"Green",subitem:"1200"},path:["Color","Primitive","Green","1200"]}},Lime:{50:{value:"#ebfad9",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ebfad9",type:"color"},name:"ColorPrimitiveLime50",attributes:{category:"Color",type:"Primitive",item:"Lime",subitem:"50"},path:["Color","Primitive","Lime","50"]},100:{value:"#d0f5a2",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#d0f5a2",type:"color"},name:"ColorPrimitiveLime100",attributes:{category:"Color",type:"Primitive",item:"Lime",subitem:"100"},path:["Color","Primitive","Lime","100"]},200:{value:"#c0f354",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#c0f354",type:"color"},name:"ColorPrimitiveLime200",attributes:{category:"Color",type:"Primitive",item:"Lime",subitem:"200"},path:["Color","Primitive","Lime","200"]},300:{value:"#ade830",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ade830",type:"color"},name:"ColorPrimitiveLime300",attributes:{category:"Color",type:"Primitive",item:"Lime",subitem:"300"},path:["Color","Primitive","Lime","300"]},400:{value:"#9ddd15",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#9ddd15",type:"color"},name:"ColorPrimitiveLime400",attributes:{category:"Color",type:"Primitive",item:"Lime",subitem:"400"},path:["Color","Primitive","Lime","400"]},500:{value:"#8cc80c",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#8cc80c",type:"color"},name:"ColorPrimitiveLime500",attributes:{category:"Color",type:"Primitive",item:"Lime",subitem:"500"},path:["Color","Primitive","Lime","500"]},600:{value:"#7eb40d",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#7eb40d",type:"color"},name:"ColorPrimitiveLime600",attributes:{category:"Color",type:"Primitive",item:"Lime",subitem:"600"},path:["Color","Primitive","Lime","600"]},700:{value:"#6fa104",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#6fa104",type:"color"},name:"ColorPrimitiveLime700",attributes:{category:"Color",type:"Primitive",item:"Lime",subitem:"700"},path:["Color","Primitive","Lime","700"]},800:{value:"#618e00",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#618e00",type:"color"},name:"ColorPrimitiveLime800",attributes:{category:"Color",type:"Primitive",item:"Lime",subitem:"800"},path:["Color","Primitive","Lime","800"]},900:{value:"#507500",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#507500",type:"color"},name:"ColorPrimitiveLime900",attributes:{category:"Color",type:"Primitive",item:"Lime",subitem:"900"},path:["Color","Primitive","Lime","900"]},1e3:{value:"#3e5a00",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#3e5a00",type:"color"},name:"ColorPrimitiveLime1000",attributes:{category:"Color",type:"Primitive",item:"Lime",subitem:"1000"},path:["Color","Primitive","Lime","1000"]},1100:{value:"#2c4100",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#2c4100",type:"color"},name:"ColorPrimitiveLime1100",attributes:{category:"Color",type:"Primitive",item:"Lime",subitem:"1100"},path:["Color","Primitive","Lime","1100"]},1200:{value:"#1e2d00",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#1e2d00",type:"color"},name:"ColorPrimitiveLime1200",attributes:{category:"Color",type:"Primitive",item:"Lime",subitem:"1200"},path:["Color","Primitive","Lime","1200"]}},Yellow:{50:{value:"#fbf5e0",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#fbf5e0",type:"color"},name:"ColorPrimitiveYellow50",attributes:{category:"Color",type:"Primitive",item:"Yellow",subitem:"50"},path:["Color","Primitive","Yellow","50"]},100:{value:"#fff0b3",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#fff0b3",type:"color"},name:"ColorPrimitiveYellow100",attributes:{category:"Color",type:"Primitive",item:"Yellow",subitem:"100"},path:["Color","Primitive","Yellow","100"]},200:{value:"#ffe380",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ffe380",type:"color"},name:"ColorPrimitiveYellow200",attributes:{category:"Color",type:"Primitive",item:"Yellow",subitem:"200"},path:["Color","Primitive","Yellow","200"]},300:{value:"#ffd43d",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ffd43d",type:"color"},name:"ColorPrimitiveYellow300",attributes:{category:"Color",type:"Primitive",item:"Yellow",subitem:"300"},path:["Color","Primitive","Yellow","300"]},400:{value:"#ffc700",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ffc700",type:"color"},name:"ColorPrimitiveYellow400",attributes:{category:"Color",type:"Primitive",item:"Yellow",subitem:"400"},path:["Color","Primitive","Yellow","400"]},500:{value:"#ebb700",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ebb700",type:"color"},name:"ColorPrimitiveYellow500",attributes:{category:"Color",type:"Primitive",item:"Yellow",subitem:"500"},path:["Color","Primitive","Yellow","500"]},600:{value:"#d2a400",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#d2a400",type:"color"},name:"ColorPrimitiveYellow600",attributes:{category:"Color",type:"Primitive",item:"Yellow",subitem:"600"},path:["Color","Primitive","Yellow","600"]},700:{value:"#b78f00",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#b78f00",type:"color"},name:"ColorPrimitiveYellow700",attributes:{category:"Color",type:"Primitive",item:"Yellow",subitem:"700"},path:["Color","Primitive","Yellow","700"]},800:{value:"#a58000",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#a58000",type:"color"},name:"ColorPrimitiveYellow800",attributes:{category:"Color",type:"Primitive",item:"Yellow",subitem:"800"},path:["Color","Primitive","Yellow","800"]},900:{value:"#927200",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#927200",type:"color"},name:"ColorPrimitiveYellow900",attributes:{category:"Color",type:"Primitive",item:"Yellow",subitem:"900"},path:["Color","Primitive","Yellow","900"]},1e3:{value:"#806300",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#806300",type:"color"},name:"ColorPrimitiveYellow1000",attributes:{category:"Color",type:"Primitive",item:"Yellow",subitem:"1000"},path:["Color","Primitive","Yellow","1000"]},1100:{value:"#6e5600",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#6e5600",type:"color"},name:"ColorPrimitiveYellow1100",attributes:{category:"Color",type:"Primitive",item:"Yellow",subitem:"1100"},path:["Color","Primitive","Yellow","1100"]},1200:{value:"#604b00",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#604b00",type:"color"},name:"ColorPrimitiveYellow1200",attributes:{category:"Color",type:"Primitive",item:"Yellow",subitem:"1200"},path:["Color","Primitive","Yellow","1200"]}},Orange:{50:{value:"#ffeee2",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ffeee2",type:"color"},name:"ColorPrimitiveOrange50",attributes:{category:"Color",type:"Primitive",item:"Orange",subitem:"50"},path:["Color","Primitive","Orange","50"]},100:{value:"#ffdfca",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ffdfca",type:"color"},name:"ColorPrimitiveOrange100",attributes:{category:"Color",type:"Primitive",item:"Orange",subitem:"100"},path:["Color","Primitive","Orange","100"]},200:{value:"#ffc199",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ffc199",type:"color"},name:"ColorPrimitiveOrange200",attributes:{category:"Color",type:"Primitive",item:"Orange",subitem:"200"},path:["Color","Primitive","Orange","200"]},300:{value:"#ffa66d",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ffa66d",type:"color"},name:"ColorPrimitiveOrange300",attributes:{category:"Color",type:"Primitive",item:"Orange",subitem:"300"},path:["Color","Primitive","Orange","300"]},400:{value:"#ff8d44",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ff8d44",type:"color"},name:"ColorPrimitiveOrange400",attributes:{category:"Color",type:"Primitive",item:"Orange",subitem:"400"},path:["Color","Primitive","Orange","400"]},500:{value:"#ff7628",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ff7628",type:"color"},name:"ColorPrimitiveOrange500",attributes:{category:"Color",type:"Primitive",item:"Orange",subitem:"500"},path:["Color","Primitive","Orange","500"]},600:{value:"#fb5b01",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#fb5b01",type:"color"},name:"ColorPrimitiveOrange600",attributes:{category:"Color",type:"Primitive",item:"Orange",subitem:"600"},path:["Color","Primitive","Orange","600"]},700:{value:"#e25100",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#e25100",type:"color"},name:"ColorPrimitiveOrange700",attributes:{category:"Color",type:"Primitive",item:"Orange",subitem:"700"},path:["Color","Primitive","Orange","700"]},800:{value:"#c74700",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#c74700",type:"color"},name:"ColorPrimitiveOrange800",attributes:{category:"Color",type:"Primitive",item:"Orange",subitem:"800"},path:["Color","Primitive","Orange","800"]},900:{value:"#ac3e00",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ac3e00",type:"color"},name:"ColorPrimitiveOrange900",attributes:{category:"Color",type:"Primitive",item:"Orange",subitem:"900"},path:["Color","Primitive","Orange","900"]},1e3:{value:"#8b3200",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#8b3200",type:"color"},name:"ColorPrimitiveOrange1000",attributes:{category:"Color",type:"Primitive",item:"Orange",subitem:"1000"},path:["Color","Primitive","Orange","1000"]},1100:{value:"#6d2700",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#6d2700",type:"color"},name:"ColorPrimitiveOrange1100",attributes:{category:"Color",type:"Primitive",item:"Orange",subitem:"1100"},path:["Color","Primitive","Orange","1100"]},1200:{value:"#541e00",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#541e00",type:"color"},name:"ColorPrimitiveOrange1200",attributes:{category:"Color",type:"Primitive",item:"Orange",subitem:"1200"},path:["Color","Primitive","Orange","1200"]}},Red:{50:{value:"#fdeeee",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#fdeeee",type:"color"},name:"ColorPrimitiveRed50",attributes:{category:"Color",type:"Primitive",item:"Red",subitem:"50"},path:["Color","Primitive","Red","50"]},100:{value:"#ffdada",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ffdada",type:"color"},name:"ColorPrimitiveRed100",attributes:{category:"Color",type:"Primitive",item:"Red",subitem:"100"},path:["Color","Primitive","Red","100"]},200:{value:"#ffbbbb",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ffbbbb",type:"color"},name:"ColorPrimitiveRed200",attributes:{category:"Color",type:"Primitive",item:"Red",subitem:"200"},path:["Color","Primitive","Red","200"]},300:{value:"#ff9696",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ff9696",type:"color"},name:"ColorPrimitiveRed300",attributes:{category:"Color",type:"Primitive",item:"Red",subitem:"300"},path:["Color","Primitive","Red","300"]},400:{value:"#ff7171",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ff7171",type:"color"},name:"ColorPrimitiveRed400",attributes:{category:"Color",type:"Primitive",item:"Red",subitem:"400"},path:["Color","Primitive","Red","400"]},500:{value:"#ff5454",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ff5454",type:"color"},name:"ColorPrimitiveRed500",attributes:{category:"Color",type:"Primitive",item:"Red",subitem:"500"},path:["Color","Primitive","Red","500"]},600:{value:"#fe3939",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#fe3939",type:"color"},name:"ColorPrimitiveRed600",attributes:{category:"Color",type:"Primitive",item:"Red",subitem:"600"},path:["Color","Primitive","Red","600"]},700:{value:"#fa0000",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#fa0000",type:"color"},name:"ColorPrimitiveRed700",attributes:{category:"Color",type:"Primitive",item:"Red",subitem:"700"},path:["Color","Primitive","Red","700"]},800:{value:"#ec0000",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ec0000",type:"color"},name:"ColorPrimitiveRed800",attributes:{category:"Color",type:"Primitive",item:"Red",subitem:"800"},path:["Color","Primitive","Red","800"]},900:{value:"#ce0000",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ce0000",type:"color"},name:"ColorPrimitiveRed900",attributes:{category:"Color",type:"Primitive",item:"Red",subitem:"900"},path:["Color","Primitive","Red","900"]},1e3:{value:"#a90000",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#a90000",type:"color"},name:"ColorPrimitiveRed1000",attributes:{category:"Color",type:"Primitive",item:"Red",subitem:"1000"},path:["Color","Primitive","Red","1000"]},1100:{value:"#850000",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#850000",type:"color"},name:"ColorPrimitiveRed1100",attributes:{category:"Color",type:"Primitive",item:"Red",subitem:"1100"},path:["Color","Primitive","Red","1100"]},1200:{value:"#620000",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#620000",type:"color"},name:"ColorPrimitiveRed1200",attributes:{category:"Color",type:"Primitive",item:"Red",subitem:"1200"},path:["Color","Primitive","Red","1200"]}},Magenta:{50:{value:"#f3e5f4",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#f3e5f4",type:"color"},name:"ColorPrimitiveMagenta50",attributes:{category:"Color",type:"Primitive",item:"Magenta",subitem:"50"},path:["Color","Primitive","Magenta","50"]},100:{value:"#ffd0ff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ffd0ff",type:"color"},name:"ColorPrimitiveMagenta100",attributes:{category:"Color",type:"Primitive",item:"Magenta",subitem:"100"},path:["Color","Primitive","Magenta","100"]},200:{value:"#ffaeff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ffaeff",type:"color"},name:"ColorPrimitiveMagenta200",attributes:{category:"Color",type:"Primitive",item:"Magenta",subitem:"200"},path:["Color","Primitive","Magenta","200"]},300:{value:"#ff8eff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ff8eff",type:"color"},name:"ColorPrimitiveMagenta300",attributes:{category:"Color",type:"Primitive",item:"Magenta",subitem:"300"},path:["Color","Primitive","Magenta","300"]},400:{value:"#f661f6",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#f661f6",type:"color"},name:"ColorPrimitiveMagenta400",attributes:{category:"Color",type:"Primitive",item:"Magenta",subitem:"400"},path:["Color","Primitive","Magenta","400"]},500:{value:"#f137f1",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#f137f1",type:"color"},name:"ColorPrimitiveMagenta500",attributes:{category:"Color",type:"Primitive",item:"Magenta",subitem:"500"},path:["Color","Primitive","Magenta","500"]},600:{value:"#db00db",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#db00db",type:"color"},name:"ColorPrimitiveMagenta600",attributes:{category:"Color",type:"Primitive",item:"Magenta",subitem:"600"},path:["Color","Primitive","Magenta","600"]},700:{value:"#c000c0",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#c000c0",type:"color"},name:"ColorPrimitiveMagenta700",attributes:{category:"Color",type:"Primitive",item:"Magenta",subitem:"700"},path:["Color","Primitive","Magenta","700"]},800:{value:"#aa00aa",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#aa00aa",type:"color"},name:"ColorPrimitiveMagenta800",attributes:{category:"Color",type:"Primitive",item:"Magenta",subitem:"800"},path:["Color","Primitive","Magenta","800"]},900:{value:"#8b008b",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#8b008b",type:"color"},name:"ColorPrimitiveMagenta900",attributes:{category:"Color",type:"Primitive",item:"Magenta",subitem:"900"},path:["Color","Primitive","Magenta","900"]},1e3:{value:"#6c006c",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#6c006c",type:"color"},name:"ColorPrimitiveMagenta1000",attributes:{category:"Color",type:"Primitive",item:"Magenta",subitem:"1000"},path:["Color","Primitive","Magenta","1000"]},1100:{value:"#500050",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#500050",type:"color"},name:"ColorPrimitiveMagenta1100",attributes:{category:"Color",type:"Primitive",item:"Magenta",subitem:"1100"},path:["Color","Primitive","Magenta","1100"]},1200:{value:"#3b003b",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#3b003b",type:"color"},name:"ColorPrimitiveMagenta1200",attributes:{category:"Color",type:"Primitive",item:"Magenta",subitem:"1200"},path:["Color","Primitive","Magenta","1200"]}},Purple:{50:{value:"#f1eafa",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#f1eafa",type:"color"},name:"ColorPrimitivePurple50",attributes:{category:"Color",type:"Primitive",item:"Purple",subitem:"50"},path:["Color","Primitive","Purple","50"]},100:{value:"#ecddff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ecddff",type:"color"},name:"ColorPrimitivePurple100",attributes:{category:"Color",type:"Primitive",item:"Purple",subitem:"100"},path:["Color","Primitive","Purple","100"]},200:{value:"#ddc2ff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#ddc2ff",type:"color"},name:"ColorPrimitivePurple200",attributes:{category:"Color",type:"Primitive",item:"Purple",subitem:"200"},path:["Color","Primitive","Purple","200"]},300:{value:"#cda6ff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#cda6ff",type:"color"},name:"ColorPrimitivePurple300",attributes:{category:"Color",type:"Primitive",item:"Purple",subitem:"300"},path:["Color","Primitive","Purple","300"]},400:{value:"#bb87ff",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#bb87ff",type:"color"},name:"ColorPrimitivePurple400",attributes:{category:"Color",type:"Primitive",item:"Purple",subitem:"400"},path:["Color","Primitive","Purple","400"]},500:{value:"#a565f8",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#a565f8",type:"color"},name:"ColorPrimitivePurple500",attributes:{category:"Color",type:"Primitive",item:"Purple",subitem:"500"},path:["Color","Primitive","Purple","500"]},600:{value:"#8843e1",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#8843e1",type:"color"},name:"ColorPrimitivePurple600",attributes:{category:"Color",type:"Primitive",item:"Purple",subitem:"600"},path:["Color","Primitive","Purple","600"]},700:{value:"#6f23d0",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#6f23d0",type:"color"},name:"ColorPrimitivePurple700",attributes:{category:"Color",type:"Primitive",item:"Purple",subitem:"700"},path:["Color","Primitive","Purple","700"]},800:{value:"#5c10be",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#5c10be",type:"color"},name:"ColorPrimitivePurple800",attributes:{category:"Color",type:"Primitive",item:"Purple",subitem:"800"},path:["Color","Primitive","Purple","800"]},900:{value:"#5109ad",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#5109ad",type:"color"},name:"ColorPrimitivePurple900",attributes:{category:"Color",type:"Primitive",item:"Purple",subitem:"900"},path:["Color","Primitive","Purple","900"]},1e3:{value:"#41048e",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#41048e",type:"color"},name:"ColorPrimitivePurple1000",attributes:{category:"Color",type:"Primitive",item:"Purple",subitem:"1000"},path:["Color","Primitive","Purple","1000"]},1100:{value:"#30016c",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#30016c",type:"color"},name:"ColorPrimitivePurple1100",attributes:{category:"Color",type:"Primitive",item:"Purple",subitem:"1100"},path:["Color","Primitive","Purple","1100"]},1200:{value:"#21004b",type:"color",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"#21004b",type:"color"},name:"ColorPrimitivePurple1200",attributes:{category:"Color",type:"Primitive",item:"Purple",subitem:"1200"},path:["Color","Primitive","Purple","1200"]}}}},FontWeight:{400:{value:400,type:"fontWeights",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:400,type:"fontWeights"},name:"FontWeight400",attributes:{category:"FontWeight",type:"400"},path:["FontWeight","400"]},500:{value:500,type:"fontWeights",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:500,type:"fontWeights"},name:"FontWeight500",attributes:{category:"FontWeight",type:"500"},path:["FontWeight","500"]},700:{value:700,type:"fontWeights",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:700,type:"fontWeights"},name:"FontWeight700",attributes:{category:"FontWeight",type:"700"},path:["FontWeight","700"]}},FontSize:{14:{value:"0.875rem",type:"fontSizes",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"14px",type:"fontSizes"},name:"FontSize14",attributes:{category:"FontSize",type:"14"},path:["FontSize","14"]},16:{value:"1rem",type:"fontSizes",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"16px",type:"fontSizes"},name:"FontSize16",attributes:{category:"FontSize",type:"16"},path:["FontSize","16"]},17:{value:"1.0625rem",type:"fontSizes",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"17px",type:"fontSizes"},name:"FontSize17",attributes:{category:"FontSize",type:"17"},path:["FontSize","17"]},18:{value:"1.125rem",type:"fontSizes",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"18px",type:"fontSizes"},name:"FontSize18",attributes:{category:"FontSize",type:"18"},path:["FontSize","18"]},20:{value:"1.25rem",type:"fontSizes",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"20px",type:"fontSizes"},name:"FontSize20",attributes:{category:"FontSize",type:"20"},path:["FontSize","20"]},22:{value:"1.375rem",type:"fontSizes",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"22px",type:"fontSizes"},name:"FontSize22",attributes:{category:"FontSize",type:"22"},path:["FontSize","22"]},24:{value:"1.5rem",type:"fontSizes",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"24px",type:"fontSizes"},name:"FontSize24",attributes:{category:"FontSize",type:"24"},path:["FontSize","24"]},26:{value:"1.625rem",type:"fontSizes",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"26px",type:"fontSizes"},name:"FontSize26",attributes:{category:"FontSize",type:"26"},path:["FontSize","26"]},28:{value:"1.75rem",type:"fontSizes",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"28px",type:"fontSizes"},name:"FontSize28",attributes:{category:"FontSize",type:"28"},path:["FontSize","28"]},32:{value:"2rem",type:"fontSizes",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"32px",type:"fontSizes"},name:"FontSize32",attributes:{category:"FontSize",type:"32"},path:["FontSize","32"]},36:{value:"2.25rem",type:"fontSizes",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"36px",type:"fontSizes"},name:"FontSize36",attributes:{category:"FontSize",type:"36"},path:["FontSize","36"]},45:{value:"2.8125rem",type:"fontSizes",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"45px",type:"fontSizes"},name:"FontSize45",attributes:{category:"FontSize",type:"45"},path:["FontSize","45"]},48:{value:"3rem",type:"fontSizes",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"48px",type:"fontSizes"},name:"FontSize48",attributes:{category:"FontSize",type:"48"},path:["FontSize","48"]},57:{value:"3.5625rem",type:"fontSizes",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"57px",type:"fontSizes"},name:"FontSize57",attributes:{category:"FontSize",type:"57"},path:["FontSize","57"]},64:{value:"4rem",type:"fontSizes",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"64px",type:"fontSizes"},name:"FontSize64",attributes:{category:"FontSize",type:"64"},path:["FontSize","64"]}},LineHeight:{"1_0":{value:"1.0",type:"lineHeights",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"1.0",type:"lineHeights"},name:"LineHeight10",attributes:{category:"LineHeight",type:"1_0"},path:["LineHeight","1_0"]},"1_1":{value:1.1,type:"lineHeights",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:1.1,type:"lineHeights"},name:"LineHeight11",attributes:{category:"LineHeight",type:"1_1"},path:["LineHeight","1_1"]},"1_2":{value:1.2,type:"lineHeights",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:1.2,type:"lineHeights"},name:"LineHeight12",attributes:{category:"LineHeight",type:"1_2"},path:["LineHeight","1_2"]},"1_3":{value:1.3,type:"lineHeights",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:1.3,type:"lineHeights"},name:"LineHeight13",attributes:{category:"LineHeight",type:"1_3"},path:["LineHeight","1_3"]},"1_4":{value:1.4,type:"lineHeights",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:1.4,type:"lineHeights"},name:"LineHeight14",attributes:{category:"LineHeight",type:"1_4"},path:["LineHeight","1_4"]},"1_5":{value:1.5,type:"lineHeights",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:1.5,type:"lineHeights"},name:"LineHeight15",attributes:{category:"LineHeight",type:"1_5"},path:["LineHeight","1_5"]},"1_6":{value:1.6,type:"lineHeights",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:1.6,type:"lineHeights"},name:"LineHeight16",attributes:{category:"LineHeight",type:"1_6"},path:["LineHeight","1_6"]},"1_7":{value:1.7,type:"lineHeights",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:1.7,type:"lineHeights"},name:"LineHeight17",attributes:{category:"LineHeight",type:"1_7"},path:["LineHeight","1_7"]}},BorderRadius:{8:{value:"8px",type:"borderRadius",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"8px",type:"borderRadius"},name:"BorderRadius8",attributes:{category:"BorderRadius",type:"8"},path:["BorderRadius","8"]},16:{value:"16px",type:"borderRadius",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"16px",type:"borderRadius"},name:"BorderRadius16",attributes:{category:"BorderRadius",type:"16"},path:["BorderRadius","16"]},32:{value:"32px",type:"borderRadius",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:"32px",type:"borderRadius"},name:"BorderRadius32",attributes:{category:"BorderRadius",type:"32"},path:["BorderRadius","32"]}},Shadow:{1:{value:"0 2px 8px 1px rgba(0,0,0,0.1), 0 1px 5px 0 rgba(0,0,0,0.3)",type:"boxShadow",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:[{x:0,y:"2px",blur:"8px",spread:"1px",color:"rgba(0,0,0,0.1)",type:"dropShadow"},{x:0,y:"1px",blur:"5px",spread:0,color:"rgba(0,0,0,0.3)",type:"dropShadow"}],type:"boxShadow"},name:"Shadow1",attributes:{category:"Shadow",type:"1"},path:["Shadow","1"]},2:{value:"0 2px 12px 2px rgba(0,0,0,0.1), 0 1px 6px 0 rgba(0,0,0,0.3)",type:"boxShadow",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:[{x:0,y:"2px",blur:"12px",spread:"2px",color:"rgba(0,0,0,0.1)",type:"dropShadow"},{x:0,y:"1px",blur:"6px",spread:0,color:"rgba(0,0,0,0.3)",type:"dropShadow"}],type:"boxShadow"},name:"Shadow2",attributes:{category:"Shadow",type:"2"},path:["Shadow","2"]},3:{value:"0 4px 16px 3px rgba(0,0,0,0.1), 0 1px 6px 0 rgba(0,0,0,0.3)",type:"boxShadow",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:[{x:0,y:"4px",blur:"16px",spread:"3px",color:"rgba(0,0,0,0.1)",type:"dropShadow"},{x:0,y:"1px",blur:"6px",spread:0,color:"rgba(0,0,0,0.3)",type:"dropShadow"}],type:"boxShadow"},name:"Shadow3",attributes:{category:"Shadow",type:"3"},path:["Shadow","3"]},4:{value:"0 6px 20px 4px rgba(0,0,0,0.1), 0 2px 6px 0 rgba(0,0,0,0.3)",type:"boxShadow",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:[{x:0,y:"6px",blur:"20px",spread:"4px",color:"rgba(0,0,0,0.1)",type:"dropShadow"},{x:0,y:"2px",blur:"6px",spread:0,color:"rgba(0,0,0,0.3)",type:"dropShadow"}],type:"boxShadow"},name:"Shadow4",attributes:{category:"Shadow",type:"4"},path:["Shadow","4"]},5:{value:"0 8px 24px 5px rgba(0,0,0,0.1), 0 2px 10px 0 rgba(0,0,0,0.3)",type:"boxShadow",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:[{x:0,y:"8px",blur:"24px",spread:"5px",color:"rgba(0,0,0,0.1)",type:"dropShadow"},{x:0,y:"2px",blur:"10px",spread:0,color:"rgba(0,0,0,0.3)",type:"dropShadow"}],type:"boxShadow"},name:"Shadow5",attributes:{category:"Shadow",type:"5"},path:["Shadow","5"]},6:{value:"0 10px 30px 6px rgba(0,0,0,0.1), 0 3px 12px 0 rgba(0,0,0,0.3)",type:"boxShadow",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:[{x:0,y:"10px",blur:"30px",spread:"6px",color:"rgba(0,0,0,0.1)",type:"dropShadow"},{x:0,y:"3px",blur:"12px",spread:0,color:"rgba(0,0,0,0.3)",type:"dropShadow"}],type:"boxShadow"},name:"Shadow6",attributes:{category:"Shadow",type:"6"},path:["Shadow","6"]},7:{value:"0 12px 36px 7px rgba(0,0,0,0.1), 0 3px 14px 0 rgba(0,0,0,0.3)",type:"boxShadow",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:[{x:0,y:"12px",blur:"36px",spread:"7px",color:"rgba(0,0,0,0.1)",type:"dropShadow"},{x:0,y:"3px",blur:"14px",spread:0,color:"rgba(0,0,0,0.3)",type:"dropShadow"}],type:"boxShadow"},name:"Shadow7",attributes:{category:"Shadow",type:"7"},path:["Shadow","7"]},8:{value:"0 14px 40px 7px rgba(0,0,0,0.1), 0 3px 16px 0 rgba(0,0,0,0.3)",type:"boxShadow",filePath:"style-dictionary/tokens.json",isSource:!0,original:{value:[{x:0,y:"14px",blur:"40px",spread:"7px",color:"rgba(0,0,0,0.1)",type:"dropShadow"},{x:0,y:"3px",blur:"16px",spread:0,color:"rgba(0,0,0,0.3)",type:"dropShadow"}],type:"boxShadow"},name:"Shadow8",attributes:{category:"Shadow",type:"8"},path:["Shadow","8"]}}};const e=s(p),P=["atomic","busy","checked","current","disabled","expanded","grabbed","haspopup","hidden","invalid","live","modal","multiline","multiselectable","pressed","readonly","required","selected"],C={autocomplete:["both","inline","list","none"],current:["date","location","page","step","time"],dropeffect:["copy","execute","link","move","none","popup"],haspopup:["dialog","grid","listbox","menu","tree"],orientation:["horizontal","undefined","vertial"],relevant:["additions","all","removals","text"],sort:["ascending","descending","none","other"]},g=c(({addBase:o,addVariant:r})=>{o({"@font-face":{fontFamily:"Material Symbols Outlined",fontWeight:"300",fontStyle:"normal"}});const a=(i,t)=>{r(i,`[${i}="${t}"]&`),r(`peer-${i}`,`:merge(.peer)[${i}="${t}"] ~ &`),r(`group-${i}`,`:merge(.group)[${i}="${t}"] &`)},l=(i,t)=>{r(`${i}-${t}`,`[${i}="${t}"]&`),r(`peer-${i}-${t}`,`:merge(.peer)[${i}="${t}"] ~ &`),r(`group-${i}-${t}`,`:merge(.group)[${i}="${t}"] &`)};for(const i of P)a(`aria-${i}`,"true");for(const[i,t]of Object.entries(C))for(const u of t)l(`aria-${i}`,u)},{theme:{extend:{fontSize:{"h-xl":[e.FontSize[45].value,{fontWeight:e.FontWeight[700].value,lineHeight:e.LineHeight["1_4"].value,letterSpacing:"0.02em"}],"h-lg":[e.FontSize[36].value,{fontWeight:e.FontWeight[700].value,lineHeight:e.LineHeight["1_4"].value,letterSpacing:"0.02em"}],"h-lg-m":[e.FontSize[32].value,{fontWeight:e.FontWeight[700].value,lineHeight:e.LineHeight["1_5"].value,letterSpacing:"0.02em"}],"h-med":[e.FontSize[32].value,{fontWeight:e.FontWeight[700].value,lineHeight:e.LineHeight["1_5"].value,letterSpacing:"0.02em"}],"h-med-m":[e.FontSize[28].value,{fontWeight:e.FontWeight[700].value,lineHeight:e.LineHeight["1_5"].value,letterSpacing:"0.02em"}],"h-sm":[e.FontSize[28].value,{fontWeight:e.FontWeight[700].value,lineHeight:e.LineHeight["1_5"].value,letterSpacing:"0.02em"}],"h-sm-m":[e.FontSize[24].value,{fontWeight:e.FontWeight[700].value,lineHeight:e.LineHeight["1_5"].value,letterSpacing:"0.02em"}],"h-xs":[e.FontSize[24].value,{fontWeight:e.FontWeight[700].value,lineHeight:e.LineHeight["1_5"].value,letterSpacing:"0.02em"}],"h-xs-m":[e.FontSize[22].value,{fontWeight:e.FontWeight[700].value,lineHeight:e.LineHeight["1_5"].value,letterSpacing:"0.02em"}],"h-xxs":[e.FontSize[20].value,{fontWeight:e.FontWeight[700].value,lineHeight:e.LineHeight["1_5"].value,letterSpacing:"0.02em"}],"h-xxs-m":[e.FontSize[18].value,{fontWeight:e.FontWeight[700].value,lineHeight:e.LineHeight["1_6"].value,letterSpacing:"0.02em"}],base:[e.FontSize[16].value,{fontWeight:e.FontWeight[400].value,lineHeight:e.LineHeight["1_7"].value,letterSpacing:"0.02em"}],"base-sm":[e.FontSize[14].value,{fontWeight:e.FontWeight[400].value,lineHeight:e.LineHeight["1_3"].value}],"tb-header":[e.FontSize[16].value,{fontWeight:e.FontWeight[700].value,lineHeight:e.LineHeight["1_2"].value}],"tb-data":[e.FontSize[16].value,{fontWeight:e.FontWeight[400].value,lineHeight:e.LineHeight["1_2"].value}],ui:[e.FontSize[16].value,{fontWeight:e.FontWeight[700].value,lineHeight:e.LineHeight["1_0"].value,letterSpacing:"0.02em"}],"ui-sm":[e.FontSize[14].value,{fontWeight:e.FontWeight[700].value,lineHeight:e.LineHeight["1_0"].value,letterSpacing:"0.02em"}],code:[e.FontSize[16].value,{fontWeight:e.FontWeight[400].value,lineHeight:e.LineHeight["1_5"].value}]},colors:{white:e.Color.Neutral.White.value,black:e.Color.Neutral.Black.value,sea:{50:e.Color.Primitive.Sea[50].value,100:e.Color.Primitive.Sea[100].value,200:e.Color.Primitive.Sea[200].value,300:e.Color.Primitive.Sea[300].value,400:e.Color.Primitive.Sea[400].value,500:e.Color.Primitive.Sea[500].value,600:e.Color.Primitive.Sea[600].value,700:e.Color.Primitive.Sea[700].value,800:e.Color.Primitive.Sea[800].value,900:e.Color.Primitive.Sea[900].value,1e3:e.Color.Primitive.Sea[1e3].value,1100:e.Color.Primitive.Sea[1100].value,1200:e.Color.Primitive.Sea[1200].value},sumi:{50:e.Color.Primitive.Sumi[50].value,100:e.Color.Primitive.Sumi[100].value,200:e.Color.Primitive.Sumi[200].value,300:e.Color.Primitive.Sumi[300].value,400:e.Color.Primitive.Sumi[400].value,500:e.Color.Primitive.Sumi[500].value,600:e.Color.Primitive.Sumi[600].value,700:e.Color.Primitive.Sumi[700].value,800:e.Color.Primitive.Sumi[800].value,900:e.Color.Primitive.Sumi[900].value,1e3:e.Color.Primitive.Sumi[1e3].value,1100:e.Color.Primitive.Sumi[1100].value,1200:e.Color.Primitive.Sumi[1200].value},forest:{50:e.Color.Primitive.Forest[50].value,100:e.Color.Primitive.Forest[100].value,200:e.Color.Primitive.Forest[200].value,300:e.Color.Primitive.Forest[300].value,400:e.Color.Primitive.Forest[400].value,500:e.Color.Primitive.Forest[500].value,600:e.Color.Primitive.Forest[600].value,700:e.Color.Primitive.Forest[700].value,800:e.Color.Primitive.Forest[800].value,900:e.Color.Primitive.Forest[900].value,1e3:e.Color.Primitive.Forest[1e3].value,1100:e.Color.Primitive.Forest[1100].value,1200:e.Color.Primitive.Forest[1200].value},wood:{50:e.Color.Primitive.Wood[50].value,100:e.Color.Primitive.Wood[100].value,200:e.Color.Primitive.Wood[200].value,300:e.Color.Primitive.Wood[300].value,400:e.Color.Primitive.Wood[400].value,500:e.Color.Primitive.Wood[500].value,600:e.Color.Primitive.Wood[600].value,700:e.Color.Primitive.Wood[700].value,800:e.Color.Primitive.Wood[800].value,900:e.Color.Primitive.Wood[900].value,1e3:e.Color.Primitive.Wood[1e3].value,1100:e.Color.Primitive.Wood[1100].value,1200:e.Color.Primitive.Wood[1200].value},sun:{50:e.Color.Primitive.Sun[50].value,100:e.Color.Primitive.Sun[100].value,200:e.Color.Primitive.Sun[200].value,300:e.Color.Primitive.Sun[300].value,400:e.Color.Primitive.Sun[400].value,500:e.Color.Primitive.Sun[500].value,600:e.Color.Primitive.Sun[600].value,700:e.Color.Primitive.Sun[700].value,800:e.Color.Primitive.Sun[800].value,900:e.Color.Primitive.Sun[900].value,1e3:e.Color.Primitive.Sun[1e3].value,1100:e.Color.Primitive.Sun[1100].value,1200:e.Color.Primitive.Sun[1200].value},blue:{50:e.Color.Primitive.Blue[50].value,100:e.Color.Primitive.Blue[100].value,200:e.Color.Primitive.Blue[200].value,300:e.Color.Primitive.Blue[300].value,400:e.Color.Primitive.Blue[400].value,500:e.Color.Primitive.Blue[500].value,600:e.Color.Primitive.Blue[600].value,700:e.Color.Primitive.Blue[700].value,800:e.Color.Primitive.Blue[800].value,900:e.Color.Primitive.Blue[900].value,1e3:e.Color.Primitive.Blue[1e3].value,1100:e.Color.Primitive.Blue[1100].value,1200:e.Color.Primitive.Blue[1200].value},"light-blue":{50:e.Color.Primitive.LightBlue[50].value,100:e.Color.Primitive.LightBlue[100].value,200:e.Color.Primitive.LightBlue[200].value,300:e.Color.Primitive.LightBlue[300].value,400:e.Color.Primitive.LightBlue[400].value,500:e.Color.Primitive.LightBlue[500].value,600:e.Color.Primitive.LightBlue[600].value,700:e.Color.Primitive.LightBlue[700].value,800:e.Color.Primitive.LightBlue[800].value,900:e.Color.Primitive.LightBlue[900].value,1e3:e.Color.Primitive.LightBlue[1e3].value,1100:e.Color.Primitive.LightBlue[1100].value,1200:e.Color.Primitive.LightBlue[1200].value},cyan:{50:e.Color.Primitive.Cyan[50].value,100:e.Color.Primitive.Cyan[100].value,200:e.Color.Primitive.Cyan[200].value,300:e.Color.Primitive.Cyan[300].value,400:e.Color.Primitive.Cyan[400].value,500:e.Color.Primitive.Cyan[500].value,600:e.Color.Primitive.Cyan[600].value,700:e.Color.Primitive.Cyan[700].value,800:e.Color.Primitive.Cyan[800].value,900:e.Color.Primitive.Cyan[900].value,1e3:e.Color.Primitive.Cyan[1e3].value,1100:e.Color.Primitive.Cyan[1100].value,1200:e.Color.Primitive.Cyan[1200].value},green:{50:e.Color.Primitive.Green[50].value,100:e.Color.Primitive.Green[100].value,200:e.Color.Primitive.Green[200].value,300:e.Color.Primitive.Green[300].value,400:e.Color.Primitive.Green[400].value,500:e.Color.Primitive.Green[500].value,600:e.Color.Primitive.Green[600].value,700:e.Color.Primitive.Green[700].value,800:e.Color.Primitive.Green[800].value,900:e.Color.Primitive.Green[900].value,1e3:e.Color.Primitive.Green[1e3].value,1100:e.Color.Primitive.Green[1100].value,1200:e.Color.Primitive.Green[1200].value},lime:{50:e.Color.Primitive.Lime[50].value,100:e.Color.Primitive.Lime[100].value,200:e.Color.Primitive.Lime[200].value,300:e.Color.Primitive.Lime[300].value,400:e.Color.Primitive.Lime[400].value,500:e.Color.Primitive.Lime[500].value,600:e.Color.Primitive.Lime[600].value,700:e.Color.Primitive.Lime[700].value,800:e.Color.Primitive.Lime[800].value,900:e.Color.Primitive.Lime[900].value,1e3:e.Color.Primitive.Lime[1e3].value,1100:e.Color.Primitive.Lime[1100].value,1200:e.Color.Primitive.Lime[1200].value},yellow:{50:e.Color.Primitive.Yellow[50].value,100:e.Color.Primitive.Yellow[100].value,200:e.Color.Primitive.Yellow[200].value,300:e.Color.Primitive.Yellow[300].value,400:e.Color.Primitive.Yellow[400].value,500:e.Color.Primitive.Yellow[500].value,600:e.Color.Primitive.Yellow[600].value,700:e.Color.Primitive.Yellow[700].value,800:e.Color.Primitive.Yellow[800].value,900:e.Color.Primitive.Yellow[900].value,1e3:e.Color.Primitive.Yellow[1e3].value,1100:e.Color.Primitive.Yellow[1100].value,1200:e.Color.Primitive.Yellow[1200].value},orange:{50:e.Color.Primitive.Orange[50].value,100:e.Color.Primitive.Orange[100].value,200:e.Color.Primitive.Orange[200].value,300:e.Color.Primitive.Orange[300].value,400:e.Color.Primitive.Orange[400].value,500:e.Color.Primitive.Orange[500].value,600:e.Color.Primitive.Orange[600].value,700:e.Color.Primitive.Orange[700].value,800:e.Color.Primitive.Orange[800].value,900:e.Color.Primitive.Orange[900].value,1e3:e.Color.Primitive.Orange[1e3].value,1100:e.Color.Primitive.Orange[1100].value,1200:e.Color.Primitive.Orange[1200].value},red:{50:e.Color.Primitive.Red[50].value,100:e.Color.Primitive.Red[100].value,200:e.Color.Primitive.Red[200].value,300:e.Color.Primitive.Red[300].value,400:e.Color.Primitive.Red[400].value,500:e.Color.Primitive.Red[500].value,600:e.Color.Primitive.Red[600].value,700:e.Color.Primitive.Red[700].value,800:e.Color.Primitive.Red[800].value,900:e.Color.Primitive.Red[900].value,1e3:e.Color.Primitive.Red[1e3].value,1100:e.Color.Primitive.Red[1100].value,1200:e.Color.Primitive.Red[1200].value},magenta:{50:e.Color.Primitive.Magenta[50].value,100:e.Color.Primitive.Magenta[100].value,200:e.Color.Primitive.Magenta[200].value,300:e.Color.Primitive.Magenta[300].value,400:e.Color.Primitive.Magenta[400].value,500:e.Color.Primitive.Magenta[500].value,600:e.Color.Primitive.Magenta[600].value,700:e.Color.Primitive.Magenta[700].value,800:e.Color.Primitive.Magenta[800].value,900:e.Color.Primitive.Magenta[900].value,1e3:e.Color.Primitive.Magenta[1e3].value,1100:e.Color.Primitive.Magenta[1100].value,1200:e.Color.Primitive.Magenta[1200].value},purple:{50:e.Color.Primitive.Purple[50].value,100:e.Color.Primitive.Purple[100].value,200:e.Color.Primitive.Purple[200].value,300:e.Color.Primitive.Purple[300].value,400:e.Color.Primitive.Purple[400].value,500:e.Color.Primitive.Purple[500].value,600:e.Color.Primitive.Purple[600].value,700:e.Color.Primitive.Purple[700].value,800:e.Color.Primitive.Purple[800].value,900:e.Color.Primitive.Purple[900].value,1e3:e.Color.Primitive.Purple[1e3].value,1100:e.Color.Primitive.Purple[1100].value,1200:e.Color.Primitive.Purple[1200].value},"solid-grey":{50:e.Color.Neutral.SolidGrey[50].value,100:e.Color.Neutral.SolidGrey[100].value,200:e.Color.Neutral.SolidGrey[200].value,300:e.Color.Neutral.SolidGrey[300].value,400:e.Color.Neutral.SolidGrey[400].value,420:e.Color.Neutral.SolidGrey[420].value,500:e.Color.Neutral.SolidGrey[500].value,536:e.Color.Neutral.SolidGrey[536].value,600:e.Color.Neutral.SolidGrey[600].value,700:e.Color.Neutral.SolidGrey[700].value,800:e.Color.Neutral.SolidGrey[800].value,900:e.Color.Neutral.SolidGrey[900].value},"success-1":e.Color.Success[1].value,"success-2":e.Color.Success[2].value,"error-1":e.Color.Error[1].value,"error-2":e.Color.Error[2].value,"warning-yellow-1":e.Color.Warning.Yellow[1].value,"warning-yellow-2":e.Color.Warning.Yellow[2].value,"warning-orange-1":e.Color.Warning.Orange[1].value,"warning-orange-2":e.Color.Warning.Orange[2].value,"focus-yellow":e.Color.Primitive.Yellow[700].value,"focus-blue":e.Color.Primitive.LightBlue[700].value},lineHeight:{"1-0":e.LineHeight["1_0"].value,"1-2":e.LineHeight["1_2"].value,"1-3":e.LineHeight["1_3"].value,"1-4":e.LineHeight["1_4"].value,"1-5":e.LineHeight["1_5"].value,"1-6":e.LineHeight["1_6"].value,"1-7":e.LineHeight["1_7"].value},listStyleType:{"lower-latin":"lower-latin",circle:"circle",square:"square"},fontFamily:{sans:["Noto Sans JP","-apple-system","blinkmacsystemfont","Segoe UI","Hiragino Kaku Gothic ProN","BIZ UDPGothic","meiryo","sans-serif"],code:["Noto Sans Mono","Monaco","Menlo","Consolas","Courier New","monospace"],icon:["Material Symbols Outlined"]}}}});module.exports=g;
|