diff --git a/sd-input/asset/font.json b/sd-input/asset/font.json index fed34bb..9828b64 100644 --- a/sd-input/asset/font.json +++ b/sd-input/asset/font.json @@ -1,5 +1,10 @@ { "asset": { - "font": { "interRegular": { "ttf": { "value": "Inter-Regular.ttf" } } } + "font": { + "interRegular": { + "name": { "value": "Inter-Regular" }, + "ttf": { "value": "Inter-Regular.ttf" } + } + } } } diff --git a/sd-input/color/base.json b/sd-input/color/base.json index 97971de..965e20a 100644 --- a/sd-input/color/base.json +++ b/sd-input/color/base.json @@ -3,18 +3,6 @@ "base": { "core": { "colors": { - "primary": { - "50": { "value": "rgb(238, 242, 255)" }, - "100": { "value": "rgb(224, 231, 255)" }, - "200": { "value": "rgb(199, 210, 254)" }, - "300": { "value": "rgb(165, 180, 252)" }, - "400": { "value": "rgb(129, 140, 248)" }, - "500": { "value": "rgb(99, 102, 241)" }, - "600": { "value": "rgb(79, 70, 229)" }, - "700": { "value": "rgb(67, 56, 202)" }, - "800": { "value": "rgb(55, 48, 163)" }, - "900": { "value": "rgb(49, 46, 129)" } - }, "grey": { "50": { "value": "rgb(249, 250, 251)" }, "100": { "value": "rgb(243, 244, 246)" }, @@ -26,25 +14,37 @@ "700": { "value": "rgb(55, 65, 81)" }, "800": { "value": "rgb(31, 41, 55)" }, "900": { "value": "rgb(17, 24, 39)" } + }, + "primary": { + "50": { "value": "rgb(238, 242, 255)" }, + "100": { "value": "rgb(224, 231, 255)" }, + "200": { "value": "rgb(199, 210, 254)" }, + "300": { "value": "rgb(165, 180, 252)" }, + "400": { "value": "rgb(129, 140, 248)" }, + "500": { "value": "rgb(99, 102, 241)" }, + "600": { "value": "rgb(79, 70, 229)" }, + "700": { "value": "rgb(67, 56, 202)" }, + "800": { "value": "rgb(55, 48, 163)" }, + "900": { "value": "rgb(49, 46, 129)" } } } }, "button": { - "primary": { - "hover": { "background": { "value": "rgb(165, 180, 252)" } }, - "focus": { "outline": { "value": "rgb(249, 250, 251)" } }, - "disabled": { "background": { "value": "rgb(55, 48, 163)" } }, - "color": { "value": "rgb(249, 250, 251)" }, - "background": { "value": "rgb(99, 102, 241)" }, - "active": { "shadow": { "value": "rgb(49, 46, 129)" } } - }, "outline": { + "color": { "value": "rgb(249, 250, 251)" }, "hover": { "background": { "value": "rgba(255, 255, 255, 0.3)" } }, + "active": { "shadow": { "value": "rgb(99, 102, 241)" } }, "disabled": { "background": { "value": "rgb(107, 114, 128)" } }, - "color": { "value": "rgb(249, 250, 251)" }, - "border": { "color": { "value": "rgb(249, 250, 251)" } }, "background": { "value": "rgba(0, 0, 0, 0)" }, - "active": { "shadow": { "value": "rgb(99, 102, 241)" } } + "border": { "color": { "value": "rgb(249, 250, 251)" } } + }, + "primary": { + "color": { "value": "rgb(249, 250, 251)" }, + "focus": { "outline": { "value": "rgb(249, 250, 251)" } }, + "background": { "value": "rgb(99, 102, 241)" }, + "disabled": { "background": { "value": "rgb(55, 48, 163)" } }, + "hover": { "background": { "value": "rgb(165, 180, 252)" } }, + "active": { "shadow": { "value": "rgb(49, 46, 129)" } } } } } diff --git a/sd-input/size/lineHeight.json b/sd-input/size/lineHeight.json index c20351f..5c688ce 100644 --- a/sd-input/size/lineHeight.json +++ b/sd-input/size/lineHeight.json @@ -1,5 +1,7 @@ { "size": { - "lineHeight": { "button": { "content": { "value": "14.0625px" } } } + "lineHeight": { + "button": { "content": { "value": "14.522727012634277px" } } + } } } diff --git a/sd-output/variables.css b/sd-output/variables.css index 145686b..680bde5 100644 --- a/sd-output/variables.css +++ b/sd-output/variables.css @@ -1,20 +1,11 @@ /** * Do not edit directly - * Generated on Fri, 22 Apr 2022 12:16:52 GMT + * Generated on Thu, 20 Apr 2023 15:01:41 GMT */ :root { + --specify-inter-regular-name: "Inter-Regular"; --specify-inter-regular-ttf: "Inter-Regular.ttf"; - --specify-core-colors-primary-50: #eef2ff; - --specify-core-colors-primary-100: #e0e7ff; - --specify-core-colors-primary-200: #c7d2fe; - --specify-core-colors-primary-300: #a5b4fc; - --specify-core-colors-primary-400: #818cf8; - --specify-core-colors-primary-500: #6366f1; - --specify-core-colors-primary-600: #4f46e5; - --specify-core-colors-primary-700: #4338ca; - --specify-core-colors-primary-800: #3730a3; - --specify-core-colors-primary-900: #312e81; --specify-core-colors-grey-50: #f9fafb; --specify-core-colors-grey-100: #f3f4f6; --specify-core-colors-grey-200: #e5e7eb; @@ -25,18 +16,28 @@ --specify-core-colors-grey-700: #374151; --specify-core-colors-grey-800: #1f2937; --specify-core-colors-grey-900: #111827; - --specify-button-primary-hover-background: #a5b4fc; - --specify-button-primary-focus-outline: #f9fafb; - --specify-button-primary-disabled-background: #3730a3; - --specify-button-primary-color: #f9fafb; - --specify-button-primary-background: #6366f1; - --specify-button-primary-active-shadow: #312e81; + --specify-core-colors-primary-50: #eef2ff; + --specify-core-colors-primary-100: #e0e7ff; + --specify-core-colors-primary-200: #c7d2fe; + --specify-core-colors-primary-300: #a5b4fc; + --specify-core-colors-primary-400: #818cf8; + --specify-core-colors-primary-500: #6366f1; + --specify-core-colors-primary-600: #4f46e5; + --specify-core-colors-primary-700: #4338ca; + --specify-core-colors-primary-800: #3730a3; + --specify-core-colors-primary-900: #312e81; + --specify-button-outline-color: #f9fafb; --specify-button-outline-hover-background: rgba(255, 255, 255, 0.3); + --specify-button-outline-active-shadow: #6366f1; --specify-button-outline-disabled-background: #6b7280; - --specify-button-outline-color: #f9fafb; - --specify-button-outline-border-color: #f9fafb; --specify-button-outline-background: rgba(0, 0, 0, 0); - --specify-button-outline-active-shadow: #6366f1; + --specify-button-outline-border-color: #f9fafb; + --specify-button-primary-color: #f9fafb; + --specify-button-primary-focus-outline: #f9fafb; + --specify-button-primary-background: #6366f1; + --specify-button-primary-disabled-background: #3730a3; + --specify-button-primary-hover-background: #a5b4fc; + --specify-button-primary-active-shadow: #312e81; --specify-button-content: 12px; - --specify-height-button-content: 14.0625px; + --specify-height-button-content: 14.522727012634277px; }