+
-
@digdir/designsystemet-theme
+
@digdir/designsystemet-theme
- {showThemePicker && (
+ {(showThemePicker || showModeSwitcher) && (
-
-
- Brand: {capitalizeString(brand)}
-
-
- setBrand('digdir')}>
- Digdir
-
- setBrand('altinn')}>
- Altinn
-
- setBrand('tilsynet')}>
- Tilsynet
-
- setBrand('brreg')}>
- Brreg
-
-
-
+ {showModeSwitcher && (
+
+
+ Mode: {capitalizeString(mode)}
+
+
+
+
+ setMode('light')}>
+ Light
+
+
+
+ setMode('dark')}>
+ Dark
+
+
+
+
+
+ )}
)}
- <>
- {sectionedTokens.map(([section, tokens]) => {
- const tokens_ = tokens as [string, Token[]][];
- const List = () => {
- if (['spacing', 'sizing'].includes(type)) {
- return
;
- }
- return (
-
- );
- };
+ {sectionedTokens.map(([section, tokens]) => {
+ const tokens_ = tokens as [string, Token[]][];
+ const List = () => {
+ if (type === 'dimension') {
+ return
;
+ }
+
return (
-
-
{capitalizeString(section as string)}
-
-
+
);
- })}
- >
+ };
+ return (
+
+
{capitalizeString(section as string)}
+
+
+ );
+ })}
);
};
diff --git a/apps/storefront/components/Tokens/TokenShadow/TokenShadow.tsx b/apps/storefront/components/Tokens/TokenShadow/TokenShadow.tsx
index 1e5bee4cf6..b3cce9bb2d 100644
--- a/apps/storefront/components/Tokens/TokenShadow/TokenShadow.tsx
+++ b/apps/storefront/components/Tokens/TokenShadow/TokenShadow.tsx
@@ -5,12 +5,7 @@ interface TokenColorProps {
}
const TokenShadow = ({ value }: TokenColorProps) => {
- return (
-
;
};
export { TokenShadow };
diff --git a/apps/storefront/components/Tokens/TokenSize/TokenSize.module.css b/apps/storefront/components/Tokens/TokenSize/TokenSize.module.css
index 3868b7c877..73dbed0f00 100644
--- a/apps/storefront/components/Tokens/TokenSize/TokenSize.module.css
+++ b/apps/storefront/components/Tokens/TokenSize/TokenSize.module.css
@@ -5,6 +5,7 @@
.bar {
height: 36px;
- background-color: var(--fds-semantic-text-action-default);
+ background-color: var(--ds-color-accent-base-default);
border-radius: 2px;
+ max-width: 300px;
}
diff --git a/apps/storefront/components/Tokens/TokenSize/TokenSize.tsx b/apps/storefront/components/Tokens/TokenSize/TokenSize.tsx
index dbbf5199b0..52442bd7bd 100644
--- a/apps/storefront/components/Tokens/TokenSize/TokenSize.tsx
+++ b/apps/storefront/components/Tokens/TokenSize/TokenSize.tsx
@@ -6,14 +6,8 @@ interface TokenFontSizeProps {
const TokenSize = ({ value }: TokenFontSizeProps) => {
return (
-
-
+
);
};
diff --git a/apps/storefront/components/Tokens/index.ts b/apps/storefront/components/Tokens/index.ts
index 640a241203..72908eb98d 100644
--- a/apps/storefront/components/Tokens/index.ts
+++ b/apps/storefront/components/Tokens/index.ts
@@ -1 +1 @@
-export { TokenList } from './TokenList/TokenList';
+export { TokenList } from './TokenList/TokenList';
diff --git a/apps/storefront/components/VersionBanner/VersionBanner.module.css b/apps/storefront/components/VersionBanner/VersionBanner.module.css
new file mode 100644
index 0000000000..0edfaab2d6
--- /dev/null
+++ b/apps/storefront/components/VersionBanner/VersionBanner.module.css
@@ -0,0 +1,10 @@
+.banner {
+ background: var(--ds-color-brand2-surface-hover);
+ color: var(--ds-color-neutral-text-default);
+ display: grid;
+ place-items: center;
+ width: 100%;
+ height: var(--ds-sizing-12);
+ position: relative;
+ z-index: 100;
+}
diff --git a/apps/storefront/components/VersionBanner/VersionBanner.tsx b/apps/storefront/components/VersionBanner/VersionBanner.tsx
new file mode 100644
index 0000000000..c7052daba6
--- /dev/null
+++ b/apps/storefront/components/VersionBanner/VersionBanner.tsx
@@ -0,0 +1,15 @@
+import cl from 'clsx/lite';
+import classes from './VersionBanner.module.css';
+
+function VersionBanner() {
+ return (
+
+ Gå til dokumentasjon for v0.63
+
+ );
+}
+
+export { VersionBanner };
diff --git a/apps/storefront/components/index.ts b/apps/storefront/components/index.ts
index c7a02615d0..2dc6df5054 100644
--- a/apps/storefront/components/index.ts
+++ b/apps/storefront/components/index.ts
@@ -1,25 +1,14 @@
-export { Banner } from './Banner';
-export { ClipboardBtn } from './ClipboardBtn';
-export { CodeSnippet } from './CodeSnippet';
-export { Container } from './Container';
-export { Footer } from './Footer';
export { Grid } from './Grid';
-export { Header } from './Header';
-export { ImageSection } from './ImageSection';
export { ImageBanner } from './ImageBanner';
-export type {
- ImageSectionButtonProps,
- ImageSectionProps,
-} from './ImageSection';
export { MdxContent } from './MdxContent';
-export { Meta } from './Meta';
export { NavigationCard } from './NavigationCard';
export type { NavigationCardProps } from './NavigationCard';
export { ResponsiveIframe } from './ResponsiveIframe';
export { Section } from './Section';
export { SidebarMenu } from './SidebarMenu';
-export { Tag } from './Tag';
export { TeaserCard } from './TeaserCard';
export { TokenList } from './Tokens';
export { Image } from './Image';
export { ComponentCard } from './ComponentCard';
+export { GithubLink } from './GithubLink/GithubLink';
+export { VersionBanner } from './VersionBanner/VersionBanner';
diff --git a/apps/storefront/globals.css b/apps/storefront/globals.css
index 32c42a4af5..aa1f4581fc 100644
--- a/apps/storefront/globals.css
+++ b/apps/storefront/globals.css
@@ -1,26 +1,21 @@
@import url('https://altinncdn.no/fonts/inter/inter.css');
-@layer normalize, fds;
+@layer normalize, ds;
:root {
--color-beta: #d6d4ff;
- --color-text-on_inverted-subtle: #dbdbdb;
- --color-surface-neutral-inverted-darker: #17202e;
/* Spacing for page and grid */
--grid-max-width: 1400px;
--grid-padding: clamp(1rem, calc(0.27rem + 3.64vw), 3rem); /* 48px-16px */
- --grid-gap: var(--fds-spacing-8);
- --page-spacing-top: var(--fds-spacing-14);
- --page-spacing-bottom: var(--fds-spacing-14);
+ --grid-gap: var(--ds-spacing-8);
+ --page-spacing-top: var(--ds-spacing-14);
+ --page-spacing-bottom: var(--ds-spacing-14);
--media-max-width: 800px;
}
body {
- color: var(--fds-semantic-text-neutral-default);
- line-height: 1.5;
font-family: 'Inter', sans-serif;
- font-size: 16px;
}
* {
@@ -30,14 +25,9 @@ body {
font-feature-settings: 'cv05' 1 !important;
}
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- font-weight: 500;
- margin-top: 0;
+.ds-link > :is(img, svg) {
+ height: 70%;
+ margin-right: var(--ds-spacing-1);
}
.root {
@@ -55,14 +45,10 @@ h6 {
/* Utility classes */
.greyBackground {
- background: var(--fds-semantic-background-subtle);
+ background: var(--ds-color-neutral-background-subtle);
}
@layer normalize {
- html {
- line-height: 1.15; /* 1 */
- }
-
body {
margin: 0;
}
@@ -71,26 +57,11 @@ h6 {
display: block;
}
- h1 {
- font-size: 2em;
- margin: 0.67em 0;
- }
-
- hr {
- box-sizing: content-box; /* 1 */
- height: 0; /* 1 */
- overflow: visible; /* 2 */
- }
-
pre {
font-family: monospace; /* 1 */
font-size: 1em; /* 2 */
}
- a {
- background-color: transparent;
- }
-
abbr[title] {
border-bottom: none; /* 1 */
text-decoration: underline; /* 2 */
@@ -133,109 +104,6 @@ h6 {
border-style: none;
}
- button,
- input,
- optgroup,
- select,
- textarea {
- font-family: inherit; /* 1 */
- font-size: 100%; /* 1 */
- line-height: 1.15; /* 1 */
- margin: 0; /* 2 */
- }
-
- button,
- input {
- /* 1 */
- overflow: visible;
- }
-
- button,
- select {
- /* 1 */
- text-transform: none;
- }
-
- button,
- [type='button'],
- [type='reset'],
- [type='submit'] {
- appearance: button;
- }
-
- button::-moz-focus-inner,
- [type='button']::-moz-focus-inner,
- [type='reset']::-moz-focus-inner,
- [type='submit']::-moz-focus-inner {
- border-style: none;
- padding: 0;
- }
-
- button:-moz-focusring,
- [type='button']:-moz-focusring,
- [type='reset']:-moz-focusring,
- [type='submit']:-moz-focusring {
- outline: 1px dotted ButtonText;
- }
-
- fieldset {
- padding: 0.35em 0.75em 0.625em;
- }
-
- legend {
- box-sizing: border-box; /* 1 */
- color: inherit; /* 2 */
- display: table; /* 1 */
- max-width: 100%; /* 1 */
- padding: 0; /* 3 */
- white-space: normal; /* 1 */
- }
-
- progress {
- vertical-align: baseline;
- }
-
- textarea {
- overflow: auto;
- }
-
- [type='checkbox'],
- [type='radio'] {
- box-sizing: border-box; /* 1 */
- padding: 0; /* 2 */
- }
-
- [type='number']::-webkit-inner-spin-button,
- [type='number']::-webkit-outer-spin-button {
- height: auto;
- }
-
- [type='search'] {
- appearance: textfield; /* 1 */
- outline-offset: -2px; /* 2 */
- }
-
- [type='search']::-webkit-search-decoration {
- appearance: none;
- }
-
- ::-webkit-file-upload-button {
- appearance: button; /* 1 */
- font: inherit; /* 2 */
- }
-
- details {
- display: block;
- }
-
- summary {
- display: list-item;
- }
-
- template {
- display: none;
- }
-
[hidden] {
display: none;
}
diff --git a/apps/storefront/layouts/BlogArticleLayout/BlogArticleLayout.module.css b/apps/storefront/layouts/BlogArticleLayout/BlogArticleLayout.module.css
deleted file mode 100644
index 2f78468cee..0000000000
--- a/apps/storefront/layouts/BlogArticleLayout/BlogArticleLayout.module.css
+++ /dev/null
@@ -1,138 +0,0 @@
-.wrapper {
- --figure-y-offset: 500px;
- --figure-rotation: 72deg;
-
- position: relative;
- overflow: hidden;
-}
-
-.page {
- margin-top: var(--fds-spacing-18);
- margin-bottom: var(--page-spacing-bottom);
-}
-
-.intro {
- max-width: 720px;
- display: flex;
- flex-wrap: wrap;
- flex-direction: column;
- gap: var(--fds-spacing-5);
- text-align: center;
- margin: 0 auto;
-}
-
-.ingress {
- margin: 0 auto;
-}
-
-.meta {
- display: flex;
- justify-content: center;
- margin-top: var(--fds-spacing-1);
- gap: var(--fds-spacing-3);
- color: var(--fds-semantic-text-neutral-subtle);
-}
-
-.metaSquare {
- width: 7px;
- height: 7px;
- transform: rotate(45deg);
- border-radius: 1px;
- background-color: var(--fds-brand-alt1-600);
- margin: auto 0;
-}
-
-.main {
- display: flex;
- flex-direction: column;
- gap: var(--fds-spacing-18);
-}
-
-.content {
- --text-max-width: 640px;
-
- max-width: var(--text-max-width);
- margin: 0 auto;
-}
-
-.content p {
- max-width: var(--text-max-width);
- margin: var(--fds-spacing-6) 0;
- margin-top: var(--fds-spacing-5);
- line-height: 170%;
-}
-
-.content img {
- display: block;
- width: 860px;
- margin: var(--fds-spacing-12) 0;
- margin-left: calc((100% - 860px) / 2) !important;
- background-color: var(--fds-semantic-background-subtle);
-}
-
-.content h1,
-.content h2,
-.content h3,
-.content h4,
-.content h5,
-.content h6 {
- margin-top: var(--fds-spacing-12);
- margin-bottom: var(--fds-spacing-5);
-}
-
-.content:last-child {
- margin-bottom: var(--fds-spacing-12);
-}
-
-.wantToWrite {
- margin-top: var(--fds-spacing-12);
- border-radius: var(--fds-border_radius-xxlarge);
- background: var(--fds-brand-alt1-200);
- padding: var(--fds-spacing-8);
- display: flex;
- flex-wrap: wrap;
- flex-direction: column;
- gap: var(--fds-spacing-4);
-}
-
-.wantToWrite p a {
- display: inline-block;
- color: inherit;
-}
-
-.wantToWrite p,
-.wantToWrite h3 {
- margin: 0;
-}
-
-.wantToWrite p a:hover {
- color: var(--fds-semantic-text-action-hover);
-}
-
-.figure {
- position: absolute;
- top: calc(var(--figure-y-offset) * var(--number));
- z-index: -1;
- transform: rotate(calc(var(--figure-rotation) * var(--number)));
-}
-
-.figure:nth-of-type(2n - 1) {
- left: 100px;
-}
-
-.figure:nth-of-type(2n) {
- right: 100px;
-}
-
-@media screen and (max-width: 1350px) {
- .figure {
- display: none;
- }
-}
-
-@media screen and (max-width: 860px) {
- .content img {
- width: 100%;
- margin-left: 0 !important;
- }
-}
diff --git a/apps/storefront/layouts/BlogArticleLayout/BlogArticleLayout.tsx b/apps/storefront/layouts/BlogArticleLayout/BlogArticleLayout.tsx
deleted file mode 100644
index 7df36de5a4..0000000000
--- a/apps/storefront/layouts/BlogArticleLayout/BlogArticleLayout.tsx
+++ /dev/null
@@ -1,106 +0,0 @@
-import type * as React from 'react';
-import { Heading, Ingress, Paragraph } from '@digdir/designsystemet-react';
-
-import { Container, MdxContent, Image, Meta } from '../../components';
-import { Link } from '../../components/Link/Link';
-
-import classes from './BlogArticleLayout.module.css';
-import { Figures } from './components/Figures';
-
-type BlogArticleLayoutProps = {
- content: React.ReactNode;
- heading: string;
- ingress: string;
- date?: string;
- author?: string;
- figureCount?: number;
- imageSrc: string;
- imageAlt: string;
- imageCaption: string;
-};
-
-const FIGURE_COUNT = 4;
-
-const BlogArticleLayout = ({
- content,
- heading,
- ingress,
- date,
- author,
- imageSrc,
- imageAlt,
- imageCaption,
- figureCount = FIGURE_COUNT,
-}: BlogArticleLayoutProps) => {
- return (
-
-
-
- {Array.from({ length: figureCount }).map((_, index) => (
-
- ))}
-
-
-
{heading}
-
{ingress}
-
- {date}
-
- {author}
-
-
-
-
- {content}
-
-
- Ønsker du å skrive for bloggen?
-
-
- Ta kontakt med oss på{' '}
-
- #designsystemet
- {' '}
- i Slack kanalen vår.
-
-
-
-
-
-
- );
-};
-
-export { BlogArticleLayout };
diff --git a/apps/storefront/layouts/BlogPageLayout/BlogPageLayout.module.css b/apps/storefront/layouts/BlogPageLayout/BlogPageLayout.module.css
deleted file mode 100644
index 061bfc8d9d..0000000000
--- a/apps/storefront/layouts/BlogPageLayout/BlogPageLayout.module.css
+++ /dev/null
@@ -1,39 +0,0 @@
-.page {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- gap: var(--fds-spacing-8);
- margin-top: var(--fds-spacing-18);
- margin-bottom: var(--page-spacing-bottom);
-}
-
-.main {
- display: grid;
- grid-template-columns: 1fr 1fr 1fr;
- gap: var(--fds-spacing-18);
- column-gap: var(--fds-spacing-12);
-}
-
-.main [data-featured='true'] {
- grid-column: span 3;
-}
-
-@media screen and (max-width: 1024px) {
- .main {
- grid-template-columns: 1fr 1fr;
- }
-
- .main [data-featured='true'] {
- grid-column: span 2;
- }
-}
-
-@media screen and (max-width: 768px) {
- .main {
- grid-template-columns: 1fr;
- }
-
- .main [data-featured='true'] {
- grid-column: span 1;
- }
-}
diff --git a/apps/storefront/layouts/BlogPageLayout/BlogPageLayout.tsx b/apps/storefront/layouts/BlogPageLayout/BlogPageLayout.tsx
deleted file mode 100644
index b4c0c67205..0000000000
--- a/apps/storefront/layouts/BlogPageLayout/BlogPageLayout.tsx
+++ /dev/null
@@ -1,40 +0,0 @@
-import type * as React from 'react';
-
-import { Container } from '../../components';
-import { Banner } from '../../components/SubPages/Banner/Banner';
-
-import classes from './BlogPageLayout.module.css';
-
-type BlogPageLayoutProps = {
- content: React.ReactNode;
- banner?: {
- color: 'blue' | 'red' | 'yellow';
- title: string;
- ingress?: string;
- icon: React.ReactNode;
- };
-};
-
-const BlogPageLayout = ({ content, banner }: BlogPageLayoutProps) => {
- return (
-
- {banner && (
-
- {banner.icon}
- {banner.title}
- {banner.ingress && {banner.ingress} }
-
- )}
-
-
- {content}
-
-
-
- );
-};
-
-export { BlogPageLayout };
diff --git a/apps/storefront/layouts/ComponentsLayout/ComponentsLayout.module.css b/apps/storefront/layouts/ComponentsLayout/ComponentsLayout.module.css
deleted file mode 100644
index 1efc857f17..0000000000
--- a/apps/storefront/layouts/ComponentsLayout/ComponentsLayout.module.css
+++ /dev/null
@@ -1,11 +0,0 @@
-.page {
- padding-bottom: var(--fds-spacing-18);
-}
-
-.grid {
- padding-top: var(--fds-spacing-12);
- display: grid;
- grid-row-gap: 32px;
- grid-column-gap: 32px;
- grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
-}
diff --git a/apps/storefront/layouts/ComponentsLayout/ComponentsLayout.tsx b/apps/storefront/layouts/ComponentsLayout/ComponentsLayout.tsx
deleted file mode 100644
index 2da66f7292..0000000000
--- a/apps/storefront/layouts/ComponentsLayout/ComponentsLayout.tsx
+++ /dev/null
@@ -1,41 +0,0 @@
-import type * as React from 'react';
-
-import { Container, Meta } from '@components';
-
-import { Banner } from '../../components/SubPages/Banner/Banner';
-
-import classes from './ComponentsLayout.module.css';
-
-type ComponentsLayoutProps = {
- content: React.ReactNode;
- banner: {
- title: string;
- ingress?: string;
- icon: React.ReactNode;
- };
-};
-
-const ComponentsLayout = ({ content, banner }: ComponentsLayoutProps) => {
- return (
- <>
-
-
-
-
- {banner.icon}
- {banner.title}
- {banner.ingress && {banner.ingress} }
-
- {content}
-
- >
- );
-};
-
-export { ComponentsLayout };
diff --git a/apps/storefront/layouts/FrontpageLayout/FrontpageLayout.module.css b/apps/storefront/layouts/FrontpageLayout/FrontpageLayout.module.css
deleted file mode 100644
index 6b86f4998a..0000000000
--- a/apps/storefront/layouts/FrontpageLayout/FrontpageLayout.module.css
+++ /dev/null
@@ -1,145 +0,0 @@
-.header {
- height: 600px;
- margin-top: -106px;
- position: relative;
- margin-bottom: 40px;
-}
-
-.content::before {
- content: '';
- background-color: var(--fds-semantic-background-subtle);
- position: absolute;
- z-index: -1;
- height: 200vh;
- width: 300vw;
- left: -100vw;
- bottom: 120px;
- border-radius: 50%;
-}
-
-.content {
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- padding-top: 142px;
- padding-bottom: 20px;
- overflow: hidden;
-}
-
-.text {
- width: 550px;
- text-align: center;
- margin-bottom: 38px;
-}
-
-.container {
- display: flex;
- align-items: center;
- flex-direction: column;
- width: 100%;
-}
-
-.cards {
- display: grid;
- grid-row-gap: var(--grid-gap);
- grid-column-gap: var(--grid-gap);
- grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
- width: 100%;
-}
-
-.betaTag {
- background-color: #ebceff;
- display: inline-block;
- padding: 3px 12px;
- border-radius: 4px;
- font-size: 21px;
- font-weight: 500;
- margin-bottom: 15px;
-}
-
-.cluster {
- position: absolute;
- z-index: 0;
-}
-
-.cluster1,
-.cluster2 {
- transform: translateY(0);
-}
-
-.clusterRight {
- right: 65px;
-}
-
-.clusterLeft {
- left: 65px;
-}
-
-.cluster1 {
- top: 220px;
- width: 150px;
- animation-delay: 0.75s;
-}
-
-.cluster2 {
- top: 200px;
- width: 142px;
-}
-
-.cluster3 {
- top: 1050px;
- animation-delay: 1s;
- width: 200px;
-}
-
-.cluster4 {
- top: 1620px;
- height: 150px;
-}
-
-.cluster5 {
- top: 2290px;
- height: 140px;
- transform: rotate(45deg);
-}
-
-.cluster6 {
- top: 3080px;
- height: 160px;
- transform: rotate(45deg);
-}
-
-.banners {
- margin: 0;
- margin-bottom: 130px;
-}
-
-@keyframes floating {
- 0% {
- transform: translateY(0);
- }
-
- 50% {
- transform: translateY(-25px);
- }
-
- 100% {
- transform: translateY(0);
- }
-}
-
-@media (max-width: 1199.98px) {
- .cluster {
- display: none;
- }
-
- .header {
- height: auto;
- }
-
- .text {
- width: 100%;
- }
-}
diff --git a/apps/storefront/layouts/FrontpageLayout/FrontpageLayout.tsx b/apps/storefront/layouts/FrontpageLayout/FrontpageLayout.tsx
deleted file mode 100644
index cc672e2dcf..0000000000
--- a/apps/storefront/layouts/FrontpageLayout/FrontpageLayout.tsx
+++ /dev/null
@@ -1,118 +0,0 @@
-/* eslint-disable @next/next/no-img-element */
-import type React from 'react';
-import { Heading } from '@digdir/designsystemet-react';
-import { PaletteIcon, WrenchIcon, ComponentIcon } from '@navikt/aksel-icons';
-import cn from 'clsx';
-
-import { NavigationCard, Container } from '@components';
-
-import classes from './FrontpageLayout.module.css';
-
-type FrontpageLayoutProps = {
- content: React.ReactNode;
-};
-
-const FrontpageLayout = ({ content }: FrontpageLayoutProps) => {
- return (
-
-
-
-
-
-
-
Beta
-
- Designsystemet hjelper deg å lage gode digitale tjenester
-
-
-
- }
- level={2}
- >
-
- }
- level={2}
- >
-
- }
- level={2}
- >
-
-
-
-
- {content}
-
- );
-};
-
-export { FrontpageLayout };
diff --git a/apps/storefront/layouts/MenuPageLayout/MenuPageLayout.module.css b/apps/storefront/layouts/MenuPageLayout/MenuPageLayout.module.css
index 2e36db1c34..be84dd2669 100644
--- a/apps/storefront/layouts/MenuPageLayout/MenuPageLayout.module.css
+++ b/apps/storefront/layouts/MenuPageLayout/MenuPageLayout.module.css
@@ -2,8 +2,8 @@
display: flex;
justify-content: space-between;
flex-wrap: wrap;
- gap: var(--fds-spacing-10);
- margin-top: var(--fds-spacing-8);
+ gap: var(--ds-spacing-10);
+ margin-top: var(--ds-spacing-8);
margin-bottom: var(--page-spacing-bottom);
}
@@ -24,11 +24,11 @@
align-items: center;
position: relative;
overflow: hidden;
- margin-bottom: var(--fds-spacing-6);
- padding: var(--fds-spacing-10);
+ margin-bottom: var(--ds-spacing-6);
+ padding: var(--ds-spacing-10);
width: 100%;
- border-radius: var(--fds-border_radius-xlarge);
- background-color: var(--fds-semantic-background-subtle);
+ border-radius: var(--ds-border-radius-lg);
+ background-color: var(--ds-color-neutral-background-subtle);
}
.headerText {
@@ -36,12 +36,8 @@
padding-right: 290px;
}
-.title {
- margin-bottom: 0;
-}
-
.date {
- margin-top: var(--fds-spacing-3);
+ margin-top: var(--ds-spacing-3);
}
.iconContainer {
@@ -53,25 +49,25 @@
justify-content: center;
height: 190px;
width: 190px;
- border-radius: var(--fds-border_radius-large);
+ border-radius: var(--ds-border-radius-lg);
border: 7px solid #8f9296;
transform: rotate(45deg);
}
.iconContainer.red {
- border-color: var(--fds-brand-alt1-400);
+ border-color: var(--ds-color-brand1-surface-hover);
}
.iconContainer.blue {
- border-color: var(--fds-brand-alt3-400);
+ border-color: var(--ds-color-brand3-surface-hover);
}
.iconContainer.yellow {
- border-color: var(--fds-brand-alt2-400);
+ border-color: var(--ds-color-brand2-surface-hover);
}
.iconContainer svg {
- color: var(--fds-semantic-border-neutral-strong);
+ color: var(--ds-color-neutral-base-default);
position: relative;
z-index: 54;
opacity: 0.7;
@@ -80,23 +76,25 @@
}
.iconContainer.red svg {
- color: var(--fds-brand-alt1-600);
+ color: var(--ds-color-brand1-border-subtle);
}
.iconContainer.blue svg {
- color: var(--fds-brand-alt3-600);
+ color: var(--ds-color-brand3-border-subtle);
}
.iconContainer.yellow svg {
- color: var(--fds-brand-alt2-600);
+ color: var(--ds-color-brand2-border-subtle);
}
.content {
- padding: var(--fds-spacing-4) var(--fds-spacing-10) 0 var(--fds-spacing-10);
+ padding: var(--ds-spacing-4) var(--ds-spacing-10) 0 var(--ds-spacing-10);
+ height: fit-content;
}
.githubLink {
- margin-top: var(--fds-spacing-6);
+ display: inline-block;
+ margin-top: var(--ds-spacing-12);
}
@media (max-width: 1200px) {
diff --git a/apps/storefront/layouts/MenuPageLayout/MenuPageLayout.tsx b/apps/storefront/layouts/MenuPageLayout/MenuPageLayout.tsx
index a457116c4e..347e009ab6 100644
--- a/apps/storefront/layouts/MenuPageLayout/MenuPageLayout.tsx
+++ b/apps/storefront/layouts/MenuPageLayout/MenuPageLayout.tsx
@@ -1,13 +1,18 @@
-import type * as React from 'react';
-import { useRouter } from 'next/router';
+'use client';
import { Heading } from '@digdir/designsystemet-react';
import { ComponentIcon } from '@navikt/aksel-icons';
-import cn from 'clsx';
-
-import GithubLink from 'components/Link/Github/GithubLink';
-import { Banner } from 'components/SubPages/Banner/Banner';
+import { Container } from '@repo/components';
+import cn from 'clsx/lite';
+import { usePathname } from 'next/navigation';
+import type * as React from 'react';
-import { Container, SidebarMenu, MdxContent } from '../../components';
+import { GithubLink, MdxContent, SidebarMenu } from '../../components';
+import {
+ Banner,
+ BannerHeading,
+ BannerIcon,
+ BannerIngress,
+} from '../../components/Banner/Banner';
import classes from './MenuPageLayout.module.css';
@@ -30,42 +35,35 @@ type PageLayoutData = {
};
const MenuPageLayout = ({ content, data, banner }: PageLayoutProps) => {
- const router = useRouter();
+ const pathname = usePathname();
return (
{banner && (
- {banner.icon}
- {banner.title}
- {banner.ingress && {banner.ingress} }
+ {banner.icon}
+ {banner.title}
+ {banner.ingress && {banner.ingress} }
)}
-
+
-
+
{data && (
-
- {data.title}
-
+
{data.title}
{data.date &&
{data.date}
}
{data.icon && data.icon}
{!data.icon && }
@@ -73,15 +71,22 @@ const MenuPageLayout = ({ content, data, banner }: PageLayoutProps) => {
)}
-
);
};
diff --git a/apps/storefront/layouts/NavMenuPageLayout/NavMenuPageLayout.module.css b/apps/storefront/layouts/NavMenuPageLayout/NavMenuPageLayout.module.css
index 5a1bebb484..55a0cdea51 100644
--- a/apps/storefront/layouts/NavMenuPageLayout/NavMenuPageLayout.module.css
+++ b/apps/storefront/layouts/NavMenuPageLayout/NavMenuPageLayout.module.css
@@ -2,7 +2,7 @@
display: flex;
justify-content: space-between;
flex-wrap: wrap;
- gap: var(--fds-spacing-10);
+ gap: var(--ds-spacing-10);
margin-top: var(--page-spacing-top);
margin-bottom: var(--page-spacing-bottom);
}
@@ -18,5 +18,10 @@
}
.outerPage {
- background-color: var(--fds-semantic-background-subtle);
+ background-color: var(--ds-color-neutral-background-subtle);
+
+ [data-ds-color-mode='dark'] &,
+ [data-ds-color-mode='auto'] & {
+ background-color: var(--ds-color-neutral-background-default);
+ }
}
diff --git a/apps/storefront/layouts/NavMenuPageLayout/NavMenuPageLayout.tsx b/apps/storefront/layouts/NavMenuPageLayout/NavMenuPageLayout.tsx
index 52a3b6f3b0..7238cd558b 100644
--- a/apps/storefront/layouts/NavMenuPageLayout/NavMenuPageLayout.tsx
+++ b/apps/storefront/layouts/NavMenuPageLayout/NavMenuPageLayout.tsx
@@ -1,8 +1,15 @@
+'use client';
+import { Container } from '@repo/components';
+import { usePathname } from 'next/navigation';
import type * as React from 'react';
-import { useRouter } from 'next/router';
-import { Container, SidebarMenu, MdxContent } from '../../components';
-import { Banner } from '../../components/SubPages/Banner/Banner';
+import { MdxContent, SidebarMenu } from '../../components';
+import {
+ Banner,
+ BannerHeading,
+ BannerIcon,
+ BannerIngress,
+} from '../../components/Banner/Banner';
import classes from './NavMenuPageLayout.module.css';
@@ -17,26 +24,23 @@ type NavMenuPageLayoutProps = {
};
const NavMenuPageLayout = ({ content, banner }: NavMenuPageLayoutProps) => {
- const router = useRouter();
+ const pathName = usePathname() || '';
return (
{banner && (
- {banner.icon}
- {banner.title}
- {banner.ingress && {banner.ingress} }
+ {banner.icon}
+ {banner.title}
+ {banner.ingress && {banner.ingress} }
)}
-
+
-
-
+
+
{content}
diff --git a/apps/storefront/layouts/NavPageLayout/NavPageLayout.module.css b/apps/storefront/layouts/NavPageLayout/NavPageLayout.module.css
index 17fe152652..9a6056ad02 100644
--- a/apps/storefront/layouts/NavPageLayout/NavPageLayout.module.css
+++ b/apps/storefront/layouts/NavPageLayout/NavPageLayout.module.css
@@ -1,4 +1,9 @@
.content {
- margin-bottom: var(--fds-spacing-12);
- margin-top: var(--fds-spacing-12);
+ padding-bottom: var(--ds-spacing-12);
+ padding-top: var(--ds-spacing-12);
+
+ [data-ds-color-mode='dark'] &,
+ [data-ds-color-mode='auto'] & {
+ background-color: var(--ds-color-neutral-background-default);
+ }
}
diff --git a/apps/storefront/layouts/NavPageLayout/NavPageLayout.tsx b/apps/storefront/layouts/NavPageLayout/NavPageLayout.tsx
index e7d8fe9ee4..156baedebb 100644
--- a/apps/storefront/layouts/NavPageLayout/NavPageLayout.tsx
+++ b/apps/storefront/layouts/NavPageLayout/NavPageLayout.tsx
@@ -1,9 +1,13 @@
+import { Container } from '@repo/components';
import type * as React from 'react';
-import { Banner } from 'components/SubPages/Banner/Banner';
-
-import { Container, ImageSection, MdxContent } from '../../components';
-import type { ImageSectionProps } from '../../components';
+import { MdxContent } from '../../components';
+import {
+ Banner,
+ BannerHeading,
+ BannerIcon,
+ BannerIngress,
+} from '../../components/Banner/Banner';
import classes from './NavPageLayout.module.css';
@@ -19,36 +23,19 @@ interface NavPageLayoutProps {
}
interface NavPageLayoutData {
- imageSection: ImageSectionProps;
headerColor?: 'red' | 'blue';
}
const NavPageLayout = ({ content, data, banner }: NavPageLayoutProps) => {
return (
-
+
{banner && (
- {banner.icon}
- {banner.title}
- {banner.ingress && {banner.ingress} }
+ {banner.icon}
+ {banner.title}
+ {banner.ingress && {banner.ingress} }
)}
- {data && (
-
- )}
{content}
diff --git a/apps/storefront/layouts/NotFoundLayout/NotFoundLayout.module.css b/apps/storefront/layouts/NotFoundLayout/NotFoundLayout.module.css
deleted file mode 100644
index db703698a0..0000000000
--- a/apps/storefront/layouts/NotFoundLayout/NotFoundLayout.module.css
+++ /dev/null
@@ -1,35 +0,0 @@
-.content {
- height: 100%;
- padding: var(--fds-spacing-14) 0;
-}
-
-.container {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-wrap: wrap;
- gap: var(--fds-spacing-14);
- margin: 0 auto;
-}
-
-.imgContainer {
- flex-basis: 290px;
-}
-
-.img {
- max-width: 100%;
- display: block;
-}
-
-.textContainer {
- flex-basis: 380px;
-}
-
-.title {
- font: var(--fds-typography-heading-large);
- margin-bottom: var(--fds-spacing-4);
-}
-
-.desc {
- font: var(--fds-typography-paragraph-medium);
-}
diff --git a/apps/storefront/layouts/NotFoundLayout/NotFoundLayout.tsx b/apps/storefront/layouts/NotFoundLayout/NotFoundLayout.tsx
deleted file mode 100644
index 0917d0c7f0..0000000000
--- a/apps/storefront/layouts/NotFoundLayout/NotFoundLayout.tsx
+++ /dev/null
@@ -1,54 +0,0 @@
-import type * as React from 'react';
-import NextLink from 'next/link';
-import { Link } from '@digdir/designsystemet-react';
-import Image from 'next/image';
-
-import { Container } from '../../components/Container/Container';
-
-import classes from './NotFoundLayout.module.css';
-
-interface NotFoundLayoutProps {
- content: React.ReactNode;
- data: {
- title: string;
- description: string;
- };
-}
-
-const NotFoundLayout = ({ content, data }: NotFoundLayoutProps) => {
- return (
-
-
-
-
-
-
-
{data.title}
-
{data.description}
-
-
- Gå til forsiden
-
-
-
- {content}
-
- ;
-
- );
-};
-
-export { NotFoundLayout };
-export type { NotFoundLayoutProps };
diff --git a/apps/storefront/layouts/PageLayout/PageLayout.module.css b/apps/storefront/layouts/PageLayout/PageLayout.module.css
index d8ec46b1b5..dde3f9e0d9 100644
--- a/apps/storefront/layouts/PageLayout/PageLayout.module.css
+++ b/apps/storefront/layouts/PageLayout/PageLayout.module.css
@@ -4,14 +4,20 @@
}
.header {
- background-color: var(--fds-brand-alt3-300);
- padding-top: var(--fds-spacing-7);
+ background-color: var(--ds-color-brand3-surface-default);
+ padding-top: var(--ds-spacing-7);
}
.headerContent {
max-width: 780px;
margin: 0 auto;
- padding-bottom: var(--fds-spacing-18);
+ padding-bottom: var(--ds-spacing-18);
+}
+
+.headerContent h1,
+.headerContent h2,
+.headerContent p {
+ color: var(--ds-color-brand3-text-default);
}
.title {
@@ -20,7 +26,7 @@
}
.backBtn {
- margin-bottom: var(--fds-spacing-10);
+ margin-bottom: var(--ds-spacing-10);
color: inherit;
}
@@ -29,19 +35,19 @@
}
.backBtn svg {
- margin-right: var(--fds-spacing-2);
+ margin-right: var(--ds-spacing-2);
}
.separator {
- margin: 0 var(--fds-spacing-2);
+ margin: 0 var(--ds-spacing-2);
}
.meta {
display: flex;
text-align: center;
justify-content: center;
- margin-bottom: var(--fds-spacing-3);
- font: var(--fds-typography-paragraph-short-large);
+ margin-bottom: var(--ds-spacing-3);
+ margin-top: var(--ds-spacing-8);
}
.content {
@@ -61,7 +67,7 @@
.meta {
flex-direction: column;
text-align: left;
- gap: var(--fds-spacing-1);
+ gap: var(--ds-spacing-1);
}
.separator {
diff --git a/apps/storefront/layouts/PageLayout/PageLayout.tsx b/apps/storefront/layouts/PageLayout/PageLayout.tsx
index 66948d7bde..9511c9492c 100644
--- a/apps/storefront/layouts/PageLayout/PageLayout.tsx
+++ b/apps/storefront/layouts/PageLayout/PageLayout.tsx
@@ -1,9 +1,10 @@
-import type * as React from 'react';
-import NextLink from 'next/link';
-import { Heading, Link } from '@digdir/designsystemet-react';
+import { Heading, Link, Paragraph } from '@digdir/designsystemet-react';
import { ArrowLeftIcon } from '@navikt/aksel-icons';
+import { Container } from '@repo/components';
+import NextLink from 'next/link';
+import type * as React from 'react';
-import { Container, MdxContent } from '../../components';
+import { MdxContent } from '../../components';
import classes from './PageLayout.module.css';
@@ -26,31 +27,20 @@ const PageLayout = ({ content, data }: PageLayoutProps) => {
-
-
-
+
+
+
{data.backText}
-
-
{data.author && {data.author}
}
-
-
-
{data.date && {data.date}
}
-
-
+
+
+
{data.author && {data.author} }
+
-
+
{data.date && {data.date}
}
+
+
+
{data.title}
diff --git a/apps/storefront/layouts/index.tsx b/apps/storefront/layouts/index.tsx
index d8ecd31323..160e337050 100644
--- a/apps/storefront/layouts/index.tsx
+++ b/apps/storefront/layouts/index.tsx
@@ -1,9 +1,4 @@
-export * from './FrontpageLayout/FrontpageLayout';
export * from './PageLayout/PageLayout';
export * from './MenuPageLayout/MenuPageLayout';
export * from './NavPageLayout/NavPageLayout';
export * from './NavMenuPageLayout/NavMenuPageLayout';
-export * from './NotFoundLayout/NotFoundLayout';
-export * from './BlogPageLayout/BlogPageLayout';
-export * from './BlogArticleLayout/BlogArticleLayout';
-export * from './ComponentsLayout/ComponentsLayout';
diff --git a/apps/storefront/mdx-components.tsx b/apps/storefront/mdx-components.tsx
new file mode 100644
index 0000000000..fdf1c769f1
--- /dev/null
+++ b/apps/storefront/mdx-components.tsx
@@ -0,0 +1,65 @@
+import type {
+ HeadingProps,
+ LinkProps,
+ ListItemProps,
+ ListOrderedProps,
+ ListUnorderedProps,
+ ParagraphProps,
+} from '@digdir/designsystemet-react';
+import {
+ Heading,
+ Link,
+ ListItem,
+ ListOrdered,
+ ListUnordered,
+ Paragraph,
+ Table,
+ TableBody,
+ TableCell,
+ TableHead,
+ TableHeaderCell,
+ TableRow,
+} from '@digdir/designsystemet-react';
+import type { MDXComponents } from 'mdx/types';
+
+export function useMDXComponents(components: MDXComponents): MDXComponents {
+ return {
+ ...components,
+ p: (props: ParagraphProps) => ,
+ a: (props) => ,
+ ol: (props: ListOrderedProps) => ,
+ ul: (props: ListUnorderedProps) => ,
+ li: (props: ListItemProps) => ,
+ h1: (props: HeadingProps) => (
+
+ ),
+ h2: (props: HeadingProps) => (
+
+ ),
+ h3: (props: HeadingProps) => (
+
+ ),
+ h4: (props: HeadingProps) => (
+
+ ),
+ h5: (props: HeadingProps) => (
+
+ ),
+ h6: (props: HeadingProps) => (
+
+ ),
+ table: (props) => ,
+ thead: (props) => ,
+ tbody: (props) => ,
+ tr: (props) => ,
+ th: (props) => ,
+ td: (props) => ,
+ };
+}
diff --git a/apps/storefront/next.config.mjs b/apps/storefront/next.config.mjs
index a15912848e..9e0d62caff 100644
--- a/apps/storefront/next.config.mjs
+++ b/apps/storefront/next.config.mjs
@@ -1,53 +1,11 @@
-import remarkFrontmatter from 'remark-frontmatter';
+import createMDX from '@next/mdx';
+import { s } from 'hastscript';
+import rehypeAutolinkHeadings from 'rehype-autolink-headings';
import rehypeHighlight from 'rehype-highlight';
-import remarkGfm from 'remark-gfm';
import rehypeSlug from 'rehype-slug';
-import rehypeAutolinkHeadings from 'rehype-autolink-headings';
-import { s } from 'hastscript';
-
-export default {
- webpack: (config, options) => {
- config.module.rules.push({
- test: /\.mdx?$/,
- use: [
- options.defaultLoaders.babel,
- {
- loader: '@mdx-js/loader',
- options: {
- providerImportSource: '@mdx-js/react',
- remarkPlugins: [remarkFrontmatter, remarkGfm],
- rehypePlugins: [
- rehypeHighlight,
- rehypeSlug,
- [
- rehypeAutolinkHeadings,
- {
- content() {
- return [
- s(
- 'svg',
- {
- xmlns: 'http://www.w3.org/2000/svg',
- viewbox: '0 0 16 16',
- },
- [
- s('path', {
- d: 'm7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z',
- }),
- ],
- ),
- ];
- },
- },
- ],
- ],
- },
- },
- ],
- });
+import remarkGfm from 'remark-gfm';
- return config;
- },
+const nextConfig = {
reactStrictMode: true,
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'tsx', 'ts'],
eslint: {
@@ -58,3 +16,36 @@ export default {
defaultLocale: 'no',
},
};
+
+const withMDX = createMDX({
+ options: {
+ remarkPlugins: [remarkGfm],
+ rehypePlugins: [
+ rehypeHighlight,
+ rehypeSlug,
+ [
+ rehypeAutolinkHeadings,
+ {
+ content() {
+ return [
+ s(
+ 'svg',
+ {
+ xmlns: 'http://www.w3.org/2000/svg',
+ viewbox: '0 0 16 16',
+ },
+ [
+ s('path', {
+ d: 'm7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z',
+ }),
+ ],
+ ),
+ ];
+ },
+ },
+ ],
+ ],
+ },
+});
+
+export default withMDX(nextConfig);
diff --git a/apps/storefront/package.json b/apps/storefront/package.json
index 6d5ccf316a..7953d089cb 100644
--- a/apps/storefront/package.json
+++ b/apps/storefront/package.json
@@ -4,35 +4,34 @@
"private": true,
"scripts": {
"dev": "next dev",
- "building": "next build",
+ "build": "next build",
"start": "next start",
"lint": "next lint",
"types": "tsc --noEmit"
},
"dependencies": {
- "@digdir/designsystemet-css": "0.7.0",
- "@digdir/designsystemet-react": "0.60.0",
- "@digdir/designsystemet-theme": "0.15.3",
- "@mdx-js/loader": "^2.0.0-rc.2",
- "@mdx-js/react": "^1.6.22",
- "@navikt/aksel-icons": "^5.12.2",
- "@types/react-syntax-highlighter": "^15.5.11",
- "@vercel/analytics": "^1.1.1",
- "hastscript": "^8.0.0",
- "mdx-embed": "^1.1.2",
- "next": "^14.0.4",
+ "@digdir/designsystemet-css": "workspace:^",
+ "@digdir/designsystemet-react": "workspace:^",
+ "@digdir/designsystemet-theme": "workspace:^",
+ "@mdx-js/loader": "^3.0.1",
+ "@mdx-js/react": "^3.0.1",
+ "@navikt/aksel-icons": "^6.14.0",
+ "@next/mdx": "^14.2.5",
+ "@repo/components": "workspace:^",
+ "@vercel/analytics": "^1.3.1",
+ "clsx": "^2.1.1",
+ "hastscript": "^9.0.0",
+ "next": "^14.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
- "react-element-to-jsx-string": "^15.0.0",
- "react-syntax-highlighter": "^15.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-highlight": "^7.0.0",
"rehype-slug": "^6.0.0",
- "remark-frontmatter": "^4.0.1",
- "webpack": "^5.91.0"
+ "remark-gfm": "^4.0.0",
+ "webpack": "^5.94.0"
},
"devDependencies": {
- "@types/react": "^18.2.45",
- "@types/react-dom": "^18.2.18"
+ "@types/react": "^18.3.3",
+ "@types/react-dom": "^18.3.0"
}
}
diff --git a/apps/storefront/pages/404.mdx b/apps/storefront/pages/404.mdx
deleted file mode 100644
index bcdcef9e60..0000000000
--- a/apps/storefront/pages/404.mdx
+++ /dev/null
@@ -1,18 +0,0 @@
-import { NotFoundLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
diff --git a/apps/storefront/pages/_app.tsx b/apps/storefront/pages/_app.tsx
deleted file mode 100644
index 972eab5ed0..0000000000
--- a/apps/storefront/pages/_app.tsx
+++ /dev/null
@@ -1,24 +0,0 @@
-import '../globals.css';
-import '@digdir/designsystemet-theme/brand/digdir/tokens.css';
-import '@digdir/designsystemet-css';
-
-import type { AppProps } from 'next/app';
-import { Analytics } from '@vercel/analytics/react';
-import { SkipLink } from '@digdir/designsystemet-react';
-
-import { Header } from '../components/Header/Header';
-import { Footer } from '../components/Footer/Footer';
-
-const MyApp = ({ Component, pageProps }: AppProps) => {
- return (
-
-
Hopp til hovedinnhold
-
-
-
-
-
- );
-};
-
-export default MyApp;
diff --git a/apps/storefront/pages/api/tokens.ts b/apps/storefront/pages/api/tokens.ts
deleted file mode 100644
index 6d42ae2702..0000000000
--- a/apps/storefront/pages/api/tokens.ts
+++ /dev/null
@@ -1,31 +0,0 @@
-import { promises as fs } from 'fs';
-import path from 'path';
-
-import type { NextApiRequest, NextApiResponse } from 'next';
-
-type outputObjType = {
- [key: string]: string;
-};
-
-export default async function handler(
- req: NextApiRequest,
- res: NextApiResponse,
-) {
- //Read the json data file data.json
- const tokensDirectory = path.join(process.cwd(), 'tokens');
- const fileContents = await fs.readFile(
- tokensDirectory + '/tokens.css',
- 'utf8',
- );
- const fileContentsArr = fileContents.split(';');
- const outputObj: outputObjType = {};
-
- for (let i = 0; i < fileContentsArr.length; i++) {
- if (i === 0) {
- continue;
- }
- const itemArr = fileContentsArr[i].split(':');
- outputObj[itemArr[0].replace('\n --', '')] = itemArr[1];
- }
- res.status(200).json(outputObj);
-}
diff --git a/apps/storefront/pages/bloggen/2023/derfor-trenger-vi-et-felles-designsystem.mdx b/apps/storefront/pages/bloggen/2023/derfor-trenger-vi-et-felles-designsystem.mdx
deleted file mode 100644
index 9b36bb19b0..0000000000
--- a/apps/storefront/pages/bloggen/2023/derfor-trenger-vi-et-felles-designsystem.mdx
+++ /dev/null
@@ -1,70 +0,0 @@
-import { BlogArticleLayout } from '@layouts';
-import { ResponsiveIframe, Image } from '@components';
-import { Contributors } from '@blog';
-
-export default ({ children }) => (
-
-);
-
-Ikke alle klarer å bruke offentlige digitale tjenester på egen hånd. Innsikt fra prosjektet [“Digital hele livet med bedre brukeropplevelse”](https://www.digdir.no/sammenhengende-tjenester/digital-hele-livet-med-bedre-brukeropplevelse/4405) har vist at en av grunnene er at brukskvaliteten i de digitale tjenestene ikke er god nok. Prosjektet var et oppdrag fra regjeringen og ble ledet av Digdir.
-
-## Høyt engasjement
-
-I presentasjonen snakket vi om hva vi kan gjøre i fellesskap for å få flere til mestre den digitale dialogen med det offentlige. Vi var innom konkrete utfordringer som gjør at mange faller utenfor i dag, og hva et felles designsystem kan løse. Til slutt inviterte vi alle 220 deltakerne inn i et Miro-brett for å få innsikt i hva andre tenker om et felles designsystem i det offentlige.
-
-Engasjementet har bekreftet hvor viktig det er at vi utforsker et felles designsystem. I tillegg til mer gjenkjennelige tjenester på tvers, påpeker flere at et felles designsystem vil gjøre det mulig for de mindre etatene og kommunene å lage gode løsninger uten å bruke alle ressursene sine på arbeid som kunne blitt gjort felles. Et felles designsystem vil gjøre det lettere for alle å etterleve krav til universell utforming, da dette er ivaretatt i komponentene.
-
-Noen er bekymret for at merkevarene forsvinner, mens andre påpeker at de offentlige digitale tjenestene fortsatt kan ha ulike avsenderitdenteter selv om de tar utgangspunkt i samme designsystem.
-
-[Her kan du se sammenstillingen av Miro-brettet](https://miro.com/app/board/uXjVMnk1ZM4=/?) og alle utfordringene og gevinstene som ble nevnt.
-
-
-
-## Felles designsystem er ikke en ny ide
-
-Fordelene ved å ha et felles designsystem har vært et tema i mange ulike fora i flere år. For i tillegg til å gjøre tjenestene mer brukervennlige, vil det også bidra til en mer effektiv tjenesteutvikling. I dag utvikler og forvalter vi flere designsystem i offentlig sektor. Ved å samarbeide om et felles designsystem, kan vi både spare penger og få bedre kvalitet.
-
-– Det er store gevinster av å ha et designsystem. Men det blir kostbart hvis vi ser for oss at ti ulike etater skal ha hvert sitt designsystem og egne ansatte som skal ha ganske like oppgaver. Den byrden det er å investere i et designsystem burde vi ta sammen, sier Roy Halvor Frimanslund, brukskvalitetsansvarlig og Design Lead i Brønnøysundregistrene.
-
-## Veien videre
-
-I dag samarbeider allerede Digdir og Brønnøysundregistrene om å etablere et felles designsystem. Møtet viste at det er en rekke andre som ønsker å være med på samarbeidet videre. Nøyaktig hvordan det videre samarbeidet skal være, er noe vi må utforske.
-
-Opptaket fra presentasjonen kan du se her:
-
-
-
-I rapporten [“Digital hele livet med bedre brukeropplevelse”](https://www.digdir.no/sammenhengende-tjenester/digital-hele-livet-med-bedre-brukeropplevelse/4405) kan du lese mer om hva det er som gjør at innbyggere opplever at digitale tjenester er vanskelige å bruke.
-
-
diff --git a/apps/storefront/pages/bloggen/2024/altinn-studio.mdx b/apps/storefront/pages/bloggen/2024/altinn-studio.mdx
deleted file mode 100644
index 49de81baa2..0000000000
--- a/apps/storefront/pages/bloggen/2024/altinn-studio.mdx
+++ /dev/null
@@ -1,133 +0,0 @@
-import { Card } from '@digdir/designsystemet-react';
-
-import { BlogArticleLayout } from '@layouts';
-import { Image } from '@components';
-import { Contributors } from '@blog';
-
-export default ({ children }) => (
-
-);
-
-[Altinn Studio](https://altinn.studio/) er et verktøy for å lage digitale tjenester. Bruker du Altinn Studio for å bygge tjenester, bruker du automatisk komponenter fra Designsystemet!
-
-For at Team Altinn Studio skal nå sine mål om å skape et godt verktøy — må et godt designsystem ligge i bunn. Utviklerne i Altinn Studio trenger komponenter som er tilgjengelig for brukerne på en god måte, men samtidig tillater dem å utvide komponentene til det mer komplekse.
-
-_"Det er viktig at det er mulig å utvide komponentene til det mer komplekse, fordi alle produkter skal løse et unikt behov i markedet, og ofte vil det forekomme situasjoner hvor mer spesialiserte komponenter er nødvendig. Hvis vi kan utvide eksisterende komponenter fra designsystemet, så vil vi kunne ivareta mye av tilgjengelighetskravene og visuell likhet med de grunnleggende komponentene uten å måtte legge inn for mye innsats."_
-
-
-
- David Øvrelid, Tech Lead i Altinn Studio, forklarer hvordan Altinn Studio
- bruker Designsystemet. Artikkelen ble først publisert på Medium. [Les den
- opprinnelige
- artikkelen](https://davidovrelid.com/hvordan-vi-kan-ta-i-bruk-designsystemet-no-p%C3%A5-en-forusigbar-m%C3%A5te-3988980884a2)
-
-
-
-
----
-
-
-Når vi skal ta i bruk en tredjepart, uavhengig om det er designsystemt eller noe annet. Så er det viktig å tenke over noen grunnlegende kjøreregler for å sørge for kvalitet og sikkerhet i din løsning.
-
-Designsystemet tilbyr en hel rekke av grunnleggende komponenter, som kan utformes i mange varianter. Et eksempel er knappkomponenten (se figur 1).
-
-
-
-Selv om knappkomponenten kommer i mange varianter betyr ikke det at du og ditt team skal ta i bruk alle variantene. Designsystemet tilbyr disse mulighetene for at det skal være fleksibelt, og kunne tilby deg funksjonalitet som både er ofte brukt men også kjente mønstre.
-
-_Designsystemet har dokumentasjon på mønstre når de forskjellige variantene skal benyttes. [Se eksempelvis for knappen på denne lenken](https://storybook.designsystemet.no/?path=%2Fdocs%2Fkomponenter-button--docs)._
-
-Hvordan skal vi klare å sørge for at et helt team har kontroll på hvilke varianter som skal brukes hvor og når i teamets produkt og hvorfor er det så viktig? Det er først og fremst viktig fordi vi skal utvikle en løsning som er gjennomtenkt og formidler et helhetlig produkt som brukeren forstår. Vi må derfor passe på at samme type arbeidsoppgaver for brukeren løses på akkruat den samme måten, både visuelt og funksjonelt på tvers av produktet. Det betyr også at vi må passe på at det ikke blir en tilfeldig implementasjon og brukeropplevelse utfra hvilken utvikler som har implementert funksjonen, men heller ha godt etablerte konsepter i teamet.
-
-Så, det betyr at vi må sørge for å ivareta tre viktige hovedpunkter når vi tar i bruk designsystemet.
-
-1. Vi må kunne etablere våre egne mønstre og konsepter som er tilpasset målgruppen til vårt produkt. Slik at vi sørger for god brukeropplevelse for vår målgruppe, men ivaretar helheten på tvers av produkter ved bruk av designsystemet.no.
-2. Vi må sørge for at hele teamet har en trygghet når det gjøres oppdatering av npm-pakken fra designsystemet.
-3. Vi må sørge for enkel håndering av Breaking Changes, både for tryggheten — men også for å påse at teamet ikke blir hengende heter på major versjoner.
-
-Hvordan kan vi ivareta egne mønstre, konsepter, trygghet og breaking changes? Nøkkelordet her er å isolere. Ved å isolere tredjepartssystemer øker vi kontrollen på tredjepartssystemet internt i kodebasen og i teamet.
-
-Hva er egentlig å isolere en trejdepart? Det handler om å sørge for at vi bare har et integrasjonspunkt med tredjepart. I dette tilfellet handler det om at vi bare har avhengigheter til desginsystemet et sted. Hvordan kan vi oppnå det? Vi kan oppnå det ved å ta i bruk fasademønsteret.
-
-## Fasademønsteret
-
-_Fasademønsteret i programvareutvikling refererer til en designmønstre som tillater klienter å kommunisere med komplekse systemer gjennom et forenklet grensesnitt. Det brukes til å skjule kompleksiteten til underliggende systemer og fremme en mer modulær og vedlikeholdbar kodebase._
-
-**Altinn Studio benytter seg av designsystemet.no ved hjelp av fasademønsteret.**
-
-Team Altinn Studio benytter seg av monorepo som betyr at de kan opprette egne pakker internt i sin egen kodebase. Dette fremmer muligheten til å bygge modulær og skalerbar kode.
-
-Altinn Studio har derfor utviklet sin egen pakke internt i monorepo som de kaller for `studio-components`. Hva er forskjellen på desginsystemet og `studio-components`? Forskjellen er at designsystemet tilbyr et helt desginsystem som inkluderer tokens for farger og avstander, samt grunnleggende komponenter. Mens `studio-components` følger fasademønsteret for å bygge videre på komponentene fra designsystemet, samt tar i bruk tokens fra designsystemet. Med andre ord, så oppnår Altinn Studio isolering av designsystemt ved bruk av `studio-components`. Det gir også muligheten for teamet å definere sine egne mønstre og komponenter for sine behov.
-
-_*Er du nysgjerring på `studio-components`? Altinn Studio har dokumentasjon av komponentene på https://components.altinn.studio. I skrivende stund er dokumentasjonen under utvikling og mer informasjon om mønstere og konsepter kommer.*_
-
-Her oppnår Team Altinn Studio isolering av designsystemet, samtidig som det åpner for å utvide designsystemet med mer komplekse komponeter for eget behov. Fordelen med å utvide designsystemet er at man ser helheten og kjenner igjen de sammensatte komponentene, fordi den er bygget opp av en eller flere komponenter fra designsystemet.
-
-Eksempelvis har Altinn Studio behov for en [ExpressionEditor](https://components.altinn.studio/?path=%2Fdocs%2Fforms-studioexpression--docs). Dette er en komponent som blir for spesifikk for designsystemet, så det er ikke hensiktsmessig å la designsystemet utvikle og vedlikeholde denne komponenten. Team Altinn Studio har derfor laget sin egen komponent i `studio-components` som utvider designsystemet ved å ta i burk grunnkomponentene designsystemet tilbyr. Komponenten tar også i bruk de samme tokene for avstasnder og størrelser som benyttes i designsystemet. I figur 3 under, så kan du kjenne igjen helheten fordi de bruker grunnkomponentene i designsystemet som byggeklosser. Kult, ikke sant!
-
-
-
-**_Designsystemet er utviklet på en slik måte at det er enkelt å ta i bruk og utvide komponentene til de mer komplekse der det er behov._**
-
-Her ivaretar Team Altinn Studio det første prinsippet med å kunne definere egne mønstre og konsepter for sitt produkt, for å imøtekomme god brukeropplevelse. Dette forenkler også arbeidshverdagen for designere og utviklere på teamet. Fordi de har skapt en gjenbrukbar komponent for alle steder det er nødvendig å redigere en expression.
-
-## Hvordan ivareta tryggheten?
-
-La oss gå videre og finne ut hvordan vi kan ivareta tryggheten ved oppdateringer av ny versjon av designsystemet.
-
-For å oppnå trygghet og sikkerhet ved oppdateringer av tredjepart er det viktig med isolering av tredjeparten. Hvis man ikke isolerer designsystemet må en ha direkte avhengigheter til designsystemet i alle sider og komponenter i appen. Dette betyr at en må innom alle komponenter og sider som benytter seg av en komponent fra designsystemet som får breaking change. Det betyr at vi potensielt kan få hundrevis av filer som er endret, bare fordi man gjorde en oppdatering av designsystemet. Figur 4 under viser en forenklet illustrasjon. Illustrasjonen viser fire sider som benytter seg av en knapp direkte fra designsystemet, altså ingen isolering. Det betyr at dersom knappen får en breaking change, må det endres kode i 4 side-komponenter. I det virklige liv kan det være snakk om endringer i hundevis av komponenter. Dette gjør at man ikke er helt sikker på om alt fungerer som før oppdateringen.
-
-
-
-Hvrdan kan vi løse denne problemstillingen? Helt riktig — vi kan løse det med isolering av komponentene ved hjelp av fasademønsteret.
-
-Figur 4 illustrerer hvordan vi kan isolere ved hjelp av fasademønsteret. Ved å isolere eksterne kilder i egne fasadekomponenter. Så kan vi eksportere kun de nødvendige egenskapene til selve applikasjonen vår. Når det kommer en breaking change, så trenger vi bare å implementere endringen i fasadekomponenten og beholde det samme API ut til vår egen applikasjon internt. Det betyr at vi får bare en fil å endre istedenfor 4 side-komponenter som vist i figur 4.
-
-Når vi implementerer fasade-komponenter så er det viktig å sikre gode unit-tester også for fasade-komponentene. Slik at vi er sikre på at komponenten fungerer på akkurat samme måte både før og etter re-implementienrg av breaking changes.
-
-Når vi isolerer komponentene våre, eliminerer vi behovet for å endre den eksisterende koden i selve applikasjonen vår. Den eneste delen av koden vi må justere er fasadekomponenten. Dette resulterer i at pull requests som inneholder oppdateringer for breaking changes forblir små, samtidig som testene for fasadekomponenten forsikrer oss om at uendret kode fungerer og oppfører seg som før.
-
-
-
-Nå som Team Altinn Studio har oppnådd isolering av sammensatte komponenter, kan frontend-utivklere og designere jobbe tettere sammen mellom det som er teknisk implementert og skissene i Figma. Det vil si at Figma skissene kan gjenspeile komponentnavnene i `studio-components`.
-
-Nå kan de dokumentere og benytte de samme komponentene og navnene både i Figma og i kode. Det gjør at det blir lettere for teamet å etablere mønstre og gjenbrukbare komponenter som skal løse de samme problemene på tvres av produktet. Nå kan også fasadekomponentene begrense antall varianter av komponenten fra designsystemet, slik at det blir mindre sannsynlig for at varianter som ikke skal brukes blir benyttet.
-
-**_Altinn Studio kodebasen er åpen kilekode og derfor åpent tilgjengelig for alle. Er du nysgjerrig på studio-components koden, kan du finne koden på denne lenken https://github.com/Altinn/altinn-studio/tree/main/frontend/libs/studio-components._**
-
-Det er avgjørende å sikre at komponentene som utgjør fasadepakken er enkle. Dette betyr at de kun bør motta informasjon som input-props, basert på denne inputen, levere et forventet resultat tilbake. Det er essensielt at komponentene i fasadepakken ikke foretar API-kall eller har tette koblinger til eksterne tredjeparter. Dette kan føre til redusert gjenbrukbarhet av komponentene.
-
-## Oppsummering
-
-Nå har vi lært at vi burde vurdere å isolere tredjeparter som blir brukt som en sentral del av vår egen løsning. Vi har lært at isolering vil skape trygghet og forutsigbarhet. Det vil bidra til å kunne dokumentere og utivkle interne konsepter og mønstre som bygger videre på designsystemet for produktets behov, samtidig som helheten ivaretas. Det vil være med å knytte et enda tettere og bedre samarbeidet mellom design og utvikling.
-
-
diff --git a/apps/storefront/pages/bloggen/2024/bachelor-temavelger.mdx b/apps/storefront/pages/bloggen/2024/bachelor-temavelger.mdx
deleted file mode 100644
index e32a87edf0..0000000000
--- a/apps/storefront/pages/bloggen/2024/bachelor-temavelger.mdx
+++ /dev/null
@@ -1,51 +0,0 @@
-import { BlogArticleLayout } from '@layouts';
-import { ResponsiveIframe } from '@components';
-import { Contributors } from '@blog';
-
-export default ({ children }) => (
-
-);
-
-Kristian Birkeli, bachelorstudent i Datateknologi ved UiS, har vårsemesteret 2024 gjennomført en bacheloroppgave i samarbeid med Digdir og Designsystemet.
-
-I oppgaven har Birkeli utforsket hvordan det kan bli enklere å adoptere og ta i bruk Designsystemet. Han har gjennomført en rekke intervjuer med brukere og potensielle brukere av Designsystemet. Gjennom intervjuene har vi fått innsikt i hva som i dag er utfordrende med å ta Designsystemet i bruk, samt hvilke forventninger potensielle brukere har.
-
-## Temabygger
-
-En del av oppgaven har vært å utforske og prototype en «Temabygger» med et grafisk brukergrensesnitt som skal gjøre det enklere å se hvordan komponenter fra Designsystemet kan tilpasses den enkeltes avsenderidentitet. Temabyggeren hadde også mulighet for å eksportere valgte verdier til CSS for å gjøre det enklere å komme i gang med å ta designsystemet i bruk.
-
-
-
-Ved bruk av verktøyet kan brukerne med få tastetrykk se komponentene fra designsystemet med sine egne farger.
-
-## Brukertester og videre arbeid
-
-Brukertesting av prototypen har også vært en viktig del av bacheloroppgaven. Brukertestene, som har vært gjennomført med seks designere og utviklere, har gitt oss verdifull innsikt i hva som skal til for å gjøre designsystemet enklere å adoptere.
-
-Digdir har allerede tatt innsikten videre i arbeidet med å forbedre token-strukturen og fargesystemet. Gjennom brukertestene kom det blant annet frem at det eksisterende fargesystemet var vanskelig å forstå. `Action`-fargen påvirket kun `Button`-komponenten, men det var forventet at den skulle fungere som en `accent`-farge som påvirket flere skjema-elementer. Med bakgrunn i innsikten har Digdir videre utforsket et helt nytt fargesystem og token-struktur som skal støtte tematisering ytterligere.
-
-Innsikten viste også at brukerne forventet at verktøyet automatisk skulle ivareta kontrastkrav. Vi jobbet derfor videre med et fargesystem som tar utgangspunkt i organisasjonens brandfarge, samtidig som farger tiltenkt tekst alltid har god nok kontrast mot farger tiltenkt bakgrunner, både for light- og darkmode.
-
-## Vi takker for samarbeidet
-
-Vi takker Birkeli for et veldig godt samarbeid gjennom ukentlige møter. Prototypen Birkeli har utviklet, og innsikten som er samlet, er et svært viktig bidrag som gjør at vi nå er bedre rustet til å lande et fargesystem og en token-struktur som er mer fleksibel, lettere å forstå og samtidig ivaretar kontrastkrav. Designsystem-teamet vil jobbe videre med å lage en temabygger for Designsystemet basert på arbeidet Birkeli har startet.
-
-
diff --git a/apps/storefront/pages/bloggen/2024/fluid-typography.mdx b/apps/storefront/pages/bloggen/2024/fluid-typography.mdx
deleted file mode 100644
index 63329a286a..0000000000
--- a/apps/storefront/pages/bloggen/2024/fluid-typography.mdx
+++ /dev/null
@@ -1,72 +0,0 @@
-import { BlogArticleLayout } from '@layouts';
-import { Image } from '@components';
-import { Contributors } from '@blog';
-
-export default ({ children }) => (
-
-);
-
-Ved hjelp av “Fluid typography” kan vi skalere tekststørrelsen gradvis mellom en min og maks-bredde, i stedet for at det blir en brå oppskalering på et spesifikt brekkpunkt. Den lineære funksjonen tilnærmer seg ønsket størrelse jevnt over skjermens bredde.
-
-Tekststørrelsene øker gradvis fra viewport-bredde 320px helt til det treffer maksbredden på viewporten som er satt til 1360px. En tekst på 16px vil f.eks øke til 18px på den største viewporten.
-
-
-
-## Fordeler
-
-- Du slipper å tenke på breakpoints, størrelsen på skriften blir automatisk tilpasset skjermen.
-- Når størrelsene ikke justeres på konkrete breakpoints unngår vi at det blir stykkevis og brå oppskaleringer.
-
-## Ulemper
-
-- Halve piksler. Figma runder nedover. Noen nettlesere runder oppover, andre nedover. Det gjør at ting ikke ser likt ut i Figma og i nettleseren.
-- Du kan føle du har mindre kontroll.
-- I Figma kan denne størrelsesendringen kun skje ved bruk av pluginen "Token Studio", når du har aktivert ønsket viewport for din frame.
-- Det er ikke gitt at et produkt vil bygge sitt produkt ved hjelp av dynamisk typografi. Dersom noen legger til moduler fra designsystemet i eget grensesnitt vil det ikke samsvare med skaleringen deres.
-
-
-
-Basert på [ulempene dette medførte](https://github.com/digdir/designsystemet/issues/1444), valgte vi å gå for en [statisk typografi-skala](/grunnleggende/designelementer/typografi#tekststørrelse) som standard for designsystemet.
-
-## Har du behov for dynamisk typografi?
-
-Har du behov for å benytte dynamisk typografi, opprett gjerne en [feature request](https://github.com/digdir/designsystemet/issues/new?assignees=&labels=%F0%9F%92%A1feature+request%2Cneeds+prioritization%E2%9D%97%EF%B8%8F&projects=&template=2feature_request.yml), så kan vi vurdere muligheten for å aktivere "Fluid" som et eget sett.
-
-Størrelsene som ble brukt i den dynamiske skalaen ble generert ved hjelp av [Fluid Typescale Generator](https://fluid-tokenization.vercel.app/)
-
-| Step | viewport 320px | viewport 1360px |
-| ------ | --------------------- | --------------------- |
-| f-3 | 12.00px / 0.75rem | 12.00px / 0.75rem |
-| f-2 | 13.00px / 0.81rem | 13.00px / 0.81rem |
-| f-1 | 15.00px / 0.94rem | 16.00px / 1.00rem |
-| **f0** | **16.00px / 1.00rem** | **18.00px / 1.13rem** |
-| f1 | 18.00px / 1.13rem | 21.00px / 1.31rem |
-| f2 | 19.00px / 1.19rem | 24.00px / 1.50rem |
-| f3 | 21.00px / 1.31rem | 28.00px / 1.75rem |
-| f4 | 23.00px / 1.44rem | 32.00px / 2.00rem |
-| f5 | 26.00px / 1.63rem | 38.00px / 2.38rem |
-| f6 | 29.00px / 1.81rem | 44.00px / 2.75rem |
-
-
diff --git a/apps/storefront/pages/bloggen/2024/v1rc1.mdx b/apps/storefront/pages/bloggen/2024/v1rc1.mdx
deleted file mode 100644
index 1802aa2812..0000000000
--- a/apps/storefront/pages/bloggen/2024/v1rc1.mdx
+++ /dev/null
@@ -1,150 +0,0 @@
-import { Link } from '@digdir/designsystemet-react';
-
-import { BlogArticleLayout } from '@layouts';
-import { ResponsiveIframe, CodeSnippet } from '@components';
-import { Contributors } from '@blog';
-
-export default ({ children }) => (
-
-);
-
-Designsystemet har i lengre tid vært i beta. Betaperioden har gitt oss fleksibilitet og mulighet til å eksperimentere, teste den underliggende strukturen og hvordan komponentene fungerer sammen. Samtidig har det vært litt uforutsigbart for dere som har valgt å bruke designsystemet mens det fortsatt var i beta. Nå nærmer vi oss målstreken og har publisert en release candidate av V1!
-
-## Hva er nytt?
-
-Versjon 1 skal være mer stabil, mer fleksibel og støtte flerdimensjonal tematisering.
-
-Her er en kort oppsummering av hva som er nytt:
-
-- Fargesystem og token-struktur
-- Lett å tilpasse til din virksomhet
-- Støtte for darkmode og contrastmode
-- Design-tokens templat på Github
-- Oppdaterte komponenter i React og Figma med nye tokens
-
-### Nytt fargesystem og token-struktur
-
-Flere intervjuer og [brukertester](/bloggen/2024/bachelor-temavelger#brukertester-og-videre-arbeid) avdekket at det første fargesystemet ikke løste alle behov. Fargene hadde heller ikke alltid forventet oppførsel, og strukuren var noe tungtvindt å forholde seg til.
-
-Vi har de siste månedene utforsket et nytt fargesystem og en token-struktur som er mer fleksibel, lettere å forstå og samtidig ivaretar kontrastkrav. Å definere en solid Token-arkitektur med flerdimensjonale temaer krever overraskende mye tankearbeid - inkludert søvnløse netter og tegninger i dusjen. Ikke bare skal tokens fungere som bro mellom design og kode, det skal støtte multibranding og ulike modes (darkmode og contrastmode), og det skal ivareta kontrastkrav mellom farge-tokens tiltenkt tekst og bakgrunner.
-
-Vi har latt oss inspirere av [USWDS sine "magic numbers](https://designsystem.digital.gov/design-tokens/color/overview/)" for å sikre tilgjengelige fargekombinasjoner fra hvilken som helst fargepalett. Vi har også blitt inspirert av [Radix sitt lineære fargesystem](https://www.radix-ui.com/colors) med tydelige intensjoner for de ulike fargene. For å sikre at en organisasjonene skal kunne bruke sin faktiske brandfarge, har vi valgt å kombinere to tilnærminger til et helt nytt system. I det nye fargesystemet kan både brand-farger ivaretas og kontrastkrav sikres gjennom de lineære fargene som genereres ut fra brand-fargen. Farger beregnet for tekst vil dermed alltid ha god nok kontrast mot bakgrunnsfarger.
-
-I forbindelse med det nye fargesystemet har vi utviklet et verktøy der du kan teste dine brand-farger og hvordan det påvirker komponentene. Verktøyet er under arbeid, men er mulig å teste allerede nå. 👀
-
-
-
-
- theme.designsystemet.no
-
-
-Selv om vi nå har lagt opp til et fargesystem som støtter darkmode og contrastmode, gjenstår det fremdeles litt utforsking før vi er sikre på at genereringen av farger fungerer optimalt.
-
-#### Action --> Accent
-
-Et annet forvirrende element med det forrige fargesystemet var `action`-fargen, som kun endret fargen på `Button`-komponenten. `Action` er nå byttet ut med `neutral` og `accent`-farger som påvirker forventede skjemaelementer.
-
-## Bli med å teste V1 Release Candidate!
-
-I arbeidet med å bygge et designsystem som skal fungere for mange ulike virksomheter er vi avhengige av tilbakemeldinger.
-
-Vi ønsker å være trygge på at det nye systemet er godt testet før vi lanserer det som V1. Derfor håper vi at så mange som mulig vil teste og komme med tilbakemeldinger.
-
-Vi kommer til å jobbe kontinuerlig med mindre forbedringer basert på tilbakemeldinger vi får frem til lansering av V1. Dato for V1 avhenger av tilbakemeldingene vi får.
-
-### Hva må du gjøre for å ta i bruk den nye arkitekturen?
-
-For å lett komme i gang som utvikler med Release Candidate av Designsystemet kan installerer følgende med ditt pakkesystem:
-
-```bash
-npm i @digdir/designsystemet-react@next
-npm i @digdir/designsystemet-theme@next
-npm i @digdir/designsystemet-css@next
-```
-
-Denne installerer alle tre pakken, og inneholder tokens, CSS og React komponenter.
-
-#### Fargemodus
-
-Ønsker du å teste `dark`, `light` eller `contrast` modus kan du legge på data-atributtet `data-ds-color-mode="MODE"`.
-Denne kan legges hvor som helst, og endrer alle barn til modusen du har valgt.
-
-
- {`... `}
-
-
-#### Design-tokens templat
-
-Du kan sjekke ut templatet vi har laget for Designsystemet design-tokens som du han ta i utgangspunkt for kobling mellom Figma og kode ved hjelp av Token Studio.
-Veiledninger på hvordan dette skal tas i bruk kommer!
-
-
- github.com/designsystemet/design-tokens
-
-
-#### Migrere fra beta-versjon
-
-Dersom du har tidligere brukt beta-versjonen av Designsystemet, så har vi laget et migreringsscript for CSS som prøver å fikse alle endringer vi har gjort på variabelnavn.
-
-Migreringsscriptet kjører automatisk på alle `.css` filer (inkl. undermapper) der du kjører den. Du kan selv bestemme hvilke filer den kjøres på ved å bruke parmeteret [--glob](), f.eks `--glob "./**/*.css"`
-
-_Merk at du må dobbelsjekke koden din etter scriptet har kjørt_
-
-```sh
-npx @digdir/designsystemet migrate beta-to-v1
-```
-
-## Takk for samarbeidet så langt!
-
-I tillegg til teamet som jobber daglig med Designsystemet har vi også en veldig viktig gjeng med bidragsytere som bidrar med både kode, innsikt, design og innspill. Tusen takk!
-
-
-
-Fikk du ikke med deg demoen 29. mai, kan du se opptaket i videoen over.
-
-
-
-Vi skulle gjerne nevnt alle, men du kan finne en full liste av bidragsytere på [Github](https://github.com/digdir/designsystemet/graphs/contributors).
diff --git a/apps/storefront/pages/bloggen/index.mdx b/apps/storefront/pages/bloggen/index.mdx
deleted file mode 100644
index 344bfcc465..0000000000
--- a/apps/storefront/pages/bloggen/index.mdx
+++ /dev/null
@@ -1,82 +0,0 @@
-import { PencilIcon } from '@navikt/aksel-icons';
-
-import { BlogPageLayout } from '@layouts';
-import { Meta } from '@components';
-import { BlogCard } from '@blog';
-
-export default ({ children }) => (
- ,
- color: 'red',
- }}
- />
-);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/apps/storefront/pages/bloggen/testing.mdx b/apps/storefront/pages/bloggen/testing.mdx
deleted file mode 100644
index 174421bcd3..0000000000
--- a/apps/storefront/pages/bloggen/testing.mdx
+++ /dev/null
@@ -1,53 +0,0 @@
-import { BlogArticleLayout } from '@layouts';
-import { Meta, Image } from '@components';
-import { Contributors } from '@blog';
-
-
-
-export default ({ children }) => (
-
-);
-
-
-
-Investigating gone slight plan blind have italic to the where behavioural and lobby, viable rung caught toys descriptions, room. Understood. That of good easy it lower are his in escape, gone the dishonourable caching of gain, essay to every expect, train so, emphasis for himself farther it at
-
-Outcome interaction writing facility phase. Their what the done head it the length withdraw and perfecting certainly was bored the endeavours attribute but intrigued stage self-discipline. Said the to saw these believe. I and lie be worries train the are my empty were very making a.
-
-
-
-## Kom i gang med komponenter
-
-Investigating gone slight plan blind have italic to the where behavioural and lobby, viable rung caught toys descriptions, room. Understood. That of good easy it lower are his in escape, gone the dishonourable caching of gain, essay to every expect, train so, emphasis for himself farther it at
-
-Investigating gone slight plan blind have italic to the where behavioural and lobby, viable rung caught toys descriptions, room. Understood. That of good easy it lower are his in escape, gone the dishonourable caching of gain, essay to every expect, train so, emphasis for himself farther it at
-
-
diff --git a/apps/storefront/pages/god-praksis/brukerinnsikt/brukergrupper-som-er-digitalt-sarbare.mdx b/apps/storefront/pages/god-praksis/brukerinnsikt/brukergrupper-som-er-digitalt-sarbare.mdx
deleted file mode 100644
index 7d893bc9f7..0000000000
--- a/apps/storefront/pages/god-praksis/brukerinnsikt/brukergrupper-som-er-digitalt-sarbare.mdx
+++ /dev/null
@@ -1,64 +0,0 @@
-import { PageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
-
-I rapporten [Digital hele livet med bedre brukeropplevelse](https://www.digdir.no/sammenhengende-tjenester/digital-hele-livet-med-bedre-brukeropplevelse/4405) har vi beskrevet seks brukergrupper som er digitalt sårbare. Hvis vi lager tjenester som imøtekommer behovene til disse gruppene, gjør vi det også lettere for alle andre å bruke digitale tjenester.
-
-Brukergruppene er beskrevet som personas som kan brukes som et verktøy i utviklingen av digitale tjenester. Personas er fiktive beskrivelser av personer som representerer brukergruppene. De er altså ikke et komplett bilde eller en uttømmende liste over behov og livssituasjoner, men en forenkling av virkeligheten. En innbygger kan befinne seg i flere grupper samtidig eller gå inn og ut av brukergrupper.
-
-## Brukergruppene møter ulike barrierer for digital deltakelse
-
-I beskrivelsene av personasene kan du også lese om hvilke barrierer for digital deltakelse de ulike gruppene møter. Det er flere ulike barrierer som gjør at folk faller utenfor, og mange rammes av flere av barrierene. Noen faller utenfor fordi de ikke har nok kunnskap om offentlig forvaltning. Andre har svake språkferdigheter, og klarer derfor ikke å finne, forstå og bruke informasjon om rettigheter og plikter.
-Andre blir hindret av helse og livssituasjon, og mangler et nettverk som kan hjelpe dem. I tillegg påvirkes motivasjonen for å løse digitale oppgaver av troen på mestring og selvtillit. Til sist blir noen hindret av at de ikke har tilgang på internett og utstyr som for eksempel PC.
-
-## 1. Gerda og Kåre - eldre ektepar der en må ta over alt
-
-Gerda og Kåre representerer de over 65 år. Dette er en veldig stor gruppe, så det er selvsagt store forskjeller innad i gruppen.
-
-Kåre og Gerda har vært gift i mange år, og er nå pensjonister. Gerda har alltid tatt ansvar for økonomien og digitale oppgaver, men får ikke lenger til det etter et slag. Det betyr at Kåre må overta disse oppgavene. Men hvordan skal han få til det? [Les mer om Kåre og Gerda, gruppen de representerer og hvilke barrierer denne brukergruppen møter.](https://www.digdir.no/klart-sprak/brukergrupper/4658#1_gerda_og_kre__eldre_ektepar_der_en_m_ta_over_alt)
-
-## 2. Kim - ung som møter forvaltningen for første gang
-
-Kim representerer unge mellom 16-24 år som har ungdomsskole som høyest fullførte utdanning.
-
-Kim har vokst opp i et ustabilt hjem og fått lite støtte fra foreldrene. Nå har han flyttet til et nytt sted og blitt arbeidsledig. Derfor trenger han hjelp fra det offentlige, men har lite kunnskap om hvilke rettigheter han har. [Les mer om Kim, gruppen han representerer og hvilke barrierer denne brukergruppen møter.](https://www.digdir.no/klart-sprak/brukergrupper/4658#2_kim__ung_som_mter_forvaltningen_for_frste_gang)
-
-## 3. Amina - innvandrer og utenfor på alle måter
-
-Amina representerer ikke-vestlige innvandrerkvinner med svake norskferdigheter.
-
-Amina har en jobb som krever at hun får mer digital kompetanse, og melder seg derfor på et kurs. Hun trenger blant annet hjelp til å få mannen sin til Norge og til å forstå informasjon fra NAV. [Les mer om Amina, gruppen hun representerer og hvilke barrierer denne brukergruppen møter.](https://www.digdir.no/klart-sprak/brukergrupper/4658#3_amina__innvandrer_og_utenfor_p_alle_mter)
-
-## 4. Alex - trygdet, alene og skeptisk
-
-Alex representerer de som står utenfor arbeidslivet.
-
-Alex ble sykemeldt etter en arbeidsulykke, og skaden gjør at han har svekket konsentrasjon og hukommelse. Han har hatt lite kontakt med offentlig sektor og ikke hatt en jobb som har krevd digital kompetanse. [Les mer om Alex, gruppen han representerer og hvilke barrierer denne brukergruppen møter.](https://www.digdir.no/klart-sprak/brukergrupper/4658#4_alex__trygdet_alene_og_skeptisk)
-
-## 5. Agne - hjelperen som ikke får hjelpe
-
-Agne representerer pårørende som vil hjelpe slektninger eller venner som ikke klarer å løse digitale oppgaver på egenhånd.
-
-Agne må hjelpe moren sin med digitale oppgaver, og har derfor brukt hennes BankID. Da banken får vite det sperrer de BankID. Alternativet er å bli verge, men det trenger ikke moren til Agne. [Les mer om Agne, gruppen han representerer og hvilke barrierer denne brukergruppen møter.](https://www.digdir.no/klart-sprak/brukergrupper/4658#5_agne__hjelperen_som_ikke_fr_hjelpe)
-
-## 6. Mika - vergen som ikke får gjort jobben sin
-
-Mika representerer verger.
-Mika er verge for 15 personer med ulikt behov for hjelp. Han møter på mange problemer, spesielt med den digitale diaogen han ønsker å ha på vegne av de han er verge for. [Les mer om MIka, gruppen han representerer og hvilke barrierer denne brukergruppen møter.](https://www.digdir.no/klart-sprak/brukergrupper/4658#6_mika__vergen_som_ikke_fr_gjort_jobben_sin)
diff --git a/apps/storefront/pages/god-praksis/brukerinnsikt/brukerreise-for-din-tjeneste.mdx b/apps/storefront/pages/god-praksis/brukerinnsikt/brukerreise-for-din-tjeneste.mdx
deleted file mode 100644
index d6f59fc67a..0000000000
--- a/apps/storefront/pages/god-praksis/brukerinnsikt/brukerreise-for-din-tjeneste.mdx
+++ /dev/null
@@ -1,35 +0,0 @@
-import { PageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
-
-Å tegne opp opplevelsene og kontaktpunktene gir et overblikk og mulighet til å se relasjonen mellom hvordan tjenestene er bygd opp av hvilke kontaktpunkter og hvordan dette treffer og ikke treffer innbyggeren sin situasjon og behov fra a til å.
-
-## Øvelse
-
-Med utgangspunkt i personaen, går denne øvelsen ut å å tegne opp en brukerreise for de ulike karakterene i møte med virksomheten, før-under-etter. Brukerreisen skal gi en oversikt over hva som skjer/hvilken situasjon innbyggeren er i, hvilke kontaktpunkter de møter når og hva er deres opplevelser er av hver t kontaktpunkt og steg i reisen.
-
-### Personas
-
-Du kan ta utganspunkt i [de typiske brukergruppene](lenke-brukergrupper) i denne øvelsen, eller i dine egne personas.
-
-### Mulige produkter
-
-- Brukerreise-oppsett/mal: Oppsett/mal for å tegne opp opplevelser, kontaktpunkter og vurderinger av det som fungerer bra og ikke. For de som ikke har mulighet til å printe store ark, deles fliser av eks. A4-ark som man kan sette sammen.
-- Refleksjonsspørsmål: Eksempelvis vurdere opplevelsene på en skala fra surt fjes til smilefjes, utarbeide forslag til justeringer av brukerreisen for å i større grad imøtekomme behovene.
diff --git a/apps/storefront/pages/god-praksis/brukerinnsikt/felles-innsiktsbase.mdx b/apps/storefront/pages/god-praksis/brukerinnsikt/felles-innsiktsbase.mdx
deleted file mode 100644
index 89028d7860..0000000000
--- a/apps/storefront/pages/god-praksis/brukerinnsikt/felles-innsiktsbase.mdx
+++ /dev/null
@@ -1,72 +0,0 @@
-import { PageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
-
-_"Knowledge is of no value unless you put it into practice"_ - Chekhov
-
-Hvordan kan vi dele innsikt på tvers i det offentlige? Kan vi gjenbruke hverandres innsiktsarbeid, i stedet for å stadig gjøre de samme undersøkelsene om igjen?
-
-Seksjon for brukeropplevelse i Digitaliseringsdirektoratet utforsker for tiden en “open-source”-løsning for [innsikt i Github](https://github.com/digdir/innsiktsbibliotek). Visjonen er økt samarbeid på tvers av offentlig sektor, transparens utad og en utviklingsprosess som i større grad bygger på brukerinnsikt, innovasjon og forskning.
-
-## Utfordringer
-
-Flere kjenner seg sikkert igjen i disse utfordringene.
-
-- Kunnskap som forsvinner når rapporter blir lagt i skuffen etter at de er ferdigstilte
-- Konsentrasjon av kunnskap hos et fåtall langtidsansatte som må bruke mye tid på å verbalt dele av egen kunnskap om og om igjen
-- Begrenset deling og gjenbruk av innsikt på tvers av team, avdelinger og det offentlige
-- Høy utviklingstakt i DevOps team der dokumentasjon og deling av funn ikke blir prioritert
-
-### Modenhet for innsikt
-
-Forsknings- og innsiktsarbeid heller ofte i en av to retninger:
-
-1. Generative utforskende studier (generative exploratory research), ofte frikoblet fra dagens løsninger der vi søker dyptgående domeneforståelse for å identifisere mulighetsrom for fremtidige tjenester og løsninger.
-
-2. Vurderende studier (evaluative research) der vi måler og analyserer, ofte med hensikt å finne riktig løsning på et problem vi allerede er kjent med. Sett i sammenheng hjelper disse ytterpunktene oss å identifisere riktig problem samt å løse problemet på riktig måte.
-
-Enkelte organisasjoner har allerede oppnådd høy modenhet rundt bruk av innsikt, forskning og innovasjon mens andre har nylig startet på reisen. Det kan ofte kreve store mengder tid og krefter for å bygge kultur og arbeidsmønstre rundt dokumentering, deling og bruk av forskningsdata og innsikt i organisasjonen, noe enkelte er bedre rustet til enn andre. Det vi vet er at det kan være spesielt vanskelig når innsikt blir nedprioritert til fordel for hyppige og korte utviklingsfrister. Eller når gapet mellom innsikt og beslutningstagere blir for stort, der rapporter blir lagt i skuffen uten lovnader om midler og kapasitet til oppfølgning og gjennomføring i etterkant.
-
-Målet med innsiktsbibiloketet er i første omgang tredelt:
-
-1. Bidra til økt verdiskaping for organisasjoner med høy modenhet
-2. Være et springbrett for aktører som nylig har startet reisen
-3. Minske gapet mellom generative langtidsstudier og beslutningstakere på ulike nivå som har ressursene til å handle. Dette gjør vi først og fremst ved å koble innsiktsarbeid på utviklernes arbeidsverktøy og å gjøre arbeidet åpent for alle.
-
-## Prototype - Innsiksbibliotek
-
-Innsiktsbibliotektet består av to deler, en samling av github issues og ett tilhørende github prosjekt.
-
-1. **[Github issues](https://github.com/digdir/innsiktsbibliotek/issues)**\
- Issues muliggjør søk på alt av tekst og tags på tvers av alle issues i tillegg til å filtrere innhold på en mer avansert måte. Denne visningen passer best dersom du leter etter noe helt konkret og har behov for dyptgående søk.
-2. **[Github prosjekt](https://github.com/orgs/digdir/projects/19/views/2)**\
- Prosjektet består av en rekke forutbestemte visninger som filtrerer innsikten ut ifra gitte kategorier som STEEPLE + EIF, samt regjeringens digitaliseringsstrategi. Denne visningen passer best til å finne relevant innsikt som er knyttet til forretningsmessige og strategiske gevinster.
-
-### Registrere egne studier/funn og innsikt
-
-Dersom du ønsker å dele av egen innsikt i innsiktbiblioteket så har vi satt opp [tre typer skjema som kan fylles ut](https://github.com/digdir/innsiktsbibliotek/issues/new/choose). Vi skiller mellom studier, funn og innsikt der studien beskriver selve datainnhentingen, et funn beskriver en viktig oppdagelse fra studien og innsikt er flere funn sett i sammenheng som forklarer hvorfor noe skjedde.
-
-Ettersom systemet er på et tidlig prototypstadie og mangler forklarende innholder og guider har vi satt opp [en enkel guide i Miro](https://miro.com/app/board/uXjVM8DHH3o=/?share_link_id=998152182535) som vi håper kan hjelpe deg å komme i gang med å registrere innsikt i innsiktsbiblioteket.
-
-## Bidra til innsiktsbibilioteket
-
-Vårt mål er at innsiktsbiblioteket skal eies og modereres i fellesskap på tvers av offentlig sektor. Dersom du ønsker å bidra til å realisere ett felles innsiktsbibliotek på tvers av det offentlige vil vi gjerne høre fra deg. Vi håper også på at alle (kommune, stat, næringsliv, frivillige organisasjoner, innbyggere, mm) gir tilbakemeldinger samt sender inn forslag og ideer til hvordan vi kan gjøre løsningen enda bedre. Opprett gjerne en ny tråd i [Github discussions forumet](https://github.com/digdir/innsiktsbibliotek/discussions) eller kontakt oss på ima@digdir.no og sss@digdir.no.
-
-Vi har også nylig opprettet en [Github wiki](https://github.com/digdir/innsiktsbibliotek/wiki) der fremtidig dokumentasjon, guider og annet relevant innhold kommer til å ligge og bli oppdatert på veien videre.
diff --git a/apps/storefront/pages/god-praksis/brukerinnsikt/i-innbyggeren-sine-sko.mdx b/apps/storefront/pages/god-praksis/brukerinnsikt/i-innbyggeren-sine-sko.mdx
deleted file mode 100644
index cf5c91a960..0000000000
--- a/apps/storefront/pages/god-praksis/brukerinnsikt/i-innbyggeren-sine-sko.mdx
+++ /dev/null
@@ -1,36 +0,0 @@
-import { PageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
-
-Å sette seg inn i innbyggeren sine opplevelser og situasjon er med på å bygge empati og skape en dypere forståelse av situasjonen virksomhetene skal forbedre, som igjen bygger et bedre grunnlag for å utvikle gode løsninger.
-
-## Øvelse
-
-Denne øvelsen går ut på å sette seg inn i innbyggeren sine opplevelser og situasjon ved å spille ut personaen gjennom et gruppearbeid. Gruppearbeidet tar for seg oppgaver som er typisk for en designprosess, herunder arbeid med innsikter, idegenerering og testing. Med manuskripter som utgangspunkt, er det opp til hver enkelt å forme og “spille ut ” sin rolle.
-
-### Personas
-
-Du kan ta utganspunkt i [de typiske brukergruppene](lenke-brukergrupper) i denne øvelsen, eller i dine egne personas.
-
-### Mulige produkter
-
-- Manuskripter: Hver deltaker får hver t sitt manuskript på en persona. Denne inneholder en kor t beskrivelse av personanen (du er ..), videre typiske utsagn (du sier ofte ..), kjepphester (du er opptatt av..) og behov (du trenger..), nok til å forstå hva slags karakter en skal spille ut, men åpen nok til forme den etter eget ønske.
-- Designoppgaver: Et sett med oppgaver typisk for en designprosess som går ut på å kartlegge nåsituasjonen, utvikle ideer, teste de og forbedre i omganger, som gruppen arbeider med mens de spiller ut sine karakterer.
-- Merch: Navnelapper, figurer eller artefakter som representerer karakteren man er.
diff --git a/apps/storefront/pages/god-praksis/index.mdx b/apps/storefront/pages/god-praksis/index.mdx
deleted file mode 100644
index b4c8fc40a1..0000000000
--- a/apps/storefront/pages/god-praksis/index.mdx
+++ /dev/null
@@ -1,85 +0,0 @@
-import { HandShakeHeartIcon } from '@navikt/aksel-icons';
-
-import { NavPageLayout } from '@layouts';
-import { Meta, Grid, TeaserCard } from '@components';
-
-export default ({ children }) => (
- ,
- color: 'yellow',
- }}
- />
-);
-
-
-
-## Brukerinnsikt
-
-Designressurser og kunnskapsdeling rundt brukerinnsikt.
-
-
-
-
-
-
-## Tilgjengelighet
-
-Tilgjengelighet og universell utforming handler om at det vi lager skal kunne brukes av alle uavhengig av funksjonsevne eller brukskontekst.
-
-
-
-
-
-
-## Innholdsarbeid
-
-Brukerne skal finne, forstå og gjøre det de kom til tjenesten for å gjøre. Derfor er det viktig at vi skriver brukertilpasset, klart og tydelig.
-
-
-
-
-
diff --git a/apps/storefront/pages/god-praksis/innholdsarbeid/andre-ressurser.mdx b/apps/storefront/pages/god-praksis/innholdsarbeid/andre-ressurser.mdx
deleted file mode 100644
index 3420c0d3bb..0000000000
--- a/apps/storefront/pages/god-praksis/innholdsarbeid/andre-ressurser.mdx
+++ /dev/null
@@ -1,24 +0,0 @@
-import { MenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
-
-## God praksis - andre ressurser
-
-- [Innholdsarbeid](https://aksel.nav.no/god-praksis/innholdsarbeid)
-- [Brukerinnsikt](https://aksel.nav.no/god-praksis/brukerinnsikt)
-- [Universell utforming](https://aksel.nav.no/god-praksis/universell-utforming)
-- [Skjemaer](https://aksel.nav.no/god-praksis/skjemaer)
diff --git a/apps/storefront/pages/god-praksis/innholdsarbeid/skriverad.mdx b/apps/storefront/pages/god-praksis/innholdsarbeid/skriverad.mdx
deleted file mode 100644
index b89a77b744..0000000000
--- a/apps/storefront/pages/god-praksis/innholdsarbeid/skriverad.mdx
+++ /dev/null
@@ -1,67 +0,0 @@
-import { PageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
-
-Komponentene i designsystemet skal fylles med informasjon til brukerne. Når vi gjør det, er det viktig at vi skriver på et klart og korrekt språk som er tilpasset målgruppen. Brukerne skal finne, forstå og gjøre det de kom til tjenesten for å gjøre.
-
-Her får du noen generelle råd om klarspråk, og lenker videre hvis du vil lese mer om hvordan du kan skrive klart og tydelig. I tillegg er det råd om språk i retningslinjene for de enkelte komponentene i designsystemet.
-
-## Test på ekte brukere
-
-Det aller viktigste du kan gjøre for å sikre at brukerne forstår det du skriver, er å brukerteste. Test tidlig og hyppig, og test på ekte brukere. Test ord og begreper. Bruk reell tekst både når du tester tidlige skisser og protyper. [KS har mange gode råd om hvordan du kan teste om brukerne forstår det du skriver](https://www.ks.no/fagomrader/digitalisering/kompetanse-og-verktoy/klarsprak--involver-brukerne-og-mal-effekten/)
-
-## Slik skriver du kort og tydelig
-
-Et råd for hvordan du kan skrive tydelig og klart, er ofte også et råd om hvordan du kan skrive kort. La det komme tydelig fram hvem som gjør hva. Tenk at du skriver en samtale. I tillegg er det viktig å skrive konkret, plassere verbene tidlig i setningene og ikke bruke unødvendige substantiver,
-
-### Hvem som gjør hva må komme tydelig fram
-
-I digitale tjenester er det viktig at brukerne lett forstår hvem som skal gjøre hva. Regelverk og lover har ofte passivt språk og det har også preget det offentlige språket generelt. Når vi skriver passivt blir det utydelig hvem som gjør hva.
-
-Derfor skal vi skrive aktivt og som om vi snakker direkte til brukeren. Vi skal bruke ord som “du” og “vi”.
-
-#### Eksempel
-
-**Ikke skriv:** Det blir sendt en e-post når søknaden er behandlet. \
-**Skriv heller:** Du får en e-post fra oss når søknaden er behandlet.
-
-### Unngå substantivsjuken
-
-Når vi bruker mange substantiver, blir teksten tung å lese og vi bruker flere ord enn nødvendig. Særlig gjelder det når vi gjør et verb om til et substantiv, for eksempel når vi velger å skrive «foreta en utredning» i stedet for å «utrede». Du kan sjekke om teksten er subtantivsjuk ved å se etter ord som slutter på «-ing» og «-else» og har en «av» foran.
-
-#### Eksempel
-
-**Ikke skriv:** Vi har foretatt en behandling av søknaden \
-**Skriv heller:** Vi har behandlet søknaden
-
-### Sett verbet så tidlig som mulig i setningen
-
-Når språket blir formelt plasserer vi i ofte verbet for langt ut i setningen. Det gjør at du må lese mange ord før du får verbet, og det blir vanskeligere å huske hva som sto tidlig i setningen.
-
-#### Eksempel
-
-**Ikke skriv:** Arbeidstaker har en del plikter som må oppfylles \
-**Skriv heller:** Arbeidstaker må oppfylle noen plikter
-
-### Vil du lese mer om klarspråk?
-
-[KS har en rekke gode råd om klart språk i digitale løsninger.](https://www.ks.no/fagomrader/digitalisering/klart-sprak-i-digitale-selvbetjeningslosninger/)
-
-[Les mer om generelle skriveråd fra Språkrådet.](https://www.sprakradet.no/klarsprak/om-skriving/generelle-skriverad-nynorsk/)
diff --git a/apps/storefront/pages/god-praksis/innholdsarbeid/skumlesing.mdx b/apps/storefront/pages/god-praksis/innholdsarbeid/skumlesing.mdx
deleted file mode 100644
index d44f1cc3ef..0000000000
--- a/apps/storefront/pages/god-praksis/innholdsarbeid/skumlesing.mdx
+++ /dev/null
@@ -1,61 +0,0 @@
-import { PageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
-
-Når vi er på en nettside eller i en app, skanner vi etter noe som kan fange oppmerksomheten vår, et hint eller tips om hva som er viktig, hva vi skal gjøre eller om vi kan finne svar på det vi lurer på i et avsnitt.
-
-Denne måten å lese på må vi ta hensyn til når vi lager innhold. I tillegg må vi ta hensyn til brukernes leseferdigheter. Voksne i Norge har generelt gode leseferdigheter, men mange opplever at språket i offentlige digitale tjenester er vanskelig å forstå. Det kan være at de ikke har norsk som morsmål, har kognitive vansker eller svake leseferdigheter av andre grunner. I tillegg er det mange med gode leseferdigheter som synes språket er vanskelig fordi det er ukjente ord, begreper og tematikk.
-
-Når vi har god struktur på innholdet og bruker klart språk og ord som folk kjenner igjen, blir det lettere å både skanne innholdet og oppfatte innholdet. Det gjelder også dem med svake leseferdigheter
-
-## Slik skriver du tekster som er lette å skumlese
-
-1. **Bruk punktlister for å ramse opp**
-
- - Maks en setning per punkt, helst bare noen få ord.
-
-2. **Bruk korte ord**
-
- - Velg enkle og korte ord i stedet for formelle eller lange ord.
- - Bruk de ordene brukerne bruker.
- - Unngå fagspråk, gammeldagse ord og moteord.
-
-3. **Unngå lange setninger**
-
- - Ett poeng i hver setning.
- - Unngå mer enn 15 ord i en setning.
-
-4. **Ett tema i hvert avsnitt**
-
- - Ha maks 3-4 setninger per avsnitt.
-
-5. **Lag meningsbærende overskrifter og mellomoverskrifter**
-
-Overskriftene og mellomoverskriftene skal gjengi innholdet i avsnittet. De skal helst være en hel setning.
-
-- Overskrifter fungerer som veiskilt i teksten og gjør den enklere å skanne og lettere å lese.
-- Mellomtitler bør henge sammen narrativt slik at brukeren forstår det viktigste ved å bare lese dem.
-- Sett de viktigste ordene først.
-
-6. **Ikke bruk store bokstaver, kursiv og fet tekst**
-
-7. **Skriv klarspråk**
-
-[Les råd om hvordan du kan skrive kort og tydelig]
diff --git a/apps/storefront/pages/god-praksis/tilgjengelighet/forsta-synsnedsettelse.mdx b/apps/storefront/pages/god-praksis/tilgjengelighet/forsta-synsnedsettelse.mdx
deleted file mode 100644
index d847728338..0000000000
--- a/apps/storefront/pages/god-praksis/tilgjengelighet/forsta-synsnedsettelse.mdx
+++ /dev/null
@@ -1,31 +0,0 @@
-import { PageLayout } from '@layouts';
-import { Meta, ResponsiveIframe } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
-
-Brønnøysundregistrene har med hjelp fra Blindeforbundet, undersøkt hvordan mennesker med synsnedsettelser opplever å bruke digitale produkter.
-
-
diff --git a/apps/storefront/pages/god-praksis/tilgjengelighet/kontrast.mdx b/apps/storefront/pages/god-praksis/tilgjengelighet/kontrast.mdx
deleted file mode 100644
index 2273a1fbaf..0000000000
--- a/apps/storefront/pages/god-praksis/tilgjengelighet/kontrast.mdx
+++ /dev/null
@@ -1,206 +0,0 @@
-import { Card, List } from '@digdir/designsystemet-react';
-
-import { Meta, Image } from '@components';
-import { PageLayout } from '@layouts';
-import { Contributors } from '@blog';
-
-
-
-export default ({ children }) => (
-
-);
-
-For å sikre god lesbarhet skal all tekst ha tilstrekkelig kontrast mot bakgrunnen. Dette er viktig for alle brukere, særlig under krevende lysforhold. De som trenger dette mest, er svaksynte, dyslektikere og fargeblinde (kilde: [uutilsynet](https://www.uutilsynet.no/veiledning/kontrast/48)).
-
-## Behov for strengere krav til kontrast
-
-Alle brukerne, også de med svekket syn, skal kunne se innholdet i digitale tjenester. Web Content Accessibility Guidelines (WCAG) inneholder suksesskriterier og forslag til løsninger for å lykkes. Men det er ikke samsvar mellom dagens kontrastregler og kravet om at alle skal kunne se innholdet.
-
-
-
-
-
- Gjeldende regelverk, WCAG 2.1
-
-
-
- **1.4.3 Kontrast (minimum) (Nivå AA)**: Kontrastforholdet mellom
- teksten og bakgrunnen er minst 4,5:1. [1.4.3 Kontrast (minimum), WCAG
- 2.1
- (w3.org)](https://www.w3.org/Translations/WCAG21-no/#contrast-minimum)
-
-
- **1.4.11 Kontrast for ikke-tekstlig innhold (Nivå AA)**: Den visuelle
- presentasjonen av det følgende har et kontrastforhold på minst 3:1 mot
- farge(r) som ligger ved siden av. [1.4.11 Kontrast for ikke-tekstlig
- innhold, WCAG 2.1
- (w3.org)](https://www.w3.org/Translations/WCAG21-no/#non-text-contrast)
-
-
-
-
-
-
-
-
-
-
-
-
- Fremtidig eller strengere:
-
-
-
- **1.4.6 Kontrast** (forbedret) (Nivå AAA): Den visuelle presentasjonen
- av tekst og bilder av tekst har et kontrastforhold på minst 7:1,
- unntatt uvesentlig tekst og skriftstørrelser større enn 18px eller
- 14px fet. [ 1.4.6 Kontrast (forbedret), WCAG 2.1
- (w3.org)](https://www.w3.org/Translations/WCAG21-no/#contrast-enhanced)
-
-
- **WCAG 2.2: 2.4.13** Focus Appearance (Nivå AAA), om utseende til
- fokusmarkering krever at fokusindikator har en kontrastverdi på 3:1
- mellom samme piksler i fokusert og ikke-fokusert tilstand.
- [Understanding Success Criterion 2.4.13: Focus Appearance | WAI |
- W3C](https://www.w3.org/WAI/WCAG22/Understanding/focus-appearance.html)
-
-
- **WCAG 3** har et krav om farge og kontrast, visuell kontrast i tekst
- (sølv): Sørg for tilstrekkelig kontrast mellom tekst i forgrunnen og
- bakgrunnen for teksten. Her brukes det en ny metode, med navn APCA,
- for å regne ut kontrasten.
-
-
-
-
-
-
-## Mer presis metode
-
-WCAG 3.0 foreslår nå en mer presis metode enn dagens standard, for å kalkulere kontrast og sette terskelverdier.
-
-
-
-
- Metoden forbedrer hvordan verdien mellom to farger bestemmes, og skiller
- også på om fargene er i forgrunnen eller i bakgrunnen.
-
-
- Den setter også tydelige terskelverdier eller målverdier for valg av font,
- tekststørrelse og font-vekt. Metoden heter Advanced Perceptual Contrast
- Algorithm (APCA).
-
-
- Målet vårt er å ligge over AAA-krav i WCAG 2.1, og vi vil dermed ligge
- nærmere terskelverdiene i APCA. Det øker sjansen for at vi klarer å
- oppfylle kravet om at alle, også svaksynte, skal kunne se innholdet på
- nettstedet.
-
-
-
-
-## I dag bruker vi en høyere standard enn kravene til tilgjengelighet
-
-For at innholdet i offentlige, digitale tjenester skal være tilgjengelig for alle brukere, følger vi i dag en ønsket standard for kontrast som er høyere enn kravene som stilles til tilgjengelighet. Standarden heter WCAG 2.1, nivå AAA.
-
-For å øke lesbarheten enda mer, har vi ambisjoner om å oppnå kontrast på nivå 4. Det er toppnivået i APCA-metoden, som nå blir foreslått i WCAG 3.0
-
-## Hvorfor duger ikke dagens standard?
-
-Vi vet at selv om en løsning oppfyller de konkrete kravene fra regelverket om universell utforming, så er den ikke nødvendigvis universelt utformet og tilgjengelig. Siden øyets evne til å oppfatte farger og lys ikke er en del av metoden, er den uegnet til å beregne forskjellen i lysstyrken i fargeparet.
-
-Hvis vi oppfyller metoden i WCAG 2, etterlever vi teknisk sett kravet til universell utforming, men det betyr ikke at innholdet er tilgjengelig eller universelt utformet. Derfor strekker vi oss langt i å også oppfylle de fremtidige WCAG-3 kravene som bruker APCA-metoden.
-
-
-
- **Kontrast i WCAG 2 «luminosity contrast algorithm**
- _«I WCAG 2 er kontrast en måleenhet for forskjellen i den opplevde lysintensiteten
- mellom to farger. Denne forskjellen er beskrevet som et forhold fra 1:1 (for
- eksempel hvit på hvit) til 21:1 (for eksempel svart på hvit).»_ – WebAIM, vår
- oversettelse. Kontrastene regnes ut ved hjelp av fargenes RGB, HEX eller HSL
- verdier i tillegg til transparens (alpha), om fargen er tekst, grafikk, forgrunn
- eller bakgrunn har ingen betydning.
-
-
-
-
-
-
-
- **Kontrast i WCAG 3 «visual contrast algorithm»** I WCAG 3 benyttes en
- visuell-kontrast algoritme som kalles for APCA, det er fremdeles
- fargeverdiene som benyttes for å kalkulere kontrasten, men også om fargen er
- tekst, grafikk, forgrunn eller bakgrunn, i tillegg har også valg av font,
- font-vekt og størrelse en innvirkning på hvilke kontrastverdier som er
- godkjent. Forskjellige farger som i WCAG 2 ville oppnådd like
- kontrastverdier vil i APCA kunne få andre verdier fordi en i større grad
- kalkulerer ut fra øyets evne til å oppfatte farger enn kun den tekniske
- fargeverdien.
-
-
-
-## Verktøy for å teste kontrastverdier
-
-Fargesystemet for Brønnøysundregistrene finner du i [kontrastverktøyet her](https://contrast.brreg.no/). Du kan teste hvordan kontrastverdier endrer seg etter hvilken tekstfarge, størrelse og vekt du velger. Og du kan se hvilke nivåer av krav som er oppfylt, om det er WCAG AA eller AAA nivåer, eller APCA.
-
-
-
-Terskelverdiene (over) som viser om kontrasten er godkjent eller ikke, er forenklet fra en tidlig «sølv»-nivåtabell fra APCA-arbeidet. Når en ferdig modell er testet og anbefalt fra WCAG 3, endres terskelverdiene.
-
-
-
-I eksempelet over ser vi at selv om kontrasten som er utregnet til å være lik med WCAG 2-metoden, er graden av lesbarhet ulik for tekstene i variant A og Variant B.
-Begge tekstene har 16px stor tekst i normal vekt, og begge variantene har 4,6 til 1 i kontrast.
-I variant A har teksten fargen #6D7879og bakgrunnen er hvit. Teksten er sånn passe lesbar.
-I variant B er teksten svart, og bakgrunnen er farge #6D7879. Teksten er noe mindre lesbar enn variant A.
-
-
-
-
-
- **Bidra til artikkelen?**
- Vi vil gjerne ha dine innspill og tilbakemeldinger på artikkelen. Send oss en
- e-post på: designsystem@digdir.no eller [kontakt oss i Github](https://github.com/digdir/designsystemet/issues/new).
-
-
-
-
-
-
diff --git a/apps/storefront/pages/grunnleggende/designelementer/design-tokens.mdx b/apps/storefront/pages/grunnleggende/designelementer/design-tokens.mdx
deleted file mode 100644
index c0c7833a12..0000000000
--- a/apps/storefront/pages/grunnleggende/designelementer/design-tokens.mdx
+++ /dev/null
@@ -1,46 +0,0 @@
-import { TokenIcon } from '@navikt/aksel-icons';
-
-import { MenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
- ,
- color: 'yellow',
- }}
- />
-);
-
-## Hva er design tokens
-
-Design Tokens" styrer hvordan komponentene skal se ut i forhold til farger, typografi, størrelser, avstander, former osv. Design tokens sørger vi for at både designere og utviklere arbeider etter de samme reglene og retningslinjene.
-
-Noen av variablene er lagt opp til å være tema-baserte, det vil si at de tar utgangspunkt i din merkevare med de fargene og preferansene du selv velger. Vi jobber med en tema-bygger som skal gjøre det enklere for deg å tilpasse stilene.
-
-Design Tokens er fleksible variabler som kan benyttes uavhengig av teknologi eller designverktøy.
-
-## Design tokens i Figma
-
-Vi bruker Figma-pluginen "Tokens Studio", da denne lar oss administrere flere stiler og egenskaper enn Figma i seg selv kan.
-
-Pluginen har som mål å være W3C-kompatibel og retter seg etter standarden som etableres av [W3C Design Tokens Community Group](https://github.com/design-tokens/community-group). Tokens-verdiene er dermed ikke låst til et verktøy - JSON-filen kan flyttes til andre verktøy dersom det skulle bli aktuelt.
-
-### Flere sett og themes
-
-Bruk av variabler og tokens gjør det mulig å ha _ett_ designsystem med ulike identiteter. Vi kan lage en komponent i Figma kun èn gang og style den mange ganger - Med et klikk kan vi slå på et annet theme som for eksempel aktiverer en annen fargepalett eller et annet sett med størrelser. Ved å dele tokens inn i både sets og themes, kan vi tilby avanserte former for gjenbruk.
-
-
-Videoen over viser at når settet for «Tilsynet» slås på, overstyres både fargene som er i bruk i filen og stilene som er tilgjengelig i høyremargen byttes ut.
-
-### Design tokens for utviklere
-
-Installer NPM-pakken [@digdir/designsystemet-theme](https://www.npmjs.com/package/@digdir/designsystemet-theme) og følg beskrivelsen der på bruk av tokens. Overstyres ved behov.
diff --git a/apps/storefront/pages/grunnleggende/designelementer/farger.mdx b/apps/storefront/pages/grunnleggende/designelementer/farger.mdx
deleted file mode 100644
index 6497b9ee70..0000000000
--- a/apps/storefront/pages/grunnleggende/designelementer/farger.mdx
+++ /dev/null
@@ -1,44 +0,0 @@
-import { PaletteIcon } from '@navikt/aksel-icons';
-
-import { MenuPageLayout } from '@layouts';
-import { Meta, TokenList } from '@components';
-
-
-
-export default ({ children }) => (
- ,
- color: 'red',
- }}
- />
-);
-
-## Et fleksibelt fargesystem
-
-Fargesystemet består av globale farger som refererer til hva fargen er (eks. Red-500) og et semantisk nivå som beskriver hva fargen skal brukes til (eks. Text.Danger). Fargesystemet er det samme som [Nav](https://aksel.nav.no/grunnleggende/styling/farger) også bruker.
-
-### Navnestruktur
-
-Et semantisk fargenavn er bygget opp av 3 ledd:
-_UI-element - Situasjon - Variant/Tilstand_
-Første ledd refererer til elementet som fargelegges: background, Surface
-
-- Background: Som regel bakgrunnen på hele siden (HTML body).
-- Surface: Bakgrunnsfargen til en ting. Eks. et panel, en knapp, en seksjon, etc.
-- Border: Fargen til en ramme (stroke).
-- Text/Icon: Fargen på tekst og ikoner.
-
-## Farge-tokens
-
-
diff --git a/apps/storefront/pages/grunnleggende/designelementer/ikoner.mdx b/apps/storefront/pages/grunnleggende/designelementer/ikoner.mdx
deleted file mode 100644
index 804eb6a91d..0000000000
--- a/apps/storefront/pages/grunnleggende/designelementer/ikoner.mdx
+++ /dev/null
@@ -1,53 +0,0 @@
-import { TokenIcon } from '@navikt/aksel-icons';
-
-import { MenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
- ,
- color: 'red',
- }}
- />
-);
-
-## Bli med å samarbeide om ikoner!
-
-Nav har laget et solid [sett med ikoner](https://aksel.nav.no/ikoner) (800+) som vi anbefaler å bruke og bidra til å videreutvikle. At et ikon har samme betydning i en offentlig sammenheng som en annen tror vi bare har fordeler.
-
-Ikonene støtter justering i størrelse og fargeendringer, og kommer i både stroke og fill-varianter.
-
-Her finner du oversikten over ikoner: [aksel.nav.no/ikoner](https://aksel.nav.no/ikoner)
-Her kan du laste ned ikonpakken: [cdn.nav.no/aksel/icons](https://cdn.nav.no/aksel/icons/zip/aksel-icons.zip)
-Her finner du NPM-pakken: [@navikt/aksel-icons](https://www.npmjs.com/package/@navikt/aksel-icons)
-Her finner du ikonene i Figma: [Core Icons 3](https://www.figma.com/community/file/1214869602572392330/Core-Icons-3)
-
-For å holde ikonpakken i Figma i sync med nye oppdateringer og justeringer som kommer trenger du en plugin: [Aksel Icon plugin](https://www.figma.com/community/plugin/1221057403873975172).
-
-Installer pluginen, trykk "Run" og du henter ned de siste endringene. Tusen takk til designsystem-teamet i NAV som gjorde dette mulig! 🙏🏻👏🏻🏅
-
-
-
-## Slik bidrar du
-
-Bli med å [bidra her](https://github.com/navikt/aksel/blob/main/%40navikt/aksel-icons/CONTRIBUTING.md)! Følg disse retningslinjene når du lager nye ikoner:
-
-- Bruk Keyline-malen som du finner i Figma-filen under "Assets" [Core Icons 3](https://www.figma.com/community/file/1214869602572392330/Core-Icons-3)
-- Alle lag (selv om det kun er ett) må grupperes i en gruppe, enten union, subtract, intersect, eller exclude.
-- Den øverste gruppen skal ha fargen icon.default, alle lag og grupper under dette skal kun bruke #262626
-- Alle lag og grupper settes til Constraints: scale, scale
-- For ikonvarianten "Stroke": Ikonet må bestå av kun linjer, linjene skal være 1.5 px, center.
-- For ikonvarianten "Filled": Ikoner hvor shapes kan fylles, skal fylles.
-
-### Tilgjengelighet
-
-Ikonene skal funke for alle brukerene, uansett situasjon. Les mer om [hvordan du sikrer tilgjengeligheten](https://aksel.nav.no/god-praksis/artikler/tilgjengelig-ikonbruk) når du bruker ikoner og hvilke aria-atributter du bør bruke.
diff --git a/apps/storefront/pages/grunnleggende/designelementer/skygger.mdx b/apps/storefront/pages/grunnleggende/designelementer/skygger.mdx
deleted file mode 100644
index a74e7312f2..0000000000
--- a/apps/storefront/pages/grunnleggende/designelementer/skygger.mdx
+++ /dev/null
@@ -1,37 +0,0 @@
-import { MoonIcon } from '@navikt/aksel-icons';
-
-import { MenuPageLayout } from '@layouts';
-import { Meta, TokenList } from '@components';
-
-
-
-export default ({ children }) => (
- ,
- color: 'yellow',
- }}
- />
-);
-
-## Bruk av skygger i designet
-
-Skygger bør brukes bevisst og konsistent da de uttrykker at noe ligger over noe annet i løsningen.
-
-Skygger kan hjelpe svaksynte til å identifisere komponenter. Bruk av skygger og konturer gjør det enklere og raskere å finne en komponent når du skanner sider. (Research: [Material Design](https://m2.material.io/design/environment/light-shadows.html#research))
-
-### Styrker
-
-Vi har ulike styrker på skyggene, fra xsmall til xlarge. De ulike styrkene brukes for å antyde høyden til overflaten. Overflater i høyere høyder har større skygger, mens de på lavere høyder bør ha mindre skygger. Skygger skal skape et hierarki slik at det som ligger over eller under noe annet kommer tydeligere frem.
-
-
-
-### Eksempel
-
-Popover er en komponent som legger seg over annet innhold. Dette tydeliggjøres ved bruk av en medium skygge.
diff --git a/apps/storefront/pages/grunnleggende/designelementer/storrelser-og-avstander.mdx b/apps/storefront/pages/grunnleggende/designelementer/storrelser-og-avstander.mdx
deleted file mode 100644
index b1ceb77b73..0000000000
--- a/apps/storefront/pages/grunnleggende/designelementer/storrelser-og-avstander.mdx
+++ /dev/null
@@ -1,62 +0,0 @@
-import { RulerIcon } from '@navikt/aksel-icons';
-
-import { MenuPageLayout } from '@layouts';
-import { Image, Meta, TokenList } from '@components';
-
-
-
-export default ({ children }) => (
- ,
- color: 'blue',
- }}
- />
-);
-
-Størrelser (`sizing`) brukes til å definere bredde og høyde på elementer.
-
-Avstand (`spacing`) brukes til å sette marging og padding. Settet med avstander som er definert i tokens gir oss mulighet til å definere verdier for _"Auto Layout"_ i Figma og sikrer dermed konsistent design på tvers av grensesnitt.
-
-
-
-
-
-## Men hvorfor må vi ha både `sizing` og `spacing` når de er helt like?
-
-Fordi vi ønsker å holde variablene i sync mellom Figma og kode. For å gjøre dette bruker vi foreløpig en plugin som heter "[Token Studio](https://tokens.studio/)". Som du kan se fra [dokumentasjonen til Token Studio](https://docs.tokens.studio/available-tokens/spacing-tokens) er pluginen avhengig av å skille størrelser og avstander.
-
-### Sizing-variabler i Figma
-
-Størrelser (sizing) er det du setter under en **_"Section"_**, **_"Frame"_** eller **_"Group"_** i Figma. Der kan du definere bredde (W) og høyde (H).
-
-
-
-### Spacing-variabler i Figma
-
-Avstander er det du setter under _**"Auto Layout"**_ i Figma. Der kan du definere avstand over, under, ved siden av, eller mellom.
-
-
-
-
-
diff --git a/apps/storefront/pages/grunnleggende/designelementer/typografi.mdx b/apps/storefront/pages/grunnleggende/designelementer/typografi.mdx
deleted file mode 100644
index 8085bcdd56..0000000000
--- a/apps/storefront/pages/grunnleggende/designelementer/typografi.mdx
+++ /dev/null
@@ -1,92 +0,0 @@
-import { TokenIcon } from '@navikt/aksel-icons';
-
-import { MenuPageLayout } from '@layouts';
-import { Meta, CodeSnippet } from '@components';
-
-
-
-export default ({ children }) => (
- ,
- color: 'blue',
- }}
- />
-);
-
-For å presentere tekst på korrekt måte er det laget stiler som har ulike kombinasjoner av størrelse, fontvekt og linjehøyde. Det er også laget et sett med [typografi-komponenter](https://https://storybook.designsystemet.no/?path=/docs/kjernekomponenter-typography--docs) som wrapper typografi-stilene og har innebygd spacing.
-
-## Font-family
-
-Font-family er ikke en del av designsystem-biblioteket, du må selv importere ønsket font i din app. Vi anbefaler å bruke fonten Inter da det er denne fonten komponentene i designsystemet har blitt designet og testet med. Inter er en skrifttype spesielt designet for god lesbarhet på dataskjermer. Den oppfyller følgende kriterier:
-
-- [Open font license](https://github.com/rsms/inter/blob/master/LICENSE.txt) + har et [aktivt community](https://github.com/rsms/inter)
-- Stor skriftfamilie (light, regular, italic, bold, semibold)
-- Gjenkjennelige bokstaver, tall og spesialtegn (ikke for kreativ)
-- Tydelige overlengder og underlengde på bokstavene.
-- Synlig forskjell på lignende tegn (I, l, 1) (må aktiveres)
-- Åpne bokstaver gror ikke igjen (f.eks tegn som a, e og c)
-- Lik strektykkelse i overgangene.
-- Tabular numbers ([monospace](https://fonts.google.com/knowledge/introducing_type/understanding_numerals))
-- [Variabel font](https://rsms.me/inter/#variable)
-- God bokstav og ordmellomrom
-- Språkstøtte
-
-Fonten er tilgjengelig i Figma uten at du trenger å laste ned og installere den selv. Trenger du den til andre formål kan du laste den ned fra [github.com/rsms/inter](https://github.com/rsms/inter/releases/tag/v3.19).
-
-For hosting kan Altinn CDN benyttes:
-
-
- {` `}
-
-
-For å aktivere lowercase l with tail, legg til følgende i din CSS:
-
-
- {`font-family: 'Inter', sans-serif;
-font-feature-settings: 'cv05' 1; /* Enable lowercase l with tail */`}
-
-
-## Tekststørrelse
-
-Tekststørrelse-variablene blir angitt i **rem**. Denne verdien er relativ til `html`-elementet sin `font-size`,
-og tar utgangspunkt i den vanligste standarden der `1rem = 16px`. Når vi angir tekststørrelse i rem, vil størrelsen være relatert til nettleserens standardstørrelse, og dermed også ta hensyn til om brukeren har valgt å oppskalere tekststørrelsen under innstillingene for tilgjengelighet i sin nettleser.
-
-Vi har totalt 10 størrelser i designsystemet. 12, 14, 16, 18, 21, 24, 30, 36, 48 og 60px. Default tekststørrelse for `paragraph` er `medium` som tilsvarer 18px.
-
-| Steg | Størrelse | Paragraph\* | Ingress | Heading |
-| ------ | ------------------ | ----------- | ------- | ------- |
-| f-2 | 12px / 0.75rem | | | |
-| f-1 | 14px / 0.875rem | xsmall | | |
-| **f0** | **16px / 1.00rem** | small | | |
-| f1 | 18px / 1.125rem | medium | xsmall | xxsmall |
-| f2 | 21px / 1.313rem | large | small | xsmall |
-| f3 | 24px / 1.50rem | | medium | small |
-| f4 | 30px / 1.875rem | | large | medium |
-| f5 | 36px / 2.25rem | | | large |
-| f6 | 48px / 3.00rem | | | xlarge |
-| f7 | 60px / 3.75rem | | | xxlarge |
-
-\*`Paragraph`-størrelsene brukes også på `Label` og `ErrorMessage`.
-
-### Hva med dynamiske tekststørrelser?
-
-Dynamisk font-størrelse uten breakpoints var standard i Designsystemet det meste av Beta-perioden. Dynamiske font-størrelser, eller "_Fluid typography"_, medfører noen ulemper som gjorde at vi valgte å gå for en statisk font-skala i stedet.
-
- **Les mer om [Fluid typography, og hvorfor vi gikk bort fra det](/bloggen/2024/fluid-typography)**.
-
-## Linjelengde
-
-For best mulig lesbarhet for alle brukere, bør det ikke være mer enn 65-70 tegn per linje inkludert mellomrom. Da blir teksten mer innbydende og mindre overveldende, og er særlig viktig for blant annet brukere med lesevansker eller konsentrasjonsvansker. _Kilde: [uutilsynet.no](https://www.uutilsynet.no/veiledning/tekst-og-struktur/226)_
-
-
-
diff --git a/apps/storefront/pages/grunnleggende/for-designere/bidra-i-figma.mdx b/apps/storefront/pages/grunnleggende/for-designere/bidra-i-figma.mdx
deleted file mode 100644
index 6532ba5f5f..0000000000
--- a/apps/storefront/pages/grunnleggende/for-designere/bidra-i-figma.mdx
+++ /dev/null
@@ -1,87 +0,0 @@
-import { BranchingIcon } from '@navikt/aksel-icons';
-
-import { MenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
- ,
- color: 'red',
- }}
- />
-);
-
-## Foreslå nytt design eller forbedringer
-
-Vi setter pris på at du hjelper oss å forbedre komponenter og design i Figma. De beste løsningene kommer gjennom samarbeid.
-
-### Sandkassen
-
-I sandkassen kan vi utforske og tenke høyt sammen. Du kan kopiere inn design fra ditt produktteam, for eksempel et mønster, en komponent eller noe annet du har laget som kan være relevant for designsystemet. Det er ingen føringer til hvordan vi skal jobbe i denne filen. Du må foreløpig ha en bruker i Digdir-Figma for å kunne redigere. [Åpne sandkassen og lim inn dine forslag](https://www.figma.com/file/hCLf6YzvQF15WPFFpXqeJj/Sandkasse?type=design&node-id=1%3A4&mode=design&t=5bHSaO1ULo9gKrkK-1).
-
-### Ny komponent
-
-Ønsker du å foreslå en ny komponent setter vi pris på om den blir [registrert i Github](https://github.com/digdir/designsystemet/discussions/new?category=components).
-
-Når en ny komponent blir foreslått må vi vurdere om den er verdifull nok til å være en del av designsystemet. Vi ønsker ikke å ende opp med hundrevis av komponenter med små forskjeller, da vi kan risikere uønsket kompleksitet, vedlikehold, samt design- og teknologigjeld.
-
-For nye komponenter som tas inn må vi:
-
-- Identifisere og utforske liknende behov hos andre produktteam og offentlige aktører. Hvor mange produkter/etater vil ha bruk for den?
-- Vurdere problemet komponenten skal løse og verdien dette gir.
-- Tenke på om den kan lages fleksibel og gjenbrukbar nok.
-- Tenke på om den er i tråd med [designprinsippene](/grunnleggende/introduksjon/designprinsipper) og om den passer inn i helheten
-
-### Registrere feil eller mangler på en komponent i Figma
-
-Har du funnet en svakhet med noen av de eksisterende komponentene i Figma, setter vi pris på om du enten legger igjen en kommentar i Figma sammen med den aktuelle komponenten, eller at du oppretter en [bug-report i Github som forklarer feilen](https://github.com/digdir/designsystemet/issues/new?assignees=&labels=%F0%9F%90%9B+bug&projects=&template=1bug_report.yml), eventuelt en [feature-request som forklarer ønsket tilleggsfunksjonalitet](https://github.com/digdir/designsystemet/issues/new?assignees=&labels=%E2%9C%A8feature+request%2Cneeds+prioritization%E2%9D%97%EF%B8%8F&projects=&template=2feature_request.yml).
-
-## Lage en komponent i Figma
-
-Komponenter under arbeid ligger i [Arbeidsområde - Designsystemet](https://www.figma.com/file/V4dzf3m1sapmU048OQnu7L/Arbeidsomr%C3%A5de%3A-Felles-komponenter?type=design&node-id=0%3A1&mode=design&t=1A88PWT6a6wiI6dt-1). Når designet er ferdig flyttes komponenten over til [Felles komponenter](https://www.figma.com/file/vpM9dqqQPHqU6ogfKp5tlr/Felles-komponenter?type=design&node-id=503%3A3192&mode=design&t=NoWd7lRReSIFNcOx-1). Det er sistnevnte som blir delt i Figma Community.
-
-Det er et par ting å tenke på når komponenter lages i Figma:
-
-- Snakk med en utvikler om spesifikasjon, krav, tilgjengelighet, egenskaper og varianter. Bli enige om scope for komponenten og dokumenter dette i komponentens [Github-sak](https://github.com/orgs/digdir/projects/3/views/14).
-
-- [Alle styles](https://docs.tokens.studio/available-tokens/available-tokens) (farger, avstander, størrelser, skygger, osv) skal være koblet opp mot korrekt tokens. Bruker du stilene som finnes, er disse allerede automatisk koblet mot tokens. Trenger du nye stiler, må disse også lages som tokens.
-
-- Bruk [typografi-komponentene](https://www.figma.com/file/vpM9dqqQPHqU6ogfKp5tlr/Felles-komponenter?type=design&node-id=9219%3A49516&mode=design&t=kNm7x1CMRXwbfmP9-1) for all tekst som skal eksistere i komponenten.
-
-- [Autolayout](https://help.figma.com/hc/en-us/articles/5731482952599-Using-auto-layout): Innholdet skal skalere som forventet ved størrelseendring. Tenk over om innholdet skal wrappe under hverandre dersom det ikke er plass i bredden. Kan det være hensiktsmessig med en min- eller max-width? Og kanskje truncate (...) på teksten dersom den blir for lang?
-
-- [Varianter](https://help.figma.com/hc/en-us/articles/360056440594-Create-and-use-variants) og "[component properties](https://help.figma.com/hc/en-us/articles/5579474826519-Explore-component-properties)": Bruk varianter for ulike varianter, farger, states, størrelser, og liknende. Bruk Component properties for å vise/skjule lag, instance-swap (F.eks bytte et ikon) og bytte text. Properties navngis på samme måte som props i Storybook. Vi bruker `Variant`, `Size`, `Color`, `State`.
-
-- Hvilke størrelser skal komponenten eksistere i? Tenk over at komponenten passer med størrelsene på de andre komponentene. For eksempel bør et medium text-field være like høyt som en medium button, da de skal kunne plasseres på siden av hverandre. En medium komponent bør bruke typografi-size medium, og en small komponent bør bruke typografi-size small.
-
-- Er komponenten interaktiv? I så fall må ulike states eksistere som varianter av komponenten, og disse kobles opp med "[Change to](https://help.figma.com/hc/en-us/articles/360061175334-Create-interactive-components-with-variants#create)".
-
-- Multibranding. Tenk over i hvilken grad komponenten skal støtte ulik theming og legg til rette for dette ved å bruke brand-farger fra tokens.
-
-- Navgivning og organisering: Pass på at lagene i komponenten har fornuftige navn og at det ikke finnes unødvendige grupperinger eller lag.
-
-- Tenk over hvordan en annen designer vil ta i bruk komponenten. Er den intuitiv å bruke? Er den fleksibel nok slik at de ikke trenger å detache den? Kanskje bør den settes opp med [slots](https://www.youtube.com/watch?v=FOGgsPz3UTk) slik at det er mulig å bytte ut innholdet i den og legge inn andre komponenter uten å måtte detache. Bruk gjenrne også "[Preferred values](https://help.figma.com/hc/en-us/articles/5579474826519-Explore-component-properties#preferred)" for å femheve komponentene vi tror kommer til å bli mest brukt som innhold.
-
-- Pass på at designet til komponenten er universelt utformet. [Krav som er spesielt relevant for designere](https://www.figma.com/file/V4dzf3m1sapmU048OQnu7L/Arbeidsomr%C3%A5de%3A-Felles-komponenter?type=design&node-id=349%3A45786&mode=design&t=6lrzQ94NOQl06gY2-1):
-
- - Sjekk at du har gode nok [kontraster](https://www.uutilsynet.no/regelverk/testprosedyrar-nettstader/709#suksesskriterium_143_kontrast)
- - At du har tenkt over hvordan tastaturnavigering skal fungere dersom du lager en ny komponent som ikke er standard. (Standard HTML-elementer har tastaturnavigasjon allerede definert).
- - Instruksjoner eller informasjon som er essensiell for brukeren skal ikke være kun markert visuelt. Eksempel kan være å bruke ikon eller tekst i tillegg til rødfarge som indikerer at noe feiler.
- - Focus: Alle elementer skal ha en visuell markør som blir synlig når elementet får tastaturfokus. Fokusmarkøren skal ha god nok konrast til bakgrunn, for å oppnå dette bruker vi en sort border (2px) og en gul outline (3px) i tillegg.
-
-- Når komponenten er klar markeres den som "Ready for review". Den blir testet av andre og etter eventuelle justeringer markeres den som "[Ready for development](https://help.figma.com/hc/en-us/articles/15023124644247-Guide-to-Dev-Mode)". Når den er utviklet som en React-komponent lenker vi til komponentsiden i [Storybook](https://storybook.designsystemet.no).
-
-### Oppdatere tokens
-
-For å kunne endre eller opprette nye tokens må du lage en ny branch i pluginen [Tokens Studio for Figma](https://tokens.studio/). Du trenger Pro-versjonen av pluginen for å gjøre dette.
-
-[Se hvordan du kobler pluginen opp mot våre design tokens](/grunnleggende/for-designere/kom-i-gang#bruk-egen-fargepalett-på-komponentene).
diff --git a/apps/storefront/pages/grunnleggende/for-designere/kom-i-gang.mdx b/apps/storefront/pages/grunnleggende/for-designere/kom-i-gang.mdx
deleted file mode 100644
index 8887b2bb20..0000000000
--- a/apps/storefront/pages/grunnleggende/for-designere/kom-i-gang.mdx
+++ /dev/null
@@ -1,112 +0,0 @@
-import { PaletteIcon } from '@navikt/aksel-icons';
-
-import { MenuPageLayout } from '@layouts';
-import { Meta, ResponsiveIframe, Image } from '@components';
-
-
-
-export default ({ children }) => (
- ,
- color: 'blue',
- }}
- />
-);
-
-I Figma finner du komponenter og stiler fra designsystemet som du kan bruke i designet ditt. Designet har også tilhørende design tokens som er i bruk i react-komponentene. Biblioteket er tilgjengeliggjort i [Figma Community](https://www.figma.com/@designsystemet).
-
-## Kom i gang med komponenter
-
-Jobber du i Digdir trenger du ikke laste ned noe, da filene ligger i organisasjonen allerede. Tilhører du en annen organisasjon kan du hente filene fra Figma Community:
-
-- [Designsystemet - Core UI Kit](https://www.figma.com/@designsystemet)
-- [Aksel ikonbibliotek](https://www.figma.com/community/file/1214869602572392330)
-
-Etter at du har åpnet dem må du
-
-- Plassere filene der du vil ha dem i din egen Figma-organisasjon
-- Publisere filene
-- Aktivere de to fellesbibliotekene i filene du jobber i
-
-
-
-For å aktivere bibliotekene:
-
-1. Trykk på bok-symbolet under "Assets"
-2. Aktiver "Core UI Kit" og "Felles ikonbibliotek"
-
-Når du har slått på bibliotekene skal du kunne se komponentene ved å klikke på "Assets" og søke på det du trenger. Du kan også bruke tastatursnarveien SHIFT + I.
-
-Nå er det bare å dra komponentene inn i dine egne filer!
-
-Vil du være med å lage nye komponenter? [Se hvordan du kan bidra](/grunnleggende/for-designere/bidra-i-figma).
-
-### Varianter
-
-Alle komponenter kommer med ulike varianter og egenskaper. I Button-komponenten kan du for eksempel aktivere ulike vektinger, states, størrelser og du kan også slå på og av ikoner.
-
-
-
-### Kom i gang med stiler og variabler
-
-Stiler og variabler skal være tilgjengelige i høyremargen når du for eksempel trenger å velge en farge, skygge eller font.
-
-#### Bruk egen fargepalett på komponentene
-
-Alle tokens er i sync med [Figma variabler](https://docs.tokens.studio/variables/creating-variables) og styles. For å få dine egne brand-farger kan du aktivere ditt brand i høyremargen. Du kan også aktivere det kun på en bestemt frame:
-
-
-
-### Typografi på små og store skjermer
-
-For all tekst bør du bruke de ferdige utformede typografi-komponentene som er tilgjengelig i Figma og kode. Da sikrer vi at vi har et konsistent uttrykk, riktig bruk avstander, størrelser og font-weight. Typografi-komponenter kan justere seg etter størrelsen på rammen du jobber i. Det vil si at skal du designe for mobil kan du aktivere "viewport 320" i Tokens Studio. Du trenger ikke tenke på noe mer. Størrelse og avstand på overskrifter og brødtekst er nå blitt mindre. 🙌
-
-Les mer om [typografi](/grunnleggende/designelementer/typografi).
-
-
-
-Typografi er foreløpig ikke støttet som variabler i Figma, inntil videre må du derfor ha installert pluginen [Tokens Studio for Figma](https://docs.tokens.studio/) for å kunne aktivere riktig viewport. Du trenger en Github-bruker for dette.
-
-1. [Installer]() Figma Tokens-plugin
-1. Generer et nytt "Personal Access Token" (PAT) i [GitHub Developer Settings](https://github.com/settings/tokens) med omfanget "repo"
-1. Kopier PAT-en (du kan bare se den én gang)
-1. I Figma Tokens-plugin-modulen, under `Sync > GitHub`, legg til ny legitimasjon:
- - Navn: `Felles Tokens`
- - Personal Access Token: `*** din PAT ***` (som du fikk fra Github)
- - Repository: `digdir/designsystemet`
- - Standard gren: "hoved".
- - Filbane: `design-tokens`
-
-
diff --git a/apps/storefront/pages/grunnleggende/for-utviklere/endringslogg.mdx b/apps/storefront/pages/grunnleggende/for-utviklere/endringslogg.mdx
deleted file mode 100644
index 08a390f8aa..0000000000
--- a/apps/storefront/pages/grunnleggende/for-utviklere/endringslogg.mdx
+++ /dev/null
@@ -1,27 +0,0 @@
-import { MenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
-
-## v0.10.1 (2023-03-29)
-
-**Bug Fixes**
-
-- Accordion: Fix continous texts word break (#264) (13b3bd6)
-- Button: adjust padding to make icon round (#265) (922014d)
-- RadioButton: RadioButton looks wrong when zoming in browser (#266) (5f40bc3)
-- Select: Display initial value on single select (#268) (7ad5f0f)
-- ToggleButtonGroup: Set correct button type (#261) (a706f07)
diff --git a/apps/storefront/pages/grunnleggende/for-utviklere/kom-i-gang.mdx b/apps/storefront/pages/grunnleggende/for-utviklere/kom-i-gang.mdx
deleted file mode 100644
index 5fc8a2e340..0000000000
--- a/apps/storefront/pages/grunnleggende/for-utviklere/kom-i-gang.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-import { CodeIcon } from '@navikt/aksel-icons';
-
-import { MenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
- ,
- color: 'blue',
- }}
- />
-);
-
-Besøk vår [readme på GitHub](https://github.com/digdir/designsystemet#table-of-contents) for all informasjonen du trenger for å komme i gang som utvikler. I tillegg kan det være nyttig å lese om [design tokens](/grunnleggende/designelementer/design-tokens).
-
-Ønsker du å foreslå nytt design eller forbedringer kan [denne informasjonen være nyttig](/grunnleggende/for-designere/bidra-i-figma#ny-komponent).
diff --git a/apps/storefront/pages/grunnleggende/for-utviklere/komposisjon.mdx b/apps/storefront/pages/grunnleggende/for-utviklere/komposisjon.mdx
deleted file mode 100644
index 90776be68c..0000000000
--- a/apps/storefront/pages/grunnleggende/for-utviklere/komposisjon.mdx
+++ /dev/null
@@ -1,135 +0,0 @@
-import { PackageIcon } from '@navikt/aksel-icons';
-
-import { MenuPageLayout } from '@layouts';
-import { Meta, CodeSnippet } from '@components';
-
-
-
-export default ({ children }) => (
- ,
- color: 'blue',
- }}
- />
-);
-
-Nokre gonger må du kanskje byte ut ein komponent med ein anna, for eksempel `Button` skulle vore ein `Link`.
-Det er her `asChild` kjem inn i biletet.
-
-
- {`
- import { Button, Link } from '@digdir/designsystemet-react';
-
-
- Lenke til digdir.no
-
-`}
-
-
-I kodesnutten over vert `Button`-komponenten rendra som ein `Link`-komponent. Når dette skal ut i DOMen, er det kun eit element som vert rendra.
-Dette skjer ved hjelp av Radix sin `Slot`-komponent. 1
-
-`Slot` mergar sine props ned på komponenten som ligg som underordna element. I tilfellet over vert `Button` sine props lagt til på `Link`-komponenten, og ein `a`-tagg vert rendra ut.
-Når du brukar `asChild` kan du ikkje ha meir enn eit underordna element, men du kan ha så mange du vil inne i det elementet.
-
-
- {`
- <>
- /* Dette kaster ein error */
-
-
- Din lenke
-
-
- /* Dette går fint */
-
-
-
- Din lenke
-
-
-
- >
-`}
-
-
-## Kvifor bruke asChild?
-
-Vi har tidlegare brukt ein `as` prop for å rendre som andre element. Men når du brukar denne, får du ikkje typesafety eller korrekte typar iht. elementet du har endret til med `as`.
-`Slot` ordnar dette ved at du legg til alle props på det underordna elementet av komponenten, og dermed får typesafety.
-
-
- {`
-
- {}}>
-
- Di lenke
-
-
-`}
-
-
-Alt av klassenavn, aria-attributt og andre props som `Button` har, vil bli lagt til på `Link`-komponenten.
-Dette betyr at vi kan tilby god tilgjengelegheit, samtidig som du kan bruke andre komponentar som du ynskjer.
-
-## Event handlers
-
-Dersom ein prop starter med `on` (td. `onClick`), så vert det sett på som ein event handler.
-Når `Slot` mergar props, vil det lage ein ny funksjon som kallar alle event handlers definert på `Button` og `Link`. Funksjonen som ligger på `Link` vil bli kalla først.
-Dette betyr at dersom du stoppar eit event på din komponent, vil eventet på `Slot`-komponenten ikkje bli kalla.
-
-Dersom ein av event handlerane er avhengig av `event.defaultPrevented`, så må du passe på at rekkefølgja er rett. 2
-
-
- {`
- {
- if (!event.defaultPrevented)
- console.log('Not logged because default is prevented.');
- }}
- >
- e.preventDefault()}>Di lenke
-
-`}
-
-
-## Bruk dine eigne komponentar
-
-Fleire komponentar i Designsystemet støttar `asChild` med standard element. Om du endrar dette, må du passe på at tilgjengelegheit vert teke vare på. Det er sjeldent at du treng å endre det underliggjande elementet, men det er meir realistisk at du vil bruke din eigen komponent.
-
-Ynskjer du å bruke ein eigen komponent må du passe på å spre alle props, og ha støtte for `ref`. 3
-
-Komponentane dine vil då sjå slik ut:
-
-
-{`// uten props og ref
- const MinKnapp = () =>
-
-// med props
-const MinKnapp = (props) =>
-
-// med props og ref
-const MinKnapp = React.forwardRef((props, forwardedRef) => (
-
-
-))`}
-
-
-Fleire Designsystem komponenter støtter `asChild`.
-
-### Referanser
-
-- [1] [Radix Slot](https://www.radix-ui.com/primitives/docs/utilities/slot)
-- [2] [Radix Slot Event handlers](https://www.radix-ui.com/primitives/docs/utilities/slot#event-handlers)
-- [3] [Radix Composition](https://www.radix-ui.com/primitives/docs/guides/composition)
diff --git a/apps/storefront/pages/grunnleggende/index.mdx b/apps/storefront/pages/grunnleggende/index.mdx
deleted file mode 100644
index 613aa86f2f..0000000000
--- a/apps/storefront/pages/grunnleggende/index.mdx
+++ /dev/null
@@ -1,156 +0,0 @@
-import {
- TokenIcon,
- PaletteIcon,
- ComponentIcon,
- PackageIcon,
- BranchingIcon,
- LightBulbIcon,
- RulerIcon,
- CodeIcon,
- MoonIcon,
-} from '@navikt/aksel-icons';
-
-import { NavMenuPageLayout } from '@layouts';
-import { Meta, NavigationCard, Grid } from '@components';
-
-export default ({ children }) => (
- ,
- color: 'yellow',
- }}
- />
-);
-
-
-
-## Introduksjon
-
-Designsystemet inneholder grunnleggende designelementer, mønstre, god praksis og kodede komponenter som gir verdi å dele på tvers av offentlig sektor.
-
-
- }
- url='grunnleggende/introduksjon/om-designsystemet'
- description='Hva er Designsystemet, hvorfor trenger vi det, hvordan gjør vi det og hvem er med?'
- backgroundColor='white'
- />
- }
- url='grunnleggende/introduksjon/verdier'
- description='Verdier vi ønsker at designsystemet skal bygges på'
- backgroundColor='white'
- />
-
-
-## Grunnleggende designelementer
-
-Stilene i designsystemet er grunnleggende designelementer som brukes i komponentene. De finnes i flere sett for ulike identiteter og ulike behov og situasjoner. For eksempel har vi et eget sett for kompakt visning, som kan være hensiktsmessig å bruke i verktøy eller admingrensesnitt.
-
-
- }
- url='grunnleggende/designelementer/design-tokens'
- description='Design tokens er gjenbrukbare verdier som fungerer som et bindeledd mellom alle flater.'
- backgroundColor='white'
- />
- }
- url='grunnleggende/designelementer/farger'
- description='Fargesystemet består av globale farger og et semantisk nivå som beskriver hva fargen skal brukes til.'
- backgroundColor='white'
- />
- }
- url='grunnleggende/designelementer/storrelser-og-avstander'
- description='Settet med avstander som er definert i tokens sikrer konsistens på tvers av grensesnitt.'
- backgroundColor='white'
- />
- }
- url='grunnleggende/designelementer/typografi'
- description='For å presentere tekst på korrekt måte, bruker vi noen utvalgte stiler og komponenter som er bygget opp med ulike kombinasjoner av størrelse, fontvekt og linjehøyde.'
- backgroundColor='white'
- />
- }
- url={'grunnleggende/designelementer/skygger'}
- description='Skygger kan hjelpe svaksynte til å identifisere komponenter og bør brukes konsistent da de uttrykker at noe ligger over noe annet i løsningen.'
- backgroundColor='white'
- />
- }
- url='grunnleggende/designelementer/ikoner'
- description='Nav har laget et solid sett med ikoner (800+) som vi anbefaler å bruke og bidra til å videreutvikle'
- backgroundColor='white'
- />
-
-
-## For designere
-
-Ressurser og veiledning relevant for designere
-
-
- }
- url='grunnleggende/for-designere/kom-i-gang'
- description='Lær hvordan du bruker komponentbibliotek og styles i Figma.'
- backgroundColor='white'
- />
- }
- url={'grunnleggende/for-designere/bidra-i-figma'}
- description='Slik kan du være med å designe komponenter i designsystemet'
- backgroundColor='white'
- />
-
-
-## For utviklere
-
-Ressurser og veiledning relevant for utviklere
-
-
- }
- url='grunnleggende/for-utviklere/kom-i-gang'
- description='Lær hvordan du kommer i gang med designsystemet som utvikler'
- backgroundColor='white'
- />
- }
- url='grunnleggende/for-utviklere/komposisjon'
- description='Informasjonen og bruk av asChild til å løse komposisjon.'
- backgroundColor='white'
- />
-
diff --git a/apps/storefront/pages/grunnleggende/introduksjon/designprinsipper-ffb.mdx b/apps/storefront/pages/grunnleggende/introduksjon/designprinsipper-ffb.mdx
deleted file mode 100644
index eba87384ad..0000000000
--- a/apps/storefront/pages/grunnleggende/introduksjon/designprinsipper-ffb.mdx
+++ /dev/null
@@ -1,55 +0,0 @@
-import { MenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
-
-## Felles designprinsipper
-
-[Forum for brukskvalitet](https://www.digdir.no/digitalisering-og-samordning/forum-brukskvalitet/3579) har gjennomført en temasamling der det ble startet på å definere felles prinsipper mellom flere som jobber med brukskvalitet og brukeropplevelse i offentlig sektor.
-
-### Samarbeid i offentlig sektor
-
-#### Prosess
-
-- Vi tester og undersøker før vi konkluderer
-- Vi bygger konklusjoner på innsikt
-- Vi ivaretar alle, også de mest sårbare (- digital utenforståend), - funksjonsnedsettelser)
-- Vi respekterer og bruker våre kolleger og fellesskap
-- Vi bruker klarspråk som et prosessverktøy
-- Vi inkluderer alle
-- Konsistens er nøkkelen
-- Vi er empatiske
-
-#### Deling
-
-- Vi deler det vi gjør
-- Vi jobber åpent “open source”
-- Vi deler kunnskap og kompetanse
-- Vi bruker og bidrar til felles designsystem
-- Vi deler en læringstankegang
-
-#### Tverretatlig verdier
-
-- Vi anerkjenner individuelle myndighetsprestasjoner (i delte forums f.eks)
-- Vi utvanner ikke merkevarer når de deltar i “one gov” (behold identiteter)
-- Vi finansierer felles initiativ
-
-\
-\
-\
-Tilbake til oversikten over [alle designprinsipper](designprinsipper).
-
----
diff --git a/apps/storefront/pages/grunnleggende/introduksjon/designprinsipper.mdx b/apps/storefront/pages/grunnleggende/introduksjon/designprinsipper.mdx
deleted file mode 100644
index 9963f613cf..0000000000
--- a/apps/storefront/pages/grunnleggende/introduksjon/designprinsipper.mdx
+++ /dev/null
@@ -1,80 +0,0 @@
-import { PencilBoardIcon } from '@navikt/aksel-icons';
-
-import { MenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
- ,
- }}
- />
-);
-
-Vi håper vi kan utvikle et sett med felles designprinsipper som kan brukes på tvers og som kontinuerlig videreutvikles og tilpasses i fellesskap. Det er viktig at vi utforsker og forstår helheten av offentlige tjenester sammen.
-
-## Hvilken opplevelse vil vi gi innbyggerne?
-
-Vi må sammen definere hva som er en god brukeropplevelse for innbyggerne og hvordan vi best kan skape denne. Dette krever mer innsikt og samarbeid på tvers.
-
-Eksempel på opplevelser vi ønsker at innbyggerne skal ha i møte med oss:
-
-- Her får jeg hjelp til å løse det jeg skal
-- Dette er enkelt og forståelig
-- Dette kjenner jeg igjen
-- Dette motiverer meg
-- Jeg blir inkludert
-
-### Designprinsipper som har blitt utviklet i arbeidet med Altinn:
-
-- **Sett brukernes behov først** \
- Vi skal bruke innsikt om brukernes behov aktivt. Alle tjenester skal løse ekte problemer for brukerne. Vi skal ta beslutninger basert på undersøkelser og brukerinnsikt og data.
-
-- **Skjul kompleksitet** \
- Vi skal lage enkle og tydelige tjenester. Vi skal unngå design, tekst, steg eller elementer som gjør det vanskelig for brukerne eller gir dem for stor kognitiv belastning. Tjenestene kan være komplekse på baksiden, men brukeren skal oppfatte dem som enkle og brukervennlige.
-
-- **Skap helhet** \
- Vi skal jobbe for at innbyggerne får en helhetlig brukeropplevelse. Vi skal bruke konsekvent språk og samme gjenkjennbare komponenter på tvers av løsninger. Brukerne skal kjenne seg igjen, og slippe å lære seg noe nytt dersom de har gjort noe liknende et annet sted.
-
-- **Lag et motiverende visuelt design** \
- Det visuelle designet skal gjøre brukerne trygge i dialogen med det offentlige og de skal oppleve at vi er vennlige. Vi skal designe enkle grensesnitt med tydelige interaksjonselementer og fargesterke illustrasjoner, slik at vi skaper en god atmosfære. Alle visuelle elementer som krever at brukeren gjør noe skal være tydelige.
-
-- **Sørg for at tjenesten er tilgjengelig for alle** \
- Vi skal lage tjenester som inkluderer og som er tilgjengelige for alle. Alle tjenester skal oppfylle krav til universell utforming. Vi gjenbruker kvalitetssikrede komponenter for å gi brukerne best mulig tilgjengelighet.
-
-## Andre designprinsipper utarbeidet i offentlig sektor:
-
-- Norges domstoler: [Designprinsipper](https://design.domstol.no/987b33f71/p/91e40b-verdier-og-prinsipper/b/49ed4e)
-- Skatteetaten: [Tommelfingerregler for design](https://skatteetaten.github.io/frontend-components/#section-tommelfingerregler-for-design)
-- Nav: [Prinsipper for brukeropplevelse](https://aksel.nav.no/prinsipper/brukeropplevelse)
-- Brønnøysundregistrene: [15 prinsipper for god tjenestedesign](/pdf/brreg-15-prinsipper-for-god-tjenestede.pdf)
-- Brønnøysundregistrene: [11 prinsipper for bra design - Brønnøysundregistrene](/pdf/brreg-11-prinsipper-for-bra-design.pdf)
-- Brønnøysundregistrene: [Brønnøysundregistrenes brukskvalitetspolicy](https://brukskvalitet.brreg.no/brukskvalitet/)
-- Digdir: [Designprinsipper Dødsfall og Arv](/pdf/designprinsipperDOA.pdf)
-- Helsenorge: [Designprinsipper for Helsenorge](/pdf/designprinsipperHelsenorge.png)
-- Entur: [Designprinsipper](https://design.entur.no/kom-i-gang/designprinsipper?gclid=CjwKCAjwjYKjBhB5EiwAiFdSfkxEStTvDp8-7MVu-U-ExvXGT5R_h-ceqZRnjOWk_B9oXS3YpAXmmxoCtesQAvD_BwE)
-- Forum for brukskvalitet: Prinsipper for samarbeid i offentlig sektor (ikke ferdigstilt og delt)
-
-### Utenfor Norge:
-
-- UK charity sector: [10 design principles to help charities build better digital services](https://betterdigital.services/principles/)
-- Gov.je: [Digital design principles](https://www.gov.je/Government/DigitalServices/BusinessArchitecture/pages/designprinciples.aspx)
-- Gov.uk: [Government Design Principles](https://www.gov.uk/guidance/government-design-principles)
-- US Gov: [Design principles](https://designsystem.digital.gov/design-principles/)
-- CA Gov: [Design principles](https://handbook.alpha.ca.gov/en/latest/design-principles/)
-- Australia: [Design principles](https://gold.designsystemau.org/about/#design-principles)
-
-## Andre relevante kilder:
-
-- Interaction Design Foundation: [Design principles](https://www.interaction-design.org/literature/topics/design-principles)
-- Jon Yablonski: [Laws of UX](https://lawsofux.com/)
-- Netlife Blogg: [5 prinsipper for god brukeropplevelse](https://www.netlife.com/blogg/5-prinsipper-for-god-brukeropplevelse-ux)
diff --git a/apps/storefront/pages/grunnleggende/introduksjon/om-designsystemet.mdx b/apps/storefront/pages/grunnleggende/introduksjon/om-designsystemet.mdx
deleted file mode 100644
index d8dad569b8..0000000000
--- a/apps/storefront/pages/grunnleggende/introduksjon/om-designsystemet.mdx
+++ /dev/null
@@ -1,98 +0,0 @@
-import { ComponentIcon } from '@navikt/aksel-icons';
-
-import { MenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
- ,
- color: 'blue',
- }}
- />
-);
-
-Designsystemet er en felles verktøykasse med grunnleggende UI-komponenter, retningslinjer og mønstre som det er verdifullt å dele på tvers av offentlig sektor. Designsystemet skal bidra til effektiv produktutvikling og helhetlige brukeropplevelser.
-
-## Hva er et designsystem?
-
-Et designsystem består av UI-komponenter og mønstre som sikrer gjennomtenkte og konsistente brukeropplevelser i digitale tjenester.
-
-Ved å bruke grunnleggende byggeklosser fra designsystemet kan produktteamene selv bygge mer sammensatte komponenter som dekker spesifikke behov.
-
-Et designsystem fungerer som en bro mellom design og utvikling, og sørger for at det er de samme verdiene vi jobber med.
-
-## Hvorfor et _felles_ designsystem?
-
-Regjeringen vil jobbe for at _"offentlige digitale tjenester skal ha et brukervennlig og gjenkjennbart design på tvers av ulike etater slik at innbyggere med lav digital kompetanse kan benytte tjenesten"_. 1
-
-Gjennom å samarbeide om et felles designsystem kan vi i større grad sikre helhetlige og gjenkjennelige brukeropplevelser på tvers av etater. I stedet for å lage de samme grunnkomponentene om og om igjen, kan vi lage dem skikkelig én gang og sikre god kvalitet ved at at tilgjengelighetskrav og testing er godt ivaretatt. Best av alt - da har vi kun ett sted å vedlikeholde dem når det kommer nye teknologier, standarder, krav og behov. Det betyr mer tid til å løse viktigere problem for brukerne våre. 🎉
-
-## Hvem bruker designsystemet?
-
-Designsystemet er i bruk i [Altinn Studio](https://altinn.studio/), der 70 ulike etater utvikler sine tjenester. Flere offentlige virksomheter har også tatt designsystemet i bruk utover tjenester de lager i Altinn.
-
-## Hva består designsystemet av?
-
-Designsystemet består av grunnleggende designelementer, UI-komponenter, mønstre og god praksis. Du kan ta i bruk det du trenger, i den grad du ønsker.
-
-- **Grunnleggende designelementer** \
- De grunnleggende designelementene i designsystemet, som vi kaller "[Design Tokens](/grunnleggende/designelementer/design-tokens)", styrer hvordan komponentene skal se ut, blant annet med tanke på farger, typografi, størrelser, avstander og former. Noen av variablene er lagt opp til å være tema-baserte, det vil si at de tar utgangspunkt i din merkevare med de fargene og preferansene du selv velger.
-
-- **UI-komponenter** \
- Designsystemet inneholder de mest grunnleggende UI-komponentene som gir verdi å dele på tvers. Vi dokumenterer hvordan komponentene bør brukes og oppdatererer retningslinjene etter hvert som vi får mer innsikt. UI-komponentene finnes foreløpig i [Figma](https://www.figma.com/@designsystemet) og [React](https://storybook.designsystemet.no).
-
-- **Mønstre og god praksis** \
- Designsystemet er en samarbeidsarena for å utvikle gjenkjennbare [mønstre](/monstre) og felles [anbefalinger](/god-praksis). Med mønstre mener vi for eksempel hvor sentrale elementer skal plasseres i grensesnittet, og hvordan navigasjon, feilmeldinger og andre gjentagende brukeroppgaver skal oppføre seg. Vi kan samarbeide om mønstre selv om vi ikke bruker de samme tekniske komponentene eller designelementene.
-
-- **Blogg** \
- I bloggen kan vi fortelle om nye oppdateringer og dele historier. Vi håper flere vil bruke bloggen til å skrive om hvordan de har tatt i bruk designsystemet.
-
-## Hvem kan bruke og bidra til designsystemet?
-
-Alle som lager digitale løsninger for innbyggere kan bruke designsystemet. Det er åpen kildekode og vi setter pris på at du bidrar til å gjøre designsystemet bedre. [Si gjerne ifra](https://github.com/digdir/designsystemet/issues/new/choose) hvis du finner en feil eller vil foreslå en forbedring. Spørsmål kan du stille i Slack-kanalen [#Designsystemet](https://join.slack.com/t/designsystemet/shared_invite/zt-2438eotl3-a4266Vd2IeqMWO8TBw5PrQ), der hjelper vi hverandre.
-
-### Hvordan kan du bidra?
-
-Vi har ingen bestemt måte du må gå fram på for å bidra, men ta gjerne kontakt på [Slack](https://join.slack.com/t/designsystemet/shared_invite/zt-2438eotl3-a4266Vd2IeqMWO8TBw5PrQ) når du har et behov, så kan vi sammen vurdere behovet.
-
-- [Bidra med design](/grunnleggende/for-designere/bidra-i-figma)
-- [Bidra med utvikling](https://github.com/digdir/designsystemet/blob/main/CONTRIBUTING.md)
-- [Bidra med innsikt](https://github.com/digdir/innsiktsbibliotek)
-- Skriv en artikkel
-
-## Hvordan samarbeider vi på tvers?
-
-En viktig verdi for oss er å være åpne og transparente, og vi tror dette er avgjørende for å få til et samarbeid på tvers. Alt vi gjør deler vi åpent - [kildekode](https://github.com/digdir/designsystemet), [backlog](https://github.com/orgs/digdir/projects/3/views/1), [roadmap](https://github.com/digdir/designsystemet/issues/1435), [Figma](https://www.figma.com/@designsystemet), [Storybook](https://storybook.designsystemet.no).
-
-En gang i måneden har vi "Demo og samarbeidsforum" som er åpen for alle interessenter. Her forteller vi om hva vi har jobbet med siden sist og tar imot innspill og behov. [Ta kontakt](mailto:designsystem@digdir.no) om du vil ha tilsendt en møteinvitasjon.
-
-Teamet i dag består hovedsakelig av designsystem-teamet i Digdir, med god hjelp fra designere og utviklere i Brønnøysundregistrene. Vi håper designsystemet blir et tverretatlig team i enda større grad og vi jobber for mer ordnede rammer i det offentlige for å kunne jobbe på denne måten.
-
-Designsystemet har et tett samarbeid med [Altinn Studio](https://altinn.studio/) - et verktøy for å utvikle digitale tjenester til innbyggere og næringsliv. Bruker du Altinn studio til å utvikle tjenester, bruker du automatisk designsystemet.
-
-## Vil du være med på samarbeidet?
-
-Heier du også på mer gjenbruk og mindre dobbeltarbeid? Send oss en e-post på:
-[designsystem@digdir.no](mailto:designsystem@digdir.no)
-
-
-
-
----
-
-**Kilder**
-
-[1] Regjeringens strategi [«Digital hele livet»](https://www.regjeringen.no/contentassets/8f8751780e9749bfa8946526b51f10f4/digital-hele-livet.pdf)
-og handlingsplanen for [«Økt inkludering i et digitalt samfunn»](https://www.regjeringen.no/no/dokumenter/handlingsplan-for-auka-inkludering-i-eit-digitalt-samfunn/id2984233/))
-
-
-
diff --git a/apps/storefront/pages/grunnleggende/introduksjon/slack.mdx b/apps/storefront/pages/grunnleggende/introduksjon/slack.mdx
deleted file mode 100644
index 9b804e56d7..0000000000
--- a/apps/storefront/pages/grunnleggende/introduksjon/slack.mdx
+++ /dev/null
@@ -1,30 +0,0 @@
-import { PersonPencilIcon } from '@navikt/aksel-icons';
-
-import { MenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
- ,
- }}
-
-/>
-);
-
-## Diskusjoner, status og sparring
-
-Vi trenger et sted å diskutere alt som har med designsystemer å gjøre! Et sted der vi kan samle både designere, utviklere og andre interessenter av Designsystemet.
-
-For å gjøre det enklest mulig å få tilgang er det opprettet en egen Slack til formålet.
-
-[Bli med i Slack](https://join.slack.com/t/designsystemet/shared_invite/zt-2438eotl3-a4266Vd2IeqMWO8TBw5PrQ)
diff --git a/apps/storefront/pages/grunnleggende/introduksjon/tilgjengelighet.mdx b/apps/storefront/pages/grunnleggende/introduksjon/tilgjengelighet.mdx
deleted file mode 100644
index 571b3cc96a..0000000000
--- a/apps/storefront/pages/grunnleggende/introduksjon/tilgjengelighet.mdx
+++ /dev/null
@@ -1,29 +0,0 @@
-import { HandHeartIcon } from '@navikt/aksel-icons';
-
-import { MenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
- ,
- color: 'yellow',
- }}
- />
-);
-
-Designsystemet skal være tilgjengelig for alle, uansett varige eller midlertidig reduserte evner.
-
-Tilgjengelighet er en del av utviklingen fra vi begynner å spesifisere komponenten til den er i produksjon. Når vi oppdager feil eller mangler på komponenten som påvirker om den er universelt utformet vil disse oppgavene bli prioritert av designsystem teamet. Alle komponentene skal følge [lovpålagte krav til universell utforming i offentlig sektor](https://www.uutilsynet.no/regelverk/offentlig-sektor/1584).
-
-Tilgjengelige komponenter er bare en del av det å lage tilgjengelige løsninger. Vi vil derfor også lage guider og andre hjelpemidler slik at teamene får ekstra støtte til å bruke komponentene til det de er ment til.
-
-Under [God praksis - Tilgjengelighet](/god-praksis#tilgjengelighet) kommer vi til å legge ut artikler som handler om hvordan vi kan gjøre løsningene våre mest mulig tilgjengelige.
diff --git a/apps/storefront/pages/grunnleggende/introduksjon/verdier.mdx b/apps/storefront/pages/grunnleggende/introduksjon/verdier.mdx
deleted file mode 100644
index ac047b9e02..0000000000
--- a/apps/storefront/pages/grunnleggende/introduksjon/verdier.mdx
+++ /dev/null
@@ -1,51 +0,0 @@
-import { LightBulbIcon } from '@navikt/aksel-icons';
-
-import { MenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
- ,
- color: 'yellow',
- }}
- />
-);
-
-Disse verdiene ønsker vi at designsystemet skal bygges på:
-
-## Kvalitet
-
-Designsystemet skal holde høy kvalitet, og gjøre det effektivt å lage digitale produkter med god kvalitet. Med god kvalitet mener vi både noe som gir en god brukeropplevelse, men også har et godt teknisk fundament. Alle komponentene skal oppfylle lovpålagte krav, for eksempel universell utforming. Det vi lager skal være [tilgjengelig](/grunnleggende/introduksjon/tilgjengelighet) og gi en god brukeropplevelse for alle, uansett varige eller midlertidig reduserte evner.
-
-## Helhet
-
-Målet er at designsystemet skal bidra til mer helhetlige og konsistente brukeropplevelser på tvers av offentlig sektor. Når løsningene bruker de samme byggeklossene i bunnen skaper det forutsigbarhet for innbyggerne. I tillegg til gjenbrukbare komponenter, skal vi hjelpe hverandre å etablere gjenkjennbare mønstre på tvers av løsninger. Mønstrene skal vise hvordan håndtere de vanligste brukeroppgavene og handlingene. Når vi bruker etablerte mønstre og konvensjoner som innbyggerne kjenner igjen på tvers kan løsningene bli mer intuitive og bidra til mindre digitalt utenforskap.
-
-## Samarbeid og åpenhet
-
-Designsystemet er basert på en filosofi om samarbeid, og det er ønskelig at det utvikles i samarbeid mellom offentlige aktører. Det skal være enkelt for alle å ta eierskap til designsystemet og involvere seg med bidrag og innspill. Alt vi gjør deler vi åpent - [kildekode](https://github.com/digdir/designsystemet), [backlog](https://github.com/orgs/digdir/projects/3/views/1), [roadmap](https://github.com/orgs/digdir/projects/3/views/1?pane=issue&itemId=19744450), [Figma](https://www.figma.com/file/vpM9dqqQPHqU6ogfKp5tlr/Felles-komponenter?type=design&node-id=503%3A3192&mode=design&t=Pou3e2YNIkM4t0Av-1), [Storybook](https://storybook.designsystemet.no) og [dokumentasjon](designsystemet.no).
-
-Det som ligger i designsystemet er ikke hugget i stein - det er ønskelig at vi skal skape dette i fellesskap og at det skal fungere for flere. Alle innspill, argumenter, innsikt og bidrag er velkomne. Det skal være enkel vei til endring dersom bidraget fører til bedre løsninger.
-
-## Design- og utvikleropplevelse
-
-Det skal være lett for andre utviklere og designere å ta i bruk og implementere endringer i designsystemet og komponentene. Det skal være enkelt å finne komponenter, forstå hva komponenten gjør og når den skal brukes. Dersom det eksisterer utfordringer relatert til en komponent skal dette synliggjøres og dokumenteres. Det skal være lett og forutsigbart å manøvrere seg i den tekniske løsningen.
-
-## Tillit
-
-Designsystemet skal håndtere utfordringer og endringer på en trygg og god måte slik at det oppnår høy tillit blant brukere. Brukerne av designsystemet skal kunne stole på at komponenter ikke slutter å fungere og at de oppfører seg som forventet. Brukerne av designsystemet må kunne stole på at designsystemet blir tatt godt vare på, og være oppdatert iht. nye krav og behov som oppstår. Vi sikter på gjensidig tillit - tillit til bidragsytere er også viktig.
-
-
-
----
-
-Har du innspill eller tanker om dette? Vil du være tettere på samarbeidet? Send oss en epost på: [designsystem@digdir.no](designsystem@digdir.no). Alle innspill mottas med takk.
diff --git a/apps/storefront/pages/grunnleggende/personvernerklaering.mdx b/apps/storefront/pages/grunnleggende/personvernerklaering.mdx
deleted file mode 100644
index 95a6b0290a..0000000000
--- a/apps/storefront/pages/grunnleggende/personvernerklaering.mdx
+++ /dev/null
@@ -1,22 +0,0 @@
-import { PageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
-
-Denne nettsiden samler på dette tidspunktet ingen personopplysninger. Se ellers hvordan Digdir behandler personvernopplysninger [her](https://www.digdir.no/digdir/personvernerklaering/706).
diff --git a/apps/storefront/pages/index.mdx b/apps/storefront/pages/index.mdx
deleted file mode 100644
index b7ec7e95b3..0000000000
--- a/apps/storefront/pages/index.mdx
+++ /dev/null
@@ -1,117 +0,0 @@
-import {
- EnvelopeClosedIcon,
- BranchingIcon,
- PersonChatIcon,
-} from '@navikt/aksel-icons';
-
-import { FrontpageLayout } from '@layouts';
-import { Meta, Section, ImageBanner } from '@components';
-
-import { BlogCard } from '../components/Blog';
-
-export default ({ children }) => ;
-
-
-
-
-
-
-
-
-
-
- ,
- },
- {
- text: 'Bidra på GitHub',
- href: 'https://github.com/digdir/designsystemet',
- prefix: ,
- },
- {
- text: 'Send en epost',
- href: 'mailto:designsystem@digdir.no',
- prefix: ,
- },
- ]}
-/>
-
-
diff --git a/apps/storefront/pages/komponenter/index.mdx b/apps/storefront/pages/komponenter/index.mdx
deleted file mode 100644
index 8d7141fc8d..0000000000
--- a/apps/storefront/pages/komponenter/index.mdx
+++ /dev/null
@@ -1,210 +0,0 @@
-import { ComponentFillIcon } from '@navikt/aksel-icons';
-
-import { ComponentsLayout } from '@layouts';
-import { ComponentCard } from '@components';
-
-export default ({ children }) => (
- ,
- color: 'blue',
- ingress:
- 'Designsystemet inneholder grunnleggende komponenter som kan settes sammen på mange ulike måter og i forskjellige mønstre.',
- }}
- />
-);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/apps/storefront/pages/monstre/dato.mdx b/apps/storefront/pages/monstre/dato.mdx
deleted file mode 100644
index 18fe6c90aa..0000000000
--- a/apps/storefront/pages/monstre/dato.mdx
+++ /dev/null
@@ -1,29 +0,0 @@
-import { MenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
-
-## Problemer med ulike datoformater
-
-[Utfordringer med ulike datoformat](https://github.com/digdir/innsiktsbibliotek/issues/22) er observert i rapporten [Digital hele livet med bedre brukeropplevelse
-](https://www.digdir.no/sammenhengende-tjenester/digital-hele-livet-med-bedre-brukeropplevelse/4405)
-
-Mønsteret er under arbeid og krever mer samarbeid på tvers for å etablere. Sitter du på innsikt som er relevant for dato? [Ta kontakt](mailto:designsystem@digdir.no) så kan vi dele innsikt og diskutere dette mønsteret sammen!
-
-### Relevante artikler:
-
-- [Gov UK Patterns: Dates](https://design-system.service.gov.uk/patterns/dates/)
-- [Asking for a date of birth](https://designnotes.blog.gov.uk/2013/12/05/asking-for-a-date-of-birth/)
diff --git a/apps/storefront/pages/monstre/feilmeldinger.mdx b/apps/storefront/pages/monstre/feilmeldinger.mdx
deleted file mode 100644
index f02575b165..0000000000
--- a/apps/storefront/pages/monstre/feilmeldinger.mdx
+++ /dev/null
@@ -1,109 +0,0 @@
-import { Meta, Image } from '@components';
-import { MenuPageLayout } from '@layouts';
-
-
-
-export default ({ children }) => (
-
-);
-
-Det er best om vi klarer å hindre at det oppstår feil. Da må vi på forhånd oppgi tydelig hva brukeren må gjøre for å fylle ut feltene i skjemaet riktig. Vi må godta ulik formatering, for eksempel på felt med tall, som i telefonnummer eller datoer. Brukerne må alltid få mulighet til å redigere felter eller gå tilbake, og kunne pause utfyllingen eller avbryte.
-
-Når det likevel har oppstått et problem som gjør at brukeren ikke kommer videre, skal vi vise en feilmelding som beskriver problemet og forklarer hva brukerne må gjøre.
-
-Vi har ulike typer feilmeldinger
-
-- [Detaljerte feilmeldinger](#detaljerte-feilmeldinger), som tilhører et bestemt felt i et skjema.
-- [Oppsummerende feilmeldinger](#oppsummerende-feilmeldinger), som kan vise en eller flere feilmeldinger.
-
-For andre type feil som ikke tilhører et skjemaelement, og som ikke validerer brukerens inndata, kan du bruke [`alert`](/docs/komponenter-alert--docs)-komponenten. Det kan for eksempel være for systemfeil, eller til myke valideringer. Myke valideringer er meldinger som ikke stopper brukeren fra å sende inn eller gå videre til neste steg i prosessen, men som bare gir brukeren informasjon.
-
-## Detaljerte feilmeldinger
-
-Plasser feilmeldinger som tilhører et bestemt felt på siden så nært feilen som mulig. Pass på at du kobler den til feltet med `aria-describedby`.
-
-Feltet skal tydelig vise at noe er feil. Dette gjør vi med rød farge, [forklarende tekst](#tekst-i-feilmeldinger) og `aria-invalid`. Plasser teksten som viser hva som er feil og hva brukeren må gjøre, rett under selve feltet der feilen er.
-
-
-
-### Når skal feilmeldinger presenteres for brukeren?
-
-Vi kan presentere feilmeldinger for brukerne enten når
-
-- Brukeren forlater feltet
-- Brukeren trykker "Gå videre" eller "Send inn"
-
-Vi skal ikke vise feilmeldinger mens brukeren fyller ut feltet. Mange bruker nemlig tastatur til å navigere i skjemaet. De vil ikke nødvendigvis starte på toppen og jobbe seg nedover og derfor vil det forstyrre hvis det dukker opp feilmeldinger på felter brukeren ikke har fylt ut enda.
-
-Hvis vi har feilmeldinger som skal vises når brukeren forlater feltet, må vi kode det slik at vi vet om brukeren faktisk har skrevet noe i feltet før vi viser feilmeldingen. Det tryggeste er å vise feilmeldingen når brukeren selv er klar til å gå videre.
-
-Det kan være irriterende for brukerne hvis feilmeldingen vises når de forlater feltet. Brukerne bør først få en feilmelding for et obligatorisk felt når de prøver å gå til neste side eller sende inn skjemaet. Vis tydelig at et felt må fylles ut. Her kan du lese mer om hvordan du markerer [obligatoriske og valgfrie skjemafelt](/monstre/obligatoriske-og-valgfrie-felt).
-
-## Oppsummerende feilmeldinger
-
-I noen tilfeller bør vi oppsummere alle feil øverst på siden eller like over "Gå videre" / "Send inn"-knappen. Oppsummeringen kan gjelde for én eller flere feil. Teksten i en oppsummerende feilmelding skal være lik det du ser i den detaljerte feilen (se eksempelet under).
-
-
-
-Den løsningen eller tjenesten du lager, bestemmer om du bør plassere oppsummeringen øverst på siden eller lenger nede, før knappen som tar brukerne videre. Se eksempelet over. Det viktigste er at brukeren lett ser oppsummeringen.
-
-Pass på at
-
-- oppsummeringen viser alle feilmeldingene som gjelder for siden eller trinnet
-- brukerne kan gå direkte til feilene de må rette og at fokuset blir flyttet dit
-- lenkene i oppsummeringen stemmer med feilmeldingen de lenker til
-- du skriver feilmeldingen slik at den er lett å forstå, at den gir mening for brukerne når de kun leser feilmeldingen i oppsummeringen
-- hvis det er flere feil, så lenker du til den første feilen i rekken
-- feilene forsvinner fra oppsummeringen etter hvert som brukerne fikser dem
-
-## Ikke deaktiver submit-knappen
-
-Vi bruker ikke deaktivert "Gå videre"/"Send inn"-knapp til å validere skjema. Noen brukere forstår ikke hvorfor knappen er deaktivert og kan bli forvirret. Brukere med nedsatt syn kan slite med å finne knappen og tro at skjemaet har tekniske problemer. Hvis brukeren prøver å velge knappen mens det er feil i skjemaet, kan vi heller vise en oppsummerende feilmelding over "Gå videre"/"Send inn"-knappen.
-
-## Tekst i feilmeldinger
-
-Den viktigste jobben til teksten i en feilmelding er å hjelpe brukerne videre:
-
-- Tenk på målgruppen og skriv vennlig, klart og tydelig. Unngå passivt eller teknisk språk. Meldingen skal være lett å forstå.
-- Unngå humor i feilmeldinger. Når folk møter på et problem, vil de heller ha effektive forslag til hvordan de løser det, enn humoristiske «Oops!»
-- Vær konkret. Når du skriver “Feltet er ikke fylt ut korrekt”, får ikke brukeren noen forklaring på hva som er feil. Gi konkret informasjon om hva som er problemet og gjenta gjerne nøkkelord fra ledeteksten.
-- Noen ganger må vi beskrive hva feilen er før vi beskriver hva brukerne skal gjøre, men det viktigste er å vise løsningen på problemet.
-- Tilpass feilmeldingene til ulike situasjoner. Jobben til teksten er å hjelpe brukeren videre.
-- Hold feilmeldingen kort, da sparer du brukerne for tid.
-
-Eksempel på forklarende feilmeldinger:
-
-- “Postnummeret må ha 4 siffer”
-- "Fødselsnummeret må ha 11 siffer"
-- “Velg minst ett av leveringsalternativene”
-- “Kryss av i ruten for å bekrefte at navnet er riktig, før du sender inn skjemaet”
-
-## Kilder
-
-- [Help users to Recover from validation errors, GovUK](https://design-system.service.gov.uk/patterns/validation/)
-- [Designing Better Error Messages UX, Smashing Magazine/Vitaly Friedman](https://www.smashingmagazine.com/2022/08/error-messages-ux-design)
-- [Formidle feil i skjema, UU-tilsynet](https://www.uutilsynet.no/veiledning/skjema/38#formidle_feil_i_skjema)
-- [Use forgiving formatting, NN Group](https://www.nngroup.com/articles/slips/)
-- [Error Messages Guidelines, NN Group](https://www.nngroup.com/articles/error-message-guidelines/)
-- [How to Report Errors in Forms, NN Group](https://www.nngroup.com/articles/errors-forms-design-guidelines/)
-- [Suksesskriterium 3.3.1 Identifikasjon av feil](https://www.w3.org/Translations/WCAG21-no/#error-identification)
-- [Suksesskriterium 3.3.3 Forslag ved feil](https://www.w3.org/Translations/WCAG21-no/#error-suggestion)
-- [Skjemavalidering, Aksel](https://aksel.nav.no/god-praksis/artikler/skjemavalidering)
-- [Fejlmeddelelser, Fælles designsystem](https://designsystem.dk/komponenter/fejlmeddelelser/)
diff --git a/apps/storefront/pages/monstre/handlinger.mdx b/apps/storefront/pages/monstre/handlinger.mdx
deleted file mode 100644
index e869087c31..0000000000
--- a/apps/storefront/pages/monstre/handlinger.mdx
+++ /dev/null
@@ -1,31 +0,0 @@
-import { MenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
-
-Ofte brukte handlinger kan det også ligge forventninger til, og det bør utredes mønstre for vanlige handlinger som:
-
-- Legg til
-- Avbryt
-- Nullstill
-- Kopier
-- Slett
-- Fjern
-- Rediger
-- Neste
-- Send inn
-
-Mønsterene krever mer innsikt og samarbeid på tvers. Sitter du på innsikt som er relevant for ofte brukte handlinger? [Ta kontakt](mailto:designsystem@digdir.no) så kan vi dele innsikt og diskutere disse mønsterene sammen!
diff --git a/apps/storefront/pages/monstre/index.mdx b/apps/storefront/pages/monstre/index.mdx
deleted file mode 100644
index 5ffaa377ca..0000000000
--- a/apps/storefront/pages/monstre/index.mdx
+++ /dev/null
@@ -1,85 +0,0 @@
-import { LayersIcon } from '@navikt/aksel-icons';
-
-import { NavMenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-export default ({ children }) => (
- ,
- color: 'yellow',
- }}
- />
-);
-
-
-
-I rapporten "[Digital hele livet med bedre brukeropplevelse](https://www.digdir.no/sammenhengende-tjenester/digital-hele-livet-med-bedre-brukeropplevelse/4405)" er det funnet flere [konkrete problemer med brukskvalitet](https://github.com/digdir/innsiktsbibliotek/issues/3) som kan forbedres dersom vi samarbeider om å etablere like mønstre på tvers av offentlige tjenester. Når vi bruker etablerte mønstre som innbyggerne kjenner igjen på tvers kan løsningene bli mer intuitive og bidra til mindre digitalt utenforskap.
-
-Vi kan samarbeide om mønstre selv om vi ikke bruker de samme tekniske komponentene eller designelementene. For eksempel kan vi hjelpe hverandre å etablere felles konvensjoner rundt interaksjon og forventet oppførsel på komponenter, samt plassering av sentrale elementer.
-
-## Planlagte mønstre
-
-Sitter du på innsikt som er relevante for følgende mønstre? Bli med på å utarbeide felles retningslinjer som kan bidra til at vi oppnår mer helhetlige tjenester på tvers. [Ta kontakt](mailto:designsystem@digdir.no)!
-
-### Brukeroppgaver
-
-Vi har lyst å finne felles måter å håndtere gjentagende brukeroppgaver. F.eks eksempler og beste praksis for blant annet:
-
-- [Innlogging](/monstre/innlogging)
-- [Navigering](/monstre/navigering)
- - Plassering av vesentlige funksjoner
- - Navigeringsknapper
- - Navigeringsretninger
- - Logisk hierarki av handlingsknapper
-- Utfylling av skjema
-- Innsending av skjema
-- Filtrering
-- Signering
-- Samtykke
-- Bytte språk
-- [Ofte brukte handlinger](/monstre/handlinger)
-
-Dette er noen av utfordringene som har blitt trukket frem i rapporten "[Digital hele livet med bedre brukeropplevelse](https://www.digdir.no/sammenhengende-tjenester/digital-hele-livet-med-bedre-brukeropplevelse/4405)". Problemene er rapportert av blant annet Brukerrådet i Helsetilsynet, Deichmanske, Seniornett, Altinn brukerstøtte, Trondheim folkebibliotek, Mangfold i arbeidslivet, samt generelle observasjoner.
-
-### Brukerdialoger
-
-F.eks hvordan vi spør brukeren om:
-
-- Adresse
-- [Datoer](/monstre/dato)
-- Epost
-- Kjønn
-- Navigering
-- Identitet
-- Passord
-- Betalingskort-detaljer
-- Telfonnummer
-
-...Og hvordan vi håndterer [validering og feilmeldinger](/monstre/feilmeldinger) når noe går galt.
-
-### Bruk av...
-
-- Bruk av pop-ups
-- Bruk av modaler
-
-## Eksempel på designsystem som har laget retningslinjer for mønstre:
-
-- [https://carbondesignsystem.com/patterns/overview/](https://carbondesignsystem.com/patterns/overview/)
-- [https://design-system.service.gov.uk/patterns/](https://design-system.service.gov.uk/patterns/)
-- [https://www.lightningdesignsystem.com/guidelines/user-engagement/patterns/#Empty-States](https://www.lightningdesignsystem.com/guidelines/user-engagement/patterns/#Empty-States)
-
-
diff --git a/apps/storefront/pages/monstre/innlogging.mdx b/apps/storefront/pages/monstre/innlogging.mdx
deleted file mode 100644
index 18ed1b57fe..0000000000
--- a/apps/storefront/pages/monstre/innlogging.mdx
+++ /dev/null
@@ -1,41 +0,0 @@
-import { MenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
-
-## Innlogging
-
-Mønsteret er under arbeid og krever mer innsikt og samarbeid på tvers. Sitter du på innsikt som er relevant for innlogging og/eller aktørbytte? [Ta kontakt](mailto:designsystem@digdir.no) så kan vi dele innsikt og diskutere dette mønsteret sammen!
-
-### Bytte mellom privat og virksomhet
-
-Vi ønsker å finne den beste måten for å håndtere bytte mellom privat og virksomhet. Dette vil være aktuelt for løsninger der innlogget bruker kan bytte mellom å representere seg selv som privatperson, ett firma eller frivillige organisasjoner.
-
-### Relevant innsikt
-
-Det er funnet flere utfordringer knyttet til innlogging:
-
-- [Vanskelig å logge inn, og å finne logg inn](https://github.com/digdir/innsiktsbibliotek/issues/14)\
- Logg inn-knappen er ulik plassert, heter ulike ting (logg inn, din side, min side), og har ulike ikoner.
- Ikonene har stor variasjon: person, hengelås, papir og blyant, åpne dør og nøkkelhull. Dette skaper forvirring.
-- [Utlogging er vanskelig å finne, og ulik fra etat til etat](https://github.com/digdir/innsiktsbibliotek/issues/15)\
- Noen ganger tydelig “logg ut”, andre nettsteder må du lete etter utlogging.
-- [For mye ligger bak innlogging med BankID](https://github.com/digdir/innsiktsbibliotek/issues/13)\
- Det er mye som legges bak innlogging. Dette er både generell informasjon, men ikke minst mange søknadsskjema og oppgaver som i seg selv ikke er av sensitiv art. Dette fører bl.a. til at de som ikke klarer eller har mulighet for å logge inn ikke får tak i essensiell informasjon, og i mange tilfeller, mulighet for å søke på rettigheter de har krav på.
-- [BankID forvirrer på grunn av endringer i utformingen](https://github.com/digdir/innsiktsbibliotek/issues/4)\
- Utseende for bankID er forskjellig på tvers av nettsider og det er svært utfordende å vite hva som er faktisk BankID og hva som potensielt er svindel. Det skaper forvirring, og særlig blant de som som er usikre i møte med det digitale og i utgangspunktet redd for personlig sikkerhet.
-
-Innsikten er fra rapporten "[Digital hele livet med bedre brukeropplevelse](https://www.digdir.no/sammenhengende-tjenester/digital-hele-livet-med-bedre-brukeropplevelse/4405)"
diff --git a/apps/storefront/pages/monstre/navigering.mdx b/apps/storefront/pages/monstre/navigering.mdx
deleted file mode 100644
index b3f1ce8943..0000000000
--- a/apps/storefront/pages/monstre/navigering.mdx
+++ /dev/null
@@ -1,35 +0,0 @@
-import { MenuPageLayout } from '@layouts';
-import { Meta } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
-
-## Navigering
-
-Vi ønsker å finne den beste måten for å håndtere navigering. Hvilke forventninger har brukerne til navigering og hva fungerer best i de ulike kontekstene?
-
-Mønsteret er under arbeid og krever mer innsikt og samarbeid på tvers. Sitter du på innsikt som er relevant for navigering? [Ta kontakt](mailto:designsystem@digdir.no) så kan vi dele innsikt og diskutere dette mønsteret sammen!
-
-### Innsikt
-
-Det er funnet flere utfordringer knyttet til ulik håndtering av navigering:
-
-- [Ulike menyer og oversikter](https://github.com/digdir/innsiktsbibliotek/issues/21)
-- [Ulike navigeringsknapper](https://github.com/digdir/innsiktsbibliotek/issues/24) \
- Det er utfordrende å vite hvordan en skal komme seg tilbake et steg, hvilke muligheter man har og hvor man bringes. I noen tilfeller tas man tilbake til forsiden, men andre sider går man kun ett steg tilbake.
-- [Ulike navigeringsretninger](https://github.com/digdir/innsiktsbibliotek/issues/25) \
- Det er forskjell på interaksjonsmønstrene på tvers når du er i en søknadsprosess. I noen tilfeller fungerer det som en bok hvor hvert steg er en ny side hvor man blar horisontalt. Andre er som å bla i en notatblokk (man blar vertikalt nedover), mens noen fungerer mer som en scroll hvor alt er tilgjengelig på en lang scroll.
-
-Innsikten er fra rapporten "[Digital hele livet med bedre brukeropplevelse](https://www.digdir.no/sammenhengende-tjenester/digital-hele-livet-med-bedre-brukeropplevelse/4405)"
diff --git a/apps/storefront/pages/monstre/obligatoriske-og-valgfrie-felt.mdx b/apps/storefront/pages/monstre/obligatoriske-og-valgfrie-felt.mdx
deleted file mode 100644
index d07062ea6e..0000000000
--- a/apps/storefront/pages/monstre/obligatoriske-og-valgfrie-felt.mdx
+++ /dev/null
@@ -1,84 +0,0 @@
-import { MenuPageLayout } from '@layouts';
-import { Meta, Image } from '@components';
-
-
-
-export default ({ children }) => (
-
-);
-
-Det er flere måter å markere obligatoriske felt på som [oppfyller kravene til merking](https://www.uutilsynet.no/veiledning/skjema/38#ledetekster_og_instruksjoner). I dag gjør vi dette ulikt på tvers. Noen bruker asterisk (stjerne), noen bruker ord, andre informerer i forkant om hva som må fylles ut. Klarer vi å gjøre dette mer likt på tvers blir det lettere for innbygger å forstå og kjenne igjen mønsteret på tvers av løsningene våre. Det vil alltid være unntak og ulike kontekster som krever ulik merking.
-
-En generell retningslinje er at vi bør unngå å be om informasjon vi ikke trenger, altså unngå valgfrie felt.
-
-Her tar vi for oss 3 eksempler.
-
-1. [Ett spørsmål per side](#1-ett-spørsmål-per-side)
-2. [Når vi _må_ ha flere spørsmål per side](#2-når-vi-må-ha-flere-spørsmål-per-side)
-3. [Når vi _må_ ha en kombinasjon av obligatoriske og valgfrie felt](#3-når-vi-må-ha-en-kombinasjon-av-obligatoriske-og-valgfrie-felt)
-
-## 1. Ett spørsmål per side
-
-Hvis vi kan holde oss til ett spørsmål per side, så er det det aller enkleste for brukeren. Gjør vi det, trenger vi ikke å markere hvilke felt som må fylles ut. Da kommer det frem av beskrivelsen at dette må fylles ut.
-
-
-
-Dersom det er frivillig å fylle ut en av sidene, kan dette også komme frem i beskrivelsen.
-
-
-
-## 2. Når vi _må_ ha flere spørsmål per side
-
-Hvis vi _må_ ha flere spørsmål på en side, kan vi informere tydelig i toppen om at _alle felt må fylles ut_. Vi skal bare spørre brukeren om informasjon vi absolutt trenger, og unngå valgfrie felt. (Kan du ikke unngå valgfrie felt, se [eksempel 3](#3-når-vi-må-ha-en-kombinasjon-av-obligatoriske-og-valgfrie-felt)).
-
-- Bruk for eksempel en gul tag, som vist i eksemplet under.
-- Bruk teksten **«Alle felt må fylles ut»**. \
- (_Ikke_ bruk _"Obligatorisk"_ eller _"Påkrevd"_)
-- Pass på at det ikke er for mange spørsmål på samme side. Det som ligger på samme side bør ha samme tema eller spørsmål som er relatert til hverandre.
-
-
-## 3. Når vi _må_ ha en kombinasjon av obligatoriske og valgfrie felt
-
-En kombinasjon av obligatoriske og valgfrie felt er ikke ideellt! Men det vil være situasjoner der vi ikke kommer unna det. Hvis vi _må_ ha med valgfrie felt i tillegg til de obligatoriske, bør vi markere alle feltene hver for seg. Da trenger vi ikke å informere i toppen.
-
-- Informer tydelig med taggen «Må fylles ut» eller «Valgfritt» bak hvert spørsmål/hver ledetekst.
-- Ikke bruk ordene «Obligatorisk» eller «Påkrevd».
-- Bruk for eksempel gul tag for «Må fylles ut» og blå for valgfritt.
-- Ikke bruk stjerne for å markere felt som må fylles ut.
-
-
-
-
-
----
-
-## Kilder og relevant informasjon:
-
-- [UU-tilsynet](https://www.uutilsynet.no/veiledning/skjema/38#ledetekster_og_instruksjoner)
-- [Gov UK - Question pages](https://design-system.service.gov.uk/patterns/question-pages/)
-- [NN Group - Marking Required Fields in Forms](https://www.nngroup.com/articles/required-fields/)
diff --git a/apps/storefront/public/animations/Page.webm b/apps/storefront/public/animations/Page.webm
index 6a1f4f6fb0..017fcbb1a5 100644
Binary files a/apps/storefront/public/animations/Page.webm and b/apps/storefront/public/animations/Page.webm differ
diff --git a/apps/storefront/public/animations/Theme.webm b/apps/storefront/public/animations/Theme.webm
index 04420c3673..8d168c6a4f 100644
Binary files a/apps/storefront/public/animations/Theme.webm and b/apps/storefront/public/animations/Theme.webm differ
diff --git a/apps/storefront/public/img/Logotest.svg b/apps/storefront/public/img/Logotest.svg
index cc7bd355be..5fc51f9a92 100644
--- a/apps/storefront/public/img/Logotest.svg
+++ b/apps/storefront/public/img/Logotest.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/apps/storefront/public/img/Toolbox.svg b/apps/storefront/public/img/Toolbox.svg
index 59e46e9c9e..c6e078958c 100644
--- a/apps/storefront/public/img/Toolbox.svg
+++ b/apps/storefront/public/img/Toolbox.svg
@@ -1,6 +1,6 @@
-
+
diff --git a/apps/storefront/public/img/bloggen/v1-flyt.png b/apps/storefront/public/img/bloggen/v1-flyt.png
new file mode 100644
index 0000000000..8f6dff4669
Binary files /dev/null and b/apps/storefront/public/img/bloggen/v1-flyt.png differ
diff --git a/apps/storefront/public/img/bloggen/v1rc2-front.png b/apps/storefront/public/img/bloggen/v1rc2-front.png
new file mode 100644
index 0000000000..8c93705fc3
Binary files /dev/null and b/apps/storefront/public/img/bloggen/v1rc2-front.png differ
diff --git a/apps/storefront/public/img/bloggen/v1rc2.png b/apps/storefront/public/img/bloggen/v1rc2.png
new file mode 100644
index 0000000000..b883ba15a6
Binary files /dev/null and b/apps/storefront/public/img/bloggen/v1rc2.png differ
diff --git a/apps/storefront/public/img/brand-variables.mp4 b/apps/storefront/public/img/brand-variables.mp4
index a6771f3958..c83ad57031 100644
Binary files a/apps/storefront/public/img/brand-variables.mp4 and b/apps/storefront/public/img/brand-variables.mp4 differ
diff --git a/apps/storefront/public/img/button-colors.png b/apps/storefront/public/img/button-colors.png
new file mode 100644
index 0000000000..74f54f1083
Binary files /dev/null and b/apps/storefront/public/img/button-colors.png differ
diff --git a/apps/storefront/public/img/button-variant-properties.mp4 b/apps/storefront/public/img/button-variant-properties.mp4
index 91455d62de..bce6598c9f 100644
Binary files a/apps/storefront/public/img/button-variant-properties.mp4 and b/apps/storefront/public/img/button-variant-properties.mp4 differ
diff --git a/apps/storefront/public/img/color-variables.mp4 b/apps/storefront/public/img/color-variables.mp4
new file mode 100644
index 0000000000..b61cf67c06
Binary files /dev/null and b/apps/storefront/public/img/color-variables.mp4 differ
diff --git a/apps/storefront/public/img/component-previews/Avatar.svg b/apps/storefront/public/img/component-previews/Avatar.svg
new file mode 100644
index 0000000000..65d0f24566
--- /dev/null
+++ b/apps/storefront/public/img/component-previews/Avatar.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/apps/storefront/public/img/component-previews/Badge.svg b/apps/storefront/public/img/component-previews/Badge.svg
new file mode 100644
index 0000000000..a0619b6e43
--- /dev/null
+++ b/apps/storefront/public/img/component-previews/Badge.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/apps/storefront/public/img/component-previews/Breadcrumbs.svg b/apps/storefront/public/img/component-previews/Breadcrumbs.svg
new file mode 100644
index 0000000000..cc4123753d
--- /dev/null
+++ b/apps/storefront/public/img/component-previews/Breadcrumbs.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/apps/storefront/public/img/component-previews/Divider.svg b/apps/storefront/public/img/component-previews/Divider.svg
index 6a25d3d2be..59b116f798 100644
--- a/apps/storefront/public/img/component-previews/Divider.svg
+++ b/apps/storefront/public/img/component-previews/Divider.svg
@@ -1,6 +1,7 @@
+
-
+
diff --git a/apps/storefront/public/img/component-previews/DropdownMenu.svg b/apps/storefront/public/img/component-previews/Dropdown.svg
similarity index 100%
rename from apps/storefront/public/img/component-previews/DropdownMenu.svg
rename to apps/storefront/public/img/component-previews/Dropdown.svg
diff --git a/apps/storefront/public/img/component-previews/SkipLink.svg b/apps/storefront/public/img/component-previews/SkipLink.svg
index fe905f0df4..1609641d20 100644
--- a/apps/storefront/public/img/component-previews/SkipLink.svg
+++ b/apps/storefront/public/img/component-previews/SkipLink.svg
@@ -1,4 +1,4 @@
-
+
diff --git a/apps/storefront/public/img/component-previews/Table.svg b/apps/storefront/public/img/component-previews/Table.svg
index e4db653adf..32d2ab11a5 100644
--- a/apps/storefront/public/img/component-previews/Table.svg
+++ b/apps/storefront/public/img/component-previews/Table.svg
@@ -1,6 +1,6 @@
-
+
diff --git a/apps/storefront/public/img/component-previews/Typography.svg b/apps/storefront/public/img/component-previews/Typography.svg
index c14aa8827f..515d93699e 100644
--- a/apps/storefront/public/img/component-previews/Typography.svg
+++ b/apps/storefront/public/img/component-previews/Typography.svg
@@ -1,6 +1,6 @@
-
+
diff --git a/apps/storefront/public/img/error-message-group-error.mp4 b/apps/storefront/public/img/error-message-group-error.mp4
new file mode 100644
index 0000000000..42e085c7a1
Binary files /dev/null and b/apps/storefront/public/img/error-message-group-error.mp4 differ
diff --git a/apps/storefront/public/img/errormessage-co-1.png b/apps/storefront/public/img/errormessage-co-1.png
new file mode 100644
index 0000000000..11c8d8cde2
Binary files /dev/null and b/apps/storefront/public/img/errormessage-co-1.png differ
diff --git a/apps/storefront/public/img/errormessage-co-2.png b/apps/storefront/public/img/errormessage-co-2.png
new file mode 100644
index 0000000000..f10a78d6a5
Binary files /dev/null and b/apps/storefront/public/img/errormessage-co-2.png differ
diff --git a/apps/storefront/public/img/errormessage-co-22b.png b/apps/storefront/public/img/errormessage-co-22b.png
new file mode 100644
index 0000000000..6d2028e130
Binary files /dev/null and b/apps/storefront/public/img/errormessage-co-22b.png differ
diff --git a/apps/storefront/public/img/errormessage-co-2b.png b/apps/storefront/public/img/errormessage-co-2b.png
new file mode 100644
index 0000000000..1ef47975a1
Binary files /dev/null and b/apps/storefront/public/img/errormessage-co-2b.png differ
diff --git a/apps/storefront/public/img/errormessage-co-3.png b/apps/storefront/public/img/errormessage-co-3.png
new file mode 100644
index 0000000000..4a6fd3022d
Binary files /dev/null and b/apps/storefront/public/img/errormessage-co-3.png differ
diff --git a/apps/storefront/public/img/errormessage-design.png b/apps/storefront/public/img/errormessage-design.png
new file mode 100644
index 0000000000..0e512509d9
Binary files /dev/null and b/apps/storefront/public/img/errormessage-design.png differ
diff --git a/apps/storefront/public/img/fargesystem.png b/apps/storefront/public/img/fargesystem.png
new file mode 100644
index 0000000000..c20b27091a
Binary files /dev/null and b/apps/storefront/public/img/fargesystem.png differ
diff --git a/apps/storefront/public/img/fork.png b/apps/storefront/public/img/fork.png
new file mode 100644
index 0000000000..9237be7c8a
Binary files /dev/null and b/apps/storefront/public/img/fork.png differ
diff --git a/apps/storefront/public/img/local-variables.png b/apps/storefront/public/img/local-variables.png
new file mode 100644
index 0000000000..9f8f2e4520
Binary files /dev/null and b/apps/storefront/public/img/local-variables.png differ
diff --git a/apps/storefront/public/img/logos/mattilsynet.svg b/apps/storefront/public/img/logos/mattilsynet.svg
new file mode 100644
index 0000000000..da23eb427a
--- /dev/null
+++ b/apps/storefront/public/img/logos/mattilsynet.svg
@@ -0,0 +1 @@
+
diff --git a/apps/storefront/public/img/logos/udir.svg b/apps/storefront/public/img/logos/udir.svg
new file mode 100644
index 0000000000..beb09c67d5
--- /dev/null
+++ b/apps/storefront/public/img/logos/udir.svg
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/apps/storefront/public/img/obligatorisk-eks1.png b/apps/storefront/public/img/obligatorisk-eks1.png
index 49421c6203..f7c87321ca 100644
Binary files a/apps/storefront/public/img/obligatorisk-eks1.png and b/apps/storefront/public/img/obligatorisk-eks1.png differ
diff --git a/apps/storefront/public/img/obligatorisk-eks1b.png b/apps/storefront/public/img/obligatorisk-eks1b.png
index 75e4cf1571..1f48db20f6 100644
Binary files a/apps/storefront/public/img/obligatorisk-eks1b.png and b/apps/storefront/public/img/obligatorisk-eks1b.png differ
diff --git a/apps/storefront/public/img/obligatorisk-eks2.png b/apps/storefront/public/img/obligatorisk-eks2.png
index 88247e3c1f..62cbe9cf79 100644
Binary files a/apps/storefront/public/img/obligatorisk-eks2.png and b/apps/storefront/public/img/obligatorisk-eks2.png differ
diff --git a/apps/storefront/public/img/obligatorisk-eks3.png b/apps/storefront/public/img/obligatorisk-eks3.png
index 147b2f6998..8e146b1cb3 100644
Binary files a/apps/storefront/public/img/obligatorisk-eks3.png and b/apps/storefront/public/img/obligatorisk-eks3.png differ
diff --git a/apps/storefront/public/img/theme-generator.mp4 b/apps/storefront/public/img/theme-generator.mp4
new file mode 100644
index 0000000000..e1f8bbfa8c
Binary files /dev/null and b/apps/storefront/public/img/theme-generator.mp4 differ
diff --git a/apps/storefront/public/img/tokens-duplicate.png b/apps/storefront/public/img/tokens-duplicate.png
new file mode 100644
index 0000000000..6ac559bf7b
Binary files /dev/null and b/apps/storefront/public/img/tokens-duplicate.png differ
diff --git a/apps/storefront/public/img/tokens-studio-github.png b/apps/storefront/public/img/tokens-studio-github.png
new file mode 100644
index 0000000000..4f51aa8581
Binary files /dev/null and b/apps/storefront/public/img/tokens-studio-github.png differ
diff --git a/apps/storefront/public/img/typografi-komponenter.mp4 b/apps/storefront/public/img/typografi-komponenter.mp4
new file mode 100644
index 0000000000..986165654e
Binary files /dev/null and b/apps/storefront/public/img/typografi-komponenter.mp4 differ
diff --git a/apps/storefront/public/img/typografi-spacing.png b/apps/storefront/public/img/typografi-spacing.png
new file mode 100644
index 0000000000..d98e821c19
Binary files /dev/null and b/apps/storefront/public/img/typografi-spacing.png differ
diff --git a/apps/storefront/public/img/typografi-styles.mp4 b/apps/storefront/public/img/typografi-styles.mp4
new file mode 100644
index 0000000000..d1b265f61b
Binary files /dev/null and b/apps/storefront/public/img/typografi-styles.mp4 differ
diff --git a/apps/storefront/public/img/variabler-alt1.mp4 b/apps/storefront/public/img/variabler-alt1.mp4
new file mode 100644
index 0000000000..c092c96e36
Binary files /dev/null and b/apps/storefront/public/img/variabler-alt1.mp4 differ
diff --git a/apps/storefront/public/img/variabler-alt2.mp4 b/apps/storefront/public/img/variabler-alt2.mp4
new file mode 100644
index 0000000000..5fd900c77f
Binary files /dev/null and b/apps/storefront/public/img/variabler-alt2.mp4 differ
diff --git a/apps/storefront/siteConfig.tsx b/apps/storefront/siteConfig.tsx
index 97dc39b8a6..2df9d6e381 100644
--- a/apps/storefront/siteConfig.tsx
+++ b/apps/storefront/siteConfig.tsx
@@ -1,180 +1,196 @@
-export const SiteConfig = {
- menu: [
- {
- name: 'Grunnleggende',
- url: 'grunnleggende',
- children: [
- {
- name: 'Introduksjon',
- url: 'grunnleggende/introduksjon',
- children: [
- {
- name: 'Om designsystemet',
- url: 'grunnleggende/introduksjon/om-designsystemet',
- },
- {
- name: 'Verdier',
- url: 'grunnleggende/introduksjon/verdier',
- },
- {
- name: 'Designprinsipper',
- url: 'grunnleggende/introduksjon/designprinsipper',
- },
- {
- name: 'Tilgjengelighet',
- url: 'grunnleggende/introduksjon/tilgjengelighet',
- },
- {
- name: 'Slack',
- url: 'grunnleggende/introduksjon/slack',
- },
- ],
- },
- {
- name: 'Designelementer',
- url: 'grunnleggende/designelementer',
- children: [
- {
- name: 'Design tokens',
- url: 'grunnleggende/designelementer/design-tokens',
- },
- {
- name: 'Farger',
- url: 'grunnleggende/designelementer/farger',
- },
- {
- name: 'Ikoner',
- url: 'grunnleggende/designelementer/ikoner',
- },
- {
- name: 'Skygger',
- url: 'grunnleggende/designelementer/skygger',
- },
- {
- name: 'Typografi',
- url: 'grunnleggende/designelementer/typografi',
- },
- {
- name: 'Størrelser og avstander',
- url: 'grunnleggende/designelementer/storrelser-og-avstander',
- },
- ],
- },
- {
- name: 'For designere',
- url: 'grunnleggende/for-designere',
- children: [
- {
- name: 'Kom i gang',
- url: 'grunnleggende/for-designere/kom-i-gang',
- },
- {
- name: 'Bidra med design',
- url: 'grunnleggende/for-designere/bidra-i-figma',
- },
- ],
- },
- {
- name: 'For utviklere',
- url: 'grunnleggende/for-utviklere',
- children: [
- {
- name: 'Kom i gang',
- url: 'grunnleggende/for-utviklere/kom-i-gang',
- },
- {
- name: 'Komposisjon',
- url: 'grunnleggende/for-utviklere/komposisjon',
- },
- ],
- },
- ],
- },
- {
- name: 'God praksis',
- url: 'god-praksis',
- children: [
- {
- name: 'Brukerinnsikt',
- url: 'god-praksis/brukerinnsikt',
- children: [
- {
- name: 'Felles innsiktsbibliotek',
- url: 'god-praksis/brukerinnsikt/felles-innsiktsbase',
- },
- ],
- },
- {
- name: 'Tilgjengelighet',
- url: 'god-praksis/tilgjengelighet',
- children: [
- {
- name: 'Forstå synsnedsettelse',
- url: 'god-praksis/tilgjengelighet/forsta-synsnedsettelse',
- },
- {
- name: 'Kontrast',
- url: 'god-praksis/tilgjengelighet/kontrast',
- },
- ],
- },
- {
- name: 'Innhold',
- url: 'god-praksis/innholdsarbeid',
- children: [
- {
- name: 'Skriveråd',
- url: 'god-praksis/innholdsarbeid/skriverad',
- },
- {
- name: 'Skumlesing',
- url: 'god-praksis/innholdsarbeid/skumlesing',
- },
- ],
- },
- ],
- },
- {
- name: 'Mønstre',
- url: 'monstre',
- children: [
- {
- name: 'Brukeroppgaver',
- url: 'monstre/brukeroppgaver',
- children: [
- {
- name: 'Innlogging',
- url: 'monstre/innlogging',
- },
- {
- name: 'Navigering',
- url: 'monstre/navigering',
- },
- {
- name: 'Ofte brukte handlinger',
- url: 'monstre/handlinger',
- },
- ],
- },
- {
- name: 'Skjema',
- url: 'monstre/skjema',
- children: [
- {
- name: 'Obligatoriske og valgfrie skjemafelt',
- url: 'monstre/obligatoriske-og-valgfrie-felt',
- },
- {
- name: 'Feilmeldinger',
- url: 'monstre/feilmeldinger',
- },
- {
- name: 'Dato',
- url: 'monstre/dato',
- },
- ],
- },
- ],
- },
- ],
-};
+export const SiteConfig = {
+ menu: [
+ {
+ name: 'Grunnleggende',
+ url: 'grunnleggende',
+ children: [
+ {
+ name: 'Introduksjon',
+ url: 'grunnleggende/introduksjon',
+ children: [
+ {
+ name: 'Om designsystemet',
+ url: 'grunnleggende/introduksjon/om-designsystemet',
+ },
+ {
+ name: 'Verdier',
+ url: 'grunnleggende/introduksjon/verdier',
+ },
+ {
+ name: 'Designprinsipper',
+ url: 'grunnleggende/introduksjon/designprinsipper',
+ },
+ {
+ name: 'Tilgjengelighet',
+ url: 'grunnleggende/introduksjon/tilgjengelighet',
+ },
+ {
+ name: 'Slack',
+ url: 'grunnleggende/introduksjon/slack',
+ },
+ ],
+ },
+ {
+ name: 'Designelementer',
+ url: 'grunnleggende/designelementer',
+ children: [
+ {
+ name: 'Design tokens',
+ url: 'grunnleggende/designelementer/design-tokens',
+ },
+ {
+ name: 'Farger',
+ url: 'grunnleggende/designelementer/farger',
+ },
+ {
+ name: 'Ikoner',
+ url: 'grunnleggende/designelementer/ikoner',
+ },
+ {
+ name: 'Skygger',
+ url: 'grunnleggende/designelementer/skygger',
+ },
+ {
+ name: 'Typografi',
+ url: 'grunnleggende/designelementer/typografi',
+ },
+ {
+ name: 'Størrelser og avstander',
+ url: 'grunnleggende/designelementer/storrelser-og-avstander',
+ },
+ ],
+ },
+ {
+ name: 'For designere',
+ url: 'grunnleggende/for-designere',
+ children: [
+ {
+ name: 'Kom i gang',
+ url: 'grunnleggende/for-designere/kom-i-gang',
+ },
+ {
+ name: 'Eget tema',
+ url: 'grunnleggende/for-designere/eget-tema',
+ },
+ {
+ name: 'Fargesystem',
+ url: 'grunnleggende/for-designere/fargesystem',
+ },
+ {
+ name: 'Hent oppdateringer',
+ url: 'grunnleggende/for-designere/hent-oppdateringer',
+ },
+ {
+ name: 'Bidra med design',
+ url: 'grunnleggende/for-designere/bidra-i-figma',
+ },
+ ],
+ },
+ {
+ name: 'For utviklere',
+ url: 'grunnleggende/for-utviklere',
+ children: [
+ {
+ name: 'Kom i gang',
+ url: 'grunnleggende/for-utviklere/kom-i-gang',
+ },
+ {
+ name: 'Komposisjon',
+ url: 'grunnleggende/for-utviklere/komposisjon',
+ },
+ ],
+ },
+ ],
+ },
+ {
+ name: 'God praksis',
+ url: 'god-praksis',
+ children: [
+ {
+ name: 'Brukerinnsikt',
+ url: 'god-praksis/brukerinnsikt',
+ children: [
+ {
+ name: 'Felles innsiktsbibliotek',
+ url: 'god-praksis/brukerinnsikt/felles-innsiktsbase',
+ },
+ ],
+ },
+ {
+ name: 'Tilgjengelighet',
+ url: 'god-praksis/tilgjengelighet',
+ children: [
+ {
+ name: 'Forstå synsnedsettelse',
+ url: 'god-praksis/tilgjengelighet/forsta-synsnedsettelse',
+ },
+ {
+ name: 'Kontrast',
+ url: 'god-praksis/tilgjengelighet/kontrast',
+ },
+ ],
+ },
+ {
+ name: 'Innhold',
+ url: 'god-praksis/innholdsarbeid',
+ children: [
+ {
+ name: 'Skriveråd',
+ url: 'god-praksis/innholdsarbeid/skriverad',
+ },
+ {
+ name: 'Skumlesing',
+ url: 'god-praksis/innholdsarbeid/skumlesing',
+ },
+ ],
+ },
+ ],
+ },
+ {
+ name: 'Mønstre',
+ url: 'monstre',
+ children: [
+ {
+ name: 'Ferdig',
+ url: 'monstre/brukeroppgaver',
+ children: [
+ {
+ name: 'Obligatoriske felt *',
+ url: 'monstre/obligatoriske-og-valgfrie-felt',
+ },
+ {
+ name: 'Feilmeldinger *',
+ url: 'monstre/feilmeldinger',
+ },
+ ],
+ },
+ {
+ name: 'Kommende',
+ url: 'monstre/skjema',
+ children: [
+ {
+ name: 'Systemvarsler *',
+ url: 'monstre/systemvarsler',
+ },
+ {
+ name: 'Dato',
+ url: 'monstre/dato',
+ },
+ {
+ name: 'Innlogging',
+ url: 'monstre/innlogging',
+ },
+ {
+ name: 'Navigering',
+ url: 'monstre/navigering',
+ },
+ {
+ name: 'Ofte brukte handlinger',
+ url: 'monstre/handlinger',
+ },
+ ],
+ },
+ ],
+ },
+ ],
+};
diff --git a/apps/storefront/tokens/altinn.ts b/apps/storefront/tokens/altinn.ts
deleted file mode 100644
index 266e830744..0000000000
--- a/apps/storefront/tokens/altinn.ts
+++ /dev/null
@@ -1,4993 +0,0 @@
-/**
- * Do not edit directly
- * These files are generated from design tokens defined in Figma using Token Studio
- */
-
-export const color = [
- {
- value: "#E6EFF8",
- type: "color",
- description: "AAA 12.8 on grey 800\nAA 6.4 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#E6EFF8",
- type: "color",
- description: "AAA 12.8 on grey 800\nAA 6.4 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt1-100",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "100"
- ]
- },
- {
- value: "#B3D0EA",
- type: "color",
- description: "Light error color\nAAA 11.4 on grey 800\nAA 5.7 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#B3D0EA",
- type: "color",
- description: "Light error color\nAAA 11.4 on grey 800\nAA 5.7 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt1-200",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "200"
- ]
- },
- {
- value: "#80B1DD",
- type: "color",
- description: "AAA 9 on grey 800\nAA 4.5 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#80B1DD",
- type: "color",
- description: "AAA 9 on grey 800\nAA 4.5 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt1-300",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "300"
- ]
- },
- {
- value: "#66A1D6",
- type: "color",
- description: "AAA 7.1 on grey 800\nAA18 3.5 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#66A1D6",
- type: "color",
- description: "AAA 7.1 on grey 800\nAA18 3.5 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt1-400",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "400"
- ]
- },
- {
- value: "#3381C8",
- type: "color",
- description: "AA 5.6 on grey 800",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#3381C8",
- type: "color",
- description: "AA 5.6 on grey 800"
- },
- name: "--fds-brand-alt1-500",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "500"
- ]
- },
- {
- value: "#1A72C1",
- type: "color",
- description: "AA 4.5 on grey 800",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#1A72C1",
- type: "color",
- description: "AA 4.5 on grey 800"
- },
- name: "--fds-brand-alt1-600",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "600"
- ]
- },
- {
- value: "#0062BA",
- type: "color",
- description: "AA18 3.7 on grey 800",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#0062BA",
- type: "color",
- description: "AA18 3.7 on grey 800"
- },
- name: "--fds-brand-alt1-700",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "700"
- ]
- },
- {
- value: "#004E95",
- type: "color",
- description: "AA 4.7 on white",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#004E95",
- type: "color",
- description: "AA 4.7 on white"
- },
- name: "--fds-brand-alt1-800",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "800"
- ]
- },
- {
- value: "#00315D",
- type: "color",
- description: "AA 4.7 on white",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#00315D",
- type: "color",
- description: "AA 4.7 on white"
- },
- name: "--fds-brand-alt1-900",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "900"
- ]
- },
- {
- value: "#DCD6EA",
- type: "color",
- description: "AAA 13.3 on grey 800\nAA 6.7 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#DCD6EA",
- type: "color",
- description: "AAA 13.3 on grey 800\nAA 6.7 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt2-100",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "100"
- ]
- },
- {
- value: "#C5BBDD",
- type: "color",
- description: "Light warning color\nAAA 12.3 on grey 800\nAA 1.1 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#C5BBDD",
- type: "color",
- description: "Light warning color\nAAA 12.3 on grey 800\nAA 1.1 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt2-200",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "200"
- ]
- },
- {
- value: "#A392C8",
- type: "color",
- description: "AAA 10 on grey 800\nAA 5.4 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#A392C8",
- type: "color",
- description: "AAA 10 on grey 800\nAA 5.4 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt2-300",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "300"
- ]
- },
- {
- value: "#806AB4",
- type: "color",
- description: "AAA 9.2 on grey 800\nAA 4.6 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#806AB4",
- type: "color",
- description: "AAA 9.2 on grey 800\nAA 4.6 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt2-400",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "400"
- ]
- },
- {
- value: "#6A52A3",
- type: "color",
- description: "AAA 7.9 on grey 800\nAA18 4 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#6A52A3",
- type: "color",
- description: "AAA 7.9 on grey 800\nAA18 4 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt2-500",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "500"
- ]
- },
- {
- value: "#594488",
- type: "color",
- description: "AA 6.8 on grey 800\nAA18 3.4 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#594488",
- type: "color",
- description: "AA 6.8 on grey 800\nAA18 3.4 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt2-600",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "600"
- ]
- },
- {
- value: "#3F3161",
- type: "color",
- description: "AA 5.5 on grey 800",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#3F3161",
- type: "color",
- description: "AA 5.5 on grey 800"
- },
- name: "--fds-brand-alt2-700",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "700"
- ]
- },
- {
- value: "#352951",
- type: "color",
- description: "AA18 4.4 on grey 800\nAA18 3.2 on white",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#352951",
- type: "color",
- description: "AA18 4.4 on grey 800\nAA18 3.2 on white"
- },
- name: "--fds-brand-alt2-800",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "800"
- ]
- },
- {
- value: "#231B36",
- type: "color",
- description: "AA18 4.4 on grey 800\nAA18 3.2 on white",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#231B36",
- type: "color",
- description: "AA18 4.4 on grey 800\nAA18 3.2 on white"
- },
- name: "--fds-brand-alt2-900",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "900"
- ]
- },
- {
- value: "#F9D5DB",
- type: "color",
- description: "AAA 12.9 on grey 800\nAA 6.5 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#F9D5DB",
- type: "color",
- description: "AAA 12.9 on grey 800\nAA 6.5 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt3-100",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "100"
- ]
- },
- {
- value: "#F3ABB6",
- type: "color",
- description: "Light information color \nAAA 11.5 on grey 800\nAA 5.8 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#F3ABB6",
- type: "color",
- description: "Light information color \nAAA 11.5 on grey 800\nAA 5.8 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt3-200",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "200"
- ]
- },
- {
- value: "#EC8292",
- type: "color",
- description: "AAA 9.2 on grey 800\nAA 4.6 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#EC8292",
- type: "color",
- description: "AAA 9.2 on grey 800\nAA 4.6 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt3-300",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "300"
- ]
- },
- {
- value: "#E6586D",
- type: "color",
- description: "AAA 7.3 on grey 800\nAA18 3.7 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#E6586D",
- type: "color",
- description: "AAA 7.3 on grey 800\nAA18 3.7 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt3-400",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "400"
- ]
- },
- {
- value: "#E02E49",
- type: "color",
- description: "AA 5.8 on grey 800",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#E02E49",
- type: "color",
- description: "AA 5.8 on grey 800"
- },
- name: "--fds-brand-alt3-500",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "500"
- ]
- },
- {
- value: "#B3253A",
- type: "color",
- description: "AA 4.6 on grey 800",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#B3253A",
- type: "color",
- description: "AA 4.6 on grey 800"
- },
- name: "--fds-brand-alt3-600",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "600"
- ]
- },
- {
- value: "#861C2C",
- type: "color",
- description: "AA18 3.8 on grey 800",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#861C2C",
- type: "color",
- description: "AA18 3.8 on grey 800"
- },
- name: "--fds-brand-alt3-700",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "700"
- ]
- },
- {
- value: "#5A121D",
- type: "color",
- description: "AA 5.6 on white",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#5A121D",
- type: "color",
- description: "AA 5.6 on white"
- },
- name: "--fds-brand-alt3-800",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "800"
- ]
- },
- {
- value: "#480e17",
- type: "color",
- description: "AA 5.6 on white",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#480e17",
- type: "color",
- description: "AA 5.6 on white"
- },
- name: "--fds-brand-alt3-900",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "900"
- ]
- },
- {
- value: "#B3D0EA",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt1.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-first-light",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "first",
- "light"
- ]
- },
- {
- value: "#80B1DD",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt1.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-first-light-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "first",
- "light-hover"
- ]
- },
- {
- value: "#66A1D6",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt1.400}",
- type: "color"
- },
- name: "--fds-semantic-surface-first-light-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "first",
- "light-active"
- ]
- },
- {
- value: "#004E95",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt1.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-first-dark",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "first",
- "dark"
- ]
- },
- {
- value: "#C5BBDD",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt2.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-second-light",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "second",
- "light"
- ]
- },
- {
- value: "#A392C8",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt2.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-second-light-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "second",
- "light-hover"
- ]
- },
- {
- value: "#806AB4",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt2.400}",
- type: "color"
- },
- name: "--fds-semantic-surface-second-light-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "second",
- "light-active"
- ]
- },
- {
- value: "#231B36",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt2.900}",
- type: "color"
- },
- name: "--fds-semantic-surface-second-dark",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "second",
- "dark"
- ]
- },
- {
- value: "#F3ABB6",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt3.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-third-light",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "third",
- "light"
- ]
- },
- {
- value: "#EC8292",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt3.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-third-light-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "third",
- "light-hover"
- ]
- },
- {
- value: "#E6586D",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt3.400}",
- type: "color"
- },
- name: "--fds-semantic-surface-third-light-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "third",
- "light-active"
- ]
- },
- {
- value: "#5A121D",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt3.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-third-dark",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "third",
- "dark"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "subtle"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "subtle-hover"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "default"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- description: "Standard farge for handlinger",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color",
- description: "Standard farge for handlinger"
- },
- name: "--fds-semantic-surface-action-first-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "no_fill"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "no_fill-hover"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "no_fill-active"
- ]
- },
- {
- value: "#f4f5f6",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.grey.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "subtle"
- ]
- },
- {
- value: "#e9eaec",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.grey.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "subtle-hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "default"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.9)",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.9)",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "hover"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.8)",
- type: "color",
- description: "Standard farge for handlinger",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.8)",
- type: "color",
- description: "Standard farge for handlinger"
- },
- name: "--fds-semantic-surface-action-second-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "no_fill"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.1)",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.1)",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "no_fill-hover"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.2)",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.2)",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "no_fill-active"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "subtle"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "subtle-hover"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "default"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- description: "Standard farge for handlinger",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color",
- description: "Standard farge for handlinger"
- },
- name: "--fds-semantic-surface-action-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "no_fill"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "no_fill-hover"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "no_fill-active"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-checked",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "checked"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "default"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-selected",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "selected"
- ]
- },
- {
- value: "#f4f5f6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "subtle"
- ]
- },
- {
- value: "#e9eaec",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "subtle-hover"
- ]
- },
- {
- value: "#68707c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.600}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-dark",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "dark"
- ]
- },
- {
- value: "#4b5563",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-dark-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "dark-hover"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-inverted",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "inverted"
- ]
- },
- {
- value: "#d1f4e1",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "subtle"
- ]
- },
- {
- value: "#8be4b5",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "subtle-hover"
- ]
- },
- {
- value: "#118849",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "default"
- ]
- },
- {
- value: "#0c6536",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "hover"
- ]
- },
- {
- value: "#084826",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.900}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "no_fill"
- ]
- },
- {
- value: "#d1f4e1",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "no_fill-hover"
- ]
- },
- {
- value: "#8be4b5",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "no_fill-active"
- ]
- },
- {
- value: "#fffbe6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-warning-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "warning",
- "subtle"
- ]
- },
- {
- value: "#fff4b4",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-warning-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "warning",
- "subtle-hover"
- ]
- },
- {
- value: "#fff4b4",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-warning-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "warning",
- "default"
- ]
- },
- {
- value: "#ffed83",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-warning-default-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "warning",
- "default-hover"
- ]
- },
- {
- value: "#f9d5db",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "subtle"
- ]
- },
- {
- value: "#f3abb6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "subtle-hover"
- ]
- },
- {
- value: "#e02e49",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.500}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "default"
- ]
- },
- {
- value: "#b3253a",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.600}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "hover"
- ]
- },
- {
- value: "#861c2c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "no_fill"
- ]
- },
- {
- value: "#f9d5db",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "no_fill-hover"
- ]
- },
- {
- value: "#f3abb6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "no_fill-active"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-info-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "info",
- "subtle"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-info-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "info",
- "subtle-hover"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "default"
- ]
- },
- {
- value: "#ffffffe6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffffe6",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "hover"
- ]
- },
- {
- value: "#ffffffcc",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffffcc",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "active"
- ]
- },
- {
- value: "#ffffff00",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffff00",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "no_fill"
- ]
- },
- {
- value: "#ffffff1a",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffff1a",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "no_fill-hover"
- ]
- },
- {
- value: "#ffffff33",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffff33",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "no_fill-active"
- ]
- },
- {
- value: "#ffda06",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.500}",
- type: "color"
- },
- name: "--fds-semantic-surface-focus-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "focus",
- "default"
- ]
- },
- {
- value: "#1A72C1",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt1.600}",
- type: "color"
- },
- name: "--fds-semantic-border-first-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "first",
- "default"
- ]
- },
- {
- value: "#0062BA",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt1.700}",
- type: "color"
- },
- name: "--fds-semantic-border-first-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "first",
- "hover"
- ]
- },
- {
- value: "#004E95",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt1.800}",
- type: "color"
- },
- name: "--fds-semantic-border-first-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "first",
- "active"
- ]
- },
- {
- value: "#594488",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt2.600}",
- type: "color"
- },
- name: "--fds-semantic-border-second-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "second",
- "default"
- ]
- },
- {
- value: "#3F3161",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt2.700}",
- type: "color"
- },
- name: "--fds-semantic-border-second-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "second",
- "hover"
- ]
- },
- {
- value: "#352951",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt2.800}",
- type: "color"
- },
- name: "--fds-semantic-border-second-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "second",
- "active"
- ]
- },
- {
- value: "#B3253A",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt3.600}",
- type: "color"
- },
- name: "--fds-semantic-border-third-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "third",
- "default"
- ]
- },
- {
- value: "#861C2C",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt3.700}",
- type: "color"
- },
- name: "--fds-semantic-border-third-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "third",
- "hover"
- ]
- },
- {
- value: "#5A121D",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{brand.alt3.800}",
- type: "color"
- },
- name: "--fds-semantic-border-third-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "third",
- "active"
- ]
- },
- {
- value: "#e9eaec",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.grey.200}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "subtle"
- ]
- },
- {
- value: "#d2d5d8",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.grey.300}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "subtle-hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "default"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "active"
- ]
- },
- {
- value: "#e9eaec",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.grey.200}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "subtle"
- ]
- },
- {
- value: "#d2d5d8",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.grey.300}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "subtle-hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "default"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "active"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-border-action-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "subtle"
- ]
- },
- {
- value: "#66a1d6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.400}",
- type: "color"
- },
- name: "--fds-semantic-border-action-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "subtle-hover"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-action-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "default"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-action-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "active"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-dark",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "dark"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-action-dark-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "dark-hover"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-border-info-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "info",
- "default"
- ]
- },
- {
- value: "#68707c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.600}",
- type: "color"
- },
- name: "--fds-semantic-border-neutral-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "neutral",
- "default"
- ]
- },
- {
- value: "#d2d5d8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.300}",
- type: "color"
- },
- name: "--fds-semantic-border-neutral-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "neutral",
- "subtle"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-border-neutral-strong",
- attributes: {},
- path: [
- "semantic",
- "border",
- "neutral",
- "strong"
- ]
- },
- {
- value: "#118849",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.700}",
- type: "color"
- },
- name: "--fds-semantic-border-success-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "success",
- "default"
- ]
- },
- {
- value: "#0c6536",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.800}",
- type: "color"
- },
- name: "--fds-semantic-border-success-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "success",
- "hover"
- ]
- },
- {
- value: "#084826",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.900}",
- type: "color"
- },
- name: "--fds-semantic-border-success-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "success",
- "active"
- ]
- },
- {
- value: "#cc7005",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.600}",
- type: "color"
- },
- name: "--fds-semantic-border-warning-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "warning",
- "default"
- ]
- },
- {
- value: "#995404",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.700}",
- type: "color"
- },
- name: "--fds-semantic-border-warning-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "warning",
- "hover"
- ]
- },
- {
- value: "#663802",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.800}",
- type: "color"
- },
- name: "--fds-semantic-border-warning-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "warning",
- "active"
- ]
- },
- {
- value: "#e02e49",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.500}",
- type: "color"
- },
- name: "--fds-semantic-border-danger-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "danger",
- "default"
- ]
- },
- {
- value: "#b3253a",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.600}",
- type: "color"
- },
- name: "--fds-semantic-border-danger-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "danger",
- "hover"
- ]
- },
- {
- value: "#861c2c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.700}",
- type: "color"
- },
- name: "--fds-semantic-border-danger-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "danger",
- "active"
- ]
- },
- {
- value: "#ffda06",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.500}",
- type: "color"
- },
- name: "--fds-semantic-border-focus-outline",
- attributes: {},
- path: [
- "semantic",
- "border",
- "focus",
- "outline"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{semantic.border.neutral.strong}",
- type: "color"
- },
- name: "--fds-semantic-border-focus-boxshadow",
- attributes: {},
- path: [
- "semantic",
- "border",
- "focus",
- "boxshadow"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-border-on_inverted-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "on_inverted",
- "default"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-input-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "input",
- "default"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-input-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "input",
- "hover"
- ]
- },
- {
- value: "#bcbfc5",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.400}",
- type: "color"
- },
- name: "--fds-semantic-border-divider-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "divider",
- "default"
- ]
- },
- {
- value: "#d2d5d8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.300}",
- type: "color"
- },
- name: "--fds-semantic-border-divider-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "divider",
- "subtle"
- ]
- },
- {
- value: "#68707c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.600}",
- type: "color"
- },
- name: "--fds-semantic-border-divider-strong",
- attributes: {},
- path: [
- "semantic",
- "border",
- "divider",
- "strong"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-text-action-first-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "first",
- "default"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#004e95",
- type: "color"
- },
- name: "--fds-semantic-text-action-first-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "first",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "#00315d",
- type: "color"
- },
- name: "--fds-semantic-text-action-first-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "first",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-action-first-on_action",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "first",
- "on_action"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-second-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "second",
- "default"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-second-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "second",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-second-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "second",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Brand/Altinn.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-action-second-on_action",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "second",
- "on_action"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-text-action-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "default"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-text-action-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-action-on_action",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "on_action"
- ]
- },
- {
- value: "#0c6536",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.800}",
- type: "color"
- },
- name: "--fds-semantic-text-success-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "default"
- ]
- },
- {
- value: "#084826",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.900}",
- type: "color"
- },
- name: "--fds-semantic-text-success-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "hover"
- ]
- },
- {
- value: "#084826",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.900}",
- type: "color"
- },
- name: "--fds-semantic-text-success-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-success-on_success",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "on_success"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-text-success-on_success_subtle",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "on_success_subtle"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-text-neutral-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "neutral",
- "default"
- ]
- },
- {
- value: "#4b5563",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.700}",
- type: "color"
- },
- name: "--fds-semantic-text-neutral-subtle",
- attributes: {},
- path: [
- "semantic",
- "text",
- "neutral",
- "subtle"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-neutral-on_inverted",
- attributes: {},
- path: [
- "semantic",
- "text",
- "neutral",
- "on_inverted"
- ]
- },
- {
- value: "#995404",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.700}",
- type: "color"
- },
- name: "--fds-semantic-text-warning-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "warning",
- "default"
- ]
- },
- {
- value: "#cc7005",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.600}",
- type: "color"
- },
- name: "--fds-semantic-text-warning-icon_warning",
- attributes: {},
- path: [
- "semantic",
- "text",
- "warning",
- "icon_warning"
- ]
- },
- {
- value: "#663802",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.800}",
- type: "color"
- },
- name: "--fds-semantic-text-warning-on_warning",
- attributes: {},
- path: [
- "semantic",
- "text",
- "warning",
- "on_warning"
- ]
- },
- {
- value: "#b3253a",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.600}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "default"
- ]
- },
- {
- value: "#861c2c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.700}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "hover"
- ]
- },
- {
- value: "#5a121d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.800}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-on_danger",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "on_danger"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-on_danger_subtle",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "on_danger_subtle"
- ]
- },
- {
- value: "#7a1265",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.purple.700}",
- type: "color"
- },
- name: "--fds-semantic-text-visited-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "visited",
- "default"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-background-default",
- attributes: {},
- path: [
- "semantic",
- "background",
- "default"
- ]
- },
- {
- value: "#f4f5f6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.100}",
- type: "color"
- },
- name: "--fds-semantic-background-subtle",
- attributes: {},
- path: [
- "semantic",
- "background",
- "subtle"
- ]
- }
-]
-
-export const typography = [
- {
- value: "500 3.75rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f7}"
- },
- type: "typography"
- },
- name: "--fds-typography-heading-2xlarge",
- attributes: {},
- path: [
- "typography",
- "heading",
- "2xlarge"
- ]
- },
- {
- value: "500 3rem/1.3 'Inter'",
- type: "typography",
- description: "H1",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f6}"
- },
- type: "typography",
- description: "H1"
- },
- name: "--fds-typography-heading-xlarge",
- attributes: {},
- path: [
- "typography",
- "heading",
- "xlarge"
- ]
- },
- {
- value: "500 2.25rem/1.3 'Inter'",
- type: "typography",
- description: "H2",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f5}"
- },
- type: "typography",
- description: "H2"
- },
- name: "--fds-typography-heading-large",
- attributes: {},
- path: [
- "typography",
- "heading",
- "large"
- ]
- },
- {
- value: "500 1.875rem/1.3 'Inter'",
- type: "typography",
- description: "H3",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f4}"
- },
- type: "typography",
- description: "H3"
- },
- name: "--fds-typography-heading-medium",
- attributes: {},
- path: [
- "typography",
- "heading",
- "medium"
- ]
- },
- {
- value: "500 1.5rem/1.3 'Inter'",
- type: "typography",
- description: "H4",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f3}"
- },
- type: "typography",
- description: "H4"
- },
- name: "--fds-typography-heading-small",
- attributes: {},
- path: [
- "typography",
- "heading",
- "small"
- ]
- },
- {
- value: "500 1.3125rem/1.3 'Inter'",
- type: "typography",
- description: "H5",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f2}"
- },
- type: "typography",
- description: "H5"
- },
- name: "--fds-typography-heading-xsmall",
- attributes: {},
- path: [
- "typography",
- "heading",
- "xsmall"
- ]
- },
- {
- value: "500 1.125rem/1.3 'Inter'",
- type: "typography",
- description: "H6",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f1}"
- },
- type: "typography",
- description: "H6"
- },
- name: "--fds-typography-heading-xxsmall",
- attributes: {},
- path: [
- "typography",
- "heading",
- "xxsmall"
- ]
- },
- {
- value: "400 1.875rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f4}"
- },
- type: "typography"
- },
- name: "--fds-typography-ingress-large",
- attributes: {},
- path: [
- "typography",
- "ingress",
- "large"
- ]
- },
- {
- value: "400 1.5rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f3}"
- },
- type: "typography"
- },
- name: "--fds-typography-ingress-medium",
- attributes: {},
- path: [
- "typography",
- "ingress",
- "medium"
- ]
- },
- {
- value: "400 1.3125rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-ingress-small",
- attributes: {},
- path: [
- "typography",
- "ingress",
- "small"
- ]
- },
- {
- value: "400 1.125rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-ingress-xsmall",
- attributes: {},
- path: [
- "typography",
- "ingress",
- "xsmall"
- ]
- },
- {
- value: "400 1.3125rem/1.5 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.500}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-large",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "large"
- ]
- },
- {
- value: "400 1.125rem/1.5 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.500}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-medium",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "medium"
- ]
- },
- {
- value: "400 1rem/1.5 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.500}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-small",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "small"
- ]
- },
- {
- value: "400 0.875rem/1.5 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.500}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-xsmall",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "xsmall"
- ]
- },
- {
- value: "400 1.3125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-short-large",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "short",
- "large"
- ]
- },
- {
- value: "400 1.125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-short-medium",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "short",
- "medium"
- ]
- },
- {
- value: "400 1rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-short-small",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "short",
- "small"
- ]
- },
- {
- value: "400 0.875rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-short-xsmall",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "short",
- "xsmall"
- ]
- },
- {
- value: "400 1.125rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-long-large",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "long",
- "large"
- ]
- },
- {
- value: "400 1rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-long-medium",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "long",
- "medium"
- ]
- },
- {
- value: "400 0.875rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-long-small",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "long",
- "small"
- ]
- },
- {
- value: "400 0.8125rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f-2}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-long-xsmall",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "long",
- "xsmall"
- ]
- },
- {
- value: "500 1.3125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-label-large",
- attributes: {},
- path: [
- "typography",
- "label",
- "large"
- ]
- },
- {
- value: "500 1.125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-label-medium",
- attributes: {},
- path: [
- "typography",
- "label",
- "medium"
- ]
- },
- {
- value: "500 1rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-label-small",
- attributes: {},
- path: [
- "typography",
- "label",
- "small"
- ]
- },
- {
- value: "500 0.875rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-label-xsmall",
- attributes: {},
- path: [
- "typography",
- "label",
- "xsmall"
- ]
- },
- {
- value: "400 1.3125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-error_message-large",
- attributes: {},
- path: [
- "typography",
- "error_message",
- "large"
- ]
- },
- {
- value: "400 1.125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-error_message-medium",
- attributes: {},
- path: [
- "typography",
- "error_message",
- "medium"
- ]
- },
- {
- value: "400 1rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-error_message-small",
- attributes: {},
- path: [
- "typography",
- "error_message",
- "small"
- ]
- },
- {
- value: "400 0.875rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-error_message-xsmall",
- attributes: {},
- path: [
- "typography",
- "error_message",
- "xsmall"
- ]
- },
- {
- value: "400 1.5rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-static.large}"
- },
- type: "typography"
- },
- name: "--fds-typography-interactive-large",
- attributes: {},
- path: [
- "typography",
- "interactive",
- "large"
- ]
- },
- {
- value: "400 1.125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-static.medium}"
- },
- type: "typography"
- },
- name: "--fds-typography-interactive-medium",
- attributes: {},
- path: [
- "typography",
- "interactive",
- "medium"
- ]
- },
- {
- value: "400 1rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-static.small}"
- },
- type: "typography"
- },
- name: "--fds-typography-interactive-small",
- attributes: {},
- path: [
- "typography",
- "interactive",
- "small"
- ]
- }
-]
-
-export const opacity = [
- {
- value: "30%",
- type: "opacity",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "30%",
- type: "opacity"
- },
- name: "--fds-opacity-disabled",
- attributes: {},
- path: [
- "opacity",
- "disabled"
- ]
- }
-]
-
-export const borderRadius = [
- {
- value: "4px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{border_radius.medium}",
- type: "borderRadius"
- },
- name: "--fds-border_radius-interactive",
- attributes: {},
- path: [
- "border_radius",
- "interactive"
- ]
- },
- {
- value: "2px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "2px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-small",
- attributes: {},
- path: [
- "border_radius",
- "small"
- ]
- },
- {
- value: "4px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "4px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-medium",
- attributes: {},
- path: [
- "border_radius",
- "medium"
- ]
- },
- {
- value: "8px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "8px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-large",
- attributes: {},
- path: [
- "border_radius",
- "large"
- ]
- },
- {
- value: "12px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "12px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-xlarge",
- attributes: {},
- path: [
- "border_radius",
- "xlarge"
- ]
- },
- {
- value: "16px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "16px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-xxlarge",
- attributes: {},
- path: [
- "border_radius",
- "xxlarge"
- ]
- },
- {
- value: "24px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "24px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-xxxlarge",
- attributes: {},
- path: [
- "border_radius",
- "xxxlarge"
- ]
- },
- {
- value: "32px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "32px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-xxxxlarge",
- attributes: {},
- path: [
- "border_radius",
- "xxxxlarge"
- ]
- },
- {
- value: "9999px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "9999px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-full",
- attributes: {},
- path: [
- "border_radius",
- "full"
- ]
- }
-]
-
-export const spacing = [
- {
- value: "0rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*0",
- type: "spacing"
- },
- name: "--fds-spacing-0",
- attributes: {},
- path: [
- "spacing",
- "0"
- ]
- },
- {
- value: "0.25rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*1",
- type: "spacing"
- },
- name: "--fds-spacing-1",
- attributes: {},
- path: [
- "spacing",
- "1"
- ]
- },
- {
- value: "0.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*2",
- type: "spacing"
- },
- name: "--fds-spacing-2",
- attributes: {},
- path: [
- "spacing",
- "2"
- ]
- },
- {
- value: "0.75rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*3",
- type: "spacing"
- },
- name: "--fds-spacing-3",
- attributes: {},
- path: [
- "spacing",
- "3"
- ]
- },
- {
- value: "1rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*4",
- type: "spacing"
- },
- name: "--fds-spacing-4",
- attributes: {},
- path: [
- "spacing",
- "4"
- ]
- },
- {
- value: "1.25rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*5",
- type: "spacing"
- },
- name: "--fds-spacing-5",
- attributes: {},
- path: [
- "spacing",
- "5"
- ]
- },
- {
- value: "1.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*6",
- type: "spacing"
- },
- name: "--fds-spacing-6",
- attributes: {},
- path: [
- "spacing",
- "6"
- ]
- },
- {
- value: "1.75rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*7",
- type: "spacing"
- },
- name: "--fds-spacing-7",
- attributes: {},
- path: [
- "spacing",
- "7"
- ]
- },
- {
- value: "2rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*8",
- type: "spacing"
- },
- name: "--fds-spacing-8",
- attributes: {},
- path: [
- "spacing",
- "8"
- ]
- },
- {
- value: "2.25rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*9",
- type: "spacing"
- },
- name: "--fds-spacing-9",
- attributes: {},
- path: [
- "spacing",
- "9"
- ]
- },
- {
- value: "2.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*10",
- type: "spacing"
- },
- name: "--fds-spacing-10",
- attributes: {},
- path: [
- "spacing",
- "10"
- ]
- },
- {
- value: "2.75rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*11",
- type: "spacing"
- },
- name: "--fds-spacing-11",
- attributes: {},
- path: [
- "spacing",
- "11"
- ]
- },
- {
- value: "3rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*12",
- type: "spacing"
- },
- name: "--fds-spacing-12",
- attributes: {},
- path: [
- "spacing",
- "12"
- ]
- },
- {
- value: "3.25rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*13",
- type: "spacing"
- },
- name: "--fds-spacing-13",
- attributes: {},
- path: [
- "spacing",
- "13"
- ]
- },
- {
- value: "3.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*14",
- type: "spacing"
- },
- name: "--fds-spacing-14",
- attributes: {},
- path: [
- "spacing",
- "14"
- ]
- },
- {
- value: "3.75rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*15",
- type: "spacing"
- },
- name: "--fds-spacing-15",
- attributes: {},
- path: [
- "spacing",
- "15"
- ]
- },
- {
- value: "4.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*18",
- type: "spacing"
- },
- name: "--fds-spacing-18",
- attributes: {},
- path: [
- "spacing",
- "18"
- ]
- },
- {
- value: "5.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*22",
- type: "spacing"
- },
- name: "--fds-spacing-22",
- attributes: {},
- path: [
- "spacing",
- "22"
- ]
- },
- {
- value: "6.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*26",
- type: "spacing"
- },
- name: "--fds-spacing-26",
- attributes: {},
- path: [
- "spacing",
- "26"
- ]
- },
- {
- value: "7.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*30",
- type: "spacing"
- },
- name: "--fds-spacing-30",
- attributes: {},
- path: [
- "spacing",
- "30"
- ]
- }
-]
-
-export const sizing = [
- {
- value: "0rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*0",
- type: "sizing"
- },
- name: "--fds-sizing-0",
- attributes: {},
- path: [
- "sizing",
- "0"
- ]
- },
- {
- value: "0.25rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*1",
- type: "sizing"
- },
- name: "--fds-sizing-1",
- attributes: {},
- path: [
- "sizing",
- "1"
- ]
- },
- {
- value: "0.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*2",
- type: "sizing"
- },
- name: "--fds-sizing-2",
- attributes: {},
- path: [
- "sizing",
- "2"
- ]
- },
- {
- value: "0.75rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*3",
- type: "sizing"
- },
- name: "--fds-sizing-3",
- attributes: {},
- path: [
- "sizing",
- "3"
- ]
- },
- {
- value: "1rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*4",
- type: "sizing"
- },
- name: "--fds-sizing-4",
- attributes: {},
- path: [
- "sizing",
- "4"
- ]
- },
- {
- value: "1.25rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*5",
- type: "sizing"
- },
- name: "--fds-sizing-5",
- attributes: {},
- path: [
- "sizing",
- "5"
- ]
- },
- {
- value: "1.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*6",
- type: "sizing"
- },
- name: "--fds-sizing-6",
- attributes: {},
- path: [
- "sizing",
- "6"
- ]
- },
- {
- value: "1.75rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*7",
- type: "sizing"
- },
- name: "--fds-sizing-7",
- attributes: {},
- path: [
- "sizing",
- "7"
- ]
- },
- {
- value: "2rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*8",
- type: "sizing"
- },
- name: "--fds-sizing-8",
- attributes: {},
- path: [
- "sizing",
- "8"
- ]
- },
- {
- value: "2.25rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*9",
- type: "sizing"
- },
- name: "--fds-sizing-9",
- attributes: {},
- path: [
- "sizing",
- "9"
- ]
- },
- {
- value: "2.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*10",
- type: "sizing"
- },
- name: "--fds-sizing-10",
- attributes: {},
- path: [
- "sizing",
- "10"
- ]
- },
- {
- value: "2.75rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*11",
- type: "sizing"
- },
- name: "--fds-sizing-11",
- attributes: {},
- path: [
- "sizing",
- "11"
- ]
- },
- {
- value: "3rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*12",
- type: "sizing"
- },
- name: "--fds-sizing-12",
- attributes: {},
- path: [
- "sizing",
- "12"
- ]
- },
- {
- value: "3.25rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*13",
- type: "sizing"
- },
- name: "--fds-sizing-13",
- attributes: {},
- path: [
- "sizing",
- "13"
- ]
- },
- {
- value: "3.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*14",
- type: "sizing"
- },
- name: "--fds-sizing-14",
- attributes: {},
- path: [
- "sizing",
- "14"
- ]
- },
- {
- value: "3.75rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*15",
- type: "sizing"
- },
- name: "--fds-sizing-15",
- attributes: {},
- path: [
- "sizing",
- "15"
- ]
- },
- {
- value: "4.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*18",
- type: "sizing"
- },
- name: "--fds-sizing-18",
- attributes: {},
- path: [
- "sizing",
- "18"
- ]
- },
- {
- value: "5.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*22",
- type: "sizing"
- },
- name: "--fds-sizing-22",
- attributes: {},
- path: [
- "sizing",
- "22"
- ]
- },
- {
- value: "6.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*26",
- type: "sizing"
- },
- name: "--fds-sizing-26",
- attributes: {},
- path: [
- "sizing",
- "26"
- ]
- },
- {
- value: "7.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*30",
- type: "sizing"
- },
- name: "--fds-sizing-30",
- attributes: {},
- path: [
- "sizing",
- "30"
- ]
- }
-]
-
-export const borderWidth = [
- {
- value: "1px",
- type: "borderWidth",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{border_width.1}",
- type: "borderWidth"
- },
- name: "--fds-border_width-default",
- attributes: {},
- path: [
- "border_width",
- "default"
- ]
- },
- {
- value: "2px",
- type: "borderWidth",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{border_width.2}",
- type: "borderWidth"
- },
- name: "--fds-border_width-active",
- attributes: {},
- path: [
- "border_width",
- "active"
- ]
- },
- {
- value: "2px",
- type: "borderWidth",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "2px",
- type: "borderWidth"
- },
- name: "--fds-border_width-tab_focus",
- attributes: {},
- path: [
- "border_width",
- "tab_focus"
- ]
- }
-]
-
-export const boxShadow = [
- {
- value: "0 0 1px 0 rgba(0,0,0,0.16), 0 1px 2px 0 rgba(0,0,0,0.12)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.100}",
- type: "boxShadow"
- },
- name: "--fds-shadow-xsmall",
- attributes: {},
- path: [
- "shadow",
- "xsmall"
- ]
- },
- {
- value: "0 0 1px 0 rgba(0,0,0,0.15), 0 1px 2px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.1)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.200}",
- type: "boxShadow"
- },
- name: "--fds-shadow-small",
- attributes: {},
- path: [
- "shadow",
- "small"
- ]
- },
- {
- value: "0 0 1px 0 rgba(0,0,0,0.14), 0 2px 4px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.12)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.300}",
- type: "boxShadow"
- },
- name: "--fds-shadow-medium",
- attributes: {},
- path: [
- "shadow",
- "medium"
- ]
- },
- {
- value: "0 0 1px 0 rgba(0,0,0,0.13), 0 3px 5px 0 rgba(0,0,0,0.13), 0 6px 12px 0 rgba(0,0,0,0.14)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.400}",
- type: "boxShadow"
- },
- name: "--fds-shadow-large",
- attributes: {},
- path: [
- "shadow",
- "large"
- ]
- },
- {
- value: "0 0 1px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.16), 0 12px 24px 0 rgba(0,0,0,0.16)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.500}",
- type: "boxShadow"
- },
- name: "--fds-shadow-xlarge",
- attributes: {},
- path: [
- "shadow",
- "xlarge"
- ]
- }
-]
diff --git a/apps/storefront/tokens/altinn/dark.ts b/apps/storefront/tokens/altinn/dark.ts
new file mode 100644
index 0000000000..d42ec15456
--- /dev/null
+++ b/apps/storefront/tokens/altinn/dark.ts
@@ -0,0 +1,3811 @@
+/**
+ * These files are generated from design tokens defind using Token Studio
+ */
+
+export const color = [
+ {
+ $type: "color",
+ $value: "#001c36",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.1}"
+ },
+ name: "--ds-color-accent-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#002545",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.2}"
+ },
+ name: "--ds-color-accent-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#00315b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.3}"
+ },
+ name: "--ds-color-accent-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#013f75",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.4}"
+ },
+ name: "--ds-color-accent-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#014b8e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.5}"
+ },
+ name: "--ds-color-accent-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#01539b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.6}"
+ },
+ name: "--ds-color-accent-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1971c0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.7}"
+ },
+ name: "--ds-color-accent-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9bc2e4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.8}"
+ },
+ name: "--ds-color-accent-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#4b90ce",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.9}"
+ },
+ name: "--ds-color-accent-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#277ac4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.10}"
+ },
+ name: "--ds-color-accent-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0163ba",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.11}"
+ },
+ name: "--ds-color-accent-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#72a8d9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.12}"
+ },
+ name: "--ds-color-accent-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e3f3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.13}"
+ },
+ name: "--ds-color-accent-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.contrast-1}"
+ },
+ name: "--ds-color-accent-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0d1823",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.contrast-2}"
+ },
+ name: "--ds-color-accent-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#131c27",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.1}"
+ },
+ name: "--ds-color-neutral-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#192433",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.2}"
+ },
+ name: "--ds-color-neutral-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#243142",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.3}"
+ },
+ name: "--ds-color-neutral-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#333e4e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.4}"
+ },
+ name: "--ds-color-neutral-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#424d5b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.5}"
+ },
+ name: "--ds-color-neutral-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#495361",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.6}"
+ },
+ name: "--ds-color-neutral-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#67707c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.7}"
+ },
+ name: "--ds-color-neutral-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bbbfc4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.8}"
+ },
+ name: "--ds-color-neutral-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a6abb2",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.9}"
+ },
+ name: "--ds-color-neutral-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#90969e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.10}"
+ },
+ name: "--ds-color-neutral-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7a818c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.11}"
+ },
+ name: "--ds-color-neutral-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9ea3ab",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.12}"
+ },
+ name: "--ds-color-neutral-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e1e3e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.13}"
+ },
+ name: "--ds-color-neutral-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.contrast-1}"
+ },
+ name: "--ds-color-neutral-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1b1b1d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.contrast-2}"
+ },
+ name: "--ds-color-neutral-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#001c36",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.1}"
+ },
+ name: "--ds-color-brand1-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#002545",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.2}"
+ },
+ name: "--ds-color-brand1-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#00315b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.3}"
+ },
+ name: "--ds-color-brand1-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#013f75",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.4}"
+ },
+ name: "--ds-color-brand1-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#014b8e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.5}"
+ },
+ name: "--ds-color-brand1-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#01539b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.6}"
+ },
+ name: "--ds-color-brand1-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1971c0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.7}"
+ },
+ name: "--ds-color-brand1-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9bc2e4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.8}"
+ },
+ name: "--ds-color-brand1-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#4b90ce",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.9}"
+ },
+ name: "--ds-color-brand1-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#277ac4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.10}"
+ },
+ name: "--ds-color-brand1-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0163ba",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.11}"
+ },
+ name: "--ds-color-brand1-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#72a8d9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.12}"
+ },
+ name: "--ds-color-brand1-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e3f3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.13}"
+ },
+ name: "--ds-color-brand1-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.contrast-1}"
+ },
+ name: "--ds-color-brand1-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0d1823",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.contrast-2}"
+ },
+ name: "--ds-color-brand1-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1e182f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.1}"
+ },
+ name: "--ds-color-brand2-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#271f3c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.2}"
+ },
+ name: "--ds-color-brand2-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#352952",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.3}"
+ },
+ name: "--ds-color-brand2-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#433665",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.4}"
+ },
+ name: "--ds-color-brand2-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#514570",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.5}"
+ },
+ name: "--ds-color-brand2-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#584b75",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.6}"
+ },
+ name: "--ds-color-brand2-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#746a8d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.7}"
+ },
+ name: "--ds-color-brand2-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c0bccb",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.8}"
+ },
+ name: "--ds-color-brand2-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#aea8bc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.9}"
+ },
+ name: "--ds-color-brand2-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9992ab",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.10}"
+ },
+ name: "--ds-color-brand2-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#857d9b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.11}"
+ },
+ name: "--ds-color-brand2-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a6a0b6",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.12}"
+ },
+ name: "--ds-color-brand2-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e3e1e8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.13}"
+ },
+ name: "--ds-color-brand2-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.contrast-1}"
+ },
+ name: "--ds-color-brand2-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1c1b1f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.contrast-2}"
+ },
+ name: "--ds-color-brand2-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#370c12",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.1}"
+ },
+ name: "--ds-color-brand3-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#460f17",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.2}"
+ },
+ name: "--ds-color-brand3-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5f141f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.3}"
+ },
+ name: "--ds-color-brand3-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#761927",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.4}"
+ },
+ name: "--ds-color-brand3-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#901e30",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.5}"
+ },
+ name: "--ds-color-brand3-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9d2134",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.6}"
+ },
+ name: "--ds-color-brand3-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d32c46",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.7}"
+ },
+ name: "--ds-color-brand3-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f2abb6",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.8}"
+ },
+ name: "--ds-color-brand3-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e02f4a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.9}"
+ },
+ name: "--ds-color-brand3-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bc273e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.10}"
+ },
+ name: "--ds-color-brand3-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#982032",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.11}"
+ },
+ name: "--ds-color-brand3-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ed8494",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.12}"
+ },
+ name: "--ds-color-brand3-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f9dadf",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.13}"
+ },
+ name: "--ds-color-brand3-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.contrast-1}"
+ },
+ name: "--ds-color-brand3-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.contrast-2}"
+ },
+ name: "--ds-color-brand3-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#012106",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.1}"
+ },
+ name: "--ds-color-success-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#022b08",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.2}"
+ },
+ name: "--ds-color-success-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#03380a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.3}"
+ },
+ name: "--ds-color-success-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#03490d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.4}"
+ },
+ name: "--ds-color-success-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#045810",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.5}"
+ },
+ name: "--ds-color-success-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#045f11",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.6}"
+ },
+ name: "--ds-color-success-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#068217",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.7}"
+ },
+ name: "--ds-color-success-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#93cb9b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.8}"
+ },
+ name: "--ds-color-success-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#138d24",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.9}"
+ },
+ name: "--ds-color-success-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3da14b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.10}"
+ },
+ name: "--ds-color-success-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#65b570",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.11}"
+ },
+ name: "--ds-color-success-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#63b46f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.12}"
+ },
+ name: "--ds-color-success-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e9d4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.13}"
+ },
+ name: "--ds-color-success-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.contrast-1}"
+ },
+ name: "--ds-color-success-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#010501",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.contrast-2}"
+ },
+ name: "--ds-color-success-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3b0808",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.1}"
+ },
+ name: "--ds-color-danger-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#4b0a0a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.2}"
+ },
+ name: "--ds-color-danger-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#620e0e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.3}"
+ },
+ name: "--ds-color-danger-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7c1212",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.4}"
+ },
+ name: "--ds-color-danger-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#961515",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.5}"
+ },
+ name: "--ds-color-danger-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a31717",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.6}"
+ },
+ name: "--ds-color-danger-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c93c3c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.7}"
+ },
+ name: "--ds-color-danger-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e9b0b0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.8}"
+ },
+ name: "--ds-color-danger-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d76d6d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.9}"
+ },
+ name: "--ds-color-danger-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#df8b8b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.10}"
+ },
+ name: "--ds-color-danger-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e7a8a8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.11}"
+ },
+ name: "--ds-color-danger-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#df8d8d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.12}"
+ },
+ name: "--ds-color-danger-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f5dcdc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.13}"
+ },
+ name: "--ds-color-danger-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.contrast-1}"
+ },
+ name: "--ds-color-danger-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#261313",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.contrast-2}"
+ },
+ name: "--ds-color-danger-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#031d30",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.1}"
+ },
+ name: "--ds-color-info-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#032540",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.2}"
+ },
+ name: "--ds-color-info-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#043256",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.3}"
+ },
+ name: "--ds-color-info-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#063f6c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.4}"
+ },
+ name: "--ds-color-info-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#074d84",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.5}"
+ },
+ name: "--ds-color-info-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#075490",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.6}"
+ },
+ name: "--ds-color-info-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0c72c1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.7}"
+ },
+ name: "--ds-color-info-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#98c3e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.8}"
+ },
+ name: "--ds-color-info-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2c85c9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.9}"
+ },
+ name: "--ds-color-info-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#529bd2",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.10}"
+ },
+ name: "--ds-color-info-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#75afdc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.11}"
+ },
+ name: "--ds-color-info-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#6ba9d9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.12}"
+ },
+ name: "--ds-color-info-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d3e5f4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.13}"
+ },
+ name: "--ds-color-info-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.contrast-1}"
+ },
+ name: "--ds-color-info-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#040e15",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.contrast-2}"
+ },
+ name: "--ds-color-info-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#211b07",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.1}"
+ },
+ name: "--ds-color-warning-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2b2309",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.2}"
+ },
+ name: "--ds-color-warning-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#392f0d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.3}"
+ },
+ name: "--ds-color-warning-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#483c10",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.4}"
+ },
+ name: "--ds-color-warning-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#594a14",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.5}"
+ },
+ name: "--ds-color-warning-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#625116",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.6}"
+ },
+ name: "--ds-color-warning-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#836d1d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.7}"
+ },
+ name: "--ds-color-warning-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#dabc4c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.8}"
+ },
+ name: "--ds-color-warning-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bc622b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.9}"
+ },
+ name: "--ds-color-warning-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c87d4f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.10}"
+ },
+ name: "--ds-color-warning-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d39773",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.11}"
+ },
+ name: "--ds-color-warning-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d29671",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.12}"
+ },
+ name: "--ds-color-warning-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f1ded3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.13}"
+ },
+ name: "--ds-color-warning-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.contrast-1}"
+ },
+ name: "--ds-color-warning-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#090402",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.contrast-2}"
+ },
+ name: "--ds-color-warning-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#131c27",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.background-default}"
+ },
+ name: "--ds-color-focus-inner",
+ attributes: {},
+ path: [
+ "color",
+ "focus",
+ "inner"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e3f3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.text-default}"
+ },
+ name: "--ds-color-focus-outer",
+ attributes: {},
+ path: [
+ "color",
+ "focus",
+ "outer"
+ ]
+ }
+]
+
+export const dimension = [
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *1)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.1}"
+ },
+ name: "--ds-border-radius-sm",
+ attributes: {},
+ path: [
+ "border-radius",
+ "sm"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *2)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.2}"
+ },
+ name: "--ds-border-radius-md",
+ attributes: {},
+ path: [
+ "border-radius",
+ "md"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *5)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.3}"
+ },
+ name: "--ds-border-radius-lg",
+ attributes: {},
+ path: [
+ "border-radius",
+ "lg"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.4}"
+ },
+ name: "--ds-border-radius-default",
+ attributes: {},
+ path: [
+ "border-radius",
+ "default"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "624.9375rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.5}"
+ },
+ name: "--ds-border-radius-full",
+ attributes: {},
+ path: [
+ "border-radius",
+ "full"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*0"
+ },
+ name: "--ds-spacing-0",
+ attributes: {},
+ path: [
+ "spacing",
+ "0"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*1"
+ },
+ name: "--ds-spacing-1",
+ attributes: {},
+ path: [
+ "spacing",
+ "1"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*2"
+ },
+ name: "--ds-spacing-2",
+ attributes: {},
+ path: [
+ "spacing",
+ "2"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*3"
+ },
+ name: "--ds-spacing-3",
+ attributes: {},
+ path: [
+ "spacing",
+ "3"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*4"
+ },
+ name: "--ds-spacing-4",
+ attributes: {},
+ path: [
+ "spacing",
+ "4"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*5"
+ },
+ name: "--ds-spacing-5",
+ attributes: {},
+ path: [
+ "spacing",
+ "5"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*6"
+ },
+ name: "--ds-spacing-6",
+ attributes: {},
+ path: [
+ "spacing",
+ "6"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*7"
+ },
+ name: "--ds-spacing-7",
+ attributes: {},
+ path: [
+ "spacing",
+ "7"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*8"
+ },
+ name: "--ds-spacing-8",
+ attributes: {},
+ path: [
+ "spacing",
+ "8"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*9"
+ },
+ name: "--ds-spacing-9",
+ attributes: {},
+ path: [
+ "spacing",
+ "9"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*10"
+ },
+ name: "--ds-spacing-10",
+ attributes: {},
+ path: [
+ "spacing",
+ "10"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*11"
+ },
+ name: "--ds-spacing-11",
+ attributes: {},
+ path: [
+ "spacing",
+ "11"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*12"
+ },
+ name: "--ds-spacing-12",
+ attributes: {},
+ path: [
+ "spacing",
+ "12"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*13"
+ },
+ name: "--ds-spacing-13",
+ attributes: {},
+ path: [
+ "spacing",
+ "13"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*14"
+ },
+ name: "--ds-spacing-14",
+ attributes: {},
+ path: [
+ "spacing",
+ "14"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*15"
+ },
+ name: "--ds-spacing-15",
+ attributes: {},
+ path: [
+ "spacing",
+ "15"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "4.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*18"
+ },
+ name: "--ds-spacing-18",
+ attributes: {},
+ path: [
+ "spacing",
+ "18"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "5.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*22"
+ },
+ name: "--ds-spacing-22",
+ attributes: {},
+ path: [
+ "spacing",
+ "22"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "6.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*26"
+ },
+ name: "--ds-spacing-26",
+ attributes: {},
+ path: [
+ "spacing",
+ "26"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "7.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*30"
+ },
+ name: "--ds-spacing-30",
+ attributes: {},
+ path: [
+ "spacing",
+ "30"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*0"
+ },
+ name: "--ds-sizing-0",
+ attributes: {},
+ path: [
+ "sizing",
+ "0"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*1"
+ },
+ name: "--ds-sizing-1",
+ attributes: {},
+ path: [
+ "sizing",
+ "1"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*2"
+ },
+ name: "--ds-sizing-2",
+ attributes: {},
+ path: [
+ "sizing",
+ "2"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*3"
+ },
+ name: "--ds-sizing-3",
+ attributes: {},
+ path: [
+ "sizing",
+ "3"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*4"
+ },
+ name: "--ds-sizing-4",
+ attributes: {},
+ path: [
+ "sizing",
+ "4"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*5"
+ },
+ name: "--ds-sizing-5",
+ attributes: {},
+ path: [
+ "sizing",
+ "5"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*6"
+ },
+ name: "--ds-sizing-6",
+ attributes: {},
+ path: [
+ "sizing",
+ "6"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*7"
+ },
+ name: "--ds-sizing-7",
+ attributes: {},
+ path: [
+ "sizing",
+ "7"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*8"
+ },
+ name: "--ds-sizing-8",
+ attributes: {},
+ path: [
+ "sizing",
+ "8"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*9"
+ },
+ name: "--ds-sizing-9",
+ attributes: {},
+ path: [
+ "sizing",
+ "9"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*10"
+ },
+ name: "--ds-sizing-10",
+ attributes: {},
+ path: [
+ "sizing",
+ "10"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*11"
+ },
+ name: "--ds-sizing-11",
+ attributes: {},
+ path: [
+ "sizing",
+ "11"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*12"
+ },
+ name: "--ds-sizing-12",
+ attributes: {},
+ path: [
+ "sizing",
+ "12"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*13"
+ },
+ name: "--ds-sizing-13",
+ attributes: {},
+ path: [
+ "sizing",
+ "13"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*14"
+ },
+ name: "--ds-sizing-14",
+ attributes: {},
+ path: [
+ "sizing",
+ "14"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*15"
+ },
+ name: "--ds-sizing-15",
+ attributes: {},
+ path: [
+ "sizing",
+ "15"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "4.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*18"
+ },
+ name: "--ds-sizing-18",
+ attributes: {},
+ path: [
+ "sizing",
+ "18"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "5.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*22"
+ },
+ name: "--ds-sizing-22",
+ attributes: {},
+ path: [
+ "sizing",
+ "22"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "6.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*26"
+ },
+ name: "--ds-sizing-26",
+ attributes: {},
+ path: [
+ "sizing",
+ "26"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "7.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*30"
+ },
+ name: "--ds-sizing-30",
+ attributes: {},
+ path: [
+ "sizing",
+ "30"
+ ]
+ }
+]
+
+export const typography = [
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "3.75rem",
+ letterSpacing: "-1%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.11}",
+ letterSpacing: "{letter-spacing.1}"
+ }
+ },
+ name: "--ds-heading-2xl",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "2xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "3rem",
+ letterSpacing: "-1%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.10}",
+ letterSpacing: "{letter-spacing.1}"
+ }
+ },
+ name: "--ds-heading-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "2.25rem",
+ letterSpacing: "-0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.9}",
+ letterSpacing: "{letter-spacing.2}"
+ }
+ },
+ name: "--ds-heading-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.875rem",
+ letterSpacing: "-0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.8}",
+ letterSpacing: "{letter-spacing.3}"
+ }
+ },
+ name: "--ds-heading-md",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.5rem",
+ letterSpacing: "0%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.5}"
+ }
+ },
+ name: "--ds-heading-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-heading-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.125rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-heading-2xs",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "2xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-short-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-short-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-long-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-long-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "xs"
+ ]
+ }
+]
+
+export const opacity = [
+ {
+ $type: "opacity",
+ $value: "30%",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "opacity",
+ $value: "{opacity.30}"
+ },
+ name: "--ds-disabled-opacity",
+ attributes: {},
+ path: [
+ "disabled",
+ "opacity"
+ ]
+ }
+]
+
+export const shadow = [
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.16), 0 1px 2px 0 rgba(0,0,0,0.12)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.100}"
+ },
+ name: "--ds-shadow-xs",
+ attributes: {},
+ path: [
+ "shadow",
+ "xs"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.15), 0 1px 2px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.1)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.200}"
+ },
+ name: "--ds-shadow-sm",
+ attributes: {},
+ path: [
+ "shadow",
+ "sm"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.14), 0 2px 4px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.12)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.300}"
+ },
+ name: "--ds-shadow-md",
+ attributes: {},
+ path: [
+ "shadow",
+ "md"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.13), 0 3px 5px 0 rgba(0,0,0,0.13), 0 6px 12px 0 rgba(0,0,0,0.14)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.400}"
+ },
+ name: "--ds-shadow-lg",
+ attributes: {},
+ path: [
+ "shadow",
+ "lg"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.16), 0 12px 24px 0 rgba(0,0,0,0.16)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.500}"
+ },
+ name: "--ds-shadow-xl",
+ attributes: {},
+ path: [
+ "shadow",
+ "xl"
+ ]
+ }
+]
diff --git a/apps/storefront/tokens/altinn/light.ts b/apps/storefront/tokens/altinn/light.ts
new file mode 100644
index 0000000000..cb92d5e531
--- /dev/null
+++ b/apps/storefront/tokens/altinn/light.ts
@@ -0,0 +1,3811 @@
+/**
+ * These files are generated from design tokens defind using Token Studio
+ */
+
+export const color = [
+ {
+ $type: "color",
+ $value: "#fefeff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.1}"
+ },
+ name: "--ds-color-accent-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#eef4fa",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.2}"
+ },
+ name: "--ds-color-accent-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e3f3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.3}"
+ },
+ name: "--ds-color-accent-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bad5ec",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.4}"
+ },
+ name: "--ds-color-accent-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a1c5e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.5}"
+ },
+ name: "--ds-color-accent-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#97bfe3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.6}"
+ },
+ name: "--ds-color-accent-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3885c9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.7}"
+ },
+ name: "--ds-color-accent-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#014e93",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.8}"
+ },
+ name: "--ds-color-accent-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0163ba",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.9}"
+ },
+ name: "--ds-color-accent-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#015097",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.10}"
+ },
+ name: "--ds-color-accent-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#013f75",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.11}"
+ },
+ name: "--ds-color-accent-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0163ba",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.12}"
+ },
+ name: "--ds-color-accent-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#002d54",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.13}"
+ },
+ name: "--ds-color-accent-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.contrast-1}"
+ },
+ name: "--ds-color-accent-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#dbe9f5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.contrast-2}"
+ },
+ name: "--ds-color-accent-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.1}"
+ },
+ name: "--ds-color-neutral-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f3f4f5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.2}"
+ },
+ name: "--ds-color-neutral-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e1e3e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.3}"
+ },
+ name: "--ds-color-neutral-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ced1d4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.4}"
+ },
+ name: "--ds-color-neutral-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bdc1c6",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.5}"
+ },
+ name: "--ds-color-neutral-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b8bcc1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.6}"
+ },
+ name: "--ds-color-neutral-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7a818c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.7}"
+ },
+ name: "--ds-color-neutral-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#444e5d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.8}"
+ },
+ name: "--ds-color-neutral-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1e2b3c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.9}"
+ },
+ name: "--ds-color-neutral-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#303c4b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.10}"
+ },
+ name: "--ds-color-neutral-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#444e5d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.11}"
+ },
+ name: "--ds-color-neutral-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5b6471",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.12}"
+ },
+ name: "--ds-color-neutral-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#202c3d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.13}"
+ },
+ name: "--ds-color-neutral-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.contrast-1}"
+ },
+ name: "--ds-color-neutral-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bbbfc4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.contrast-2}"
+ },
+ name: "--ds-color-neutral-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefeff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.1}"
+ },
+ name: "--ds-color-brand1-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#eef4fa",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.2}"
+ },
+ name: "--ds-color-brand1-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e3f3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.3}"
+ },
+ name: "--ds-color-brand1-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bad5ec",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.4}"
+ },
+ name: "--ds-color-brand1-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a1c5e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.5}"
+ },
+ name: "--ds-color-brand1-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#97bfe3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.6}"
+ },
+ name: "--ds-color-brand1-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3885c9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.7}"
+ },
+ name: "--ds-color-brand1-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#014e93",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.8}"
+ },
+ name: "--ds-color-brand1-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0163ba",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.9}"
+ },
+ name: "--ds-color-brand1-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#015097",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.10}"
+ },
+ name: "--ds-color-brand1-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#013f75",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.11}"
+ },
+ name: "--ds-color-brand1-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0163ba",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.12}"
+ },
+ name: "--ds-color-brand1-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#002d54",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.13}"
+ },
+ name: "--ds-color-brand1-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.contrast-1}"
+ },
+ name: "--ds-color-brand1-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#dbe9f5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.contrast-2}"
+ },
+ name: "--ds-color-brand1-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.1}"
+ },
+ name: "--ds-color-brand2-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f4f3f6",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.2}"
+ },
+ name: "--ds-color-brand2-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e3e1e8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.3}"
+ },
+ name: "--ds-color-brand2-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d3d0db",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.4}"
+ },
+ name: "--ds-color-brand2-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c3bfce",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.5}"
+ },
+ name: "--ds-color-brand2-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#beb9c9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.6}"
+ },
+ name: "--ds-color-brand2-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#857d9b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.7}"
+ },
+ name: "--ds-color-brand2-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#534671",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.8}"
+ },
+ name: "--ds-color-brand2-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3f3161",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.9}"
+ },
+ name: "--ds-color-brand2-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#514570",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.10}"
+ },
+ name: "--ds-color-brand2-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#64587f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.11}"
+ },
+ name: "--ds-color-brand2-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#685d83",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.12}"
+ },
+ name: "--ds-color-brand2-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#30254a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.13}"
+ },
+ name: "--ds-color-brand2-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.contrast-1}"
+ },
+ name: "--ds-color-brand2-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d3d0db",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.contrast-2}"
+ },
+ name: "--ds-color-brand2-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fffefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.1}"
+ },
+ name: "--ds-color-brand3-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fdf1f3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.2}"
+ },
+ name: "--ds-color-brand3-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f9dadf",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.3}"
+ },
+ name: "--ds-color-brand3-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f6c4cc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.4}"
+ },
+ name: "--ds-color-brand3-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f3aeb8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.5}"
+ },
+ name: "--ds-color-brand3-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f2a7b3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.6}"
+ },
+ name: "--ds-color-brand3-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e4475f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.7}"
+ },
+ name: "--ds-color-brand3-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#941f31",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.8}"
+ },
+ name: "--ds-color-brand3-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e02f4a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.9}"
+ },
+ name: "--ds-color-brand3-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bc273e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.10}"
+ },
+ name: "--ds-color-brand3-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#982032",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.11}"
+ },
+ name: "--ds-color-brand3-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bc273e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.12}"
+ },
+ name: "--ds-color-brand3-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#56121d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.13}"
+ },
+ name: "--ds-color-brand3-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.contrast-1}"
+ },
+ name: "--ds-color-brand3-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.contrast-2}"
+ },
+ name: "--ds-color-brand3-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fcfefc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.1}"
+ },
+ name: "--ds-color-success-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#edf6ee",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.2}"
+ },
+ name: "--ds-color-success-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e9d4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.3}"
+ },
+ name: "--ds-color-success-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b5dbba",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.4}"
+ },
+ name: "--ds-color-success-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#96cd9e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.5}"
+ },
+ name: "--ds-color-success-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#8fc997",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.6}"
+ },
+ name: "--ds-color-success-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#229532",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.7}"
+ },
+ name: "--ds-color-success-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#045a10",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.8}"
+ },
+ name: "--ds-color-success-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#068718",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.9}"
+ },
+ name: "--ds-color-success-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#057014",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.10}"
+ },
+ name: "--ds-color-success-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#045a10",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.11}"
+ },
+ name: "--ds-color-success-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#057315",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.12}"
+ },
+ name: "--ds-color-success-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#023409",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.13}"
+ },
+ name: "--ds-color-success-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.contrast-1}"
+ },
+ name: "--ds-color-success-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f9fcf9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.contrast-2}"
+ },
+ name: "--ds-color-success-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fffefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.1}"
+ },
+ name: "--ds-color-danger-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fbf1f1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.2}"
+ },
+ name: "--ds-color-danger-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f5dcdc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.3}"
+ },
+ name: "--ds-color-danger-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f0c7c7",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.4}"
+ },
+ name: "--ds-color-danger-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#eab3b3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.5}"
+ },
+ name: "--ds-color-danger-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e8acac",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.6}"
+ },
+ name: "--ds-color-danger-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d25b5b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.7}"
+ },
+ name: "--ds-color-danger-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9a1616",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.8}"
+ },
+ name: "--ds-color-danger-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#C01B1B",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.9}"
+ },
+ name: "--ds-color-danger-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9c1616",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.10}"
+ },
+ name: "--ds-color-danger-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#791111",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.11}"
+ },
+ name: "--ds-color-danger-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c22020",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.12}"
+ },
+ name: "--ds-color-danger-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5a0d0d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.13}"
+ },
+ name: "--ds-color-danger-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.contrast-1}"
+ },
+ name: "--ds-color-danger-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f7e1e1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.contrast-2}"
+ },
+ name: "--ds-color-danger-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefeff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.1}"
+ },
+ name: "--ds-color-info-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#edf5fa",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.2}"
+ },
+ name: "--ds-color-info-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d3e5f4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.3}"
+ },
+ name: "--ds-color-info-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b7d5ed",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.4}"
+ },
+ name: "--ds-color-info-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9bc5e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.5}"
+ },
+ name: "--ds-color-info-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#94c1e3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.6}"
+ },
+ name: "--ds-color-info-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2f86c9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.7}"
+ },
+ name: "--ds-color-info-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#075089",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.8}"
+ },
+ name: "--ds-color-info-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0A71C0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.9}"
+ },
+ name: "--ds-color-info-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#085e9f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.10}"
+ },
+ name: "--ds-color-info-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#074a7f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.11}"
+ },
+ name: "--ds-color-info-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0966ac",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.12}"
+ },
+ name: "--ds-color-info-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#042d4d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.13}"
+ },
+ name: "--ds-color-info-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.contrast-1}"
+ },
+ name: "--ds-color-info-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#edf5fa",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.contrast-2}"
+ },
+ name: "--ds-color-info-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fffefd",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.1}"
+ },
+ name: "--ds-color-warning-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f9f4e2",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.2}"
+ },
+ name: "--ds-color-warning-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#efe2b3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.3}"
+ },
+ name: "--ds-color-warning-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e5d183",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.4}"
+ },
+ name: "--ds-color-warning-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#dcbf53",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.5}"
+ },
+ name: "--ds-color-warning-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d9b945",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.6}"
+ },
+ name: "--ds-color-warning-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#987f22",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.7}"
+ },
+ name: "--ds-color-warning-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5c4c14",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.8}"
+ },
+ name: "--ds-color-warning-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#B8581D",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.9}"
+ },
+ name: "--ds-color-warning-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#984918",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.10}"
+ },
+ name: "--ds-color-warning-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7a3b13",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.11}"
+ },
+ name: "--ds-color-warning-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9e4b19",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.12}"
+ },
+ name: "--ds-color-warning-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#47220b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.13}"
+ },
+ name: "--ds-color-warning-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.contrast-1}"
+ },
+ name: "--ds-color-warning-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fdfbf9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.contrast-2}"
+ },
+ name: "--ds-color-warning-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.background-default}"
+ },
+ name: "--ds-color-focus-inner",
+ attributes: {},
+ path: [
+ "color",
+ "focus",
+ "inner"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#002d54",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.text-default}"
+ },
+ name: "--ds-color-focus-outer",
+ attributes: {},
+ path: [
+ "color",
+ "focus",
+ "outer"
+ ]
+ }
+]
+
+export const dimension = [
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *1)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.1}"
+ },
+ name: "--ds-border-radius-sm",
+ attributes: {},
+ path: [
+ "border-radius",
+ "sm"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *2)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.2}"
+ },
+ name: "--ds-border-radius-md",
+ attributes: {},
+ path: [
+ "border-radius",
+ "md"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *5)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.3}"
+ },
+ name: "--ds-border-radius-lg",
+ attributes: {},
+ path: [
+ "border-radius",
+ "lg"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.4}"
+ },
+ name: "--ds-border-radius-default",
+ attributes: {},
+ path: [
+ "border-radius",
+ "default"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "624.9375rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.5}"
+ },
+ name: "--ds-border-radius-full",
+ attributes: {},
+ path: [
+ "border-radius",
+ "full"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*0"
+ },
+ name: "--ds-spacing-0",
+ attributes: {},
+ path: [
+ "spacing",
+ "0"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*1"
+ },
+ name: "--ds-spacing-1",
+ attributes: {},
+ path: [
+ "spacing",
+ "1"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*2"
+ },
+ name: "--ds-spacing-2",
+ attributes: {},
+ path: [
+ "spacing",
+ "2"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*3"
+ },
+ name: "--ds-spacing-3",
+ attributes: {},
+ path: [
+ "spacing",
+ "3"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*4"
+ },
+ name: "--ds-spacing-4",
+ attributes: {},
+ path: [
+ "spacing",
+ "4"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*5"
+ },
+ name: "--ds-spacing-5",
+ attributes: {},
+ path: [
+ "spacing",
+ "5"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*6"
+ },
+ name: "--ds-spacing-6",
+ attributes: {},
+ path: [
+ "spacing",
+ "6"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*7"
+ },
+ name: "--ds-spacing-7",
+ attributes: {},
+ path: [
+ "spacing",
+ "7"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*8"
+ },
+ name: "--ds-spacing-8",
+ attributes: {},
+ path: [
+ "spacing",
+ "8"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*9"
+ },
+ name: "--ds-spacing-9",
+ attributes: {},
+ path: [
+ "spacing",
+ "9"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*10"
+ },
+ name: "--ds-spacing-10",
+ attributes: {},
+ path: [
+ "spacing",
+ "10"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*11"
+ },
+ name: "--ds-spacing-11",
+ attributes: {},
+ path: [
+ "spacing",
+ "11"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*12"
+ },
+ name: "--ds-spacing-12",
+ attributes: {},
+ path: [
+ "spacing",
+ "12"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*13"
+ },
+ name: "--ds-spacing-13",
+ attributes: {},
+ path: [
+ "spacing",
+ "13"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*14"
+ },
+ name: "--ds-spacing-14",
+ attributes: {},
+ path: [
+ "spacing",
+ "14"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*15"
+ },
+ name: "--ds-spacing-15",
+ attributes: {},
+ path: [
+ "spacing",
+ "15"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "4.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*18"
+ },
+ name: "--ds-spacing-18",
+ attributes: {},
+ path: [
+ "spacing",
+ "18"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "5.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*22"
+ },
+ name: "--ds-spacing-22",
+ attributes: {},
+ path: [
+ "spacing",
+ "22"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "6.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*26"
+ },
+ name: "--ds-spacing-26",
+ attributes: {},
+ path: [
+ "spacing",
+ "26"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "7.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*30"
+ },
+ name: "--ds-spacing-30",
+ attributes: {},
+ path: [
+ "spacing",
+ "30"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*0"
+ },
+ name: "--ds-sizing-0",
+ attributes: {},
+ path: [
+ "sizing",
+ "0"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*1"
+ },
+ name: "--ds-sizing-1",
+ attributes: {},
+ path: [
+ "sizing",
+ "1"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*2"
+ },
+ name: "--ds-sizing-2",
+ attributes: {},
+ path: [
+ "sizing",
+ "2"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*3"
+ },
+ name: "--ds-sizing-3",
+ attributes: {},
+ path: [
+ "sizing",
+ "3"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*4"
+ },
+ name: "--ds-sizing-4",
+ attributes: {},
+ path: [
+ "sizing",
+ "4"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*5"
+ },
+ name: "--ds-sizing-5",
+ attributes: {},
+ path: [
+ "sizing",
+ "5"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*6"
+ },
+ name: "--ds-sizing-6",
+ attributes: {},
+ path: [
+ "sizing",
+ "6"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*7"
+ },
+ name: "--ds-sizing-7",
+ attributes: {},
+ path: [
+ "sizing",
+ "7"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*8"
+ },
+ name: "--ds-sizing-8",
+ attributes: {},
+ path: [
+ "sizing",
+ "8"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*9"
+ },
+ name: "--ds-sizing-9",
+ attributes: {},
+ path: [
+ "sizing",
+ "9"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*10"
+ },
+ name: "--ds-sizing-10",
+ attributes: {},
+ path: [
+ "sizing",
+ "10"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*11"
+ },
+ name: "--ds-sizing-11",
+ attributes: {},
+ path: [
+ "sizing",
+ "11"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*12"
+ },
+ name: "--ds-sizing-12",
+ attributes: {},
+ path: [
+ "sizing",
+ "12"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*13"
+ },
+ name: "--ds-sizing-13",
+ attributes: {},
+ path: [
+ "sizing",
+ "13"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*14"
+ },
+ name: "--ds-sizing-14",
+ attributes: {},
+ path: [
+ "sizing",
+ "14"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*15"
+ },
+ name: "--ds-sizing-15",
+ attributes: {},
+ path: [
+ "sizing",
+ "15"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "4.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*18"
+ },
+ name: "--ds-sizing-18",
+ attributes: {},
+ path: [
+ "sizing",
+ "18"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "5.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*22"
+ },
+ name: "--ds-sizing-22",
+ attributes: {},
+ path: [
+ "sizing",
+ "22"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "6.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*26"
+ },
+ name: "--ds-sizing-26",
+ attributes: {},
+ path: [
+ "sizing",
+ "26"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "7.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*30"
+ },
+ name: "--ds-sizing-30",
+ attributes: {},
+ path: [
+ "sizing",
+ "30"
+ ]
+ }
+]
+
+export const typography = [
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "3.75rem",
+ letterSpacing: "-1%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.11}",
+ letterSpacing: "{letter-spacing.1}"
+ }
+ },
+ name: "--ds-heading-2xl",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "2xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "3rem",
+ letterSpacing: "-1%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.10}",
+ letterSpacing: "{letter-spacing.1}"
+ }
+ },
+ name: "--ds-heading-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "2.25rem",
+ letterSpacing: "-0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.9}",
+ letterSpacing: "{letter-spacing.2}"
+ }
+ },
+ name: "--ds-heading-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.875rem",
+ letterSpacing: "-0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.8}",
+ letterSpacing: "{letter-spacing.3}"
+ }
+ },
+ name: "--ds-heading-md",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.5rem",
+ letterSpacing: "0%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.5}"
+ }
+ },
+ name: "--ds-heading-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-heading-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.125rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-heading-2xs",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "2xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-short-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-short-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-long-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Helvetica Neue",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-long-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "xs"
+ ]
+ }
+]
+
+export const opacity = [
+ {
+ $type: "opacity",
+ $value: "30%",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "opacity",
+ $value: "{opacity.30}"
+ },
+ name: "--ds-disabled-opacity",
+ attributes: {},
+ path: [
+ "disabled",
+ "opacity"
+ ]
+ }
+]
+
+export const shadow = [
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.16), 0 1px 2px 0 rgba(0,0,0,0.12)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.100}"
+ },
+ name: "--ds-shadow-xs",
+ attributes: {},
+ path: [
+ "shadow",
+ "xs"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.15), 0 1px 2px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.1)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.200}"
+ },
+ name: "--ds-shadow-sm",
+ attributes: {},
+ path: [
+ "shadow",
+ "sm"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.14), 0 2px 4px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.12)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.300}"
+ },
+ name: "--ds-shadow-md",
+ attributes: {},
+ path: [
+ "shadow",
+ "md"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.13), 0 3px 5px 0 rgba(0,0,0,0.13), 0 6px 12px 0 rgba(0,0,0,0.14)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.400}"
+ },
+ name: "--ds-shadow-lg",
+ attributes: {},
+ path: [
+ "shadow",
+ "lg"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.16), 0 12px 24px 0 rgba(0,0,0,0.16)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.500}"
+ },
+ name: "--ds-shadow-xl",
+ attributes: {},
+ path: [
+ "shadow",
+ "xl"
+ ]
+ }
+]
diff --git a/apps/storefront/tokens/brreg.ts b/apps/storefront/tokens/brreg.ts
deleted file mode 100644
index 2a3e574c99..0000000000
--- a/apps/storefront/tokens/brreg.ts
+++ /dev/null
@@ -1,5041 +0,0 @@
-/**
- * Do not edit directly
- * These files are generated from design tokens defined in Figma using Token Studio
- */
-
-export const color = [
- {
- value: "#FFFFFF",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#FFFFFF",
- type: "color"
- },
- name: "--fds-brand-alt1-50",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "50"
- ]
- },
- {
- value: "#D1E4FF",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#D1E4FF",
- type: "color"
- },
- name: "--fds-brand-alt1-100",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "100"
- ]
- },
- {
- value: "#9ECAFF",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#9ECAFF",
- type: "color"
- },
- name: "--fds-brand-alt1-200",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "200"
- ]
- },
- {
- value: "#76ADFB",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#76ADFB",
- type: "color"
- },
- name: "--fds-brand-alt1-300",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "300"
- ]
- },
- {
- value: "#5391E9",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#5391E9",
- type: "color"
- },
- name: "--fds-brand-alt1-400",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "400"
- ]
- },
- {
- value: "#2B77CC",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#2B77CC",
- type: "color"
- },
- name: "--fds-brand-alt1-500",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "500"
- ]
- },
- {
- value: "#005FAE",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#005FAE",
- type: "color"
- },
- name: "--fds-brand-alt1-600",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "600"
- ]
- },
- {
- value: "#004785",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#004785",
- type: "color"
- },
- name: "--fds-brand-alt1-700",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "700"
- ]
- },
- {
- value: "#00315E",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#00315E",
- type: "color"
- },
- name: "--fds-brand-alt1-800",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "800"
- ]
- },
- {
- value: "#001C3A",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#001C3A",
- type: "color"
- },
- name: "--fds-brand-alt1-900",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "900"
- ]
- },
- {
- value: "#001127",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#001127",
- type: "color"
- },
- name: "--fds-brand-alt1-950",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "950"
- ]
- },
- {
- value: "#FFFFFF",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#FFFFFF",
- type: "color"
- },
- name: "--fds-brand-alt2-50",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "50"
- ]
- },
- {
- value: "#E5F3F9",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#E5F3F9",
- type: "color"
- },
- name: "--fds-brand-alt2-100",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "100"
- ]
- },
- {
- value: "#C9E7F4",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#C9E7F4",
- type: "color"
- },
- name: "--fds-brand-alt2-200",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "200"
- ]
- },
- {
- value: "#70B3D7",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#70B3D7",
- type: "color"
- },
- name: "--fds-brand-alt2-300",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "300"
- ]
- },
- {
- value: "#4E99BD",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#4E99BD",
- type: "color"
- },
- name: "--fds-brand-alt2-400",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "400"
- ]
- },
- {
- value: "#3B7D9B",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#3B7D9B",
- type: "color"
- },
- name: "--fds-brand-alt2-500",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "500"
- ]
- },
- {
- value: "#2C647E",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#2C647E",
- type: "color"
- },
- name: "--fds-brand-alt2-600",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "600"
- ]
- },
- {
- value: "#1F4B63",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#1F4B63",
- type: "color"
- },
- name: "--fds-brand-alt2-700",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "700"
- ]
- },
- {
- value: "#133349",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#133349",
- type: "color"
- },
- name: "--fds-brand-alt2-800",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "800"
- ]
- },
- {
- value: "#071D2C",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#071D2C",
- type: "color"
- },
- name: "--fds-brand-alt2-900",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "900"
- ]
- },
- {
- value: "#03121D",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#03121D",
- type: "color"
- },
- name: "--fds-brand-alt2-950",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "950"
- ]
- },
- {
- value: "#EBF2F3",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#EBF2F3",
- type: "color"
- },
- name: "--fds-brand-alt3-50",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "50"
- ]
- },
- {
- value: "#D7E5E7",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#D7E5E7",
- type: "color"
- },
- name: "--fds-brand-alt3-100",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "100"
- ]
- },
- {
- value: "#B9CACB",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#B9CACB",
- type: "color"
- },
- name: "--fds-brand-alt3-200",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "200"
- ]
- },
- {
- value: "#9FAEAF",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#9FAEAF",
- type: "color"
- },
- name: "--fds-brand-alt3-300",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "300"
- ]
- },
- {
- value: "#879394",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#879394",
- type: "color"
- },
- name: "--fds-brand-alt3-400",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "400"
- ]
- },
- {
- value: "#6D7879",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#6D7879",
- type: "color"
- },
- name: "--fds-brand-alt3-500",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "500"
- ]
- },
- {
- value: "#576061",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#576061",
- type: "color"
- },
- name: "--fds-brand-alt3-600",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "600"
- ]
- },
- {
- value: "#414849",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#414849",
- type: "color"
- },
- name: "--fds-brand-alt3-700",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "700"
- ]
- },
- {
- value: "#2C3132",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#2C3132",
- type: "color"
- },
- name: "--fds-brand-alt3-800",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "800"
- ]
- },
- {
- value: "#191C1C",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#191C1C",
- type: "color"
- },
- name: "--fds-brand-alt3-900",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "900"
- ]
- },
- {
- value: "#0F1112",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "#0F1112",
- type: "color"
- },
- name: "--fds-brand-alt3-950",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "950"
- ]
- },
- {
- value: "#D1E4FF",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt1.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-first-light",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "first",
- "light"
- ]
- },
- {
- value: "#76ADFB",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt1.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-first-light-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "first",
- "light-hover"
- ]
- },
- {
- value: "#5391E9",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt1.400}",
- type: "color"
- },
- name: "--fds-semantic-surface-first-light-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "first",
- "light-active"
- ]
- },
- {
- value: "#004785",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt1.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-first-dark",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "first",
- "dark"
- ]
- },
- {
- value: "#C9E7F4",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt2.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-second-light",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "second",
- "light"
- ]
- },
- {
- value: "#70B3D7",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt2.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-second-light-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "second",
- "light-hover"
- ]
- },
- {
- value: "#4E99BD",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt2.400}",
- type: "color"
- },
- name: "--fds-semantic-surface-second-light-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "second",
- "light-active"
- ]
- },
- {
- value: "#1F4B63",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt2.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-second-dark",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "second",
- "dark"
- ]
- },
- {
- value: "#D7E5E7",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt3.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-third-light",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "third",
- "light"
- ]
- },
- {
- value: "#B9CACB",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt3.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-third-light-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "third",
- "light-hover"
- ]
- },
- {
- value: "#9FAEAF",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt3.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-third-light-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "third",
- "light-active"
- ]
- },
- {
- value: "#414849",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt3.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-third-dark",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "third",
- "dark"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "subtle"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "subtle-hover"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "default"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- description: "Standard farge for handlinger",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color",
- description: "Standard farge for handlinger"
- },
- name: "--fds-semantic-surface-action-first-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "no_fill"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "no_fill-hover"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "no_fill-active"
- ]
- },
- {
- value: "#f4f5f6",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.grey.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "subtle"
- ]
- },
- {
- value: "#e9eaec",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.grey.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "subtle-hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "default"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.9)",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.9)",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "hover"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.8)",
- type: "color",
- description: "Standard farge for handlinger",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.8)",
- type: "color",
- description: "Standard farge for handlinger"
- },
- name: "--fds-semantic-surface-action-second-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "no_fill"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.1)",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.1)",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "no_fill-hover"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.2)",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.2)",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "no_fill-active"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "subtle"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "subtle-hover"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "default"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- description: "Standard farge for handlinger",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color",
- description: "Standard farge for handlinger"
- },
- name: "--fds-semantic-surface-action-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "no_fill"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "no_fill-hover"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "no_fill-active"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-checked",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "checked"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "default"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-selected",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "selected"
- ]
- },
- {
- value: "#f4f5f6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "subtle"
- ]
- },
- {
- value: "#e9eaec",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "subtle-hover"
- ]
- },
- {
- value: "#68707c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.600}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-dark",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "dark"
- ]
- },
- {
- value: "#4b5563",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-dark-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "dark-hover"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-inverted",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "inverted"
- ]
- },
- {
- value: "#d1f4e1",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "subtle"
- ]
- },
- {
- value: "#8be4b5",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "subtle-hover"
- ]
- },
- {
- value: "#118849",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "default"
- ]
- },
- {
- value: "#0c6536",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "hover"
- ]
- },
- {
- value: "#084826",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.900}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "no_fill"
- ]
- },
- {
- value: "#d1f4e1",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "no_fill-hover"
- ]
- },
- {
- value: "#8be4b5",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "no_fill-active"
- ]
- },
- {
- value: "#fffbe6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-warning-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "warning",
- "subtle"
- ]
- },
- {
- value: "#fff4b4",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-warning-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "warning",
- "subtle-hover"
- ]
- },
- {
- value: "#fff4b4",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-warning-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "warning",
- "default"
- ]
- },
- {
- value: "#ffed83",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-warning-default-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "warning",
- "default-hover"
- ]
- },
- {
- value: "#f9d5db",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "subtle"
- ]
- },
- {
- value: "#f3abb6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "subtle-hover"
- ]
- },
- {
- value: "#e02e49",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.500}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "default"
- ]
- },
- {
- value: "#b3253a",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.600}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "hover"
- ]
- },
- {
- value: "#861c2c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "no_fill"
- ]
- },
- {
- value: "#f9d5db",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "no_fill-hover"
- ]
- },
- {
- value: "#f3abb6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "no_fill-active"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-info-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "info",
- "subtle"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-info-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "info",
- "subtle-hover"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "default"
- ]
- },
- {
- value: "#ffffffe6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffffe6",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "hover"
- ]
- },
- {
- value: "#ffffffcc",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffffcc",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "active"
- ]
- },
- {
- value: "#ffffff00",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffff00",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "no_fill"
- ]
- },
- {
- value: "#ffffff1a",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffff1a",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "no_fill-hover"
- ]
- },
- {
- value: "#ffffff33",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffff33",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "no_fill-active"
- ]
- },
- {
- value: "#ffda06",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.500}",
- type: "color"
- },
- name: "--fds-semantic-surface-focus-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "focus",
- "default"
- ]
- },
- {
- value: "#005FAE",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt1.600}",
- type: "color"
- },
- name: "--fds-semantic-border-first-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "first",
- "default"
- ]
- },
- {
- value: "#004785",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt1.700}",
- type: "color"
- },
- name: "--fds-semantic-border-first-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "first",
- "hover"
- ]
- },
- {
- value: "#00315E",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt1.800}",
- type: "color"
- },
- name: "--fds-semantic-border-first-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "first",
- "active"
- ]
- },
- {
- value: "#2C647E",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt2.600}",
- type: "color"
- },
- name: "--fds-semantic-border-second-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "second",
- "default"
- ]
- },
- {
- value: "#1F4B63",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt2.700}",
- type: "color"
- },
- name: "--fds-semantic-border-second-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "second",
- "hover"
- ]
- },
- {
- value: "#133349",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt2.800}",
- type: "color"
- },
- name: "--fds-semantic-border-second-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "second",
- "active"
- ]
- },
- {
- value: "#879394",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt3.400}",
- type: "color"
- },
- name: "--fds-semantic-border-third-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "third",
- "default"
- ]
- },
- {
- value: "#6D7879",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt3.500}",
- type: "color"
- },
- name: "--fds-semantic-border-third-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "third",
- "hover"
- ]
- },
- {
- value: "#576061",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{brand.alt3.600}",
- type: "color"
- },
- name: "--fds-semantic-border-third-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "third",
- "active"
- ]
- },
- {
- value: "#e9eaec",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.grey.200}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "subtle"
- ]
- },
- {
- value: "#d2d5d8",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.grey.300}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "subtle-hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "default"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "active"
- ]
- },
- {
- value: "#e9eaec",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.grey.200}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "subtle"
- ]
- },
- {
- value: "#d2d5d8",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.grey.300}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "subtle-hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "default"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "active"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-border-action-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "subtle"
- ]
- },
- {
- value: "#66a1d6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.400}",
- type: "color"
- },
- name: "--fds-semantic-border-action-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "subtle-hover"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-action-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "default"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-action-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "active"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-dark",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "dark"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-action-dark-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "dark-hover"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-border-info-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "info",
- "default"
- ]
- },
- {
- value: "#68707c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.600}",
- type: "color"
- },
- name: "--fds-semantic-border-neutral-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "neutral",
- "default"
- ]
- },
- {
- value: "#d2d5d8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.300}",
- type: "color"
- },
- name: "--fds-semantic-border-neutral-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "neutral",
- "subtle"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-border-neutral-strong",
- attributes: {},
- path: [
- "semantic",
- "border",
- "neutral",
- "strong"
- ]
- },
- {
- value: "#118849",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.700}",
- type: "color"
- },
- name: "--fds-semantic-border-success-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "success",
- "default"
- ]
- },
- {
- value: "#0c6536",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.800}",
- type: "color"
- },
- name: "--fds-semantic-border-success-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "success",
- "hover"
- ]
- },
- {
- value: "#084826",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.900}",
- type: "color"
- },
- name: "--fds-semantic-border-success-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "success",
- "active"
- ]
- },
- {
- value: "#cc7005",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.600}",
- type: "color"
- },
- name: "--fds-semantic-border-warning-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "warning",
- "default"
- ]
- },
- {
- value: "#995404",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.700}",
- type: "color"
- },
- name: "--fds-semantic-border-warning-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "warning",
- "hover"
- ]
- },
- {
- value: "#663802",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.800}",
- type: "color"
- },
- name: "--fds-semantic-border-warning-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "warning",
- "active"
- ]
- },
- {
- value: "#e02e49",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.500}",
- type: "color"
- },
- name: "--fds-semantic-border-danger-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "danger",
- "default"
- ]
- },
- {
- value: "#b3253a",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.600}",
- type: "color"
- },
- name: "--fds-semantic-border-danger-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "danger",
- "hover"
- ]
- },
- {
- value: "#861c2c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.700}",
- type: "color"
- },
- name: "--fds-semantic-border-danger-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "danger",
- "active"
- ]
- },
- {
- value: "#ffda06",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.500}",
- type: "color"
- },
- name: "--fds-semantic-border-focus-outline",
- attributes: {},
- path: [
- "semantic",
- "border",
- "focus",
- "outline"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{semantic.border.neutral.strong}",
- type: "color"
- },
- name: "--fds-semantic-border-focus-boxshadow",
- attributes: {},
- path: [
- "semantic",
- "border",
- "focus",
- "boxshadow"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-border-on_inverted-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "on_inverted",
- "default"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-input-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "input",
- "default"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-input-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "input",
- "hover"
- ]
- },
- {
- value: "#bcbfc5",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.400}",
- type: "color"
- },
- name: "--fds-semantic-border-divider-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "divider",
- "default"
- ]
- },
- {
- value: "#d2d5d8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.300}",
- type: "color"
- },
- name: "--fds-semantic-border-divider-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "divider",
- "subtle"
- ]
- },
- {
- value: "#68707c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.600}",
- type: "color"
- },
- name: "--fds-semantic-border-divider-strong",
- attributes: {},
- path: [
- "semantic",
- "border",
- "divider",
- "strong"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-first-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "first",
- "default"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-first-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "first",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-first-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "first",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-action-first-on_action",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "first",
- "on_action"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-second-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "second",
- "default"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-second-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "second",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-second-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "second",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Brand/Brreg.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-action-second-on_action",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "second",
- "on_action"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-text-action-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "default"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-text-action-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-action-on_action",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "on_action"
- ]
- },
- {
- value: "#0c6536",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.800}",
- type: "color"
- },
- name: "--fds-semantic-text-success-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "default"
- ]
- },
- {
- value: "#084826",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.900}",
- type: "color"
- },
- name: "--fds-semantic-text-success-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "hover"
- ]
- },
- {
- value: "#084826",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.900}",
- type: "color"
- },
- name: "--fds-semantic-text-success-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-success-on_success",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "on_success"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-text-success-on_success_subtle",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "on_success_subtle"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-text-neutral-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "neutral",
- "default"
- ]
- },
- {
- value: "#4b5563",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.700}",
- type: "color"
- },
- name: "--fds-semantic-text-neutral-subtle",
- attributes: {},
- path: [
- "semantic",
- "text",
- "neutral",
- "subtle"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-neutral-on_inverted",
- attributes: {},
- path: [
- "semantic",
- "text",
- "neutral",
- "on_inverted"
- ]
- },
- {
- value: "#995404",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.700}",
- type: "color"
- },
- name: "--fds-semantic-text-warning-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "warning",
- "default"
- ]
- },
- {
- value: "#cc7005",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.600}",
- type: "color"
- },
- name: "--fds-semantic-text-warning-icon_warning",
- attributes: {},
- path: [
- "semantic",
- "text",
- "warning",
- "icon_warning"
- ]
- },
- {
- value: "#663802",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.800}",
- type: "color"
- },
- name: "--fds-semantic-text-warning-on_warning",
- attributes: {},
- path: [
- "semantic",
- "text",
- "warning",
- "on_warning"
- ]
- },
- {
- value: "#b3253a",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.600}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "default"
- ]
- },
- {
- value: "#861c2c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.700}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "hover"
- ]
- },
- {
- value: "#5a121d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.800}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-on_danger",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "on_danger"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-on_danger_subtle",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "on_danger_subtle"
- ]
- },
- {
- value: "#7a1265",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.purple.700}",
- type: "color"
- },
- name: "--fds-semantic-text-visited-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "visited",
- "default"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-background-default",
- attributes: {},
- path: [
- "semantic",
- "background",
- "default"
- ]
- },
- {
- value: "#f4f5f6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.100}",
- type: "color"
- },
- name: "--fds-semantic-background-subtle",
- attributes: {},
- path: [
- "semantic",
- "background",
- "subtle"
- ]
- }
-]
-
-export const typography = [
- {
- value: "500 3.75rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f7}"
- },
- type: "typography"
- },
- name: "--fds-typography-heading-2xlarge",
- attributes: {},
- path: [
- "typography",
- "heading",
- "2xlarge"
- ]
- },
- {
- value: "500 3rem/1.3 'Inter'",
- type: "typography",
- description: "H1",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f6}"
- },
- type: "typography",
- description: "H1"
- },
- name: "--fds-typography-heading-xlarge",
- attributes: {},
- path: [
- "typography",
- "heading",
- "xlarge"
- ]
- },
- {
- value: "500 2.25rem/1.3 'Inter'",
- type: "typography",
- description: "H2",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f5}"
- },
- type: "typography",
- description: "H2"
- },
- name: "--fds-typography-heading-large",
- attributes: {},
- path: [
- "typography",
- "heading",
- "large"
- ]
- },
- {
- value: "500 1.875rem/1.3 'Inter'",
- type: "typography",
- description: "H3",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f4}"
- },
- type: "typography",
- description: "H3"
- },
- name: "--fds-typography-heading-medium",
- attributes: {},
- path: [
- "typography",
- "heading",
- "medium"
- ]
- },
- {
- value: "500 1.5rem/1.3 'Inter'",
- type: "typography",
- description: "H4",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f3}"
- },
- type: "typography",
- description: "H4"
- },
- name: "--fds-typography-heading-small",
- attributes: {},
- path: [
- "typography",
- "heading",
- "small"
- ]
- },
- {
- value: "500 1.3125rem/1.3 'Inter'",
- type: "typography",
- description: "H5",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f2}"
- },
- type: "typography",
- description: "H5"
- },
- name: "--fds-typography-heading-xsmall",
- attributes: {},
- path: [
- "typography",
- "heading",
- "xsmall"
- ]
- },
- {
- value: "500 1.125rem/1.3 'Inter'",
- type: "typography",
- description: "H6",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f1}"
- },
- type: "typography",
- description: "H6"
- },
- name: "--fds-typography-heading-xxsmall",
- attributes: {},
- path: [
- "typography",
- "heading",
- "xxsmall"
- ]
- },
- {
- value: "400 1.875rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f4}"
- },
- type: "typography"
- },
- name: "--fds-typography-ingress-large",
- attributes: {},
- path: [
- "typography",
- "ingress",
- "large"
- ]
- },
- {
- value: "400 1.5rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f3}"
- },
- type: "typography"
- },
- name: "--fds-typography-ingress-medium",
- attributes: {},
- path: [
- "typography",
- "ingress",
- "medium"
- ]
- },
- {
- value: "400 1.3125rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-ingress-small",
- attributes: {},
- path: [
- "typography",
- "ingress",
- "small"
- ]
- },
- {
- value: "400 1.125rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-ingress-xsmall",
- attributes: {},
- path: [
- "typography",
- "ingress",
- "xsmall"
- ]
- },
- {
- value: "400 1.3125rem/1.5 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.500}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-large",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "large"
- ]
- },
- {
- value: "400 1.125rem/1.5 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.500}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-medium",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "medium"
- ]
- },
- {
- value: "400 1rem/1.5 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.500}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-small",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "small"
- ]
- },
- {
- value: "400 0.875rem/1.5 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.500}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-xsmall",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "xsmall"
- ]
- },
- {
- value: "400 1.3125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-short-large",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "short",
- "large"
- ]
- },
- {
- value: "400 1.125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-short-medium",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "short",
- "medium"
- ]
- },
- {
- value: "400 1rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-short-small",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "short",
- "small"
- ]
- },
- {
- value: "400 0.875rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-short-xsmall",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "short",
- "xsmall"
- ]
- },
- {
- value: "400 1.125rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-long-large",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "long",
- "large"
- ]
- },
- {
- value: "400 1rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-long-medium",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "long",
- "medium"
- ]
- },
- {
- value: "400 0.875rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-long-small",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "long",
- "small"
- ]
- },
- {
- value: "400 0.8125rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f-2}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-long-xsmall",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "long",
- "xsmall"
- ]
- },
- {
- value: "500 1.3125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-label-large",
- attributes: {},
- path: [
- "typography",
- "label",
- "large"
- ]
- },
- {
- value: "500 1.125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-label-medium",
- attributes: {},
- path: [
- "typography",
- "label",
- "medium"
- ]
- },
- {
- value: "500 1rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-label-small",
- attributes: {},
- path: [
- "typography",
- "label",
- "small"
- ]
- },
- {
- value: "500 0.875rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-label-xsmall",
- attributes: {},
- path: [
- "typography",
- "label",
- "xsmall"
- ]
- },
- {
- value: "400 1.3125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-error_message-large",
- attributes: {},
- path: [
- "typography",
- "error_message",
- "large"
- ]
- },
- {
- value: "400 1.125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-error_message-medium",
- attributes: {},
- path: [
- "typography",
- "error_message",
- "medium"
- ]
- },
- {
- value: "400 1rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-error_message-small",
- attributes: {},
- path: [
- "typography",
- "error_message",
- "small"
- ]
- },
- {
- value: "400 0.875rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-error_message-xsmall",
- attributes: {},
- path: [
- "typography",
- "error_message",
- "xsmall"
- ]
- },
- {
- value: "400 1.5rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-static.large}"
- },
- type: "typography"
- },
- name: "--fds-typography-interactive-large",
- attributes: {},
- path: [
- "typography",
- "interactive",
- "large"
- ]
- },
- {
- value: "400 1.125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-static.medium}"
- },
- type: "typography"
- },
- name: "--fds-typography-interactive-medium",
- attributes: {},
- path: [
- "typography",
- "interactive",
- "medium"
- ]
- },
- {
- value: "400 1rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-static.small}"
- },
- type: "typography"
- },
- name: "--fds-typography-interactive-small",
- attributes: {},
- path: [
- "typography",
- "interactive",
- "small"
- ]
- }
-]
-
-export const opacity = [
- {
- value: "30%",
- type: "opacity",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "30%",
- type: "opacity"
- },
- name: "--fds-opacity-disabled",
- attributes: {},
- path: [
- "opacity",
- "disabled"
- ]
- }
-]
-
-export const borderRadius = [
- {
- value: "4px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{border_radius.medium}",
- type: "borderRadius"
- },
- name: "--fds-border_radius-interactive",
- attributes: {},
- path: [
- "border_radius",
- "interactive"
- ]
- },
- {
- value: "2px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "2px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-small",
- attributes: {},
- path: [
- "border_radius",
- "small"
- ]
- },
- {
- value: "4px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "4px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-medium",
- attributes: {},
- path: [
- "border_radius",
- "medium"
- ]
- },
- {
- value: "8px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "8px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-large",
- attributes: {},
- path: [
- "border_radius",
- "large"
- ]
- },
- {
- value: "12px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "12px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-xlarge",
- attributes: {},
- path: [
- "border_radius",
- "xlarge"
- ]
- },
- {
- value: "16px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "16px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-xxlarge",
- attributes: {},
- path: [
- "border_radius",
- "xxlarge"
- ]
- },
- {
- value: "24px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "24px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-xxxlarge",
- attributes: {},
- path: [
- "border_radius",
- "xxxlarge"
- ]
- },
- {
- value: "32px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "32px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-xxxxlarge",
- attributes: {},
- path: [
- "border_radius",
- "xxxxlarge"
- ]
- },
- {
- value: "9999px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "9999px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-full",
- attributes: {},
- path: [
- "border_radius",
- "full"
- ]
- }
-]
-
-export const spacing = [
- {
- value: "0rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*0",
- type: "spacing"
- },
- name: "--fds-spacing-0",
- attributes: {},
- path: [
- "spacing",
- "0"
- ]
- },
- {
- value: "0.25rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*1",
- type: "spacing"
- },
- name: "--fds-spacing-1",
- attributes: {},
- path: [
- "spacing",
- "1"
- ]
- },
- {
- value: "0.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*2",
- type: "spacing"
- },
- name: "--fds-spacing-2",
- attributes: {},
- path: [
- "spacing",
- "2"
- ]
- },
- {
- value: "0.75rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*3",
- type: "spacing"
- },
- name: "--fds-spacing-3",
- attributes: {},
- path: [
- "spacing",
- "3"
- ]
- },
- {
- value: "1rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*4",
- type: "spacing"
- },
- name: "--fds-spacing-4",
- attributes: {},
- path: [
- "spacing",
- "4"
- ]
- },
- {
- value: "1.25rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*5",
- type: "spacing"
- },
- name: "--fds-spacing-5",
- attributes: {},
- path: [
- "spacing",
- "5"
- ]
- },
- {
- value: "1.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*6",
- type: "spacing"
- },
- name: "--fds-spacing-6",
- attributes: {},
- path: [
- "spacing",
- "6"
- ]
- },
- {
- value: "1.75rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*7",
- type: "spacing"
- },
- name: "--fds-spacing-7",
- attributes: {},
- path: [
- "spacing",
- "7"
- ]
- },
- {
- value: "2rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*8",
- type: "spacing"
- },
- name: "--fds-spacing-8",
- attributes: {},
- path: [
- "spacing",
- "8"
- ]
- },
- {
- value: "2.25rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*9",
- type: "spacing"
- },
- name: "--fds-spacing-9",
- attributes: {},
- path: [
- "spacing",
- "9"
- ]
- },
- {
- value: "2.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*10",
- type: "spacing"
- },
- name: "--fds-spacing-10",
- attributes: {},
- path: [
- "spacing",
- "10"
- ]
- },
- {
- value: "2.75rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*11",
- type: "spacing"
- },
- name: "--fds-spacing-11",
- attributes: {},
- path: [
- "spacing",
- "11"
- ]
- },
- {
- value: "3rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*12",
- type: "spacing"
- },
- name: "--fds-spacing-12",
- attributes: {},
- path: [
- "spacing",
- "12"
- ]
- },
- {
- value: "3.25rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*13",
- type: "spacing"
- },
- name: "--fds-spacing-13",
- attributes: {},
- path: [
- "spacing",
- "13"
- ]
- },
- {
- value: "3.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*14",
- type: "spacing"
- },
- name: "--fds-spacing-14",
- attributes: {},
- path: [
- "spacing",
- "14"
- ]
- },
- {
- value: "3.75rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*15",
- type: "spacing"
- },
- name: "--fds-spacing-15",
- attributes: {},
- path: [
- "spacing",
- "15"
- ]
- },
- {
- value: "4.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*18",
- type: "spacing"
- },
- name: "--fds-spacing-18",
- attributes: {},
- path: [
- "spacing",
- "18"
- ]
- },
- {
- value: "5.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*22",
- type: "spacing"
- },
- name: "--fds-spacing-22",
- attributes: {},
- path: [
- "spacing",
- "22"
- ]
- },
- {
- value: "6.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*26",
- type: "spacing"
- },
- name: "--fds-spacing-26",
- attributes: {},
- path: [
- "spacing",
- "26"
- ]
- },
- {
- value: "7.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*30",
- type: "spacing"
- },
- name: "--fds-spacing-30",
- attributes: {},
- path: [
- "spacing",
- "30"
- ]
- }
-]
-
-export const sizing = [
- {
- value: "0rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*0",
- type: "sizing"
- },
- name: "--fds-sizing-0",
- attributes: {},
- path: [
- "sizing",
- "0"
- ]
- },
- {
- value: "0.25rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*1",
- type: "sizing"
- },
- name: "--fds-sizing-1",
- attributes: {},
- path: [
- "sizing",
- "1"
- ]
- },
- {
- value: "0.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*2",
- type: "sizing"
- },
- name: "--fds-sizing-2",
- attributes: {},
- path: [
- "sizing",
- "2"
- ]
- },
- {
- value: "0.75rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*3",
- type: "sizing"
- },
- name: "--fds-sizing-3",
- attributes: {},
- path: [
- "sizing",
- "3"
- ]
- },
- {
- value: "1rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*4",
- type: "sizing"
- },
- name: "--fds-sizing-4",
- attributes: {},
- path: [
- "sizing",
- "4"
- ]
- },
- {
- value: "1.25rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*5",
- type: "sizing"
- },
- name: "--fds-sizing-5",
- attributes: {},
- path: [
- "sizing",
- "5"
- ]
- },
- {
- value: "1.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*6",
- type: "sizing"
- },
- name: "--fds-sizing-6",
- attributes: {},
- path: [
- "sizing",
- "6"
- ]
- },
- {
- value: "1.75rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*7",
- type: "sizing"
- },
- name: "--fds-sizing-7",
- attributes: {},
- path: [
- "sizing",
- "7"
- ]
- },
- {
- value: "2rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*8",
- type: "sizing"
- },
- name: "--fds-sizing-8",
- attributes: {},
- path: [
- "sizing",
- "8"
- ]
- },
- {
- value: "2.25rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*9",
- type: "sizing"
- },
- name: "--fds-sizing-9",
- attributes: {},
- path: [
- "sizing",
- "9"
- ]
- },
- {
- value: "2.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*10",
- type: "sizing"
- },
- name: "--fds-sizing-10",
- attributes: {},
- path: [
- "sizing",
- "10"
- ]
- },
- {
- value: "2.75rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*11",
- type: "sizing"
- },
- name: "--fds-sizing-11",
- attributes: {},
- path: [
- "sizing",
- "11"
- ]
- },
- {
- value: "3rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*12",
- type: "sizing"
- },
- name: "--fds-sizing-12",
- attributes: {},
- path: [
- "sizing",
- "12"
- ]
- },
- {
- value: "3.25rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*13",
- type: "sizing"
- },
- name: "--fds-sizing-13",
- attributes: {},
- path: [
- "sizing",
- "13"
- ]
- },
- {
- value: "3.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*14",
- type: "sizing"
- },
- name: "--fds-sizing-14",
- attributes: {},
- path: [
- "sizing",
- "14"
- ]
- },
- {
- value: "3.75rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*15",
- type: "sizing"
- },
- name: "--fds-sizing-15",
- attributes: {},
- path: [
- "sizing",
- "15"
- ]
- },
- {
- value: "4.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*18",
- type: "sizing"
- },
- name: "--fds-sizing-18",
- attributes: {},
- path: [
- "sizing",
- "18"
- ]
- },
- {
- value: "5.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*22",
- type: "sizing"
- },
- name: "--fds-sizing-22",
- attributes: {},
- path: [
- "sizing",
- "22"
- ]
- },
- {
- value: "6.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*26",
- type: "sizing"
- },
- name: "--fds-sizing-26",
- attributes: {},
- path: [
- "sizing",
- "26"
- ]
- },
- {
- value: "7.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*30",
- type: "sizing"
- },
- name: "--fds-sizing-30",
- attributes: {},
- path: [
- "sizing",
- "30"
- ]
- }
-]
-
-export const borderWidth = [
- {
- value: "1px",
- type: "borderWidth",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{border_width.1}",
- type: "borderWidth"
- },
- name: "--fds-border_width-default",
- attributes: {},
- path: [
- "border_width",
- "default"
- ]
- },
- {
- value: "2px",
- type: "borderWidth",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{border_width.2}",
- type: "borderWidth"
- },
- name: "--fds-border_width-active",
- attributes: {},
- path: [
- "border_width",
- "active"
- ]
- },
- {
- value: "2px",
- type: "borderWidth",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "2px",
- type: "borderWidth"
- },
- name: "--fds-border_width-tab_focus",
- attributes: {},
- path: [
- "border_width",
- "tab_focus"
- ]
- }
-]
-
-export const boxShadow = [
- {
- value: "0 0 1px 0 rgba(0,0,0,0.16), 0 1px 2px 0 rgba(0,0,0,0.12)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.100}",
- type: "boxShadow"
- },
- name: "--fds-shadow-xsmall",
- attributes: {},
- path: [
- "shadow",
- "xsmall"
- ]
- },
- {
- value: "0 0 1px 0 rgba(0,0,0,0.15), 0 1px 2px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.1)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.200}",
- type: "boxShadow"
- },
- name: "--fds-shadow-small",
- attributes: {},
- path: [
- "shadow",
- "small"
- ]
- },
- {
- value: "0 0 1px 0 rgba(0,0,0,0.14), 0 2px 4px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.12)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.300}",
- type: "boxShadow"
- },
- name: "--fds-shadow-medium",
- attributes: {},
- path: [
- "shadow",
- "medium"
- ]
- },
- {
- value: "0 0 1px 0 rgba(0,0,0,0.13), 0 3px 5px 0 rgba(0,0,0,0.13), 0 6px 12px 0 rgba(0,0,0,0.14)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.400}",
- type: "boxShadow"
- },
- name: "--fds-shadow-large",
- attributes: {},
- path: [
- "shadow",
- "large"
- ]
- },
- {
- value: "0 0 1px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.16), 0 12px 24px 0 rgba(0,0,0,0.16)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.500}",
- type: "boxShadow"
- },
- name: "--fds-shadow-xlarge",
- attributes: {},
- path: [
- "shadow",
- "xlarge"
- ]
- }
-]
diff --git a/apps/storefront/tokens/dark.ts b/apps/storefront/tokens/dark.ts
new file mode 100644
index 0000000000..d5b64dc0ca
--- /dev/null
+++ b/apps/storefront/tokens/dark.ts
@@ -0,0 +1,4 @@
+export * as digdir from './digdir/dark';
+export * as tilsynet from './uutilsynet/dark';
+export * as altinn from './altinn/dark';
+export * as portal from './portal/dark';
diff --git a/apps/storefront/tokens/digdir.ts b/apps/storefront/tokens/digdir.ts
deleted file mode 100644
index 3f0fa4cef8..0000000000
--- a/apps/storefront/tokens/digdir.ts
+++ /dev/null
@@ -1,4987 +0,0 @@
-/**
- * Do not edit directly
- * These files are generated from design tokens defined in Figma using Token Studio
- */
-
-export const color = [
- {
- value: "#feefef",
- type: "color",
- description: "AAA 12.8 on grey 800\nAA 6.4 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#feefef",
- type: "color",
- description: "AAA 12.8 on grey 800\nAA 6.4 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt1-100",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "100"
- ]
- },
- {
- value: "#fddfe0",
- type: "color",
- description: "Light error color\nAAA 11.4 on grey 800\nAA 5.7 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#fddfe0",
- type: "color",
- description: "Light error color\nAAA 11.4 on grey 800\nAA 5.7 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt1-200",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "200"
- ]
- },
- {
- value: "#fbbfc1",
- type: "color",
- description: "AAA 9 on grey 800\nAA 4.5 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#fbbfc1",
- type: "color",
- description: "AAA 9 on grey 800\nAA 4.5 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt1-300",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "300"
- ]
- },
- {
- value: "#f89fa1",
- type: "color",
- description: "AAA 7.1 on grey 800\nAA18 3.5 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#f89fa1",
- type: "color",
- description: "AAA 7.1 on grey 800\nAA18 3.5 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt1-400",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "400"
- ]
- },
- {
- value: "#f67f82",
- type: "color",
- description: "AA 5.6 on grey 800",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#f67f82",
- type: "color",
- description: "AA 5.6 on grey 800"
- },
- name: "--fds-brand-alt1-500",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "500"
- ]
- },
- {
- value: "#f45f63",
- type: "color",
- description: "AA 4.5 on grey 800",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#f45f63",
- type: "color",
- description: "AA 4.5 on grey 800"
- },
- name: "--fds-brand-alt1-600",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "600"
- ]
- },
- {
- value: "#dc5659",
- type: "color",
- description: "AA18 3.7 on grey 800",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#dc5659",
- type: "color",
- description: "AA18 3.7 on grey 800"
- },
- name: "--fds-brand-alt1-700",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "700"
- ]
- },
- {
- value: "#c34c4f",
- type: "color",
- description: "AA 4.7 on white",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#c34c4f",
- type: "color",
- description: "AA 4.7 on white"
- },
- name: "--fds-brand-alt1-800",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "800"
- ]
- },
- {
- value: "#B83D41",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#B83D41",
- type: "color"
- },
- name: "--fds-brand-alt1-900",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "900"
- ]
- },
- {
- value: "#fcf7e9",
- type: "color",
- description: "AAA 13.3 on grey 800\nAA 6.7 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#fcf7e9",
- type: "color",
- description: "AAA 13.3 on grey 800\nAA 6.7 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt2-100",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "100"
- ]
- },
- {
- value: "#faeec2",
- type: "color",
- description: "Light warning color\nAAA 12.3 on grey 800\nAA 1.1 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#faeec2",
- type: "color",
- description: "Light warning color\nAAA 12.3 on grey 800\nAA 1.1 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt2-200",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "200"
- ]
- },
- {
- value: "#f5dda6",
- type: "color",
- description: "AAA 10 on grey 800\nAA 5.4 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#f5dda6",
- type: "color",
- description: "AAA 10 on grey 800\nAA 5.4 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt2-300",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "300"
- ]
- },
- {
- value: "#efcc79",
- type: "color",
- description: "AAA 9.2 on grey 800\nAA 4.6 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#efcc79",
- type: "color",
- description: "AAA 9.2 on grey 800\nAA 4.6 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt2-400",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "400"
- ]
- },
- {
- value: "#eabb4d",
- type: "color",
- description: "AAA 7.9 on grey 800\nAA18 4 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#eabb4d",
- type: "color",
- description: "AAA 7.9 on grey 800\nAA18 4 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt2-500",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "500"
- ]
- },
- {
- value: "#e5aa20",
- type: "color",
- description: "AA 6.8 on grey 800\nAA18 3.4 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#e5aa20",
- type: "color",
- description: "AA 6.8 on grey 800\nAA18 3.4 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt2-600",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "600"
- ]
- },
- {
- value: "#ce991d",
- type: "color",
- description: "AA 5.5 on grey 800",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#ce991d",
- type: "color",
- description: "AA 5.5 on grey 800"
- },
- name: "--fds-brand-alt2-700",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "700"
- ]
- },
- {
- value: "#b7881a",
- type: "color",
- description: "AA18 4.4 on grey 800\nAA18 3.2 on white",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#b7881a",
- type: "color",
- description: "AA18 4.4 on grey 800\nAA18 3.2 on white"
- },
- name: "--fds-brand-alt2-800",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "800"
- ]
- },
- {
- value: "#A17717",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#A17717",
- type: "color"
- },
- name: "--fds-brand-alt2-900",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "900"
- ]
- },
- {
- value: "#e9f5ff",
- type: "color",
- description: "AAA 12.9 on grey 800\nAA 6.5 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#e9f5ff",
- type: "color",
- description: "AAA 12.9 on grey 800\nAA 6.5 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt3-100",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "100"
- ]
- },
- {
- value: "#d2eafd",
- type: "color",
- description: "Light information color \nAAA 11.5 on grey 800\nAA 5.8 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#d2eafd",
- type: "color",
- description: "Light information color \nAAA 11.5 on grey 800\nAA 5.8 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt3-200",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "200"
- ]
- },
- {
- value: "#a5d6fb",
- type: "color",
- description: "AAA 9.2 on grey 800\nAA 4.6 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#a5d6fb",
- type: "color",
- description: "AAA 9.2 on grey 800\nAA 4.6 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt3-300",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "300"
- ]
- },
- {
- value: "#78c1f9",
- type: "color",
- description: "AAA 7.3 on grey 800\nAA18 3.7 as bkdg for interaction blue",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#78c1f9",
- type: "color",
- description: "AAA 7.3 on grey 800\nAA18 3.7 as bkdg for interaction blue"
- },
- name: "--fds-brand-alt3-400",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "400"
- ]
- },
- {
- value: "#4badf7",
- type: "color",
- description: "AA 5.8 on grey 800",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#4badf7",
- type: "color",
- description: "AA 5.8 on grey 800"
- },
- name: "--fds-brand-alt3-500",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "500"
- ]
- },
- {
- value: "#1e98f5",
- type: "color",
- description: "AA 4.6 on grey 800",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#1e98f5",
- type: "color",
- description: "AA 4.6 on grey 800"
- },
- name: "--fds-brand-alt3-600",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "600"
- ]
- },
- {
- value: "#1b88dd",
- type: "color",
- description: "AA18 3.8 on grey 800",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#1b88dd",
- type: "color",
- description: "AA18 3.8 on grey 800"
- },
- name: "--fds-brand-alt3-700",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "700"
- ]
- },
- {
- value: "#156aac",
- type: "color",
- description: "AA 5.6 on white",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#156aac",
- type: "color",
- description: "AA 5.6 on white"
- },
- name: "--fds-brand-alt3-800",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "800"
- ]
- },
- {
- value: "#125A91",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#125A91",
- type: "color"
- },
- name: "--fds-brand-alt3-900",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "900"
- ]
- },
- {
- value: "#fddfe0",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt1.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-first-light",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "first",
- "light"
- ]
- },
- {
- value: "#fbbfc1",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt1.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-first-light-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "first",
- "light-hover"
- ]
- },
- {
- value: "#f89fa1",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt1.400}",
- type: "color"
- },
- name: "--fds-semantic-surface-first-light-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "first",
- "light-active"
- ]
- },
- {
- value: "#c34c4f",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt1.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-first-dark",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "first",
- "dark"
- ]
- },
- {
- value: "#faeec2",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt2.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-second-light",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "second",
- "light"
- ]
- },
- {
- value: "#f5dda6",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt2.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-second-light-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "second",
- "light-hover"
- ]
- },
- {
- value: "#efcc79",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt2.400}",
- type: "color"
- },
- name: "--fds-semantic-surface-second-light-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "second",
- "light-active"
- ]
- },
- {
- value: "#A17717",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt2.900}",
- type: "color"
- },
- name: "--fds-semantic-surface-second-dark",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "second",
- "dark"
- ]
- },
- {
- value: "#d2eafd",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt3.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-third-light",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "third",
- "light"
- ]
- },
- {
- value: "#a5d6fb",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt3.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-third-light-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "third",
- "light-hover"
- ]
- },
- {
- value: "#78c1f9",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt3.400}",
- type: "color"
- },
- name: "--fds-semantic-surface-third-light-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "third",
- "light-active"
- ]
- },
- {
- value: "#156aac",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt3.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-third-dark",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "third",
- "dark"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "subtle"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "subtle-hover"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "default"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- description: "Standard farge for handlinger",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color",
- description: "Standard farge for handlinger"
- },
- name: "--fds-semantic-surface-action-first-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "no_fill"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "no_fill-hover"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "no_fill-active"
- ]
- },
- {
- value: "#f4f5f6",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.grey.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "subtle"
- ]
- },
- {
- value: "#e9eaec",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.grey.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "subtle-hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "default"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.9)",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.9)",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "hover"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.8)",
- type: "color",
- description: "Standard farge for handlinger",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.8)",
- type: "color",
- description: "Standard farge for handlinger"
- },
- name: "--fds-semantic-surface-action-second-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "no_fill"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.1)",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.1)",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "no_fill-hover"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.2)",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.2)",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "no_fill-active"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "subtle"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "subtle-hover"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "default"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- description: "Standard farge for handlinger",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color",
- description: "Standard farge for handlinger"
- },
- name: "--fds-semantic-surface-action-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "no_fill"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "no_fill-hover"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "no_fill-active"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-checked",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "checked"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "default"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-selected",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "selected"
- ]
- },
- {
- value: "#f4f5f6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "subtle"
- ]
- },
- {
- value: "#e9eaec",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "subtle-hover"
- ]
- },
- {
- value: "#68707c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.600}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-dark",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "dark"
- ]
- },
- {
- value: "#4b5563",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-dark-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "dark-hover"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-inverted",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "inverted"
- ]
- },
- {
- value: "#d1f4e1",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "subtle"
- ]
- },
- {
- value: "#8be4b5",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "subtle-hover"
- ]
- },
- {
- value: "#118849",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "default"
- ]
- },
- {
- value: "#0c6536",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "hover"
- ]
- },
- {
- value: "#084826",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.900}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "no_fill"
- ]
- },
- {
- value: "#d1f4e1",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "no_fill-hover"
- ]
- },
- {
- value: "#8be4b5",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "no_fill-active"
- ]
- },
- {
- value: "#fffbe6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-warning-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "warning",
- "subtle"
- ]
- },
- {
- value: "#fff4b4",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-warning-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "warning",
- "subtle-hover"
- ]
- },
- {
- value: "#fff4b4",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-warning-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "warning",
- "default"
- ]
- },
- {
- value: "#ffed83",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-warning-default-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "warning",
- "default-hover"
- ]
- },
- {
- value: "#f9d5db",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "subtle"
- ]
- },
- {
- value: "#f3abb6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "subtle-hover"
- ]
- },
- {
- value: "#e02e49",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.500}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "default"
- ]
- },
- {
- value: "#b3253a",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.600}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "hover"
- ]
- },
- {
- value: "#861c2c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "no_fill"
- ]
- },
- {
- value: "#f9d5db",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "no_fill-hover"
- ]
- },
- {
- value: "#f3abb6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "no_fill-active"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-info-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "info",
- "subtle"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-info-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "info",
- "subtle-hover"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "default"
- ]
- },
- {
- value: "#ffffffe6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffffe6",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "hover"
- ]
- },
- {
- value: "#ffffffcc",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffffcc",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "active"
- ]
- },
- {
- value: "#ffffff00",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffff00",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "no_fill"
- ]
- },
- {
- value: "#ffffff1a",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffff1a",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "no_fill-hover"
- ]
- },
- {
- value: "#ffffff33",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffff33",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "no_fill-active"
- ]
- },
- {
- value: "#ffda06",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.500}",
- type: "color"
- },
- name: "--fds-semantic-surface-focus-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "focus",
- "default"
- ]
- },
- {
- value: "#f45f63",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt1.600}",
- type: "color"
- },
- name: "--fds-semantic-border-first-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "first",
- "default"
- ]
- },
- {
- value: "#dc5659",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt1.700}",
- type: "color"
- },
- name: "--fds-semantic-border-first-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "first",
- "hover"
- ]
- },
- {
- value: "#c34c4f",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt1.800}",
- type: "color"
- },
- name: "--fds-semantic-border-first-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "first",
- "active"
- ]
- },
- {
- value: "#e5aa20",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt2.600}",
- type: "color"
- },
- name: "--fds-semantic-border-second-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "second",
- "default"
- ]
- },
- {
- value: "#ce991d",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt2.700}",
- type: "color"
- },
- name: "--fds-semantic-border-second-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "second",
- "hover"
- ]
- },
- {
- value: "#b7881a",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt2.800}",
- type: "color"
- },
- name: "--fds-semantic-border-second-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "second",
- "active"
- ]
- },
- {
- value: "#1e98f5",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt3.600}",
- type: "color"
- },
- name: "--fds-semantic-border-third-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "third",
- "default"
- ]
- },
- {
- value: "#1b88dd",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt3.700}",
- type: "color"
- },
- name: "--fds-semantic-border-third-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "third",
- "hover"
- ]
- },
- {
- value: "#156aac",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{brand.alt3.800}",
- type: "color"
- },
- name: "--fds-semantic-border-third-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "third",
- "active"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "subtle"
- ]
- },
- {
- value: "#66a1d6",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.400}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "subtle-hover"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "default"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "active"
- ]
- },
- {
- value: "#e9eaec",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.grey.200}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "subtle"
- ]
- },
- {
- value: "#d2d5d8",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.grey.300}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "subtle-hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "default"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "active"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-border-action-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "subtle"
- ]
- },
- {
- value: "#66a1d6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.400}",
- type: "color"
- },
- name: "--fds-semantic-border-action-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "subtle-hover"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-action-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "default"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-action-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "active"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-dark",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "dark"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-action-dark-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "dark-hover"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-border-info-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "info",
- "default"
- ]
- },
- {
- value: "#68707c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.600}",
- type: "color"
- },
- name: "--fds-semantic-border-neutral-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "neutral",
- "default"
- ]
- },
- {
- value: "#d2d5d8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.300}",
- type: "color"
- },
- name: "--fds-semantic-border-neutral-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "neutral",
- "subtle"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-border-neutral-strong",
- attributes: {},
- path: [
- "semantic",
- "border",
- "neutral",
- "strong"
- ]
- },
- {
- value: "#118849",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.700}",
- type: "color"
- },
- name: "--fds-semantic-border-success-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "success",
- "default"
- ]
- },
- {
- value: "#0c6536",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.800}",
- type: "color"
- },
- name: "--fds-semantic-border-success-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "success",
- "hover"
- ]
- },
- {
- value: "#084826",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.900}",
- type: "color"
- },
- name: "--fds-semantic-border-success-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "success",
- "active"
- ]
- },
- {
- value: "#cc7005",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.600}",
- type: "color"
- },
- name: "--fds-semantic-border-warning-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "warning",
- "default"
- ]
- },
- {
- value: "#995404",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.700}",
- type: "color"
- },
- name: "--fds-semantic-border-warning-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "warning",
- "hover"
- ]
- },
- {
- value: "#663802",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.800}",
- type: "color"
- },
- name: "--fds-semantic-border-warning-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "warning",
- "active"
- ]
- },
- {
- value: "#e02e49",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.500}",
- type: "color"
- },
- name: "--fds-semantic-border-danger-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "danger",
- "default"
- ]
- },
- {
- value: "#b3253a",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.600}",
- type: "color"
- },
- name: "--fds-semantic-border-danger-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "danger",
- "hover"
- ]
- },
- {
- value: "#861c2c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.700}",
- type: "color"
- },
- name: "--fds-semantic-border-danger-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "danger",
- "active"
- ]
- },
- {
- value: "#ffda06",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.500}",
- type: "color"
- },
- name: "--fds-semantic-border-focus-outline",
- attributes: {},
- path: [
- "semantic",
- "border",
- "focus",
- "outline"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{semantic.border.neutral.strong}",
- type: "color"
- },
- name: "--fds-semantic-border-focus-boxshadow",
- attributes: {},
- path: [
- "semantic",
- "border",
- "focus",
- "boxshadow"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-border-on_inverted-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "on_inverted",
- "default"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-input-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "input",
- "default"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-input-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "input",
- "hover"
- ]
- },
- {
- value: "#bcbfc5",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.400}",
- type: "color"
- },
- name: "--fds-semantic-border-divider-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "divider",
- "default"
- ]
- },
- {
- value: "#d2d5d8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.300}",
- type: "color"
- },
- name: "--fds-semantic-border-divider-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "divider",
- "subtle"
- ]
- },
- {
- value: "#68707c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.600}",
- type: "color"
- },
- name: "--fds-semantic-border-divider-strong",
- attributes: {},
- path: [
- "semantic",
- "border",
- "divider",
- "strong"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-text-action-first-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "first",
- "default"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#004e95",
- type: "color"
- },
- name: "--fds-semantic-text-action-first-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "first",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "#00315d",
- type: "color"
- },
- name: "--fds-semantic-text-action-first-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "first",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-action-first-on_action",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "first",
- "on_action"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-second-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "second",
- "default"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-second-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "second",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-second-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "second",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Brand/Digdir.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-action-second-on_action",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "second",
- "on_action"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-text-action-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "default"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-text-action-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-action-on_action",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "on_action"
- ]
- },
- {
- value: "#0c6536",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.800}",
- type: "color"
- },
- name: "--fds-semantic-text-success-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "default"
- ]
- },
- {
- value: "#084826",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.900}",
- type: "color"
- },
- name: "--fds-semantic-text-success-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "hover"
- ]
- },
- {
- value: "#084826",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.900}",
- type: "color"
- },
- name: "--fds-semantic-text-success-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-success-on_success",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "on_success"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-text-success-on_success_subtle",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "on_success_subtle"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-text-neutral-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "neutral",
- "default"
- ]
- },
- {
- value: "#4b5563",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.700}",
- type: "color"
- },
- name: "--fds-semantic-text-neutral-subtle",
- attributes: {},
- path: [
- "semantic",
- "text",
- "neutral",
- "subtle"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-neutral-on_inverted",
- attributes: {},
- path: [
- "semantic",
- "text",
- "neutral",
- "on_inverted"
- ]
- },
- {
- value: "#995404",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.700}",
- type: "color"
- },
- name: "--fds-semantic-text-warning-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "warning",
- "default"
- ]
- },
- {
- value: "#cc7005",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.600}",
- type: "color"
- },
- name: "--fds-semantic-text-warning-icon_warning",
- attributes: {},
- path: [
- "semantic",
- "text",
- "warning",
- "icon_warning"
- ]
- },
- {
- value: "#663802",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.800}",
- type: "color"
- },
- name: "--fds-semantic-text-warning-on_warning",
- attributes: {},
- path: [
- "semantic",
- "text",
- "warning",
- "on_warning"
- ]
- },
- {
- value: "#b3253a",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.600}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "default"
- ]
- },
- {
- value: "#861c2c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.700}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "hover"
- ]
- },
- {
- value: "#5a121d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.800}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-on_danger",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "on_danger"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-on_danger_subtle",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "on_danger_subtle"
- ]
- },
- {
- value: "#7a1265",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.purple.700}",
- type: "color"
- },
- name: "--fds-semantic-text-visited-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "visited",
- "default"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-background-default",
- attributes: {},
- path: [
- "semantic",
- "background",
- "default"
- ]
- },
- {
- value: "#f4f5f6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.100}",
- type: "color"
- },
- name: "--fds-semantic-background-subtle",
- attributes: {},
- path: [
- "semantic",
- "background",
- "subtle"
- ]
- }
-]
-
-export const typography = [
- {
- value: "500 3.75rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f7}"
- },
- type: "typography"
- },
- name: "--fds-typography-heading-2xlarge",
- attributes: {},
- path: [
- "typography",
- "heading",
- "2xlarge"
- ]
- },
- {
- value: "500 3rem/1.3 'Inter'",
- type: "typography",
- description: "H1",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f6}"
- },
- type: "typography",
- description: "H1"
- },
- name: "--fds-typography-heading-xlarge",
- attributes: {},
- path: [
- "typography",
- "heading",
- "xlarge"
- ]
- },
- {
- value: "500 2.25rem/1.3 'Inter'",
- type: "typography",
- description: "H2",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f5}"
- },
- type: "typography",
- description: "H2"
- },
- name: "--fds-typography-heading-large",
- attributes: {},
- path: [
- "typography",
- "heading",
- "large"
- ]
- },
- {
- value: "500 1.875rem/1.3 'Inter'",
- type: "typography",
- description: "H3",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f4}"
- },
- type: "typography",
- description: "H3"
- },
- name: "--fds-typography-heading-medium",
- attributes: {},
- path: [
- "typography",
- "heading",
- "medium"
- ]
- },
- {
- value: "500 1.5rem/1.3 'Inter'",
- type: "typography",
- description: "H4",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f3}"
- },
- type: "typography",
- description: "H4"
- },
- name: "--fds-typography-heading-small",
- attributes: {},
- path: [
- "typography",
- "heading",
- "small"
- ]
- },
- {
- value: "500 1.3125rem/1.3 'Inter'",
- type: "typography",
- description: "H5",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f2}"
- },
- type: "typography",
- description: "H5"
- },
- name: "--fds-typography-heading-xsmall",
- attributes: {},
- path: [
- "typography",
- "heading",
- "xsmall"
- ]
- },
- {
- value: "500 1.125rem/1.3 'Inter'",
- type: "typography",
- description: "H6",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f1}"
- },
- type: "typography",
- description: "H6"
- },
- name: "--fds-typography-heading-xxsmall",
- attributes: {},
- path: [
- "typography",
- "heading",
- "xxsmall"
- ]
- },
- {
- value: "400 1.875rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f4}"
- },
- type: "typography"
- },
- name: "--fds-typography-ingress-large",
- attributes: {},
- path: [
- "typography",
- "ingress",
- "large"
- ]
- },
- {
- value: "400 1.5rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f3}"
- },
- type: "typography"
- },
- name: "--fds-typography-ingress-medium",
- attributes: {},
- path: [
- "typography",
- "ingress",
- "medium"
- ]
- },
- {
- value: "400 1.3125rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-ingress-small",
- attributes: {},
- path: [
- "typography",
- "ingress",
- "small"
- ]
- },
- {
- value: "400 1.125rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-ingress-xsmall",
- attributes: {},
- path: [
- "typography",
- "ingress",
- "xsmall"
- ]
- },
- {
- value: "400 1.3125rem/1.5 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.500}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-large",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "large"
- ]
- },
- {
- value: "400 1.125rem/1.5 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.500}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-medium",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "medium"
- ]
- },
- {
- value: "400 1rem/1.5 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.500}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-small",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "small"
- ]
- },
- {
- value: "400 0.875rem/1.5 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.500}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-xsmall",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "xsmall"
- ]
- },
- {
- value: "400 1.3125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-short-large",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "short",
- "large"
- ]
- },
- {
- value: "400 1.125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-short-medium",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "short",
- "medium"
- ]
- },
- {
- value: "400 1rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-short-small",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "short",
- "small"
- ]
- },
- {
- value: "400 0.875rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-short-xsmall",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "short",
- "xsmall"
- ]
- },
- {
- value: "400 1.125rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-long-large",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "long",
- "large"
- ]
- },
- {
- value: "400 1rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-long-medium",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "long",
- "medium"
- ]
- },
- {
- value: "400 0.875rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-long-small",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "long",
- "small"
- ]
- },
- {
- value: "400 0.8125rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f-2}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-long-xsmall",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "long",
- "xsmall"
- ]
- },
- {
- value: "500 1.3125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-label-large",
- attributes: {},
- path: [
- "typography",
- "label",
- "large"
- ]
- },
- {
- value: "500 1.125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-label-medium",
- attributes: {},
- path: [
- "typography",
- "label",
- "medium"
- ]
- },
- {
- value: "500 1rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-label-small",
- attributes: {},
- path: [
- "typography",
- "label",
- "small"
- ]
- },
- {
- value: "500 0.875rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-label-xsmall",
- attributes: {},
- path: [
- "typography",
- "label",
- "xsmall"
- ]
- },
- {
- value: "400 1.3125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-error_message-large",
- attributes: {},
- path: [
- "typography",
- "error_message",
- "large"
- ]
- },
- {
- value: "400 1.125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-error_message-medium",
- attributes: {},
- path: [
- "typography",
- "error_message",
- "medium"
- ]
- },
- {
- value: "400 1rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-error_message-small",
- attributes: {},
- path: [
- "typography",
- "error_message",
- "small"
- ]
- },
- {
- value: "400 0.875rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-error_message-xsmall",
- attributes: {},
- path: [
- "typography",
- "error_message",
- "xsmall"
- ]
- },
- {
- value: "400 1.5rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-static.large}"
- },
- type: "typography"
- },
- name: "--fds-typography-interactive-large",
- attributes: {},
- path: [
- "typography",
- "interactive",
- "large"
- ]
- },
- {
- value: "400 1.125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-static.medium}"
- },
- type: "typography"
- },
- name: "--fds-typography-interactive-medium",
- attributes: {},
- path: [
- "typography",
- "interactive",
- "medium"
- ]
- },
- {
- value: "400 1rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-static.small}"
- },
- type: "typography"
- },
- name: "--fds-typography-interactive-small",
- attributes: {},
- path: [
- "typography",
- "interactive",
- "small"
- ]
- }
-]
-
-export const opacity = [
- {
- value: "30%",
- type: "opacity",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "30%",
- type: "opacity"
- },
- name: "--fds-opacity-disabled",
- attributes: {},
- path: [
- "opacity",
- "disabled"
- ]
- }
-]
-
-export const borderRadius = [
- {
- value: "4px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{border_radius.medium}",
- type: "borderRadius"
- },
- name: "--fds-border_radius-interactive",
- attributes: {},
- path: [
- "border_radius",
- "interactive"
- ]
- },
- {
- value: "2px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "2px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-small",
- attributes: {},
- path: [
- "border_radius",
- "small"
- ]
- },
- {
- value: "4px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "4px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-medium",
- attributes: {},
- path: [
- "border_radius",
- "medium"
- ]
- },
- {
- value: "8px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "8px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-large",
- attributes: {},
- path: [
- "border_radius",
- "large"
- ]
- },
- {
- value: "12px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "12px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-xlarge",
- attributes: {},
- path: [
- "border_radius",
- "xlarge"
- ]
- },
- {
- value: "16px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "16px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-xxlarge",
- attributes: {},
- path: [
- "border_radius",
- "xxlarge"
- ]
- },
- {
- value: "24px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "24px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-xxxlarge",
- attributes: {},
- path: [
- "border_radius",
- "xxxlarge"
- ]
- },
- {
- value: "32px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "32px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-xxxxlarge",
- attributes: {},
- path: [
- "border_radius",
- "xxxxlarge"
- ]
- },
- {
- value: "9999px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "9999px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-full",
- attributes: {},
- path: [
- "border_radius",
- "full"
- ]
- }
-]
-
-export const spacing = [
- {
- value: "0rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*0",
- type: "spacing"
- },
- name: "--fds-spacing-0",
- attributes: {},
- path: [
- "spacing",
- "0"
- ]
- },
- {
- value: "0.25rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*1",
- type: "spacing"
- },
- name: "--fds-spacing-1",
- attributes: {},
- path: [
- "spacing",
- "1"
- ]
- },
- {
- value: "0.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*2",
- type: "spacing"
- },
- name: "--fds-spacing-2",
- attributes: {},
- path: [
- "spacing",
- "2"
- ]
- },
- {
- value: "0.75rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*3",
- type: "spacing"
- },
- name: "--fds-spacing-3",
- attributes: {},
- path: [
- "spacing",
- "3"
- ]
- },
- {
- value: "1rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*4",
- type: "spacing"
- },
- name: "--fds-spacing-4",
- attributes: {},
- path: [
- "spacing",
- "4"
- ]
- },
- {
- value: "1.25rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*5",
- type: "spacing"
- },
- name: "--fds-spacing-5",
- attributes: {},
- path: [
- "spacing",
- "5"
- ]
- },
- {
- value: "1.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*6",
- type: "spacing"
- },
- name: "--fds-spacing-6",
- attributes: {},
- path: [
- "spacing",
- "6"
- ]
- },
- {
- value: "1.75rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*7",
- type: "spacing"
- },
- name: "--fds-spacing-7",
- attributes: {},
- path: [
- "spacing",
- "7"
- ]
- },
- {
- value: "2rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*8",
- type: "spacing"
- },
- name: "--fds-spacing-8",
- attributes: {},
- path: [
- "spacing",
- "8"
- ]
- },
- {
- value: "2.25rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*9",
- type: "spacing"
- },
- name: "--fds-spacing-9",
- attributes: {},
- path: [
- "spacing",
- "9"
- ]
- },
- {
- value: "2.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*10",
- type: "spacing"
- },
- name: "--fds-spacing-10",
- attributes: {},
- path: [
- "spacing",
- "10"
- ]
- },
- {
- value: "2.75rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*11",
- type: "spacing"
- },
- name: "--fds-spacing-11",
- attributes: {},
- path: [
- "spacing",
- "11"
- ]
- },
- {
- value: "3rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*12",
- type: "spacing"
- },
- name: "--fds-spacing-12",
- attributes: {},
- path: [
- "spacing",
- "12"
- ]
- },
- {
- value: "3.25rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*13",
- type: "spacing"
- },
- name: "--fds-spacing-13",
- attributes: {},
- path: [
- "spacing",
- "13"
- ]
- },
- {
- value: "3.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*14",
- type: "spacing"
- },
- name: "--fds-spacing-14",
- attributes: {},
- path: [
- "spacing",
- "14"
- ]
- },
- {
- value: "3.75rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*15",
- type: "spacing"
- },
- name: "--fds-spacing-15",
- attributes: {},
- path: [
- "spacing",
- "15"
- ]
- },
- {
- value: "4.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*18",
- type: "spacing"
- },
- name: "--fds-spacing-18",
- attributes: {},
- path: [
- "spacing",
- "18"
- ]
- },
- {
- value: "5.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*22",
- type: "spacing"
- },
- name: "--fds-spacing-22",
- attributes: {},
- path: [
- "spacing",
- "22"
- ]
- },
- {
- value: "6.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*26",
- type: "spacing"
- },
- name: "--fds-spacing-26",
- attributes: {},
- path: [
- "spacing",
- "26"
- ]
- },
- {
- value: "7.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*30",
- type: "spacing"
- },
- name: "--fds-spacing-30",
- attributes: {},
- path: [
- "spacing",
- "30"
- ]
- }
-]
-
-export const sizing = [
- {
- value: "0rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*0",
- type: "sizing"
- },
- name: "--fds-sizing-0",
- attributes: {},
- path: [
- "sizing",
- "0"
- ]
- },
- {
- value: "0.25rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*1",
- type: "sizing"
- },
- name: "--fds-sizing-1",
- attributes: {},
- path: [
- "sizing",
- "1"
- ]
- },
- {
- value: "0.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*2",
- type: "sizing"
- },
- name: "--fds-sizing-2",
- attributes: {},
- path: [
- "sizing",
- "2"
- ]
- },
- {
- value: "0.75rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*3",
- type: "sizing"
- },
- name: "--fds-sizing-3",
- attributes: {},
- path: [
- "sizing",
- "3"
- ]
- },
- {
- value: "1rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*4",
- type: "sizing"
- },
- name: "--fds-sizing-4",
- attributes: {},
- path: [
- "sizing",
- "4"
- ]
- },
- {
- value: "1.25rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*5",
- type: "sizing"
- },
- name: "--fds-sizing-5",
- attributes: {},
- path: [
- "sizing",
- "5"
- ]
- },
- {
- value: "1.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*6",
- type: "sizing"
- },
- name: "--fds-sizing-6",
- attributes: {},
- path: [
- "sizing",
- "6"
- ]
- },
- {
- value: "1.75rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*7",
- type: "sizing"
- },
- name: "--fds-sizing-7",
- attributes: {},
- path: [
- "sizing",
- "7"
- ]
- },
- {
- value: "2rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*8",
- type: "sizing"
- },
- name: "--fds-sizing-8",
- attributes: {},
- path: [
- "sizing",
- "8"
- ]
- },
- {
- value: "2.25rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*9",
- type: "sizing"
- },
- name: "--fds-sizing-9",
- attributes: {},
- path: [
- "sizing",
- "9"
- ]
- },
- {
- value: "2.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*10",
- type: "sizing"
- },
- name: "--fds-sizing-10",
- attributes: {},
- path: [
- "sizing",
- "10"
- ]
- },
- {
- value: "2.75rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*11",
- type: "sizing"
- },
- name: "--fds-sizing-11",
- attributes: {},
- path: [
- "sizing",
- "11"
- ]
- },
- {
- value: "3rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*12",
- type: "sizing"
- },
- name: "--fds-sizing-12",
- attributes: {},
- path: [
- "sizing",
- "12"
- ]
- },
- {
- value: "3.25rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*13",
- type: "sizing"
- },
- name: "--fds-sizing-13",
- attributes: {},
- path: [
- "sizing",
- "13"
- ]
- },
- {
- value: "3.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*14",
- type: "sizing"
- },
- name: "--fds-sizing-14",
- attributes: {},
- path: [
- "sizing",
- "14"
- ]
- },
- {
- value: "3.75rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*15",
- type: "sizing"
- },
- name: "--fds-sizing-15",
- attributes: {},
- path: [
- "sizing",
- "15"
- ]
- },
- {
- value: "4.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*18",
- type: "sizing"
- },
- name: "--fds-sizing-18",
- attributes: {},
- path: [
- "sizing",
- "18"
- ]
- },
- {
- value: "5.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*22",
- type: "sizing"
- },
- name: "--fds-sizing-22",
- attributes: {},
- path: [
- "sizing",
- "22"
- ]
- },
- {
- value: "6.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*26",
- type: "sizing"
- },
- name: "--fds-sizing-26",
- attributes: {},
- path: [
- "sizing",
- "26"
- ]
- },
- {
- value: "7.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*30",
- type: "sizing"
- },
- name: "--fds-sizing-30",
- attributes: {},
- path: [
- "sizing",
- "30"
- ]
- }
-]
-
-export const borderWidth = [
- {
- value: "1px",
- type: "borderWidth",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{border_width.1}",
- type: "borderWidth"
- },
- name: "--fds-border_width-default",
- attributes: {},
- path: [
- "border_width",
- "default"
- ]
- },
- {
- value: "2px",
- type: "borderWidth",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{border_width.2}",
- type: "borderWidth"
- },
- name: "--fds-border_width-active",
- attributes: {},
- path: [
- "border_width",
- "active"
- ]
- },
- {
- value: "2px",
- type: "borderWidth",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "2px",
- type: "borderWidth"
- },
- name: "--fds-border_width-tab_focus",
- attributes: {},
- path: [
- "border_width",
- "tab_focus"
- ]
- }
-]
-
-export const boxShadow = [
- {
- value: "0 0 1px 0 rgba(0,0,0,0.16), 0 1px 2px 0 rgba(0,0,0,0.12)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.100}",
- type: "boxShadow"
- },
- name: "--fds-shadow-xsmall",
- attributes: {},
- path: [
- "shadow",
- "xsmall"
- ]
- },
- {
- value: "0 0 1px 0 rgba(0,0,0,0.15), 0 1px 2px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.1)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.200}",
- type: "boxShadow"
- },
- name: "--fds-shadow-small",
- attributes: {},
- path: [
- "shadow",
- "small"
- ]
- },
- {
- value: "0 0 1px 0 rgba(0,0,0,0.14), 0 2px 4px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.12)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.300}",
- type: "boxShadow"
- },
- name: "--fds-shadow-medium",
- attributes: {},
- path: [
- "shadow",
- "medium"
- ]
- },
- {
- value: "0 0 1px 0 rgba(0,0,0,0.13), 0 3px 5px 0 rgba(0,0,0,0.13), 0 6px 12px 0 rgba(0,0,0,0.14)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.400}",
- type: "boxShadow"
- },
- name: "--fds-shadow-large",
- attributes: {},
- path: [
- "shadow",
- "large"
- ]
- },
- {
- value: "0 0 1px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.16), 0 12px 24px 0 rgba(0,0,0,0.16)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.500}",
- type: "boxShadow"
- },
- name: "--fds-shadow-xlarge",
- attributes: {},
- path: [
- "shadow",
- "xlarge"
- ]
- }
-]
diff --git a/apps/storefront/tokens/digdir/dark.ts b/apps/storefront/tokens/digdir/dark.ts
new file mode 100644
index 0000000000..1e1181ef1c
--- /dev/null
+++ b/apps/storefront/tokens/digdir/dark.ts
@@ -0,0 +1,3811 @@
+/**
+ * These files are generated from design tokens defind using Token Studio
+ */
+
+export const color = [
+ {
+ $type: "color",
+ $value: "#001c36",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.1}"
+ },
+ name: "--ds-color-accent-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#002545",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.2}"
+ },
+ name: "--ds-color-accent-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#00315b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.3}"
+ },
+ name: "--ds-color-accent-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#013f75",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.4}"
+ },
+ name: "--ds-color-accent-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#014b8e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.5}"
+ },
+ name: "--ds-color-accent-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#01539b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.6}"
+ },
+ name: "--ds-color-accent-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1971c0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.7}"
+ },
+ name: "--ds-color-accent-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9bc2e4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.8}"
+ },
+ name: "--ds-color-accent-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#4b90ce",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.9}"
+ },
+ name: "--ds-color-accent-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#277ac4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.10}"
+ },
+ name: "--ds-color-accent-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0163ba",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.11}"
+ },
+ name: "--ds-color-accent-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#72a8d9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.12}"
+ },
+ name: "--ds-color-accent-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e3f3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.13}"
+ },
+ name: "--ds-color-accent-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.contrast-1}"
+ },
+ name: "--ds-color-accent-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0d1823",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.contrast-2}"
+ },
+ name: "--ds-color-accent-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#131c27",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.1}"
+ },
+ name: "--ds-color-neutral-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#192433",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.2}"
+ },
+ name: "--ds-color-neutral-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#243142",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.3}"
+ },
+ name: "--ds-color-neutral-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#333e4e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.4}"
+ },
+ name: "--ds-color-neutral-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#424d5b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.5}"
+ },
+ name: "--ds-color-neutral-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#495361",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.6}"
+ },
+ name: "--ds-color-neutral-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#67707c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.7}"
+ },
+ name: "--ds-color-neutral-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bbbfc4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.8}"
+ },
+ name: "--ds-color-neutral-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a6abb2",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.9}"
+ },
+ name: "--ds-color-neutral-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#90969e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.10}"
+ },
+ name: "--ds-color-neutral-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7a818c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.11}"
+ },
+ name: "--ds-color-neutral-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9ea3ab",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.12}"
+ },
+ name: "--ds-color-neutral-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e1e3e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.13}"
+ },
+ name: "--ds-color-neutral-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.contrast-1}"
+ },
+ name: "--ds-color-neutral-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1b1b1d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.contrast-2}"
+ },
+ name: "--ds-color-neutral-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2f1213",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.1}"
+ },
+ name: "--ds-color-brand1-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3e1819",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.2}"
+ },
+ name: "--ds-color-brand1-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#522022",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.3}"
+ },
+ name: "--ds-color-brand1-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#68292b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.4}"
+ },
+ name: "--ds-color-brand1-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7f3234",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.5}"
+ },
+ name: "--ds-color-brand1-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#8b3639",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.6}"
+ },
+ name: "--ds-color-brand1-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bc494c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.7}"
+ },
+ name: "--ds-color-brand1-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f9a9ab",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.8}"
+ },
+ name: "--ds-color-brand1-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9f3e41",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.9}"
+ },
+ name: "--ds-color-brand1-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7f3234",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.10}"
+ },
+ name: "--ds-color-brand1-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#612628",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.11}"
+ },
+ name: "--ds-color-brand1-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f58083",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.12}"
+ },
+ name: "--ds-color-brand1-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fcdbdc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.13}"
+ },
+ name: "--ds-color-brand1-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.contrast-1}"
+ },
+ name: "--ds-color-brand1-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.contrast-2}"
+ },
+ name: "--ds-color-brand1-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#231a05",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.1}"
+ },
+ name: "--ds-color-brand2-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2d2206",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.2}"
+ },
+ name: "--ds-color-brand2-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3d2e09",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.3}"
+ },
+ name: "--ds-color-brand2-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#4f3a0b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.4}"
+ },
+ name: "--ds-color-brand2-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#60470e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.5}"
+ },
+ name: "--ds-color-brand2-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#694d0f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.6}"
+ },
+ name: "--ds-color-brand2-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#8e6914",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.7}"
+ },
+ name: "--ds-color-brand2-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e8b744",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.8}"
+ },
+ name: "--ds-color-brand2-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#523c0b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.9}"
+ },
+ name: "--ds-color-brand2-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#694d0f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.10}"
+ },
+ name: "--ds-color-brand2-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#826112",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.11}"
+ },
+ name: "--ds-color-brand2-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d09a1d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.12}"
+ },
+ name: "--ds-color-brand2-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f5dfad",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.13}"
+ },
+ name: "--ds-color-brand2-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.contrast-1}"
+ },
+ name: "--ds-color-brand2-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ddd9cf",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.contrast-2}"
+ },
+ name: "--ds-color-brand2-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#061d30",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.1}"
+ },
+ name: "--ds-color-brand3-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#07253c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.2}"
+ },
+ name: "--ds-color-brand3-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0a3251",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.3}"
+ },
+ name: "--ds-color-brand3-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0d4068",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.4}"
+ },
+ name: "--ds-color-brand3-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0f4e7f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.5}"
+ },
+ name: "--ds-color-brand3-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#11558a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.6}"
+ },
+ name: "--ds-color-brand3-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1773b9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.7}"
+ },
+ name: "--ds-color-brand3-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#81c5f9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.8}"
+ },
+ name: "--ds-color-brand3-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#13609a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.9}"
+ },
+ name: "--ds-color-brand3-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0f4c7a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.10}"
+ },
+ name: "--ds-color-brand3-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0b3a5d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.11}"
+ },
+ name: "--ds-color-brand3-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#44aaf7",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.12}"
+ },
+ name: "--ds-color-brand3-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c8e6fd",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.13}"
+ },
+ name: "--ds-color-brand3-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.contrast-1}"
+ },
+ name: "--ds-color-brand3-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fafcfd",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.contrast-2}"
+ },
+ name: "--ds-color-brand3-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#012106",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.1}"
+ },
+ name: "--ds-color-success-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#022b08",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.2}"
+ },
+ name: "--ds-color-success-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#03380a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.3}"
+ },
+ name: "--ds-color-success-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#03490d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.4}"
+ },
+ name: "--ds-color-success-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#045810",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.5}"
+ },
+ name: "--ds-color-success-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#045f11",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.6}"
+ },
+ name: "--ds-color-success-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#068217",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.7}"
+ },
+ name: "--ds-color-success-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#93cb9b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.8}"
+ },
+ name: "--ds-color-success-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#138d24",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.9}"
+ },
+ name: "--ds-color-success-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3da14b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.10}"
+ },
+ name: "--ds-color-success-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#65b570",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.11}"
+ },
+ name: "--ds-color-success-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#63b46f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.12}"
+ },
+ name: "--ds-color-success-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e9d4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.13}"
+ },
+ name: "--ds-color-success-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.contrast-1}"
+ },
+ name: "--ds-color-success-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#010501",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.contrast-2}"
+ },
+ name: "--ds-color-success-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3b0808",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.1}"
+ },
+ name: "--ds-color-danger-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#4b0a0a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.2}"
+ },
+ name: "--ds-color-danger-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#620e0e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.3}"
+ },
+ name: "--ds-color-danger-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7c1212",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.4}"
+ },
+ name: "--ds-color-danger-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#961515",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.5}"
+ },
+ name: "--ds-color-danger-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a31717",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.6}"
+ },
+ name: "--ds-color-danger-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c93c3c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.7}"
+ },
+ name: "--ds-color-danger-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e9b0b0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.8}"
+ },
+ name: "--ds-color-danger-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d76d6d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.9}"
+ },
+ name: "--ds-color-danger-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#df8b8b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.10}"
+ },
+ name: "--ds-color-danger-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e7a8a8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.11}"
+ },
+ name: "--ds-color-danger-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#df8d8d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.12}"
+ },
+ name: "--ds-color-danger-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f5dcdc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.13}"
+ },
+ name: "--ds-color-danger-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.contrast-1}"
+ },
+ name: "--ds-color-danger-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#261313",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.contrast-2}"
+ },
+ name: "--ds-color-danger-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#031d30",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.1}"
+ },
+ name: "--ds-color-info-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#032540",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.2}"
+ },
+ name: "--ds-color-info-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#043256",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.3}"
+ },
+ name: "--ds-color-info-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#063f6c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.4}"
+ },
+ name: "--ds-color-info-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#074d84",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.5}"
+ },
+ name: "--ds-color-info-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#075490",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.6}"
+ },
+ name: "--ds-color-info-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0c72c1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.7}"
+ },
+ name: "--ds-color-info-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#98c3e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.8}"
+ },
+ name: "--ds-color-info-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2c85c9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.9}"
+ },
+ name: "--ds-color-info-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#529bd2",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.10}"
+ },
+ name: "--ds-color-info-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#75afdc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.11}"
+ },
+ name: "--ds-color-info-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#6ba9d9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.12}"
+ },
+ name: "--ds-color-info-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d3e5f4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.13}"
+ },
+ name: "--ds-color-info-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.contrast-1}"
+ },
+ name: "--ds-color-info-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#040e15",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.contrast-2}"
+ },
+ name: "--ds-color-info-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#211b07",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.1}"
+ },
+ name: "--ds-color-warning-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2b2309",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.2}"
+ },
+ name: "--ds-color-warning-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#392f0d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.3}"
+ },
+ name: "--ds-color-warning-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#483c10",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.4}"
+ },
+ name: "--ds-color-warning-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#594a14",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.5}"
+ },
+ name: "--ds-color-warning-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#625116",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.6}"
+ },
+ name: "--ds-color-warning-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#836d1d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.7}"
+ },
+ name: "--ds-color-warning-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#dabc4c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.8}"
+ },
+ name: "--ds-color-warning-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bc622b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.9}"
+ },
+ name: "--ds-color-warning-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c87d4f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.10}"
+ },
+ name: "--ds-color-warning-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d39773",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.11}"
+ },
+ name: "--ds-color-warning-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d29671",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.12}"
+ },
+ name: "--ds-color-warning-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f1ded3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.13}"
+ },
+ name: "--ds-color-warning-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.contrast-1}"
+ },
+ name: "--ds-color-warning-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#090402",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.contrast-2}"
+ },
+ name: "--ds-color-warning-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#131c27",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.background-default}"
+ },
+ name: "--ds-color-focus-inner",
+ attributes: {},
+ path: [
+ "color",
+ "focus",
+ "inner"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e3f3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.text-default}"
+ },
+ name: "--ds-color-focus-outer",
+ attributes: {},
+ path: [
+ "color",
+ "focus",
+ "outer"
+ ]
+ }
+]
+
+export const dimension = [
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *1)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.1}"
+ },
+ name: "--ds-border-radius-sm",
+ attributes: {},
+ path: [
+ "border-radius",
+ "sm"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *2)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.2}"
+ },
+ name: "--ds-border-radius-md",
+ attributes: {},
+ path: [
+ "border-radius",
+ "md"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *5)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.3}"
+ },
+ name: "--ds-border-radius-lg",
+ attributes: {},
+ path: [
+ "border-radius",
+ "lg"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.4}"
+ },
+ name: "--ds-border-radius-default",
+ attributes: {},
+ path: [
+ "border-radius",
+ "default"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "624.9375rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.5}"
+ },
+ name: "--ds-border-radius-full",
+ attributes: {},
+ path: [
+ "border-radius",
+ "full"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*0"
+ },
+ name: "--ds-spacing-0",
+ attributes: {},
+ path: [
+ "spacing",
+ "0"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*1"
+ },
+ name: "--ds-spacing-1",
+ attributes: {},
+ path: [
+ "spacing",
+ "1"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*2"
+ },
+ name: "--ds-spacing-2",
+ attributes: {},
+ path: [
+ "spacing",
+ "2"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*3"
+ },
+ name: "--ds-spacing-3",
+ attributes: {},
+ path: [
+ "spacing",
+ "3"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*4"
+ },
+ name: "--ds-spacing-4",
+ attributes: {},
+ path: [
+ "spacing",
+ "4"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*5"
+ },
+ name: "--ds-spacing-5",
+ attributes: {},
+ path: [
+ "spacing",
+ "5"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*6"
+ },
+ name: "--ds-spacing-6",
+ attributes: {},
+ path: [
+ "spacing",
+ "6"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*7"
+ },
+ name: "--ds-spacing-7",
+ attributes: {},
+ path: [
+ "spacing",
+ "7"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*8"
+ },
+ name: "--ds-spacing-8",
+ attributes: {},
+ path: [
+ "spacing",
+ "8"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*9"
+ },
+ name: "--ds-spacing-9",
+ attributes: {},
+ path: [
+ "spacing",
+ "9"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*10"
+ },
+ name: "--ds-spacing-10",
+ attributes: {},
+ path: [
+ "spacing",
+ "10"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*11"
+ },
+ name: "--ds-spacing-11",
+ attributes: {},
+ path: [
+ "spacing",
+ "11"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*12"
+ },
+ name: "--ds-spacing-12",
+ attributes: {},
+ path: [
+ "spacing",
+ "12"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*13"
+ },
+ name: "--ds-spacing-13",
+ attributes: {},
+ path: [
+ "spacing",
+ "13"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*14"
+ },
+ name: "--ds-spacing-14",
+ attributes: {},
+ path: [
+ "spacing",
+ "14"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*15"
+ },
+ name: "--ds-spacing-15",
+ attributes: {},
+ path: [
+ "spacing",
+ "15"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "4.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*18"
+ },
+ name: "--ds-spacing-18",
+ attributes: {},
+ path: [
+ "spacing",
+ "18"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "5.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*22"
+ },
+ name: "--ds-spacing-22",
+ attributes: {},
+ path: [
+ "spacing",
+ "22"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "6.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*26"
+ },
+ name: "--ds-spacing-26",
+ attributes: {},
+ path: [
+ "spacing",
+ "26"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "7.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*30"
+ },
+ name: "--ds-spacing-30",
+ attributes: {},
+ path: [
+ "spacing",
+ "30"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*0"
+ },
+ name: "--ds-sizing-0",
+ attributes: {},
+ path: [
+ "sizing",
+ "0"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*1"
+ },
+ name: "--ds-sizing-1",
+ attributes: {},
+ path: [
+ "sizing",
+ "1"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*2"
+ },
+ name: "--ds-sizing-2",
+ attributes: {},
+ path: [
+ "sizing",
+ "2"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*3"
+ },
+ name: "--ds-sizing-3",
+ attributes: {},
+ path: [
+ "sizing",
+ "3"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*4"
+ },
+ name: "--ds-sizing-4",
+ attributes: {},
+ path: [
+ "sizing",
+ "4"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*5"
+ },
+ name: "--ds-sizing-5",
+ attributes: {},
+ path: [
+ "sizing",
+ "5"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*6"
+ },
+ name: "--ds-sizing-6",
+ attributes: {},
+ path: [
+ "sizing",
+ "6"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*7"
+ },
+ name: "--ds-sizing-7",
+ attributes: {},
+ path: [
+ "sizing",
+ "7"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*8"
+ },
+ name: "--ds-sizing-8",
+ attributes: {},
+ path: [
+ "sizing",
+ "8"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*9"
+ },
+ name: "--ds-sizing-9",
+ attributes: {},
+ path: [
+ "sizing",
+ "9"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*10"
+ },
+ name: "--ds-sizing-10",
+ attributes: {},
+ path: [
+ "sizing",
+ "10"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*11"
+ },
+ name: "--ds-sizing-11",
+ attributes: {},
+ path: [
+ "sizing",
+ "11"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*12"
+ },
+ name: "--ds-sizing-12",
+ attributes: {},
+ path: [
+ "sizing",
+ "12"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*13"
+ },
+ name: "--ds-sizing-13",
+ attributes: {},
+ path: [
+ "sizing",
+ "13"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*14"
+ },
+ name: "--ds-sizing-14",
+ attributes: {},
+ path: [
+ "sizing",
+ "14"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*15"
+ },
+ name: "--ds-sizing-15",
+ attributes: {},
+ path: [
+ "sizing",
+ "15"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "4.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*18"
+ },
+ name: "--ds-sizing-18",
+ attributes: {},
+ path: [
+ "sizing",
+ "18"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "5.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*22"
+ },
+ name: "--ds-sizing-22",
+ attributes: {},
+ path: [
+ "sizing",
+ "22"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "6.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*26"
+ },
+ name: "--ds-sizing-26",
+ attributes: {},
+ path: [
+ "sizing",
+ "26"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "7.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*30"
+ },
+ name: "--ds-sizing-30",
+ attributes: {},
+ path: [
+ "sizing",
+ "30"
+ ]
+ }
+]
+
+export const typography = [
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "3.75rem",
+ letterSpacing: "-1%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.11}",
+ letterSpacing: "{letter-spacing.1}"
+ }
+ },
+ name: "--ds-heading-2xl",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "2xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "3rem",
+ letterSpacing: "-1%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.10}",
+ letterSpacing: "{letter-spacing.1}"
+ }
+ },
+ name: "--ds-heading-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "2.25rem",
+ letterSpacing: "-0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.9}",
+ letterSpacing: "{letter-spacing.2}"
+ }
+ },
+ name: "--ds-heading-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.875rem",
+ letterSpacing: "-0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.8}",
+ letterSpacing: "{letter-spacing.3}"
+ }
+ },
+ name: "--ds-heading-md",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.5rem",
+ letterSpacing: "0%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.5}"
+ }
+ },
+ name: "--ds-heading-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-heading-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.125rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-heading-2xs",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "2xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-short-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-short-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-long-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-long-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "xs"
+ ]
+ }
+]
+
+export const opacity = [
+ {
+ $type: "opacity",
+ $value: "30%",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "opacity",
+ $value: "{opacity.30}"
+ },
+ name: "--ds-disabled-opacity",
+ attributes: {},
+ path: [
+ "disabled",
+ "opacity"
+ ]
+ }
+]
+
+export const shadow = [
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.16), 0 1px 2px 0 rgba(0,0,0,0.12)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.100}"
+ },
+ name: "--ds-shadow-xs",
+ attributes: {},
+ path: [
+ "shadow",
+ "xs"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.15), 0 1px 2px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.1)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.200}"
+ },
+ name: "--ds-shadow-sm",
+ attributes: {},
+ path: [
+ "shadow",
+ "sm"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.14), 0 2px 4px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.12)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.300}"
+ },
+ name: "--ds-shadow-md",
+ attributes: {},
+ path: [
+ "shadow",
+ "md"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.13), 0 3px 5px 0 rgba(0,0,0,0.13), 0 6px 12px 0 rgba(0,0,0,0.14)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.400}"
+ },
+ name: "--ds-shadow-lg",
+ attributes: {},
+ path: [
+ "shadow",
+ "lg"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.16), 0 12px 24px 0 rgba(0,0,0,0.16)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.500}"
+ },
+ name: "--ds-shadow-xl",
+ attributes: {},
+ path: [
+ "shadow",
+ "xl"
+ ]
+ }
+]
diff --git a/apps/storefront/tokens/digdir/light.ts b/apps/storefront/tokens/digdir/light.ts
new file mode 100644
index 0000000000..bf0c5545c1
--- /dev/null
+++ b/apps/storefront/tokens/digdir/light.ts
@@ -0,0 +1,3811 @@
+/**
+ * These files are generated from design tokens defind using Token Studio
+ */
+
+export const color = [
+ {
+ $type: "color",
+ $value: "#fefeff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.1}"
+ },
+ name: "--ds-color-accent-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#eef4fa",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.2}"
+ },
+ name: "--ds-color-accent-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e3f3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.3}"
+ },
+ name: "--ds-color-accent-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bad5ec",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.4}"
+ },
+ name: "--ds-color-accent-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a1c5e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.5}"
+ },
+ name: "--ds-color-accent-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#97bfe3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.6}"
+ },
+ name: "--ds-color-accent-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3885c9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.7}"
+ },
+ name: "--ds-color-accent-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#014e93",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.8}"
+ },
+ name: "--ds-color-accent-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0163ba",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.9}"
+ },
+ name: "--ds-color-accent-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#015097",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.10}"
+ },
+ name: "--ds-color-accent-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#013f75",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.11}"
+ },
+ name: "--ds-color-accent-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0163ba",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.12}"
+ },
+ name: "--ds-color-accent-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#002d54",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.13}"
+ },
+ name: "--ds-color-accent-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.contrast-1}"
+ },
+ name: "--ds-color-accent-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#dbe9f5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.contrast-2}"
+ },
+ name: "--ds-color-accent-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.1}"
+ },
+ name: "--ds-color-neutral-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f3f4f5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.2}"
+ },
+ name: "--ds-color-neutral-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e1e3e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.3}"
+ },
+ name: "--ds-color-neutral-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ced1d4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.4}"
+ },
+ name: "--ds-color-neutral-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bdc1c6",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.5}"
+ },
+ name: "--ds-color-neutral-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b8bcc1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.6}"
+ },
+ name: "--ds-color-neutral-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7a818c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.7}"
+ },
+ name: "--ds-color-neutral-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#444e5d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.8}"
+ },
+ name: "--ds-color-neutral-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1e2b3c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.9}"
+ },
+ name: "--ds-color-neutral-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#303c4b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.10}"
+ },
+ name: "--ds-color-neutral-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#444e5d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.11}"
+ },
+ name: "--ds-color-neutral-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5b6471",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.12}"
+ },
+ name: "--ds-color-neutral-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#202c3d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.13}"
+ },
+ name: "--ds-color-neutral-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.contrast-1}"
+ },
+ name: "--ds-color-neutral-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bbbfc4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.contrast-2}"
+ },
+ name: "--ds-color-neutral-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fffefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.1}"
+ },
+ name: "--ds-color-brand1-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fef0f1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.2}"
+ },
+ name: "--ds-color-brand1-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fcdbdc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.3}"
+ },
+ name: "--ds-color-brand1-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fbc4c5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.4}"
+ },
+ name: "--ds-color-brand1-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f9acae",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.5}"
+ },
+ name: "--ds-color-brand1-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f8a5a7",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.6}"
+ },
+ name: "--ds-color-brand1-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d95558",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.7}"
+ },
+ name: "--ds-color-brand1-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#833336",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.8}"
+ },
+ name: "--ds-color-brand1-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f35f63",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.9}"
+ },
+ name: "--ds-color-brand1-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d05255",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.10}"
+ },
+ name: "--ds-color-brand1-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#af4547",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.11}"
+ },
+ name: "--ds-color-brand1-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a74144",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.12}"
+ },
+ name: "--ds-color-brand1-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#4b1e1f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.13}"
+ },
+ name: "--ds-color-brand1-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.contrast-1}"
+ },
+ name: "--ds-color-brand1-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.contrast-2}"
+ },
+ name: "--ds-color-brand1-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fffefc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.1}"
+ },
+ name: "--ds-color-brand2-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fbf3e0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.2}"
+ },
+ name: "--ds-color-brand2-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f5dfad",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.3}"
+ },
+ name: "--ds-color-brand2-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f0ce7f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.4}"
+ },
+ name: "--ds-color-brand2-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e9ba4c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.5}"
+ },
+ name: "--ds-color-brand2-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e7b43d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.6}"
+ },
+ name: "--ds-color-brand2-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a57a17",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.7}"
+ },
+ name: "--ds-color-brand2-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#63490e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.8}"
+ },
+ name: "--ds-color-brand2-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e4a920",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.9}"
+ },
+ name: "--ds-color-brand2-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c9951c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.10}"
+ },
+ name: "--ds-color-brand2-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#af8119",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.11}"
+ },
+ name: "--ds-color-brand2-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7e5d12",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.12}"
+ },
+ name: "--ds-color-brand2-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#382a08",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.13}"
+ },
+ name: "--ds-color-brand2-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.contrast-1}"
+ },
+ name: "--ds-color-brand2-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2b2006",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.contrast-2}"
+ },
+ name: "--ds-color-brand2-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fdfeff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.1}"
+ },
+ name: "--ds-color-brand3-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#eaf6fe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.2}"
+ },
+ name: "--ds-color-brand3-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c8e6fd",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.3}"
+ },
+ name: "--ds-color-brand3-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a9d7fb",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.4}"
+ },
+ name: "--ds-color-brand3-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#84c7fa",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.5}"
+ },
+ name: "--ds-color-brand3-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7ac2f9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.6}"
+ },
+ name: "--ds-color-brand3-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1a85d6",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.7}"
+ },
+ name: "--ds-color-brand3-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#105082",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.8}"
+ },
+ name: "--ds-color-brand3-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1e98f5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.9}"
+ },
+ name: "--ds-color-brand3-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1a83d3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.10}"
+ },
+ name: "--ds-color-brand3-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#166eb2",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.11}"
+ },
+ name: "--ds-color-brand3-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1466a5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.12}"
+ },
+ name: "--ds-color-brand3-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#092e4b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.13}"
+ },
+ name: "--ds-color-brand3-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.contrast-1}"
+ },
+ name: "--ds-color-brand3-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#010407",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.contrast-2}"
+ },
+ name: "--ds-color-brand3-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fcfefc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.1}"
+ },
+ name: "--ds-color-success-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#edf6ee",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.2}"
+ },
+ name: "--ds-color-success-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e9d4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.3}"
+ },
+ name: "--ds-color-success-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b5dbba",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.4}"
+ },
+ name: "--ds-color-success-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#96cd9e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.5}"
+ },
+ name: "--ds-color-success-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#8fc997",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.6}"
+ },
+ name: "--ds-color-success-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#229532",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.7}"
+ },
+ name: "--ds-color-success-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#045a10",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.8}"
+ },
+ name: "--ds-color-success-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#068718",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.9}"
+ },
+ name: "--ds-color-success-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#057014",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.10}"
+ },
+ name: "--ds-color-success-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#045a10",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.11}"
+ },
+ name: "--ds-color-success-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#057315",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.12}"
+ },
+ name: "--ds-color-success-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#023409",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.13}"
+ },
+ name: "--ds-color-success-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.contrast-1}"
+ },
+ name: "--ds-color-success-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f9fcf9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.contrast-2}"
+ },
+ name: "--ds-color-success-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fffefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.1}"
+ },
+ name: "--ds-color-danger-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fbf1f1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.2}"
+ },
+ name: "--ds-color-danger-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f5dcdc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.3}"
+ },
+ name: "--ds-color-danger-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f0c7c7",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.4}"
+ },
+ name: "--ds-color-danger-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#eab3b3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.5}"
+ },
+ name: "--ds-color-danger-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e8acac",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.6}"
+ },
+ name: "--ds-color-danger-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d25b5b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.7}"
+ },
+ name: "--ds-color-danger-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9a1616",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.8}"
+ },
+ name: "--ds-color-danger-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#C01B1B",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.9}"
+ },
+ name: "--ds-color-danger-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9c1616",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.10}"
+ },
+ name: "--ds-color-danger-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#791111",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.11}"
+ },
+ name: "--ds-color-danger-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c22020",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.12}"
+ },
+ name: "--ds-color-danger-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5a0d0d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.13}"
+ },
+ name: "--ds-color-danger-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.contrast-1}"
+ },
+ name: "--ds-color-danger-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f7e1e1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.contrast-2}"
+ },
+ name: "--ds-color-danger-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefeff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.1}"
+ },
+ name: "--ds-color-info-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#edf5fa",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.2}"
+ },
+ name: "--ds-color-info-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d3e5f4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.3}"
+ },
+ name: "--ds-color-info-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b7d5ed",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.4}"
+ },
+ name: "--ds-color-info-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9bc5e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.5}"
+ },
+ name: "--ds-color-info-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#94c1e3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.6}"
+ },
+ name: "--ds-color-info-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2f86c9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.7}"
+ },
+ name: "--ds-color-info-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#075089",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.8}"
+ },
+ name: "--ds-color-info-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0A71C0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.9}"
+ },
+ name: "--ds-color-info-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#085e9f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.10}"
+ },
+ name: "--ds-color-info-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#074a7f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.11}"
+ },
+ name: "--ds-color-info-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0966ac",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.12}"
+ },
+ name: "--ds-color-info-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#042d4d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.13}"
+ },
+ name: "--ds-color-info-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.contrast-1}"
+ },
+ name: "--ds-color-info-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#edf5fa",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.contrast-2}"
+ },
+ name: "--ds-color-info-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fffefd",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.1}"
+ },
+ name: "--ds-color-warning-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f9f4e2",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.2}"
+ },
+ name: "--ds-color-warning-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#efe2b3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.3}"
+ },
+ name: "--ds-color-warning-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e5d183",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.4}"
+ },
+ name: "--ds-color-warning-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#dcbf53",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.5}"
+ },
+ name: "--ds-color-warning-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d9b945",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.6}"
+ },
+ name: "--ds-color-warning-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#987f22",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.7}"
+ },
+ name: "--ds-color-warning-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5c4c14",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.8}"
+ },
+ name: "--ds-color-warning-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#B8581D",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.9}"
+ },
+ name: "--ds-color-warning-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#984918",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.10}"
+ },
+ name: "--ds-color-warning-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7a3b13",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.11}"
+ },
+ name: "--ds-color-warning-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9e4b19",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.12}"
+ },
+ name: "--ds-color-warning-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#47220b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.13}"
+ },
+ name: "--ds-color-warning-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.contrast-1}"
+ },
+ name: "--ds-color-warning-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fdfbf9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.contrast-2}"
+ },
+ name: "--ds-color-warning-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.background-default}"
+ },
+ name: "--ds-color-focus-inner",
+ attributes: {},
+ path: [
+ "color",
+ "focus",
+ "inner"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#002d54",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.text-default}"
+ },
+ name: "--ds-color-focus-outer",
+ attributes: {},
+ path: [
+ "color",
+ "focus",
+ "outer"
+ ]
+ }
+]
+
+export const dimension = [
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *1)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.1}"
+ },
+ name: "--ds-border-radius-sm",
+ attributes: {},
+ path: [
+ "border-radius",
+ "sm"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *2)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.2}"
+ },
+ name: "--ds-border-radius-md",
+ attributes: {},
+ path: [
+ "border-radius",
+ "md"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *5)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.3}"
+ },
+ name: "--ds-border-radius-lg",
+ attributes: {},
+ path: [
+ "border-radius",
+ "lg"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.4}"
+ },
+ name: "--ds-border-radius-default",
+ attributes: {},
+ path: [
+ "border-radius",
+ "default"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "624.9375rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.5}"
+ },
+ name: "--ds-border-radius-full",
+ attributes: {},
+ path: [
+ "border-radius",
+ "full"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*0"
+ },
+ name: "--ds-spacing-0",
+ attributes: {},
+ path: [
+ "spacing",
+ "0"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*1"
+ },
+ name: "--ds-spacing-1",
+ attributes: {},
+ path: [
+ "spacing",
+ "1"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*2"
+ },
+ name: "--ds-spacing-2",
+ attributes: {},
+ path: [
+ "spacing",
+ "2"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*3"
+ },
+ name: "--ds-spacing-3",
+ attributes: {},
+ path: [
+ "spacing",
+ "3"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*4"
+ },
+ name: "--ds-spacing-4",
+ attributes: {},
+ path: [
+ "spacing",
+ "4"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*5"
+ },
+ name: "--ds-spacing-5",
+ attributes: {},
+ path: [
+ "spacing",
+ "5"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*6"
+ },
+ name: "--ds-spacing-6",
+ attributes: {},
+ path: [
+ "spacing",
+ "6"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*7"
+ },
+ name: "--ds-spacing-7",
+ attributes: {},
+ path: [
+ "spacing",
+ "7"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*8"
+ },
+ name: "--ds-spacing-8",
+ attributes: {},
+ path: [
+ "spacing",
+ "8"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*9"
+ },
+ name: "--ds-spacing-9",
+ attributes: {},
+ path: [
+ "spacing",
+ "9"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*10"
+ },
+ name: "--ds-spacing-10",
+ attributes: {},
+ path: [
+ "spacing",
+ "10"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*11"
+ },
+ name: "--ds-spacing-11",
+ attributes: {},
+ path: [
+ "spacing",
+ "11"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*12"
+ },
+ name: "--ds-spacing-12",
+ attributes: {},
+ path: [
+ "spacing",
+ "12"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*13"
+ },
+ name: "--ds-spacing-13",
+ attributes: {},
+ path: [
+ "spacing",
+ "13"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*14"
+ },
+ name: "--ds-spacing-14",
+ attributes: {},
+ path: [
+ "spacing",
+ "14"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*15"
+ },
+ name: "--ds-spacing-15",
+ attributes: {},
+ path: [
+ "spacing",
+ "15"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "4.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*18"
+ },
+ name: "--ds-spacing-18",
+ attributes: {},
+ path: [
+ "spacing",
+ "18"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "5.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*22"
+ },
+ name: "--ds-spacing-22",
+ attributes: {},
+ path: [
+ "spacing",
+ "22"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "6.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*26"
+ },
+ name: "--ds-spacing-26",
+ attributes: {},
+ path: [
+ "spacing",
+ "26"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "7.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*30"
+ },
+ name: "--ds-spacing-30",
+ attributes: {},
+ path: [
+ "spacing",
+ "30"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*0"
+ },
+ name: "--ds-sizing-0",
+ attributes: {},
+ path: [
+ "sizing",
+ "0"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*1"
+ },
+ name: "--ds-sizing-1",
+ attributes: {},
+ path: [
+ "sizing",
+ "1"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*2"
+ },
+ name: "--ds-sizing-2",
+ attributes: {},
+ path: [
+ "sizing",
+ "2"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*3"
+ },
+ name: "--ds-sizing-3",
+ attributes: {},
+ path: [
+ "sizing",
+ "3"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*4"
+ },
+ name: "--ds-sizing-4",
+ attributes: {},
+ path: [
+ "sizing",
+ "4"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*5"
+ },
+ name: "--ds-sizing-5",
+ attributes: {},
+ path: [
+ "sizing",
+ "5"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*6"
+ },
+ name: "--ds-sizing-6",
+ attributes: {},
+ path: [
+ "sizing",
+ "6"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*7"
+ },
+ name: "--ds-sizing-7",
+ attributes: {},
+ path: [
+ "sizing",
+ "7"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*8"
+ },
+ name: "--ds-sizing-8",
+ attributes: {},
+ path: [
+ "sizing",
+ "8"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*9"
+ },
+ name: "--ds-sizing-9",
+ attributes: {},
+ path: [
+ "sizing",
+ "9"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*10"
+ },
+ name: "--ds-sizing-10",
+ attributes: {},
+ path: [
+ "sizing",
+ "10"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*11"
+ },
+ name: "--ds-sizing-11",
+ attributes: {},
+ path: [
+ "sizing",
+ "11"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*12"
+ },
+ name: "--ds-sizing-12",
+ attributes: {},
+ path: [
+ "sizing",
+ "12"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*13"
+ },
+ name: "--ds-sizing-13",
+ attributes: {},
+ path: [
+ "sizing",
+ "13"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*14"
+ },
+ name: "--ds-sizing-14",
+ attributes: {},
+ path: [
+ "sizing",
+ "14"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*15"
+ },
+ name: "--ds-sizing-15",
+ attributes: {},
+ path: [
+ "sizing",
+ "15"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "4.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*18"
+ },
+ name: "--ds-sizing-18",
+ attributes: {},
+ path: [
+ "sizing",
+ "18"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "5.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*22"
+ },
+ name: "--ds-sizing-22",
+ attributes: {},
+ path: [
+ "sizing",
+ "22"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "6.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*26"
+ },
+ name: "--ds-sizing-26",
+ attributes: {},
+ path: [
+ "sizing",
+ "26"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "7.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*30"
+ },
+ name: "--ds-sizing-30",
+ attributes: {},
+ path: [
+ "sizing",
+ "30"
+ ]
+ }
+]
+
+export const typography = [
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "3.75rem",
+ letterSpacing: "-1%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.11}",
+ letterSpacing: "{letter-spacing.1}"
+ }
+ },
+ name: "--ds-heading-2xl",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "2xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "3rem",
+ letterSpacing: "-1%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.10}",
+ letterSpacing: "{letter-spacing.1}"
+ }
+ },
+ name: "--ds-heading-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "2.25rem",
+ letterSpacing: "-0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.9}",
+ letterSpacing: "{letter-spacing.2}"
+ }
+ },
+ name: "--ds-heading-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.875rem",
+ letterSpacing: "-0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.8}",
+ letterSpacing: "{letter-spacing.3}"
+ }
+ },
+ name: "--ds-heading-md",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.5rem",
+ letterSpacing: "0%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.5}"
+ }
+ },
+ name: "--ds-heading-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-heading-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.125rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-heading-2xs",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "2xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-short-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-short-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-long-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-long-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "xs"
+ ]
+ }
+]
+
+export const opacity = [
+ {
+ $type: "opacity",
+ $value: "30%",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "opacity",
+ $value: "{opacity.30}"
+ },
+ name: "--ds-disabled-opacity",
+ attributes: {},
+ path: [
+ "disabled",
+ "opacity"
+ ]
+ }
+]
+
+export const shadow = [
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.16), 0 1px 2px 0 rgba(0,0,0,0.12)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.100}"
+ },
+ name: "--ds-shadow-xs",
+ attributes: {},
+ path: [
+ "shadow",
+ "xs"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.15), 0 1px 2px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.1)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.200}"
+ },
+ name: "--ds-shadow-sm",
+ attributes: {},
+ path: [
+ "shadow",
+ "sm"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.14), 0 2px 4px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.12)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.300}"
+ },
+ name: "--ds-shadow-md",
+ attributes: {},
+ path: [
+ "shadow",
+ "md"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.13), 0 3px 5px 0 rgba(0,0,0,0.13), 0 6px 12px 0 rgba(0,0,0,0.14)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.400}"
+ },
+ name: "--ds-shadow-lg",
+ attributes: {},
+ path: [
+ "shadow",
+ "lg"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.16), 0 12px 24px 0 rgba(0,0,0,0.16)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.500}"
+ },
+ name: "--ds-shadow-xl",
+ attributes: {},
+ path: [
+ "shadow",
+ "xl"
+ ]
+ }
+]
diff --git a/apps/storefront/tokens/index.ts b/apps/storefront/tokens/index.ts
deleted file mode 100644
index edeb1368c1..0000000000
--- a/apps/storefront/tokens/index.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-export * as digdir from './digdir';
-export * as tilsynet from './tilsynet';
-export * as altinn from './altinn';
-export * as brreg from './brreg';
diff --git a/apps/storefront/tokens/light.ts b/apps/storefront/tokens/light.ts
new file mode 100644
index 0000000000..9eaefab57d
--- /dev/null
+++ b/apps/storefront/tokens/light.ts
@@ -0,0 +1,4 @@
+export * as digdir from './digdir/light';
+export * as tilsynet from './uutilsynet/light';
+export * as altinn from './altinn/light';
+export * as portal from './portal/light';
diff --git a/apps/storefront/tokens/portal/dark.ts b/apps/storefront/tokens/portal/dark.ts
new file mode 100644
index 0000000000..3656ffd572
--- /dev/null
+++ b/apps/storefront/tokens/portal/dark.ts
@@ -0,0 +1,3811 @@
+/**
+ * These files are generated from design tokens defind using Token Studio
+ */
+
+export const color = [
+ {
+ $type: "color",
+ $value: "#2a0945",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.1}"
+ },
+ name: "--ds-color-accent-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#360b58",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.2}"
+ },
+ name: "--ds-color-accent-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#480f74",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.3}"
+ },
+ name: "--ds-color-accent-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#581f85",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.4}"
+ },
+ name: "--ds-color-accent-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#66328f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.5}"
+ },
+ name: "--ds-color-accent-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#6d3b94",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.6}"
+ },
+ name: "--ds-color-accent-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#875ea8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.7}"
+ },
+ name: "--ds-color-accent-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c9b7d8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.8}"
+ },
+ name: "--ds-color-accent-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#baa2cc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.9}"
+ },
+ name: "--ds-color-accent-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a88abf",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.10}"
+ },
+ name: "--ds-color-accent-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9773b3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.11}"
+ },
+ name: "--ds-color-accent-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b399c7",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.12}"
+ },
+ name: "--ds-color-accent-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e8e0ee",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.13}"
+ },
+ name: "--ds-color-accent-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.contrast-1}"
+ },
+ name: "--ds-color-accent-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1d1a20",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.contrast-2}"
+ },
+ name: "--ds-color-accent-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#131c27",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.1}"
+ },
+ name: "--ds-color-neutral-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#192433",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.2}"
+ },
+ name: "--ds-color-neutral-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#243142",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.3}"
+ },
+ name: "--ds-color-neutral-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#333e4e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.4}"
+ },
+ name: "--ds-color-neutral-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#424d5b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.5}"
+ },
+ name: "--ds-color-neutral-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#495361",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.6}"
+ },
+ name: "--ds-color-neutral-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#67707c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.7}"
+ },
+ name: "--ds-color-neutral-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bbbfc4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.8}"
+ },
+ name: "--ds-color-neutral-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a6abb2",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.9}"
+ },
+ name: "--ds-color-neutral-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#90969e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.10}"
+ },
+ name: "--ds-color-neutral-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7a818c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.11}"
+ },
+ name: "--ds-color-neutral-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9ea3ab",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.12}"
+ },
+ name: "--ds-color-neutral-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e1e3e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.13}"
+ },
+ name: "--ds-color-neutral-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.contrast-1}"
+ },
+ name: "--ds-color-neutral-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1b1b1d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.contrast-2}"
+ },
+ name: "--ds-color-neutral-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#251432",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.1}"
+ },
+ name: "--ds-color-brand1-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2f1a40",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.2}"
+ },
+ name: "--ds-color-brand1-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#402358",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.3}"
+ },
+ name: "--ds-color-brand1-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#512c6e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.4}"
+ },
+ name: "--ds-color-brand1-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#633687",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.5}"
+ },
+ name: "--ds-color-brand1-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#6c3b93",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.6}"
+ },
+ name: "--ds-color-brand1-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9250c7",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.7}"
+ },
+ name: "--ds-color-brand1-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d3b0ee",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.8}"
+ },
+ name: "--ds-color-brand1-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9552cb",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.9}"
+ },
+ name: "--ds-color-brand1-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7b44a8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.10}"
+ },
+ name: "--ds-color-brand1-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#633687",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.11}"
+ },
+ name: "--ds-color-brand1-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c08ee7",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.12}"
+ },
+ name: "--ds-color-brand1-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ecddf8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.13}"
+ },
+ name: "--ds-color-brand1-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.contrast-1}"
+ },
+ name: "--ds-color-brand1-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fbf8fd",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.contrast-2}"
+ },
+ name: "--ds-color-brand1-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#281429",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.1}"
+ },
+ name: "--ds-color-brand2-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#331a35",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.2}"
+ },
+ name: "--ds-color-brand2-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#462447",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.3}"
+ },
+ name: "--ds-color-brand2-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#582d5a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.4}"
+ },
+ name: "--ds-color-brand2-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#6c376e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.5}"
+ },
+ name: "--ds-color-brand2-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#753d78",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.6}"
+ },
+ name: "--ds-color-brand2-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9f52a2",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.7}"
+ },
+ name: "--ds-color-brand2-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#eba8ee",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.8}"
+ },
+ name: "--ds-color-brand2-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#753d78",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.9}"
+ },
+ name: "--ds-color-brand2-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5b2f5e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.10}"
+ },
+ name: "--ds-color-brand2-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#422244",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.11}"
+ },
+ name: "--ds-color-brand2-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e17ee6",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.12}"
+ },
+ name: "--ds-color-brand2-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f6d9f8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.13}"
+ },
+ name: "--ds-color-brand2-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.contrast-1}"
+ },
+ name: "--ds-color-brand2-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f4eff4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.contrast-2}"
+ },
+ name: "--ds-color-brand2-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2b1323",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.1}"
+ },
+ name: "--ds-color-brand3-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#38192e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.2}"
+ },
+ name: "--ds-color-brand3-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#4b223e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.3}"
+ },
+ name: "--ds-color-brand3-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5f2b4e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.4}"
+ },
+ name: "--ds-color-brand3-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#74355f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.5}"
+ },
+ name: "--ds-color-brand3-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7f3a68",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.6}"
+ },
+ name: "--ds-color-brand3-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ab4e8d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.7}"
+ },
+ name: "--ds-color-brand3-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f1a7d9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.8}"
+ },
+ name: "--ds-color-brand3-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#863d6e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.9}"
+ },
+ name: "--ds-color-brand3-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#693057",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.10}"
+ },
+ name: "--ds-color-brand3-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#4e2440",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.11}"
+ },
+ name: "--ds-color-brand3-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#eb7dc7",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.12}"
+ },
+ name: "--ds-color-brand3-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f9daef",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.13}"
+ },
+ name: "--ds-color-brand3-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.contrast-1}"
+ },
+ name: "--ds-color-brand3-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f8f4f7",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.contrast-2}"
+ },
+ name: "--ds-color-brand3-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#012106",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.1}"
+ },
+ name: "--ds-color-success-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#022b08",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.2}"
+ },
+ name: "--ds-color-success-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#03380a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.3}"
+ },
+ name: "--ds-color-success-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#03490d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.4}"
+ },
+ name: "--ds-color-success-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#045810",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.5}"
+ },
+ name: "--ds-color-success-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#045f11",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.6}"
+ },
+ name: "--ds-color-success-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#068217",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.7}"
+ },
+ name: "--ds-color-success-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#93cb9b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.8}"
+ },
+ name: "--ds-color-success-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#138d24",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.9}"
+ },
+ name: "--ds-color-success-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3da14b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.10}"
+ },
+ name: "--ds-color-success-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#65b570",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.11}"
+ },
+ name: "--ds-color-success-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#63b46f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.12}"
+ },
+ name: "--ds-color-success-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e9d4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.13}"
+ },
+ name: "--ds-color-success-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.contrast-1}"
+ },
+ name: "--ds-color-success-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#010501",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.contrast-2}"
+ },
+ name: "--ds-color-success-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3b0808",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.1}"
+ },
+ name: "--ds-color-danger-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#4b0a0a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.2}"
+ },
+ name: "--ds-color-danger-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#620e0e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.3}"
+ },
+ name: "--ds-color-danger-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7c1212",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.4}"
+ },
+ name: "--ds-color-danger-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#961515",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.5}"
+ },
+ name: "--ds-color-danger-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a31717",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.6}"
+ },
+ name: "--ds-color-danger-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c93c3c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.7}"
+ },
+ name: "--ds-color-danger-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e9b0b0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.8}"
+ },
+ name: "--ds-color-danger-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d76d6d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.9}"
+ },
+ name: "--ds-color-danger-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#df8b8b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.10}"
+ },
+ name: "--ds-color-danger-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e7a8a8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.11}"
+ },
+ name: "--ds-color-danger-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#df8d8d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.12}"
+ },
+ name: "--ds-color-danger-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f5dcdc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.13}"
+ },
+ name: "--ds-color-danger-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.contrast-1}"
+ },
+ name: "--ds-color-danger-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#261313",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.contrast-2}"
+ },
+ name: "--ds-color-danger-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#031d30",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.1}"
+ },
+ name: "--ds-color-info-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#032540",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.2}"
+ },
+ name: "--ds-color-info-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#043256",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.3}"
+ },
+ name: "--ds-color-info-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#063f6c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.4}"
+ },
+ name: "--ds-color-info-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#074d84",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.5}"
+ },
+ name: "--ds-color-info-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#075490",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.6}"
+ },
+ name: "--ds-color-info-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0c72c1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.7}"
+ },
+ name: "--ds-color-info-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#98c3e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.8}"
+ },
+ name: "--ds-color-info-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2c85c9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.9}"
+ },
+ name: "--ds-color-info-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#529bd2",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.10}"
+ },
+ name: "--ds-color-info-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#75afdc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.11}"
+ },
+ name: "--ds-color-info-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#6ba9d9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.12}"
+ },
+ name: "--ds-color-info-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d3e5f4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.13}"
+ },
+ name: "--ds-color-info-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.contrast-1}"
+ },
+ name: "--ds-color-info-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#040e15",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.contrast-2}"
+ },
+ name: "--ds-color-info-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#211b07",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.1}"
+ },
+ name: "--ds-color-warning-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2b2309",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.2}"
+ },
+ name: "--ds-color-warning-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#392f0d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.3}"
+ },
+ name: "--ds-color-warning-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#483c10",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.4}"
+ },
+ name: "--ds-color-warning-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#594a14",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.5}"
+ },
+ name: "--ds-color-warning-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#625116",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.6}"
+ },
+ name: "--ds-color-warning-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#836d1d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.7}"
+ },
+ name: "--ds-color-warning-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#dabc4c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.8}"
+ },
+ name: "--ds-color-warning-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bc622b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.9}"
+ },
+ name: "--ds-color-warning-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c87d4f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.10}"
+ },
+ name: "--ds-color-warning-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d39773",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.11}"
+ },
+ name: "--ds-color-warning-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d29671",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.12}"
+ },
+ name: "--ds-color-warning-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f1ded3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.13}"
+ },
+ name: "--ds-color-warning-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.contrast-1}"
+ },
+ name: "--ds-color-warning-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#090402",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.contrast-2}"
+ },
+ name: "--ds-color-warning-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#131c27",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.background-default}"
+ },
+ name: "--ds-color-focus-inner",
+ attributes: {},
+ path: [
+ "color",
+ "focus",
+ "inner"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e8e0ee",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.text-default}"
+ },
+ name: "--ds-color-focus-outer",
+ attributes: {},
+ path: [
+ "color",
+ "focus",
+ "outer"
+ ]
+ }
+]
+
+export const dimension = [
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *1)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.1}"
+ },
+ name: "--ds-border-radius-sm",
+ attributes: {},
+ path: [
+ "border-radius",
+ "sm"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *2)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.2}"
+ },
+ name: "--ds-border-radius-md",
+ attributes: {},
+ path: [
+ "border-radius",
+ "md"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *5)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.3}"
+ },
+ name: "--ds-border-radius-lg",
+ attributes: {},
+ path: [
+ "border-radius",
+ "lg"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.4}"
+ },
+ name: "--ds-border-radius-default",
+ attributes: {},
+ path: [
+ "border-radius",
+ "default"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "624.9375rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.5}"
+ },
+ name: "--ds-border-radius-full",
+ attributes: {},
+ path: [
+ "border-radius",
+ "full"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*0"
+ },
+ name: "--ds-spacing-0",
+ attributes: {},
+ path: [
+ "spacing",
+ "0"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*1"
+ },
+ name: "--ds-spacing-1",
+ attributes: {},
+ path: [
+ "spacing",
+ "1"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*2"
+ },
+ name: "--ds-spacing-2",
+ attributes: {},
+ path: [
+ "spacing",
+ "2"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*3"
+ },
+ name: "--ds-spacing-3",
+ attributes: {},
+ path: [
+ "spacing",
+ "3"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*4"
+ },
+ name: "--ds-spacing-4",
+ attributes: {},
+ path: [
+ "spacing",
+ "4"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*5"
+ },
+ name: "--ds-spacing-5",
+ attributes: {},
+ path: [
+ "spacing",
+ "5"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*6"
+ },
+ name: "--ds-spacing-6",
+ attributes: {},
+ path: [
+ "spacing",
+ "6"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*7"
+ },
+ name: "--ds-spacing-7",
+ attributes: {},
+ path: [
+ "spacing",
+ "7"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*8"
+ },
+ name: "--ds-spacing-8",
+ attributes: {},
+ path: [
+ "spacing",
+ "8"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*9"
+ },
+ name: "--ds-spacing-9",
+ attributes: {},
+ path: [
+ "spacing",
+ "9"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*10"
+ },
+ name: "--ds-spacing-10",
+ attributes: {},
+ path: [
+ "spacing",
+ "10"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*11"
+ },
+ name: "--ds-spacing-11",
+ attributes: {},
+ path: [
+ "spacing",
+ "11"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*12"
+ },
+ name: "--ds-spacing-12",
+ attributes: {},
+ path: [
+ "spacing",
+ "12"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*13"
+ },
+ name: "--ds-spacing-13",
+ attributes: {},
+ path: [
+ "spacing",
+ "13"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*14"
+ },
+ name: "--ds-spacing-14",
+ attributes: {},
+ path: [
+ "spacing",
+ "14"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*15"
+ },
+ name: "--ds-spacing-15",
+ attributes: {},
+ path: [
+ "spacing",
+ "15"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "4.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*18"
+ },
+ name: "--ds-spacing-18",
+ attributes: {},
+ path: [
+ "spacing",
+ "18"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "5.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*22"
+ },
+ name: "--ds-spacing-22",
+ attributes: {},
+ path: [
+ "spacing",
+ "22"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "6.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*26"
+ },
+ name: "--ds-spacing-26",
+ attributes: {},
+ path: [
+ "spacing",
+ "26"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "7.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*30"
+ },
+ name: "--ds-spacing-30",
+ attributes: {},
+ path: [
+ "spacing",
+ "30"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*0"
+ },
+ name: "--ds-sizing-0",
+ attributes: {},
+ path: [
+ "sizing",
+ "0"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*1"
+ },
+ name: "--ds-sizing-1",
+ attributes: {},
+ path: [
+ "sizing",
+ "1"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*2"
+ },
+ name: "--ds-sizing-2",
+ attributes: {},
+ path: [
+ "sizing",
+ "2"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*3"
+ },
+ name: "--ds-sizing-3",
+ attributes: {},
+ path: [
+ "sizing",
+ "3"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*4"
+ },
+ name: "--ds-sizing-4",
+ attributes: {},
+ path: [
+ "sizing",
+ "4"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*5"
+ },
+ name: "--ds-sizing-5",
+ attributes: {},
+ path: [
+ "sizing",
+ "5"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*6"
+ },
+ name: "--ds-sizing-6",
+ attributes: {},
+ path: [
+ "sizing",
+ "6"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*7"
+ },
+ name: "--ds-sizing-7",
+ attributes: {},
+ path: [
+ "sizing",
+ "7"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*8"
+ },
+ name: "--ds-sizing-8",
+ attributes: {},
+ path: [
+ "sizing",
+ "8"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*9"
+ },
+ name: "--ds-sizing-9",
+ attributes: {},
+ path: [
+ "sizing",
+ "9"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*10"
+ },
+ name: "--ds-sizing-10",
+ attributes: {},
+ path: [
+ "sizing",
+ "10"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*11"
+ },
+ name: "--ds-sizing-11",
+ attributes: {},
+ path: [
+ "sizing",
+ "11"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*12"
+ },
+ name: "--ds-sizing-12",
+ attributes: {},
+ path: [
+ "sizing",
+ "12"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*13"
+ },
+ name: "--ds-sizing-13",
+ attributes: {},
+ path: [
+ "sizing",
+ "13"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*14"
+ },
+ name: "--ds-sizing-14",
+ attributes: {},
+ path: [
+ "sizing",
+ "14"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*15"
+ },
+ name: "--ds-sizing-15",
+ attributes: {},
+ path: [
+ "sizing",
+ "15"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "4.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*18"
+ },
+ name: "--ds-sizing-18",
+ attributes: {},
+ path: [
+ "sizing",
+ "18"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "5.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*22"
+ },
+ name: "--ds-sizing-22",
+ attributes: {},
+ path: [
+ "sizing",
+ "22"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "6.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*26"
+ },
+ name: "--ds-sizing-26",
+ attributes: {},
+ path: [
+ "sizing",
+ "26"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "7.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*30"
+ },
+ name: "--ds-sizing-30",
+ attributes: {},
+ path: [
+ "sizing",
+ "30"
+ ]
+ }
+]
+
+export const typography = [
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "3.75rem",
+ letterSpacing: "-1%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.11}",
+ letterSpacing: "{letter-spacing.1}"
+ }
+ },
+ name: "--ds-heading-2xl",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "2xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "3rem",
+ letterSpacing: "-1%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.10}",
+ letterSpacing: "{letter-spacing.1}"
+ }
+ },
+ name: "--ds-heading-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "2.25rem",
+ letterSpacing: "-0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.9}",
+ letterSpacing: "{letter-spacing.2}"
+ }
+ },
+ name: "--ds-heading-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.875rem",
+ letterSpacing: "-0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.8}",
+ letterSpacing: "{letter-spacing.3}"
+ }
+ },
+ name: "--ds-heading-md",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.5rem",
+ letterSpacing: "0%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.5}"
+ }
+ },
+ name: "--ds-heading-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-heading-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.125rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-heading-2xs",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "2xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-short-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-short-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-long-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-long-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "xs"
+ ]
+ }
+]
+
+export const opacity = [
+ {
+ $type: "opacity",
+ $value: "30%",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "opacity",
+ $value: "{opacity.30}"
+ },
+ name: "--ds-disabled-opacity",
+ attributes: {},
+ path: [
+ "disabled",
+ "opacity"
+ ]
+ }
+]
+
+export const shadow = [
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.16), 0 1px 2px 0 rgba(0,0,0,0.12)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.100}"
+ },
+ name: "--ds-shadow-xs",
+ attributes: {},
+ path: [
+ "shadow",
+ "xs"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.15), 0 1px 2px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.1)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.200}"
+ },
+ name: "--ds-shadow-sm",
+ attributes: {},
+ path: [
+ "shadow",
+ "sm"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.14), 0 2px 4px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.12)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.300}"
+ },
+ name: "--ds-shadow-md",
+ attributes: {},
+ path: [
+ "shadow",
+ "md"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.13), 0 3px 5px 0 rgba(0,0,0,0.13), 0 6px 12px 0 rgba(0,0,0,0.14)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.400}"
+ },
+ name: "--ds-shadow-lg",
+ attributes: {},
+ path: [
+ "shadow",
+ "lg"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.16), 0 12px 24px 0 rgba(0,0,0,0.16)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.500}"
+ },
+ name: "--ds-shadow-xl",
+ attributes: {},
+ path: [
+ "shadow",
+ "xl"
+ ]
+ }
+]
diff --git a/apps/storefront/tokens/portal/light.ts b/apps/storefront/tokens/portal/light.ts
new file mode 100644
index 0000000000..6a0aa4eef1
--- /dev/null
+++ b/apps/storefront/tokens/portal/light.ts
@@ -0,0 +1,3811 @@
+/**
+ * These files are generated from design tokens defind using Token Studio
+ */
+
+export const color = [
+ {
+ $type: "color",
+ $value: "#fefefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.1}"
+ },
+ name: "--ds-color-accent-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f5f2f8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.2}"
+ },
+ name: "--ds-color-accent-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e8e0ee",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.3}"
+ },
+ name: "--ds-color-accent-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d9cce3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.4}"
+ },
+ name: "--ds-color-accent-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ccbad9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.5}"
+ },
+ name: "--ds-color-accent-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c7b4d6",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.6}"
+ },
+ name: "--ds-color-accent-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9773b3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.7}"
+ },
+ name: "--ds-color-accent-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#683591",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.8}"
+ },
+ name: "--ds-color-accent-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#4d107d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.9}"
+ },
+ name: "--ds-color-accent-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#612c8c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.10}"
+ },
+ name: "--ds-color-accent-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#734499",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.11}"
+ },
+ name: "--ds-color-accent-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7c4fa0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.12}"
+ },
+ name: "--ds-color-accent-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#420e6a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.13}"
+ },
+ name: "--ds-color-accent-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.contrast-1}"
+ },
+ name: "--ds-color-accent-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d5c6e0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.contrast-2}"
+ },
+ name: "--ds-color-accent-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.1}"
+ },
+ name: "--ds-color-neutral-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f3f4f5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.2}"
+ },
+ name: "--ds-color-neutral-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e1e3e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.3}"
+ },
+ name: "--ds-color-neutral-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ced1d4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.4}"
+ },
+ name: "--ds-color-neutral-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bdc1c6",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.5}"
+ },
+ name: "--ds-color-neutral-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b8bcc1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.6}"
+ },
+ name: "--ds-color-neutral-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7a818c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.7}"
+ },
+ name: "--ds-color-neutral-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#444e5d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.8}"
+ },
+ name: "--ds-color-neutral-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1E2B3C",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.9}"
+ },
+ name: "--ds-color-neutral-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#303c4b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.10}"
+ },
+ name: "--ds-color-neutral-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#444e5d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.11}"
+ },
+ name: "--ds-color-neutral-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5b6471",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.12}"
+ },
+ name: "--ds-color-neutral-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#202c3d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.13}"
+ },
+ name: "--ds-color-neutral-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.contrast-1}"
+ },
+ name: "--ds-color-neutral-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bbbfc4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.contrast-2}"
+ },
+ name: "--ds-color-neutral-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefdff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.1}"
+ },
+ name: "--ds-color-brand1-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f7f1fc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.2}"
+ },
+ name: "--ds-color-brand1-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ecddf8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.3}"
+ },
+ name: "--ds-color-brand1-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e0c8f3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.4}"
+ },
+ name: "--ds-color-brand1-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d5b5ef",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.5}"
+ },
+ name: "--ds-color-brand1-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1adee",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.6}"
+ },
+ name: "--ds-color-brand1-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a661de",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.7}"
+ },
+ name: "--ds-color-brand1-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#66388b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.8}"
+ },
+ name: "--ds-color-brand1-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a259dc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.9}"
+ },
+ name: "--ds-color-brand1-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#884bb9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.10}"
+ },
+ name: "--ds-color-brand1-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#703d97",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.11}"
+ },
+ name: "--ds-color-brand1-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#8248b1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.12}"
+ },
+ name: "--ds-color-brand1-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3a204f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.13}"
+ },
+ name: "--ds-color-brand1-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.contrast-1}"
+ },
+ name: "--ds-color-brand1-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0a060d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.contrast-2}"
+ },
+ name: "--ds-color-brand1-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fffeff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.1}"
+ },
+ name: "--ds-color-brand2-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fbf0fc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.2}"
+ },
+ name: "--ds-color-brand2-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f6d9f8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.3}"
+ },
+ name: "--ds-color-brand2-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f1c2f3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.4}"
+ },
+ name: "--ds-color-brand2-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ecabef",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.5}"
+ },
+ name: "--ds-color-brand2-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#eaa3ed",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.6}"
+ },
+ name: "--ds-color-brand2-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b75fbb",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.7}"
+ },
+ name: "--ds-color-brand2-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#6f3972",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.8}"
+ },
+ name: "--ds-color-brand2-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#df73e4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.9}"
+ },
+ name: "--ds-color-brand2-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c364c7",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.10}"
+ },
+ name: "--ds-color-brand2-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a656aa",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.11}"
+ },
+ name: "--ds-color-brand2-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#8e4991",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.12}"
+ },
+ name: "--ds-color-brand2-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3f2141",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.13}"
+ },
+ name: "--ds-color-brand2-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.contrast-1}"
+ },
+ name: "--ds-color-brand2-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#190d1a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.contrast-2}"
+ },
+ name: "--ds-color-brand2-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fffefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.1}"
+ },
+ name: "--ds-color-brand3-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fdeff8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.2}"
+ },
+ name: "--ds-color-brand3-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f9daef",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.3}"
+ },
+ name: "--ds-color-brand3-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f6c3e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.4}"
+ },
+ name: "--ds-color-brand3-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f2abdb",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.5}"
+ },
+ name: "--ds-color-brand3-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f1a3d7",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.6}"
+ },
+ name: "--ds-color-brand3-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c55aa3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.7}"
+ },
+ name: "--ds-color-brand3-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#773762",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.8}"
+ },
+ name: "--ds-color-brand3-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e86abf",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.9}"
+ },
+ name: "--ds-color-brand3-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c95ca6",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.10}"
+ },
+ name: "--ds-color-brand3-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ab4e8d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.11}"
+ },
+ name: "--ds-color-brand3-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#98467d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.12}"
+ },
+ name: "--ds-color-brand3-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#451f38",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.13}"
+ },
+ name: "--ds-color-brand3-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.contrast-1}"
+ },
+ name: "--ds-color-brand3-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#11080e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.contrast-2}"
+ },
+ name: "--ds-color-brand3-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fcfefc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.1}"
+ },
+ name: "--ds-color-success-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#edf6ee",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.2}"
+ },
+ name: "--ds-color-success-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e9d4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.3}"
+ },
+ name: "--ds-color-success-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b5dbba",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.4}"
+ },
+ name: "--ds-color-success-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#96cd9e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.5}"
+ },
+ name: "--ds-color-success-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#8fc997",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.6}"
+ },
+ name: "--ds-color-success-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#229532",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.7}"
+ },
+ name: "--ds-color-success-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#045a10",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.8}"
+ },
+ name: "--ds-color-success-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#068718",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.9}"
+ },
+ name: "--ds-color-success-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#057014",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.10}"
+ },
+ name: "--ds-color-success-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#045a10",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.11}"
+ },
+ name: "--ds-color-success-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#057315",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.12}"
+ },
+ name: "--ds-color-success-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#023409",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.13}"
+ },
+ name: "--ds-color-success-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.contrast-1}"
+ },
+ name: "--ds-color-success-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f9fcf9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.contrast-2}"
+ },
+ name: "--ds-color-success-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fffefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.1}"
+ },
+ name: "--ds-color-danger-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fbf1f1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.2}"
+ },
+ name: "--ds-color-danger-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f5dcdc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.3}"
+ },
+ name: "--ds-color-danger-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f0c7c7",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.4}"
+ },
+ name: "--ds-color-danger-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#eab3b3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.5}"
+ },
+ name: "--ds-color-danger-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e8acac",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.6}"
+ },
+ name: "--ds-color-danger-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d25b5b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.7}"
+ },
+ name: "--ds-color-danger-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9a1616",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.8}"
+ },
+ name: "--ds-color-danger-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#C01B1B",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.9}"
+ },
+ name: "--ds-color-danger-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9c1616",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.10}"
+ },
+ name: "--ds-color-danger-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#791111",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.11}"
+ },
+ name: "--ds-color-danger-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c22020",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.12}"
+ },
+ name: "--ds-color-danger-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5a0d0d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.13}"
+ },
+ name: "--ds-color-danger-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.contrast-1}"
+ },
+ name: "--ds-color-danger-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f7e1e1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.contrast-2}"
+ },
+ name: "--ds-color-danger-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefeff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.1}"
+ },
+ name: "--ds-color-info-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#edf5fa",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.2}"
+ },
+ name: "--ds-color-info-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d3e5f4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.3}"
+ },
+ name: "--ds-color-info-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b7d5ed",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.4}"
+ },
+ name: "--ds-color-info-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9bc5e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.5}"
+ },
+ name: "--ds-color-info-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#94c1e3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.6}"
+ },
+ name: "--ds-color-info-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2f86c9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.7}"
+ },
+ name: "--ds-color-info-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#075089",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.8}"
+ },
+ name: "--ds-color-info-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0A71C0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.9}"
+ },
+ name: "--ds-color-info-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#085e9f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.10}"
+ },
+ name: "--ds-color-info-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#074a7f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.11}"
+ },
+ name: "--ds-color-info-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0966ac",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.12}"
+ },
+ name: "--ds-color-info-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#042d4d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.13}"
+ },
+ name: "--ds-color-info-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.contrast-1}"
+ },
+ name: "--ds-color-info-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#edf5fa",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.contrast-2}"
+ },
+ name: "--ds-color-info-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fffefd",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.1}"
+ },
+ name: "--ds-color-warning-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f9f4e2",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.2}"
+ },
+ name: "--ds-color-warning-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#efe2b3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.3}"
+ },
+ name: "--ds-color-warning-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e5d183",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.4}"
+ },
+ name: "--ds-color-warning-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#dcbf53",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.5}"
+ },
+ name: "--ds-color-warning-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d9b945",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.6}"
+ },
+ name: "--ds-color-warning-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#987f22",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.7}"
+ },
+ name: "--ds-color-warning-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5c4c14",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.8}"
+ },
+ name: "--ds-color-warning-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#B8581D",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.9}"
+ },
+ name: "--ds-color-warning-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#984918",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.10}"
+ },
+ name: "--ds-color-warning-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7a3b13",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.11}"
+ },
+ name: "--ds-color-warning-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9e4b19",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.12}"
+ },
+ name: "--ds-color-warning-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#47220b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.13}"
+ },
+ name: "--ds-color-warning-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.contrast-1}"
+ },
+ name: "--ds-color-warning-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fdfbf9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.contrast-2}"
+ },
+ name: "--ds-color-warning-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.background-default}"
+ },
+ name: "--ds-color-focus-inner",
+ attributes: {},
+ path: [
+ "color",
+ "focus",
+ "inner"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#420e6a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.text-default}"
+ },
+ name: "--ds-color-focus-outer",
+ attributes: {},
+ path: [
+ "color",
+ "focus",
+ "outer"
+ ]
+ }
+]
+
+export const dimension = [
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *1)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.1}"
+ },
+ name: "--ds-border-radius-sm",
+ attributes: {},
+ path: [
+ "border-radius",
+ "sm"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *2)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.2}"
+ },
+ name: "--ds-border-radius-md",
+ attributes: {},
+ path: [
+ "border-radius",
+ "md"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *5)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.3}"
+ },
+ name: "--ds-border-radius-lg",
+ attributes: {},
+ path: [
+ "border-radius",
+ "lg"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.4}"
+ },
+ name: "--ds-border-radius-default",
+ attributes: {},
+ path: [
+ "border-radius",
+ "default"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "624.9375rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.5}"
+ },
+ name: "--ds-border-radius-full",
+ attributes: {},
+ path: [
+ "border-radius",
+ "full"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*0"
+ },
+ name: "--ds-spacing-0",
+ attributes: {},
+ path: [
+ "spacing",
+ "0"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*1"
+ },
+ name: "--ds-spacing-1",
+ attributes: {},
+ path: [
+ "spacing",
+ "1"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*2"
+ },
+ name: "--ds-spacing-2",
+ attributes: {},
+ path: [
+ "spacing",
+ "2"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*3"
+ },
+ name: "--ds-spacing-3",
+ attributes: {},
+ path: [
+ "spacing",
+ "3"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*4"
+ },
+ name: "--ds-spacing-4",
+ attributes: {},
+ path: [
+ "spacing",
+ "4"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*5"
+ },
+ name: "--ds-spacing-5",
+ attributes: {},
+ path: [
+ "spacing",
+ "5"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*6"
+ },
+ name: "--ds-spacing-6",
+ attributes: {},
+ path: [
+ "spacing",
+ "6"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*7"
+ },
+ name: "--ds-spacing-7",
+ attributes: {},
+ path: [
+ "spacing",
+ "7"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*8"
+ },
+ name: "--ds-spacing-8",
+ attributes: {},
+ path: [
+ "spacing",
+ "8"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*9"
+ },
+ name: "--ds-spacing-9",
+ attributes: {},
+ path: [
+ "spacing",
+ "9"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*10"
+ },
+ name: "--ds-spacing-10",
+ attributes: {},
+ path: [
+ "spacing",
+ "10"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*11"
+ },
+ name: "--ds-spacing-11",
+ attributes: {},
+ path: [
+ "spacing",
+ "11"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*12"
+ },
+ name: "--ds-spacing-12",
+ attributes: {},
+ path: [
+ "spacing",
+ "12"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*13"
+ },
+ name: "--ds-spacing-13",
+ attributes: {},
+ path: [
+ "spacing",
+ "13"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*14"
+ },
+ name: "--ds-spacing-14",
+ attributes: {},
+ path: [
+ "spacing",
+ "14"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*15"
+ },
+ name: "--ds-spacing-15",
+ attributes: {},
+ path: [
+ "spacing",
+ "15"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "4.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*18"
+ },
+ name: "--ds-spacing-18",
+ attributes: {},
+ path: [
+ "spacing",
+ "18"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "5.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*22"
+ },
+ name: "--ds-spacing-22",
+ attributes: {},
+ path: [
+ "spacing",
+ "22"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "6.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*26"
+ },
+ name: "--ds-spacing-26",
+ attributes: {},
+ path: [
+ "spacing",
+ "26"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "7.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*30"
+ },
+ name: "--ds-spacing-30",
+ attributes: {},
+ path: [
+ "spacing",
+ "30"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*0"
+ },
+ name: "--ds-sizing-0",
+ attributes: {},
+ path: [
+ "sizing",
+ "0"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*1"
+ },
+ name: "--ds-sizing-1",
+ attributes: {},
+ path: [
+ "sizing",
+ "1"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*2"
+ },
+ name: "--ds-sizing-2",
+ attributes: {},
+ path: [
+ "sizing",
+ "2"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*3"
+ },
+ name: "--ds-sizing-3",
+ attributes: {},
+ path: [
+ "sizing",
+ "3"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*4"
+ },
+ name: "--ds-sizing-4",
+ attributes: {},
+ path: [
+ "sizing",
+ "4"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*5"
+ },
+ name: "--ds-sizing-5",
+ attributes: {},
+ path: [
+ "sizing",
+ "5"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*6"
+ },
+ name: "--ds-sizing-6",
+ attributes: {},
+ path: [
+ "sizing",
+ "6"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*7"
+ },
+ name: "--ds-sizing-7",
+ attributes: {},
+ path: [
+ "sizing",
+ "7"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*8"
+ },
+ name: "--ds-sizing-8",
+ attributes: {},
+ path: [
+ "sizing",
+ "8"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*9"
+ },
+ name: "--ds-sizing-9",
+ attributes: {},
+ path: [
+ "sizing",
+ "9"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*10"
+ },
+ name: "--ds-sizing-10",
+ attributes: {},
+ path: [
+ "sizing",
+ "10"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*11"
+ },
+ name: "--ds-sizing-11",
+ attributes: {},
+ path: [
+ "sizing",
+ "11"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*12"
+ },
+ name: "--ds-sizing-12",
+ attributes: {},
+ path: [
+ "sizing",
+ "12"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*13"
+ },
+ name: "--ds-sizing-13",
+ attributes: {},
+ path: [
+ "sizing",
+ "13"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*14"
+ },
+ name: "--ds-sizing-14",
+ attributes: {},
+ path: [
+ "sizing",
+ "14"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*15"
+ },
+ name: "--ds-sizing-15",
+ attributes: {},
+ path: [
+ "sizing",
+ "15"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "4.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*18"
+ },
+ name: "--ds-sizing-18",
+ attributes: {},
+ path: [
+ "sizing",
+ "18"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "5.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*22"
+ },
+ name: "--ds-sizing-22",
+ attributes: {},
+ path: [
+ "sizing",
+ "22"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "6.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*26"
+ },
+ name: "--ds-sizing-26",
+ attributes: {},
+ path: [
+ "sizing",
+ "26"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "7.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*30"
+ },
+ name: "--ds-sizing-30",
+ attributes: {},
+ path: [
+ "sizing",
+ "30"
+ ]
+ }
+]
+
+export const typography = [
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "3.75rem",
+ letterSpacing: "-1%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.11}",
+ letterSpacing: "{letter-spacing.1}"
+ }
+ },
+ name: "--ds-heading-2xl",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "2xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "3rem",
+ letterSpacing: "-1%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.10}",
+ letterSpacing: "{letter-spacing.1}"
+ }
+ },
+ name: "--ds-heading-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "2.25rem",
+ letterSpacing: "-0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.9}",
+ letterSpacing: "{letter-spacing.2}"
+ }
+ },
+ name: "--ds-heading-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.875rem",
+ letterSpacing: "-0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.8}",
+ letterSpacing: "{letter-spacing.3}"
+ }
+ },
+ name: "--ds-heading-md",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.5rem",
+ letterSpacing: "0%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.5}"
+ }
+ },
+ name: "--ds-heading-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-heading-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.125rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-heading-2xs",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "2xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-short-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-short-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-long-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-long-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "xs"
+ ]
+ }
+]
+
+export const opacity = [
+ {
+ $type: "opacity",
+ $value: "30%",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "opacity",
+ $value: "{opacity.30}"
+ },
+ name: "--ds-disabled-opacity",
+ attributes: {},
+ path: [
+ "disabled",
+ "opacity"
+ ]
+ }
+]
+
+export const shadow = [
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.16), 0 1px 2px 0 rgba(0,0,0,0.12)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.100}"
+ },
+ name: "--ds-shadow-xs",
+ attributes: {},
+ path: [
+ "shadow",
+ "xs"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.15), 0 1px 2px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.1)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.200}"
+ },
+ name: "--ds-shadow-sm",
+ attributes: {},
+ path: [
+ "shadow",
+ "sm"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.14), 0 2px 4px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.12)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.300}"
+ },
+ name: "--ds-shadow-md",
+ attributes: {},
+ path: [
+ "shadow",
+ "md"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.13), 0 3px 5px 0 rgba(0,0,0,0.13), 0 6px 12px 0 rgba(0,0,0,0.14)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.400}"
+ },
+ name: "--ds-shadow-lg",
+ attributes: {},
+ path: [
+ "shadow",
+ "lg"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.16), 0 12px 24px 0 rgba(0,0,0,0.16)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.500}"
+ },
+ name: "--ds-shadow-xl",
+ attributes: {},
+ path: [
+ "shadow",
+ "xl"
+ ]
+ }
+]
diff --git a/apps/storefront/tokens/tilsynet.ts b/apps/storefront/tokens/tilsynet.ts
deleted file mode 100644
index 7cd5ce5081..0000000000
--- a/apps/storefront/tokens/tilsynet.ts
+++ /dev/null
@@ -1,4939 +0,0 @@
-/**
- * Do not edit directly
- * These files are generated from design tokens defined in Figma using Token Studio
- */
-
-export const color = [
- {
- value: "#efeffb",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#efeffb",
- type: "color"
- },
- name: "--fds-brand-alt1-100",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "100"
- ]
- },
- {
- value: "#dedff6",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#dedff6",
- type: "color"
- },
- name: "--fds-brand-alt1-200",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "200"
- ]
- },
- {
- value: "#bec0ed",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#bec0ed",
- type: "color"
- },
- name: "--fds-brand-alt1-300",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "300"
- ]
- },
- {
- value: "#9da0e4",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#9da0e4",
- type: "color"
- },
- name: "--fds-brand-alt1-400",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "400"
- ]
- },
- {
- value: "#7d81db",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#7d81db",
- type: "color"
- },
- name: "--fds-brand-alt1-500",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "500"
- ]
- },
- {
- value: "#5c61d2",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#5c61d2",
- type: "color"
- },
- name: "--fds-brand-alt1-600",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "600"
- ]
- },
- {
- value: "#3339c6",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#3339c6",
- type: "color"
- },
- name: "--fds-brand-alt1-700",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "700"
- ]
- },
- {
- value: "#0008b8",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#0008b8",
- type: "color"
- },
- name: "--fds-brand-alt1-800",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "800"
- ]
- },
- {
- value: "#00078F",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#00078F",
- type: "color"
- },
- name: "--fds-brand-alt1-900",
- attributes: {},
- path: [
- "brand",
- "alt1",
- "900"
- ]
- },
- {
- value: "#ffeee1",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#ffeee1",
- type: "color"
- },
- name: "--fds-brand-alt2-100",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "100"
- ]
- },
- {
- value: "#ffdcc3",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#ffdcc3",
- type: "color"
- },
- name: "--fds-brand-alt2-200",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "200"
- ]
- },
- {
- value: "#fdd4b7",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#fdd4b7",
- type: "color"
- },
- name: "--fds-brand-alt2-300",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "300"
- ]
- },
- {
- value: "#ffc296",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#ffc296",
- type: "color"
- },
- name: "--fds-brand-alt2-400",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "400"
- ]
- },
- {
- value: "#ffb178",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#ffb178",
- type: "color"
- },
- name: "--fds-brand-alt2-500",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "500"
- ]
- },
- {
- value: "#ffa869",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#ffa869",
- type: "color"
- },
- name: "--fds-brand-alt2-600",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "600"
- ]
- },
- {
- value: "#e6975f",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#e6975f",
- type: "color"
- },
- name: "--fds-brand-alt2-700",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "700"
- ]
- },
- {
- value: "#b3764a",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#b3764a",
- type: "color"
- },
- name: "--fds-brand-alt2-800",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "800"
- ]
- },
- {
- value: "#9F6841",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#9F6841",
- type: "color"
- },
- name: "--fds-brand-alt2-900",
- attributes: {},
- path: [
- "brand",
- "alt2",
- "900"
- ]
- },
- {
- value: "#eff6f4",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#eff6f4",
- type: "color"
- },
- name: "--fds-brand-alt3-100",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "100"
- ]
- },
- {
- value: "#deece9",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#deece9",
- type: "color"
- },
- name: "--fds-brand-alt3-200",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "200"
- ]
- },
- {
- value: "#bedad2",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#bedad2",
- type: "color"
- },
- name: "--fds-brand-alt3-300",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "300"
- ]
- },
- {
- value: "#9dc7bc",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#9dc7bc",
- type: "color"
- },
- name: "--fds-brand-alt3-400",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "400"
- ]
- },
- {
- value: "#7db5a5",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#7db5a5",
- type: "color"
- },
- name: "--fds-brand-alt3-500",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "500"
- ]
- },
- {
- value: "#5ca28f",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#5ca28f",
- type: "color"
- },
- name: "--fds-brand-alt3-600",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "600"
- ]
- },
- {
- value: "#4c907e",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#4c907e",
- type: "color"
- },
- name: "--fds-brand-alt3-700",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "700"
- ]
- },
- {
- value: "#407d6d",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#407d6d",
- type: "color"
- },
- name: "--fds-brand-alt3-800",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "800"
- ]
- },
- {
- value: "#376C5E",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#376C5E",
- type: "color"
- },
- name: "--fds-brand-alt3-900",
- attributes: {},
- path: [
- "brand",
- "alt3",
- "900"
- ]
- },
- {
- value: "#dedff6",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt1.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-first-light",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "first",
- "light"
- ]
- },
- {
- value: "#bec0ed",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt1.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-first-light-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "first",
- "light-hover"
- ]
- },
- {
- value: "#9da0e4",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt1.400}",
- type: "color"
- },
- name: "--fds-semantic-surface-first-light-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "first",
- "light-active"
- ]
- },
- {
- value: "#0008b8",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt1.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-first-dark",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "first",
- "dark"
- ]
- },
- {
- value: "#ffdcc3",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt2.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-second-light",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "second",
- "light"
- ]
- },
- {
- value: "#fdd4b7",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt2.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-second-light-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "second",
- "light-hover"
- ]
- },
- {
- value: "#ffc296",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt2.400}",
- type: "color"
- },
- name: "--fds-semantic-surface-second-light-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "second",
- "light-active"
- ]
- },
- {
- value: "#9F6841",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt2.900}",
- type: "color"
- },
- name: "--fds-semantic-surface-second-dark",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "second",
- "dark"
- ]
- },
- {
- value: "#deece9",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt3.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-third-light",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "third",
- "light"
- ]
- },
- {
- value: "#bedad2",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt3.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-third-light-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "third",
- "light-hover"
- ]
- },
- {
- value: "#9dc7bc",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt3.400}",
- type: "color"
- },
- name: "--fds-semantic-surface-third-light-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "third",
- "light-active"
- ]
- },
- {
- value: "#407d6d",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt3.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-third-dark",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "third",
- "dark"
- ]
- },
- {
- value: "#f4f5f6",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.grey.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "subtle"
- ]
- },
- {
- value: "#e9eaec",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.grey.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "subtle-hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "default"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.9)",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.9)",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "hover"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.8)",
- type: "color",
- description: "Standard farge for handlinger",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.8)",
- type: "color",
- description: "Standard farge for handlinger"
- },
- name: "--fds-semantic-surface-action-first-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "no_fill"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.1)",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.1)",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "no_fill-hover"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.2)",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.2)",
- type: "color"
- },
- name: "--fds-semantic-surface-action-first-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "first",
- "no_fill-active"
- ]
- },
- {
- value: "#f4f5f6",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.grey.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "subtle"
- ]
- },
- {
- value: "#e9eaec",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.grey.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "subtle-hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "default"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.9)",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.9)",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "hover"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.8)",
- type: "color",
- description: "Standard farge for handlinger",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.8)",
- type: "color",
- description: "Standard farge for handlinger"
- },
- name: "--fds-semantic-surface-action-second-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "no_fill"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.1)",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.1)",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "no_fill-hover"
- ]
- },
- {
- value: "rgba(0, 49, 93, 0.2)",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "rgba({colors.blue.900}, 0.2)",
- type: "color"
- },
- name: "--fds-semantic-surface-action-second-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "second",
- "no_fill-active"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "subtle"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "subtle-hover"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "default"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- description: "Standard farge for handlinger",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color",
- description: "Standard farge for handlinger"
- },
- name: "--fds-semantic-surface-action-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "no_fill"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "no_fill-hover"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "no_fill-active"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-action-checked",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "action",
- "checked"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "default"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-selected",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "selected"
- ]
- },
- {
- value: "#f4f5f6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "subtle"
- ]
- },
- {
- value: "#e9eaec",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "subtle-hover"
- ]
- },
- {
- value: "#68707c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.600}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-dark",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "dark"
- ]
- },
- {
- value: "#4b5563",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-dark-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "dark-hover"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-neutral-inverted",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "neutral",
- "inverted"
- ]
- },
- {
- value: "#d1f4e1",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "subtle"
- ]
- },
- {
- value: "#8be4b5",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "subtle-hover"
- ]
- },
- {
- value: "#118849",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "default"
- ]
- },
- {
- value: "#0c6536",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.800}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "hover"
- ]
- },
- {
- value: "#084826",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.900}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "no_fill"
- ]
- },
- {
- value: "#d1f4e1",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "no_fill-hover"
- ]
- },
- {
- value: "#8be4b5",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-success-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "success",
- "no_fill-active"
- ]
- },
- {
- value: "#fffbe6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-warning-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "warning",
- "subtle"
- ]
- },
- {
- value: "#fff4b4",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-warning-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "warning",
- "subtle-hover"
- ]
- },
- {
- value: "#fff4b4",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-warning-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "warning",
- "default"
- ]
- },
- {
- value: "#ffed83",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.300}",
- type: "color"
- },
- name: "--fds-semantic-surface-warning-default-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "warning",
- "default-hover"
- ]
- },
- {
- value: "#f9d5db",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "subtle"
- ]
- },
- {
- value: "#f3abb6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "subtle-hover"
- ]
- },
- {
- value: "#e02e49",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.500}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "default"
- ]
- },
- {
- value: "#b3253a",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.600}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "hover"
- ]
- },
- {
- value: "#861c2c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.700}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "no_fill"
- ]
- },
- {
- value: "#f9d5db",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "no_fill-hover"
- ]
- },
- {
- value: "#f3abb6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-danger-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "danger",
- "no_fill-active"
- ]
- },
- {
- value: "#e6eff8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.100}",
- type: "color"
- },
- name: "--fds-semantic-surface-info-subtle",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "info",
- "subtle"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-surface-info-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "info",
- "subtle-hover"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "default"
- ]
- },
- {
- value: "#ffffffe6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffffe6",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "hover"
- ]
- },
- {
- value: "#ffffffcc",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffffcc",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "active"
- ]
- },
- {
- value: "#ffffff00",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffff00",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-no_fill",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "no_fill"
- ]
- },
- {
- value: "#ffffff1a",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffff1a",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-no_fill-hover",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "no_fill-hover"
- ]
- },
- {
- value: "#ffffff33",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "#ffffff33",
- type: "color"
- },
- name: "--fds-semantic-surface-on_inverted-no_fill-active",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "on_inverted",
- "no_fill-active"
- ]
- },
- {
- value: "#ffda06",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.500}",
- type: "color"
- },
- name: "--fds-semantic-surface-focus-default",
- attributes: {},
- path: [
- "semantic",
- "surface",
- "focus",
- "default"
- ]
- },
- {
- value: "#5c61d2",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt1.600}",
- type: "color"
- },
- name: "--fds-semantic-border-first-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "first",
- "default"
- ]
- },
- {
- value: "#3339c6",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt1.700}",
- type: "color"
- },
- name: "--fds-semantic-border-first-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "first",
- "hover"
- ]
- },
- {
- value: "#0008b8",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt1.800}",
- type: "color"
- },
- name: "--fds-semantic-border-first-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "first",
- "active"
- ]
- },
- {
- value: "#ffa869",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt2.600}",
- type: "color"
- },
- name: "--fds-semantic-border-second-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "second",
- "default"
- ]
- },
- {
- value: "#e6975f",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt2.700}",
- type: "color"
- },
- name: "--fds-semantic-border-second-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "second",
- "hover"
- ]
- },
- {
- value: "#b3764a",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt2.800}",
- type: "color"
- },
- name: "--fds-semantic-border-second-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "second",
- "active"
- ]
- },
- {
- value: "#5ca28f",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt3.600}",
- type: "color"
- },
- name: "--fds-semantic-border-third-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "third",
- "default"
- ]
- },
- {
- value: "#4c907e",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt3.700}",
- type: "color"
- },
- name: "--fds-semantic-border-third-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "third",
- "hover"
- ]
- },
- {
- value: "#407d6d",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{brand.alt3.800}",
- type: "color"
- },
- name: "--fds-semantic-border-third-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "third",
- "active"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "subtle"
- ]
- },
- {
- value: "#66a1d6",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.blue.400}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "subtle-hover"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "default"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-first-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "first",
- "active"
- ]
- },
- {
- value: "#e9eaec",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.grey.200}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "subtle"
- ]
- },
- {
- value: "#d2d5d8",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.grey.300}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "subtle-hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "default"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-second-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "second",
- "active"
- ]
- },
- {
- value: "#b3d0ea",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.200}",
- type: "color"
- },
- name: "--fds-semantic-border-action-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "subtle"
- ]
- },
- {
- value: "#66a1d6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.400}",
- type: "color"
- },
- name: "--fds-semantic-border-action-subtle-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "subtle-hover"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-action-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "default"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-action-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "active"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-action-dark",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "dark"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-action-dark-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "action",
- "dark-hover"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-border-info-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "info",
- "default"
- ]
- },
- {
- value: "#68707c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.600}",
- type: "color"
- },
- name: "--fds-semantic-border-neutral-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "neutral",
- "default"
- ]
- },
- {
- value: "#d2d5d8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.300}",
- type: "color"
- },
- name: "--fds-semantic-border-neutral-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "neutral",
- "subtle"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-border-neutral-strong",
- attributes: {},
- path: [
- "semantic",
- "border",
- "neutral",
- "strong"
- ]
- },
- {
- value: "#118849",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.700}",
- type: "color"
- },
- name: "--fds-semantic-border-success-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "success",
- "default"
- ]
- },
- {
- value: "#0c6536",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.800}",
- type: "color"
- },
- name: "--fds-semantic-border-success-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "success",
- "hover"
- ]
- },
- {
- value: "#084826",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.900}",
- type: "color"
- },
- name: "--fds-semantic-border-success-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "success",
- "active"
- ]
- },
- {
- value: "#cc7005",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.600}",
- type: "color"
- },
- name: "--fds-semantic-border-warning-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "warning",
- "default"
- ]
- },
- {
- value: "#995404",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.700}",
- type: "color"
- },
- name: "--fds-semantic-border-warning-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "warning",
- "hover"
- ]
- },
- {
- value: "#663802",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.800}",
- type: "color"
- },
- name: "--fds-semantic-border-warning-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "warning",
- "active"
- ]
- },
- {
- value: "#e02e49",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.500}",
- type: "color"
- },
- name: "--fds-semantic-border-danger-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "danger",
- "default"
- ]
- },
- {
- value: "#b3253a",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.600}",
- type: "color"
- },
- name: "--fds-semantic-border-danger-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "danger",
- "hover"
- ]
- },
- {
- value: "#861c2c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.700}",
- type: "color"
- },
- name: "--fds-semantic-border-danger-active",
- attributes: {},
- path: [
- "semantic",
- "border",
- "danger",
- "active"
- ]
- },
- {
- value: "#ffda06",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.yellow.500}",
- type: "color"
- },
- name: "--fds-semantic-border-focus-outline",
- attributes: {},
- path: [
- "semantic",
- "border",
- "focus",
- "outline"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{semantic.border.neutral.strong}",
- type: "color"
- },
- name: "--fds-semantic-border-focus-boxshadow",
- attributes: {},
- path: [
- "semantic",
- "border",
- "focus",
- "boxshadow"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-border-on_inverted-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "on_inverted",
- "default"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-border-input-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "input",
- "default"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-border-input-hover",
- attributes: {},
- path: [
- "semantic",
- "border",
- "input",
- "hover"
- ]
- },
- {
- value: "#bcbfc5",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.400}",
- type: "color"
- },
- name: "--fds-semantic-border-divider-default",
- attributes: {},
- path: [
- "semantic",
- "border",
- "divider",
- "default"
- ]
- },
- {
- value: "#d2d5d8",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.300}",
- type: "color"
- },
- name: "--fds-semantic-border-divider-subtle",
- attributes: {},
- path: [
- "semantic",
- "border",
- "divider",
- "subtle"
- ]
- },
- {
- value: "#68707c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.600}",
- type: "color"
- },
- name: "--fds-semantic-border-divider-strong",
- attributes: {},
- path: [
- "semantic",
- "border",
- "divider",
- "strong"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-text-action-first-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "first",
- "default"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#004e95",
- type: "color"
- },
- name: "--fds-semantic-text-action-first-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "first",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "#00315d",
- type: "color"
- },
- name: "--fds-semantic-text-action-first-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "first",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-action-first-on_action",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "first",
- "on_action"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-second-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "second",
- "default"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-second-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "second",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-second-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "second",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Brand/Tilsynet.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-action-second-on_action",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "second",
- "on_action"
- ]
- },
- {
- value: "#0062ba",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.700}",
- type: "color"
- },
- name: "--fds-semantic-text-action-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "default"
- ]
- },
- {
- value: "#004e95",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.800}",
- type: "color"
- },
- name: "--fds-semantic-text-action-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "hover"
- ]
- },
- {
- value: "#00315d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.blue.900}",
- type: "color"
- },
- name: "--fds-semantic-text-action-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-action-on_action",
- attributes: {},
- path: [
- "semantic",
- "text",
- "action",
- "on_action"
- ]
- },
- {
- value: "#0c6536",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.800}",
- type: "color"
- },
- name: "--fds-semantic-text-success-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "default"
- ]
- },
- {
- value: "#084826",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.900}",
- type: "color"
- },
- name: "--fds-semantic-text-success-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "hover"
- ]
- },
- {
- value: "#084826",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.green.900}",
- type: "color"
- },
- name: "--fds-semantic-text-success-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-success-on_success",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "on_success"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-text-success-on_success_subtle",
- attributes: {},
- path: [
- "semantic",
- "text",
- "success",
- "on_success_subtle"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-text-neutral-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "neutral",
- "default"
- ]
- },
- {
- value: "#4b5563",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.700}",
- type: "color"
- },
- name: "--fds-semantic-text-neutral-subtle",
- attributes: {},
- path: [
- "semantic",
- "text",
- "neutral",
- "subtle"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-neutral-on_inverted",
- attributes: {},
- path: [
- "semantic",
- "text",
- "neutral",
- "on_inverted"
- ]
- },
- {
- value: "#995404",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.700}",
- type: "color"
- },
- name: "--fds-semantic-text-warning-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "warning",
- "default"
- ]
- },
- {
- value: "#cc7005",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.600}",
- type: "color"
- },
- name: "--fds-semantic-text-warning-icon_warning",
- attributes: {},
- path: [
- "semantic",
- "text",
- "warning",
- "icon_warning"
- ]
- },
- {
- value: "#663802",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.orange.800}",
- type: "color"
- },
- name: "--fds-semantic-text-warning-on_warning",
- attributes: {},
- path: [
- "semantic",
- "text",
- "warning",
- "on_warning"
- ]
- },
- {
- value: "#b3253a",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.600}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "default"
- ]
- },
- {
- value: "#861c2c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.700}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-hover",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "hover"
- ]
- },
- {
- value: "#5a121d",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.red.800}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-active",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "active"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-on_danger",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "on_danger"
- ]
- },
- {
- value: "#1e2b3c",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.800}",
- type: "color"
- },
- name: "--fds-semantic-text-danger-on_danger_subtle",
- attributes: {},
- path: [
- "semantic",
- "text",
- "danger",
- "on_danger_subtle"
- ]
- },
- {
- value: "#7a1265",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.purple.700}",
- type: "color"
- },
- name: "--fds-semantic-text-visited-default",
- attributes: {},
- path: [
- "semantic",
- "text",
- "visited",
- "default"
- ]
- },
- {
- value: "#ffffff",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.white}",
- type: "color"
- },
- name: "--fds-semantic-background-default",
- attributes: {},
- path: [
- "semantic",
- "background",
- "default"
- ]
- },
- {
- value: "#f4f5f6",
- type: "color",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{colors.grey.100}",
- type: "color"
- },
- name: "--fds-semantic-background-subtle",
- attributes: {},
- path: [
- "semantic",
- "background",
- "subtle"
- ]
- }
-]
-
-export const typography = [
- {
- value: "500 3.75rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f7}"
- },
- type: "typography"
- },
- name: "--fds-typography-heading-2xlarge",
- attributes: {},
- path: [
- "typography",
- "heading",
- "2xlarge"
- ]
- },
- {
- value: "500 3rem/1.3 'Inter'",
- type: "typography",
- description: "H1",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f6}"
- },
- type: "typography",
- description: "H1"
- },
- name: "--fds-typography-heading-xlarge",
- attributes: {},
- path: [
- "typography",
- "heading",
- "xlarge"
- ]
- },
- {
- value: "500 2.25rem/1.3 'Inter'",
- type: "typography",
- description: "H2",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f5}"
- },
- type: "typography",
- description: "H2"
- },
- name: "--fds-typography-heading-large",
- attributes: {},
- path: [
- "typography",
- "heading",
- "large"
- ]
- },
- {
- value: "500 1.875rem/1.3 'Inter'",
- type: "typography",
- description: "H3",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f4}"
- },
- type: "typography",
- description: "H3"
- },
- name: "--fds-typography-heading-medium",
- attributes: {},
- path: [
- "typography",
- "heading",
- "medium"
- ]
- },
- {
- value: "500 1.5rem/1.3 'Inter'",
- type: "typography",
- description: "H4",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f3}"
- },
- type: "typography",
- description: "H4"
- },
- name: "--fds-typography-heading-small",
- attributes: {},
- path: [
- "typography",
- "heading",
- "small"
- ]
- },
- {
- value: "500 1.3125rem/1.3 'Inter'",
- type: "typography",
- description: "H5",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f2}"
- },
- type: "typography",
- description: "H5"
- },
- name: "--fds-typography-heading-xsmall",
- attributes: {},
- path: [
- "typography",
- "heading",
- "xsmall"
- ]
- },
- {
- value: "500 1.125rem/1.3 'Inter'",
- type: "typography",
- description: "H6",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f1}"
- },
- type: "typography",
- description: "H6"
- },
- name: "--fds-typography-heading-xxsmall",
- attributes: {},
- path: [
- "typography",
- "heading",
- "xxsmall"
- ]
- },
- {
- value: "400 1.875rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f4}"
- },
- type: "typography"
- },
- name: "--fds-typography-ingress-large",
- attributes: {},
- path: [
- "typography",
- "ingress",
- "large"
- ]
- },
- {
- value: "400 1.5rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f3}"
- },
- type: "typography"
- },
- name: "--fds-typography-ingress-medium",
- attributes: {},
- path: [
- "typography",
- "ingress",
- "medium"
- ]
- },
- {
- value: "400 1.3125rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-ingress-small",
- attributes: {},
- path: [
- "typography",
- "ingress",
- "small"
- ]
- },
- {
- value: "400 1.125rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-ingress-xsmall",
- attributes: {},
- path: [
- "typography",
- "ingress",
- "xsmall"
- ]
- },
- {
- value: "400 1.3125rem/1.5 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.500}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-large",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "large"
- ]
- },
- {
- value: "400 1.125rem/1.5 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.500}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-medium",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "medium"
- ]
- },
- {
- value: "400 1rem/1.5 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.500}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-small",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "small"
- ]
- },
- {
- value: "400 0.875rem/1.5 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.500}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-xsmall",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "xsmall"
- ]
- },
- {
- value: "400 1.3125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-short-large",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "short",
- "large"
- ]
- },
- {
- value: "400 1.125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-short-medium",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "short",
- "medium"
- ]
- },
- {
- value: "400 1rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-short-small",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "short",
- "small"
- ]
- },
- {
- value: "400 0.875rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-short-xsmall",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "short",
- "xsmall"
- ]
- },
- {
- value: "400 1.125rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-long-large",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "long",
- "large"
- ]
- },
- {
- value: "400 1rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-long-medium",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "long",
- "medium"
- ]
- },
- {
- value: "400 0.875rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-long-small",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "long",
- "small"
- ]
- },
- {
- value: "400 0.8125rem/1.7 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.700}",
- fontSize: "{font-size.f-2}"
- },
- type: "typography"
- },
- name: "--fds-typography-paragraph-long-xsmall",
- attributes: {},
- path: [
- "typography",
- "paragraph",
- "long",
- "xsmall"
- ]
- },
- {
- value: "500 1.3125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-label-large",
- attributes: {},
- path: [
- "typography",
- "label",
- "large"
- ]
- },
- {
- value: "500 1.125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-label-medium",
- attributes: {},
- path: [
- "typography",
- "label",
- "medium"
- ]
- },
- {
- value: "500 1rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-label-small",
- attributes: {},
- path: [
- "typography",
- "label",
- "small"
- ]
- },
- {
- value: "500 0.875rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.medium}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-label-xsmall",
- attributes: {},
- path: [
- "typography",
- "label",
- "xsmall"
- ]
- },
- {
- value: "400 1.3125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f2}"
- },
- type: "typography"
- },
- name: "--fds-typography-error_message-large",
- attributes: {},
- path: [
- "typography",
- "error_message",
- "large"
- ]
- },
- {
- value: "400 1.125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f1}"
- },
- type: "typography"
- },
- name: "--fds-typography-error_message-medium",
- attributes: {},
- path: [
- "typography",
- "error_message",
- "medium"
- ]
- },
- {
- value: "400 1rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f0}"
- },
- type: "typography"
- },
- name: "--fds-typography-error_message-small",
- attributes: {},
- path: [
- "typography",
- "error_message",
- "small"
- ]
- },
- {
- value: "400 0.875rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-size.f-1}"
- },
- type: "typography"
- },
- name: "--fds-typography-error_message-xsmall",
- attributes: {},
- path: [
- "typography",
- "error_message",
- "xsmall"
- ]
- },
- {
- value: "400 1.5rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-static.large}"
- },
- type: "typography"
- },
- name: "--fds-typography-interactive-large",
- attributes: {},
- path: [
- "typography",
- "interactive",
- "large"
- ]
- },
- {
- value: "400 1.125rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-static.medium}"
- },
- type: "typography"
- },
- name: "--fds-typography-interactive-medium",
- attributes: {},
- path: [
- "typography",
- "interactive",
- "medium"
- ]
- },
- {
- value: "400 1rem/1.3 'Inter'",
- type: "typography",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: {
- fontFamily: "{fontFamilies.inter}",
- fontWeight: "{fontWeights.regular}",
- lineHeight: "{lineHeights.300}",
- fontSize: "{font-static.small}"
- },
- type: "typography"
- },
- name: "--fds-typography-interactive-small",
- attributes: {},
- path: [
- "typography",
- "interactive",
- "small"
- ]
- }
-]
-
-export const opacity = [
- {
- value: "30%",
- type: "opacity",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "30%",
- type: "opacity"
- },
- name: "--fds-opacity-disabled",
- attributes: {},
- path: [
- "opacity",
- "disabled"
- ]
- }
-]
-
-export const borderRadius = [
- {
- value: "4px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{border_radius.medium}",
- type: "borderRadius"
- },
- name: "--fds-border_radius-interactive",
- attributes: {},
- path: [
- "border_radius",
- "interactive"
- ]
- },
- {
- value: "2px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "2px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-small",
- attributes: {},
- path: [
- "border_radius",
- "small"
- ]
- },
- {
- value: "4px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "4px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-medium",
- attributes: {},
- path: [
- "border_radius",
- "medium"
- ]
- },
- {
- value: "8px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "8px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-large",
- attributes: {},
- path: [
- "border_radius",
- "large"
- ]
- },
- {
- value: "12px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "12px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-xlarge",
- attributes: {},
- path: [
- "border_radius",
- "xlarge"
- ]
- },
- {
- value: "16px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "16px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-xxlarge",
- attributes: {},
- path: [
- "border_radius",
- "xxlarge"
- ]
- },
- {
- value: "24px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "24px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-xxxlarge",
- attributes: {},
- path: [
- "border_radius",
- "xxxlarge"
- ]
- },
- {
- value: "32px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "32px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-xxxxlarge",
- attributes: {},
- path: [
- "border_radius",
- "xxxxlarge"
- ]
- },
- {
- value: "9999px",
- type: "borderRadius",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "9999px",
- type: "borderRadius"
- },
- name: "--fds-border_radius-full",
- attributes: {},
- path: [
- "border_radius",
- "full"
- ]
- }
-]
-
-export const spacing = [
- {
- value: "0rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*0",
- type: "spacing"
- },
- name: "--fds-spacing-0",
- attributes: {},
- path: [
- "spacing",
- "0"
- ]
- },
- {
- value: "0.25rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*1",
- type: "spacing"
- },
- name: "--fds-spacing-1",
- attributes: {},
- path: [
- "spacing",
- "1"
- ]
- },
- {
- value: "0.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*2",
- type: "spacing"
- },
- name: "--fds-spacing-2",
- attributes: {},
- path: [
- "spacing",
- "2"
- ]
- },
- {
- value: "0.75rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*3",
- type: "spacing"
- },
- name: "--fds-spacing-3",
- attributes: {},
- path: [
- "spacing",
- "3"
- ]
- },
- {
- value: "1rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*4",
- type: "spacing"
- },
- name: "--fds-spacing-4",
- attributes: {},
- path: [
- "spacing",
- "4"
- ]
- },
- {
- value: "1.25rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*5",
- type: "spacing"
- },
- name: "--fds-spacing-5",
- attributes: {},
- path: [
- "spacing",
- "5"
- ]
- },
- {
- value: "1.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*6",
- type: "spacing"
- },
- name: "--fds-spacing-6",
- attributes: {},
- path: [
- "spacing",
- "6"
- ]
- },
- {
- value: "1.75rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*7",
- type: "spacing"
- },
- name: "--fds-spacing-7",
- attributes: {},
- path: [
- "spacing",
- "7"
- ]
- },
- {
- value: "2rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*8",
- type: "spacing"
- },
- name: "--fds-spacing-8",
- attributes: {},
- path: [
- "spacing",
- "8"
- ]
- },
- {
- value: "2.25rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*9",
- type: "spacing"
- },
- name: "--fds-spacing-9",
- attributes: {},
- path: [
- "spacing",
- "9"
- ]
- },
- {
- value: "2.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*10",
- type: "spacing"
- },
- name: "--fds-spacing-10",
- attributes: {},
- path: [
- "spacing",
- "10"
- ]
- },
- {
- value: "2.75rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*11",
- type: "spacing"
- },
- name: "--fds-spacing-11",
- attributes: {},
- path: [
- "spacing",
- "11"
- ]
- },
- {
- value: "3rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*12",
- type: "spacing"
- },
- name: "--fds-spacing-12",
- attributes: {},
- path: [
- "spacing",
- "12"
- ]
- },
- {
- value: "3.25rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*13",
- type: "spacing"
- },
- name: "--fds-spacing-13",
- attributes: {},
- path: [
- "spacing",
- "13"
- ]
- },
- {
- value: "3.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*14",
- type: "spacing"
- },
- name: "--fds-spacing-14",
- attributes: {},
- path: [
- "spacing",
- "14"
- ]
- },
- {
- value: "3.75rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*15",
- type: "spacing"
- },
- name: "--fds-spacing-15",
- attributes: {},
- path: [
- "spacing",
- "15"
- ]
- },
- {
- value: "4.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*18",
- type: "spacing"
- },
- name: "--fds-spacing-18",
- attributes: {},
- path: [
- "spacing",
- "18"
- ]
- },
- {
- value: "5.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*22",
- type: "spacing"
- },
- name: "--fds-spacing-22",
- attributes: {},
- path: [
- "spacing",
- "22"
- ]
- },
- {
- value: "6.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*26",
- type: "spacing"
- },
- name: "--fds-spacing-26",
- attributes: {},
- path: [
- "spacing",
- "26"
- ]
- },
- {
- value: "7.5rem",
- type: "spacing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*30",
- type: "spacing"
- },
- name: "--fds-spacing-30",
- attributes: {},
- path: [
- "spacing",
- "30"
- ]
- }
-]
-
-export const sizing = [
- {
- value: "0rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*0",
- type: "sizing"
- },
- name: "--fds-sizing-0",
- attributes: {},
- path: [
- "sizing",
- "0"
- ]
- },
- {
- value: "0.25rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*1",
- type: "sizing"
- },
- name: "--fds-sizing-1",
- attributes: {},
- path: [
- "sizing",
- "1"
- ]
- },
- {
- value: "0.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*2",
- type: "sizing"
- },
- name: "--fds-sizing-2",
- attributes: {},
- path: [
- "sizing",
- "2"
- ]
- },
- {
- value: "0.75rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*3",
- type: "sizing"
- },
- name: "--fds-sizing-3",
- attributes: {},
- path: [
- "sizing",
- "3"
- ]
- },
- {
- value: "1rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*4",
- type: "sizing"
- },
- name: "--fds-sizing-4",
- attributes: {},
- path: [
- "sizing",
- "4"
- ]
- },
- {
- value: "1.25rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*5",
- type: "sizing"
- },
- name: "--fds-sizing-5",
- attributes: {},
- path: [
- "sizing",
- "5"
- ]
- },
- {
- value: "1.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*6",
- type: "sizing"
- },
- name: "--fds-sizing-6",
- attributes: {},
- path: [
- "sizing",
- "6"
- ]
- },
- {
- value: "1.75rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*7",
- type: "sizing"
- },
- name: "--fds-sizing-7",
- attributes: {},
- path: [
- "sizing",
- "7"
- ]
- },
- {
- value: "2rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*8",
- type: "sizing"
- },
- name: "--fds-sizing-8",
- attributes: {},
- path: [
- "sizing",
- "8"
- ]
- },
- {
- value: "2.25rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*9",
- type: "sizing"
- },
- name: "--fds-sizing-9",
- attributes: {},
- path: [
- "sizing",
- "9"
- ]
- },
- {
- value: "2.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*10",
- type: "sizing"
- },
- name: "--fds-sizing-10",
- attributes: {},
- path: [
- "sizing",
- "10"
- ]
- },
- {
- value: "2.75rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*11",
- type: "sizing"
- },
- name: "--fds-sizing-11",
- attributes: {},
- path: [
- "sizing",
- "11"
- ]
- },
- {
- value: "3rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*12",
- type: "sizing"
- },
- name: "--fds-sizing-12",
- attributes: {},
- path: [
- "sizing",
- "12"
- ]
- },
- {
- value: "3.25rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*13",
- type: "sizing"
- },
- name: "--fds-sizing-13",
- attributes: {},
- path: [
- "sizing",
- "13"
- ]
- },
- {
- value: "3.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*14",
- type: "sizing"
- },
- name: "--fds-sizing-14",
- attributes: {},
- path: [
- "sizing",
- "14"
- ]
- },
- {
- value: "3.75rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*15",
- type: "sizing"
- },
- name: "--fds-sizing-15",
- attributes: {},
- path: [
- "sizing",
- "15"
- ]
- },
- {
- value: "4.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*18",
- type: "sizing"
- },
- name: "--fds-sizing-18",
- attributes: {},
- path: [
- "sizing",
- "18"
- ]
- },
- {
- value: "5.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*22",
- type: "sizing"
- },
- name: "--fds-sizing-22",
- attributes: {},
- path: [
- "sizing",
- "22"
- ]
- },
- {
- value: "6.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*26",
- type: "sizing"
- },
- name: "--fds-sizing-26",
- attributes: {},
- path: [
- "sizing",
- "26"
- ]
- },
- {
- value: "7.5rem",
- type: "sizing",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{base_sizing}*30",
- type: "sizing"
- },
- name: "--fds-sizing-30",
- attributes: {},
- path: [
- "sizing",
- "30"
- ]
- }
-]
-
-export const borderWidth = [
- {
- value: "1px",
- type: "borderWidth",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{border_width.1}",
- type: "borderWidth"
- },
- name: "--fds-border_width-default",
- attributes: {},
- path: [
- "border_width",
- "default"
- ]
- },
- {
- value: "2px",
- type: "borderWidth",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{border_width.2}",
- type: "borderWidth"
- },
- name: "--fds-border_width-active",
- attributes: {},
- path: [
- "border_width",
- "active"
- ]
- },
- {
- value: "2px",
- type: "borderWidth",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "2px",
- type: "borderWidth"
- },
- name: "--fds-border_width-tab_focus",
- attributes: {},
- path: [
- "border_width",
- "tab_focus"
- ]
- }
-]
-
-export const boxShadow = [
- {
- value: "0 0 1px 0 rgba(0,0,0,0.16), 0 1px 2px 0 rgba(0,0,0,0.12)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.100}",
- type: "boxShadow"
- },
- name: "--fds-shadow-xsmall",
- attributes: {},
- path: [
- "shadow",
- "xsmall"
- ]
- },
- {
- value: "0 0 1px 0 rgba(0,0,0,0.15), 0 1px 2px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.1)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.200}",
- type: "boxShadow"
- },
- name: "--fds-shadow-small",
- attributes: {},
- path: [
- "shadow",
- "small"
- ]
- },
- {
- value: "0 0 1px 0 rgba(0,0,0,0.14), 0 2px 4px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.12)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.300}",
- type: "boxShadow"
- },
- name: "--fds-shadow-medium",
- attributes: {},
- path: [
- "shadow",
- "medium"
- ]
- },
- {
- value: "0 0 1px 0 rgba(0,0,0,0.13), 0 3px 5px 0 rgba(0,0,0,0.13), 0 6px 12px 0 rgba(0,0,0,0.14)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.400}",
- type: "boxShadow"
- },
- name: "--fds-shadow-large",
- attributes: {},
- path: [
- "shadow",
- "large"
- ]
- },
- {
- value: "0 0 1px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.16), 0 12px 24px 0 rgba(0,0,0,0.16)",
- type: "boxShadow",
- filePath: "../../design-tokens/Base/Semantic.json",
- isSource: false,
- original: {
- value: "{shadow.500}",
- type: "boxShadow"
- },
- name: "--fds-shadow-xlarge",
- attributes: {},
- path: [
- "shadow",
- "xlarge"
- ]
- }
-]
diff --git a/apps/storefront/tokens/uutilsynet/dark.ts b/apps/storefront/tokens/uutilsynet/dark.ts
new file mode 100644
index 0000000000..b9cc1fb345
--- /dev/null
+++ b/apps/storefront/tokens/uutilsynet/dark.ts
@@ -0,0 +1,3811 @@
+/**
+ * These files are generated from design tokens defind using Token Studio
+ */
+
+export const color = [
+ {
+ $type: "color",
+ $value: "#001c36",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.1}"
+ },
+ name: "--ds-color-accent-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#002545",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.2}"
+ },
+ name: "--ds-color-accent-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#00315b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.3}"
+ },
+ name: "--ds-color-accent-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#013f75",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.4}"
+ },
+ name: "--ds-color-accent-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#014b8e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.5}"
+ },
+ name: "--ds-color-accent-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#01539b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.6}"
+ },
+ name: "--ds-color-accent-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1971c0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.7}"
+ },
+ name: "--ds-color-accent-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9bc2e4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.8}"
+ },
+ name: "--ds-color-accent-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#4b90ce",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.9}"
+ },
+ name: "--ds-color-accent-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#277ac4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.10}"
+ },
+ name: "--ds-color-accent-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0163ba",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.11}"
+ },
+ name: "--ds-color-accent-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#72a8d9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.12}"
+ },
+ name: "--ds-color-accent-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e3f3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.13}"
+ },
+ name: "--ds-color-accent-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.contrast-1}"
+ },
+ name: "--ds-color-accent-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0d1823",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.contrast-2}"
+ },
+ name: "--ds-color-accent-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#131c27",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.1}"
+ },
+ name: "--ds-color-neutral-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#192433",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.2}"
+ },
+ name: "--ds-color-neutral-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#243142",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.3}"
+ },
+ name: "--ds-color-neutral-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#333e4e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.4}"
+ },
+ name: "--ds-color-neutral-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#424d5b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.5}"
+ },
+ name: "--ds-color-neutral-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#495361",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.6}"
+ },
+ name: "--ds-color-neutral-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#67707c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.7}"
+ },
+ name: "--ds-color-neutral-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bbbfc4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.8}"
+ },
+ name: "--ds-color-neutral-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a6abb2",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.9}"
+ },
+ name: "--ds-color-neutral-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#90969e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.10}"
+ },
+ name: "--ds-color-neutral-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7a818c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.11}"
+ },
+ name: "--ds-color-neutral-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9ea3ab",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.12}"
+ },
+ name: "--ds-color-neutral-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e1e3e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.13}"
+ },
+ name: "--ds-color-neutral-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.contrast-1}"
+ },
+ name: "--ds-color-neutral-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1b1b1d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.contrast-2}"
+ },
+ name: "--ds-color-neutral-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#171835",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.1}"
+ },
+ name: "--ds-color-brand1-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1e1f45",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.2}"
+ },
+ name: "--ds-color-brand1-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#292b5e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.3}"
+ },
+ name: "--ds-color-brand1-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#343677",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.4}"
+ },
+ name: "--ds-color-brand1-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3f4391",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.5}"
+ },
+ name: "--ds-color-brand1-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#45499f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.6}"
+ },
+ name: "--ds-color-brand1-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5e63d2",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.7}"
+ },
+ name: "--ds-color-brand1-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b8baeb",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.8}"
+ },
+ name: "--ds-color-brand1-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7377d8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.9}"
+ },
+ name: "--ds-color-brand1-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5b60d1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.10}"
+ },
+ name: "--ds-color-brand1-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#4b4fad",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.11}"
+ },
+ name: "--ds-color-brand1-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#999de3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.12}"
+ },
+ name: "--ds-color-brand1-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#dfe0f6",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.13}"
+ },
+ name: "--ds-color-brand1-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.contrast-1}"
+ },
+ name: "--ds-color-brand1-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0d0d18",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.contrast-2}"
+ },
+ name: "--ds-color-brand1-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#25190f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.1}"
+ },
+ name: "--ds-color-brand2-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#312014",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.2}"
+ },
+ name: "--ds-color-brand2-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#422b1b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.3}"
+ },
+ name: "--ds-color-brand2-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#543823",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.4}"
+ },
+ name: "--ds-color-brand2-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#67442a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.5}"
+ },
+ name: "--ds-color-brand2-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#704a2e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.6}"
+ },
+ name: "--ds-color-brand2-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#97643f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.7}"
+ },
+ name: "--ds-color-brand2-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#feab70",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.8}"
+ },
+ name: "--ds-color-brand2-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#4e3420",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.9}"
+ },
+ name: "--ds-color-brand2-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#67442a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.10}"
+ },
+ name: "--ds-color-brand2-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#815535",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.11}"
+ },
+ name: "--ds-color-brand2-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#dd915b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.12}"
+ },
+ name: "--ds-color-brand2-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffdac0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.13}"
+ },
+ name: "--ds-color-brand2-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.contrast-1}"
+ },
+ name: "--ds-color-brand2-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d6d0cb",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.contrast-2}"
+ },
+ name: "--ds-color-brand2-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#121e1b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.1}"
+ },
+ name: "--ds-color-brand3-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#162622",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.2}"
+ },
+ name: "--ds-color-brand3-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1e342f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.3}"
+ },
+ name: "--ds-color-brand3-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#26423b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.4}"
+ },
+ name: "--ds-color-brand3-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2f5148",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.5}"
+ },
+ name: "--ds-color-brand3-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#335a50",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.6}"
+ },
+ name: "--ds-color-brand3-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#45786b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.7}"
+ },
+ name: "--ds-color-brand3-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9cc6bb",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.8}"
+ },
+ name: "--ds-color-brand3-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#376056",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.9}"
+ },
+ name: "--ds-color-brand3-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2c4c44",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.10}"
+ },
+ name: "--ds-color-brand3-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#213933",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.11}"
+ },
+ name: "--ds-color-brand3-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#73ae9f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.12}"
+ },
+ name: "--ds-color-brand3-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d3e6e1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.13}"
+ },
+ name: "--ds-color-brand3-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.contrast-1}"
+ },
+ name: "--ds-color-brand3-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f9fafa",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.contrast-2}"
+ },
+ name: "--ds-color-brand3-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#012106",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.1}"
+ },
+ name: "--ds-color-success-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#022b08",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.2}"
+ },
+ name: "--ds-color-success-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#03380a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.3}"
+ },
+ name: "--ds-color-success-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#03490d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.4}"
+ },
+ name: "--ds-color-success-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#045810",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.5}"
+ },
+ name: "--ds-color-success-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#045f11",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.6}"
+ },
+ name: "--ds-color-success-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#068217",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.7}"
+ },
+ name: "--ds-color-success-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#93cb9b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.8}"
+ },
+ name: "--ds-color-success-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#138d24",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.9}"
+ },
+ name: "--ds-color-success-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3da14b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.10}"
+ },
+ name: "--ds-color-success-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#65b570",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.11}"
+ },
+ name: "--ds-color-success-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#63b46f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.12}"
+ },
+ name: "--ds-color-success-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e9d4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.13}"
+ },
+ name: "--ds-color-success-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.contrast-1}"
+ },
+ name: "--ds-color-success-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#010501",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.contrast-2}"
+ },
+ name: "--ds-color-success-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3b0808",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.1}"
+ },
+ name: "--ds-color-danger-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#4b0a0a",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.2}"
+ },
+ name: "--ds-color-danger-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#620e0e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.3}"
+ },
+ name: "--ds-color-danger-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7c1212",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.4}"
+ },
+ name: "--ds-color-danger-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#961515",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.5}"
+ },
+ name: "--ds-color-danger-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a31717",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.6}"
+ },
+ name: "--ds-color-danger-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c93c3c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.7}"
+ },
+ name: "--ds-color-danger-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e9b0b0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.8}"
+ },
+ name: "--ds-color-danger-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d76d6d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.9}"
+ },
+ name: "--ds-color-danger-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#df8b8b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.10}"
+ },
+ name: "--ds-color-danger-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e7a8a8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.11}"
+ },
+ name: "--ds-color-danger-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#df8d8d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.12}"
+ },
+ name: "--ds-color-danger-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f5dcdc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.13}"
+ },
+ name: "--ds-color-danger-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.contrast-1}"
+ },
+ name: "--ds-color-danger-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#261313",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.contrast-2}"
+ },
+ name: "--ds-color-danger-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#031d30",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.1}"
+ },
+ name: "--ds-color-info-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#032540",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.2}"
+ },
+ name: "--ds-color-info-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#043256",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.3}"
+ },
+ name: "--ds-color-info-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#063f6c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.4}"
+ },
+ name: "--ds-color-info-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#074d84",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.5}"
+ },
+ name: "--ds-color-info-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#075490",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.6}"
+ },
+ name: "--ds-color-info-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0c72c1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.7}"
+ },
+ name: "--ds-color-info-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#98c3e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.8}"
+ },
+ name: "--ds-color-info-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2c85c9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.9}"
+ },
+ name: "--ds-color-info-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#529bd2",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.10}"
+ },
+ name: "--ds-color-info-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#75afdc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.11}"
+ },
+ name: "--ds-color-info-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#6ba9d9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.12}"
+ },
+ name: "--ds-color-info-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d3e5f4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.13}"
+ },
+ name: "--ds-color-info-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.contrast-1}"
+ },
+ name: "--ds-color-info-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#040e15",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.contrast-2}"
+ },
+ name: "--ds-color-info-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#211b07",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.1}"
+ },
+ name: "--ds-color-warning-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2b2309",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.2}"
+ },
+ name: "--ds-color-warning-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#392f0d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.3}"
+ },
+ name: "--ds-color-warning-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#483c10",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.4}"
+ },
+ name: "--ds-color-warning-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#594a14",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.5}"
+ },
+ name: "--ds-color-warning-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#625116",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.6}"
+ },
+ name: "--ds-color-warning-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#836d1d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.7}"
+ },
+ name: "--ds-color-warning-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#dabc4c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.8}"
+ },
+ name: "--ds-color-warning-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bc622b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.9}"
+ },
+ name: "--ds-color-warning-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c87d4f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.10}"
+ },
+ name: "--ds-color-warning-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d39773",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.11}"
+ },
+ name: "--ds-color-warning-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d29671",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.12}"
+ },
+ name: "--ds-color-warning-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f1ded3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.13}"
+ },
+ name: "--ds-color-warning-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.contrast-1}"
+ },
+ name: "--ds-color-warning-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#090402",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.contrast-2}"
+ },
+ name: "--ds-color-warning-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#131c27",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.background-default}"
+ },
+ name: "--ds-color-focus-inner",
+ attributes: {},
+ path: [
+ "color",
+ "focus",
+ "inner"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e3f3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.text-default}"
+ },
+ name: "--ds-color-focus-outer",
+ attributes: {},
+ path: [
+ "color",
+ "focus",
+ "outer"
+ ]
+ }
+]
+
+export const dimension = [
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *1)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.1}"
+ },
+ name: "--ds-border-radius-sm",
+ attributes: {},
+ path: [
+ "border-radius",
+ "sm"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *2)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.2}"
+ },
+ name: "--ds-border-radius-md",
+ attributes: {},
+ path: [
+ "border-radius",
+ "md"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *5)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.3}"
+ },
+ name: "--ds-border-radius-lg",
+ attributes: {},
+ path: [
+ "border-radius",
+ "lg"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.4}"
+ },
+ name: "--ds-border-radius-default",
+ attributes: {},
+ path: [
+ "border-radius",
+ "default"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "624.9375rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.5}"
+ },
+ name: "--ds-border-radius-full",
+ attributes: {},
+ path: [
+ "border-radius",
+ "full"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*0"
+ },
+ name: "--ds-spacing-0",
+ attributes: {},
+ path: [
+ "spacing",
+ "0"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*1"
+ },
+ name: "--ds-spacing-1",
+ attributes: {},
+ path: [
+ "spacing",
+ "1"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*2"
+ },
+ name: "--ds-spacing-2",
+ attributes: {},
+ path: [
+ "spacing",
+ "2"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*3"
+ },
+ name: "--ds-spacing-3",
+ attributes: {},
+ path: [
+ "spacing",
+ "3"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*4"
+ },
+ name: "--ds-spacing-4",
+ attributes: {},
+ path: [
+ "spacing",
+ "4"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*5"
+ },
+ name: "--ds-spacing-5",
+ attributes: {},
+ path: [
+ "spacing",
+ "5"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*6"
+ },
+ name: "--ds-spacing-6",
+ attributes: {},
+ path: [
+ "spacing",
+ "6"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*7"
+ },
+ name: "--ds-spacing-7",
+ attributes: {},
+ path: [
+ "spacing",
+ "7"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*8"
+ },
+ name: "--ds-spacing-8",
+ attributes: {},
+ path: [
+ "spacing",
+ "8"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*9"
+ },
+ name: "--ds-spacing-9",
+ attributes: {},
+ path: [
+ "spacing",
+ "9"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*10"
+ },
+ name: "--ds-spacing-10",
+ attributes: {},
+ path: [
+ "spacing",
+ "10"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*11"
+ },
+ name: "--ds-spacing-11",
+ attributes: {},
+ path: [
+ "spacing",
+ "11"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*12"
+ },
+ name: "--ds-spacing-12",
+ attributes: {},
+ path: [
+ "spacing",
+ "12"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*13"
+ },
+ name: "--ds-spacing-13",
+ attributes: {},
+ path: [
+ "spacing",
+ "13"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*14"
+ },
+ name: "--ds-spacing-14",
+ attributes: {},
+ path: [
+ "spacing",
+ "14"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*15"
+ },
+ name: "--ds-spacing-15",
+ attributes: {},
+ path: [
+ "spacing",
+ "15"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "4.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*18"
+ },
+ name: "--ds-spacing-18",
+ attributes: {},
+ path: [
+ "spacing",
+ "18"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "5.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*22"
+ },
+ name: "--ds-spacing-22",
+ attributes: {},
+ path: [
+ "spacing",
+ "22"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "6.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*26"
+ },
+ name: "--ds-spacing-26",
+ attributes: {},
+ path: [
+ "spacing",
+ "26"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "7.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*30"
+ },
+ name: "--ds-spacing-30",
+ attributes: {},
+ path: [
+ "spacing",
+ "30"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*0"
+ },
+ name: "--ds-sizing-0",
+ attributes: {},
+ path: [
+ "sizing",
+ "0"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*1"
+ },
+ name: "--ds-sizing-1",
+ attributes: {},
+ path: [
+ "sizing",
+ "1"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*2"
+ },
+ name: "--ds-sizing-2",
+ attributes: {},
+ path: [
+ "sizing",
+ "2"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*3"
+ },
+ name: "--ds-sizing-3",
+ attributes: {},
+ path: [
+ "sizing",
+ "3"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*4"
+ },
+ name: "--ds-sizing-4",
+ attributes: {},
+ path: [
+ "sizing",
+ "4"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*5"
+ },
+ name: "--ds-sizing-5",
+ attributes: {},
+ path: [
+ "sizing",
+ "5"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*6"
+ },
+ name: "--ds-sizing-6",
+ attributes: {},
+ path: [
+ "sizing",
+ "6"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*7"
+ },
+ name: "--ds-sizing-7",
+ attributes: {},
+ path: [
+ "sizing",
+ "7"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*8"
+ },
+ name: "--ds-sizing-8",
+ attributes: {},
+ path: [
+ "sizing",
+ "8"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*9"
+ },
+ name: "--ds-sizing-9",
+ attributes: {},
+ path: [
+ "sizing",
+ "9"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*10"
+ },
+ name: "--ds-sizing-10",
+ attributes: {},
+ path: [
+ "sizing",
+ "10"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*11"
+ },
+ name: "--ds-sizing-11",
+ attributes: {},
+ path: [
+ "sizing",
+ "11"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*12"
+ },
+ name: "--ds-sizing-12",
+ attributes: {},
+ path: [
+ "sizing",
+ "12"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*13"
+ },
+ name: "--ds-sizing-13",
+ attributes: {},
+ path: [
+ "sizing",
+ "13"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*14"
+ },
+ name: "--ds-sizing-14",
+ attributes: {},
+ path: [
+ "sizing",
+ "14"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*15"
+ },
+ name: "--ds-sizing-15",
+ attributes: {},
+ path: [
+ "sizing",
+ "15"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "4.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*18"
+ },
+ name: "--ds-sizing-18",
+ attributes: {},
+ path: [
+ "sizing",
+ "18"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "5.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*22"
+ },
+ name: "--ds-sizing-22",
+ attributes: {},
+ path: [
+ "sizing",
+ "22"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "6.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*26"
+ },
+ name: "--ds-sizing-26",
+ attributes: {},
+ path: [
+ "sizing",
+ "26"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "7.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*30"
+ },
+ name: "--ds-sizing-30",
+ attributes: {},
+ path: [
+ "sizing",
+ "30"
+ ]
+ }
+]
+
+export const typography = [
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "3.75rem",
+ letterSpacing: "-1%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.11}",
+ letterSpacing: "{letter-spacing.1}"
+ }
+ },
+ name: "--ds-heading-2xl",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "2xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "3rem",
+ letterSpacing: "-1%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.10}",
+ letterSpacing: "{letter-spacing.1}"
+ }
+ },
+ name: "--ds-heading-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "2.25rem",
+ letterSpacing: "-0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.9}",
+ letterSpacing: "{letter-spacing.2}"
+ }
+ },
+ name: "--ds-heading-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.875rem",
+ letterSpacing: "-0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.8}",
+ letterSpacing: "{letter-spacing.3}"
+ }
+ },
+ name: "--ds-heading-md",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.5rem",
+ letterSpacing: "0%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.5}"
+ }
+ },
+ name: "--ds-heading-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-heading-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.125rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-heading-2xs",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "2xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-short-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-short-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-long-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-long-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "xs"
+ ]
+ }
+]
+
+export const opacity = [
+ {
+ $type: "opacity",
+ $value: "30%",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "opacity",
+ $value: "{opacity.30}"
+ },
+ name: "--ds-disabled-opacity",
+ attributes: {},
+ path: [
+ "disabled",
+ "opacity"
+ ]
+ }
+]
+
+export const shadow = [
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.16), 0 1px 2px 0 rgba(0,0,0,0.12)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.100}"
+ },
+ name: "--ds-shadow-xs",
+ attributes: {},
+ path: [
+ "shadow",
+ "xs"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.15), 0 1px 2px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.1)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.200}"
+ },
+ name: "--ds-shadow-sm",
+ attributes: {},
+ path: [
+ "shadow",
+ "sm"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.14), 0 2px 4px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.12)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.300}"
+ },
+ name: "--ds-shadow-md",
+ attributes: {},
+ path: [
+ "shadow",
+ "md"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.13), 0 3px 5px 0 rgba(0,0,0,0.13), 0 6px 12px 0 rgba(0,0,0,0.14)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.400}"
+ },
+ name: "--ds-shadow-lg",
+ attributes: {},
+ path: [
+ "shadow",
+ "lg"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.16), 0 12px 24px 0 rgba(0,0,0,0.16)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.500}"
+ },
+ name: "--ds-shadow-xl",
+ attributes: {},
+ path: [
+ "shadow",
+ "xl"
+ ]
+ }
+]
diff --git a/apps/storefront/tokens/uutilsynet/light.ts b/apps/storefront/tokens/uutilsynet/light.ts
new file mode 100644
index 0000000000..e3e3ab23cc
--- /dev/null
+++ b/apps/storefront/tokens/uutilsynet/light.ts
@@ -0,0 +1,3811 @@
+/**
+ * These files are generated from design tokens defind using Token Studio
+ */
+
+export const color = [
+ {
+ $type: "color",
+ $value: "#fefeff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.1}"
+ },
+ name: "--ds-color-accent-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#eef4fa",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.2}"
+ },
+ name: "--ds-color-accent-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e3f3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.3}"
+ },
+ name: "--ds-color-accent-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bad5ec",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.4}"
+ },
+ name: "--ds-color-accent-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a1c5e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.5}"
+ },
+ name: "--ds-color-accent-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#97bfe3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.6}"
+ },
+ name: "--ds-color-accent-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3885c9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.7}"
+ },
+ name: "--ds-color-accent-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#014e93",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.8}"
+ },
+ name: "--ds-color-accent-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0163ba",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.9}"
+ },
+ name: "--ds-color-accent-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#015097",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.10}"
+ },
+ name: "--ds-color-accent-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#013f75",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.11}"
+ },
+ name: "--ds-color-accent-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0163ba",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.12}"
+ },
+ name: "--ds-color-accent-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#002d54",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.13}"
+ },
+ name: "--ds-color-accent-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.contrast-1}"
+ },
+ name: "--ds-color-accent-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#dbe9f5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.contrast-2}"
+ },
+ name: "--ds-color-accent-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "accent",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.1}"
+ },
+ name: "--ds-color-neutral-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f3f4f5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.2}"
+ },
+ name: "--ds-color-neutral-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e1e3e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.3}"
+ },
+ name: "--ds-color-neutral-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ced1d4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.4}"
+ },
+ name: "--ds-color-neutral-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bdc1c6",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.5}"
+ },
+ name: "--ds-color-neutral-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b8bcc1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.6}"
+ },
+ name: "--ds-color-neutral-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7a818c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.7}"
+ },
+ name: "--ds-color-neutral-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#444e5d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.8}"
+ },
+ name: "--ds-color-neutral-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1e2b3c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.9}"
+ },
+ name: "--ds-color-neutral-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#303c4b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.10}"
+ },
+ name: "--ds-color-neutral-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#444e5d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.11}"
+ },
+ name: "--ds-color-neutral-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5b6471",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.12}"
+ },
+ name: "--ds-color-neutral-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#202c3d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.13}"
+ },
+ name: "--ds-color-neutral-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.contrast-1}"
+ },
+ name: "--ds-color-neutral-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bbbfc4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.contrast-2}"
+ },
+ name: "--ds-color-neutral-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "neutral",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefeff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.1}"
+ },
+ name: "--ds-color-brand1-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f3f4fc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.2}"
+ },
+ name: "--ds-color-brand1-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#dfe0f6",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.3}"
+ },
+ name: "--ds-color-brand1-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#cecff1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.4}"
+ },
+ name: "--ds-color-brand1-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bbbdec",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.5}"
+ },
+ name: "--ds-color-brand1-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b5b7ea",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.6}"
+ },
+ name: "--ds-color-brand1-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7377d8",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.7}"
+ },
+ name: "--ds-color-brand1-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#414595",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.8}"
+ },
+ name: "--ds-color-brand1-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5b60d1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.9}"
+ },
+ name: "--ds-color-brand1-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#4b4fad",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.10}"
+ },
+ name: "--ds-color-brand1-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3b3e88",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.11}"
+ },
+ name: "--ds-color-brand1-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5357be",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.12}"
+ },
+ name: "--ds-color-brand1-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#252756",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.13}"
+ },
+ name: "--ds-color-brand1-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.contrast-1}"
+ },
+ name: "--ds-color-brand1-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f3f4fc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand1.contrast-2}"
+ },
+ name: "--ds-color-brand1-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand1",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fffdfb",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.1}"
+ },
+ name: "--ds-color-brand2-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fff1e7",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.2}"
+ },
+ name: "--ds-color-brand2-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffdac0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.3}"
+ },
+ name: "--ds-color-brand2-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fec59c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.4}"
+ },
+ name: "--ds-color-brand2-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#feb078",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.5}"
+ },
+ name: "--ds-color-brand2-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fea769",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.6}"
+ },
+ name: "--ds-color-brand2-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b07349",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.7}"
+ },
+ name: "--ds-color-brand2-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#6a452c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.8}"
+ },
+ name: "--ds-color-brand2-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fea769",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.9}"
+ },
+ name: "--ds-color-brand2-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e0945d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.10}"
+ },
+ name: "--ds-color-brand2-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c48151",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.11}"
+ },
+ name: "--ds-color-brand2-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#875838",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.12}"
+ },
+ name: "--ds-color-brand2-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3c2719",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.13}"
+ },
+ name: "--ds-color-brand2-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.contrast-1}"
+ },
+ name: "--ds-color-brand2-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#362316",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand2.contrast-2}"
+ },
+ name: "--ds-color-brand2-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand2",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fcfefd",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.1}"
+ },
+ name: "--ds-color-brand3-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#edf5f3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.2}"
+ },
+ name: "--ds-color-brand3-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d3e6e1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.3}"
+ },
+ name: "--ds-color-brand3-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#bad7cf",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.4}"
+ },
+ name: "--ds-color-brand3-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#a1c9bf",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.5}"
+ },
+ name: "--ds-color-brand3-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#98c4b9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.6}"
+ },
+ name: "--ds-color-brand3-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#508c7c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.7}"
+ },
+ name: "--ds-color-brand3-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#31544b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.8}"
+ },
+ name: "--ds-color-brand3-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5da290",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.9}"
+ },
+ name: "--ds-color-brand3-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#508c7c",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.10}"
+ },
+ name: "--ds-color-brand3-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#437668",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.11}"
+ },
+ name: "--ds-color-brand3-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#3e6b60",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.12}"
+ },
+ name: "--ds-color-brand3-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#1c302b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.13}"
+ },
+ name: "--ds-color-brand3-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#000000",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.contrast-1}"
+ },
+ name: "--ds-color-brand3-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#050808",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.brand3.contrast-2}"
+ },
+ name: "--ds-color-brand3-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "brand3",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fcfefc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.1}"
+ },
+ name: "--ds-color-success-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#edf6ee",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.2}"
+ },
+ name: "--ds-color-success-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d1e9d4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.3}"
+ },
+ name: "--ds-color-success-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b5dbba",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.4}"
+ },
+ name: "--ds-color-success-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#96cd9e",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.5}"
+ },
+ name: "--ds-color-success-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#8fc997",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.6}"
+ },
+ name: "--ds-color-success-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#229532",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.7}"
+ },
+ name: "--ds-color-success-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#045a10",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.8}"
+ },
+ name: "--ds-color-success-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#068718",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.9}"
+ },
+ name: "--ds-color-success-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#057014",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.10}"
+ },
+ name: "--ds-color-success-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#045a10",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.11}"
+ },
+ name: "--ds-color-success-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#057315",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.12}"
+ },
+ name: "--ds-color-success-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#023409",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.13}"
+ },
+ name: "--ds-color-success-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.contrast-1}"
+ },
+ name: "--ds-color-success-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f9fcf9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.green.contrast-2}"
+ },
+ name: "--ds-color-success-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "success",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fffefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.1}"
+ },
+ name: "--ds-color-danger-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fbf1f1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.2}"
+ },
+ name: "--ds-color-danger-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f5dcdc",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.3}"
+ },
+ name: "--ds-color-danger-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f0c7c7",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.4}"
+ },
+ name: "--ds-color-danger-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#eab3b3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.5}"
+ },
+ name: "--ds-color-danger-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e8acac",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.6}"
+ },
+ name: "--ds-color-danger-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d25b5b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.7}"
+ },
+ name: "--ds-color-danger-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9a1616",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.8}"
+ },
+ name: "--ds-color-danger-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#C01B1B",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.9}"
+ },
+ name: "--ds-color-danger-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9c1616",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.10}"
+ },
+ name: "--ds-color-danger-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#791111",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.11}"
+ },
+ name: "--ds-color-danger-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#c22020",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.12}"
+ },
+ name: "--ds-color-danger-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5a0d0d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.13}"
+ },
+ name: "--ds-color-danger-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.contrast-1}"
+ },
+ name: "--ds-color-danger-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f7e1e1",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.red.contrast-2}"
+ },
+ name: "--ds-color-danger-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "danger",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefeff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.1}"
+ },
+ name: "--ds-color-info-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#edf5fa",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.2}"
+ },
+ name: "--ds-color-info-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d3e5f4",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.3}"
+ },
+ name: "--ds-color-info-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#b7d5ed",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.4}"
+ },
+ name: "--ds-color-info-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9bc5e5",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.5}"
+ },
+ name: "--ds-color-info-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#94c1e3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.6}"
+ },
+ name: "--ds-color-info-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#2f86c9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.7}"
+ },
+ name: "--ds-color-info-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#075089",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.8}"
+ },
+ name: "--ds-color-info-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0A71C0",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.9}"
+ },
+ name: "--ds-color-info-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#085e9f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.10}"
+ },
+ name: "--ds-color-info-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#074a7f",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.11}"
+ },
+ name: "--ds-color-info-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#0966ac",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.12}"
+ },
+ name: "--ds-color-info-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#042d4d",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.13}"
+ },
+ name: "--ds-color-info-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.contrast-1}"
+ },
+ name: "--ds-color-info-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#edf5fa",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.blue.contrast-2}"
+ },
+ name: "--ds-color-info-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "info",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fffefd",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.1}"
+ },
+ name: "--ds-color-warning-background-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "background-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#f9f4e2",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.2}"
+ },
+ name: "--ds-color-warning-background-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "background-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#efe2b3",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.3}"
+ },
+ name: "--ds-color-warning-surface-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#e5d183",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.4}"
+ },
+ name: "--ds-color-warning-surface-hover",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#dcbf53",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.5}"
+ },
+ name: "--ds-color-warning-surface-active",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "surface-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#d9b945",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.6}"
+ },
+ name: "--ds-color-warning-border-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#987f22",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.7}"
+ },
+ name: "--ds-color-warning-border-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#5c4c14",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.yellow.8}"
+ },
+ name: "--ds-color-warning-border-strong",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "border-strong"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#B8581D",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.9}"
+ },
+ name: "--ds-color-warning-base-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#984918",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.10}"
+ },
+ name: "--ds-color-warning-base-hover",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-hover"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#7a3b13",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.11}"
+ },
+ name: "--ds-color-warning-base-active",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "base-active"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#9e4b19",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.12}"
+ },
+ name: "--ds-color-warning-text-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "text-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#47220b",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.13}"
+ },
+ name: "--ds-color-warning-text-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "text-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#ffffff",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.contrast-1}"
+ },
+ name: "--ds-color-warning-contrast-default",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "contrast-default"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fdfbf9",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{global.orange.contrast-2}"
+ },
+ name: "--ds-color-warning-contrast-subtle",
+ attributes: {},
+ path: [
+ "color",
+ "warning",
+ "contrast-subtle"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#fefefe",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.neutral.background-default}"
+ },
+ name: "--ds-color-focus-inner",
+ attributes: {},
+ path: [
+ "color",
+ "focus",
+ "inner"
+ ]
+ },
+ {
+ $type: "color",
+ $value: "#002d54",
+ filePath: "../../design-tokens/semantic/color.json",
+ isSource: false,
+ original: {
+ $type: "color",
+ $value: "{color.accent.text-default}"
+ },
+ name: "--ds-color-focus-outer",
+ attributes: {},
+ path: [
+ "color",
+ "focus",
+ "outer"
+ ]
+ }
+]
+
+export const dimension = [
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *1)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.1}"
+ },
+ name: "--ds-border-radius-sm",
+ attributes: {},
+ path: [
+ "border-radius",
+ "sm"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *2)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.2}"
+ },
+ name: "--ds-border-radius-md",
+ attributes: {},
+ path: [
+ "border-radius",
+ "md"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "min( 0.25rem , 0.25rem *5)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.3}"
+ },
+ name: "--ds-border-radius-lg",
+ attributes: {},
+ path: [
+ "border-radius",
+ "lg"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.4}"
+ },
+ name: "--ds-border-radius-default",
+ attributes: {},
+ path: [
+ "border-radius",
+ "default"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "624.9375rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{border-radius.5}"
+ },
+ name: "--ds-border-radius-full",
+ attributes: {},
+ path: [
+ "border-radius",
+ "full"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*0"
+ },
+ name: "--ds-spacing-0",
+ attributes: {},
+ path: [
+ "spacing",
+ "0"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*1"
+ },
+ name: "--ds-spacing-1",
+ attributes: {},
+ path: [
+ "spacing",
+ "1"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*2"
+ },
+ name: "--ds-spacing-2",
+ attributes: {},
+ path: [
+ "spacing",
+ "2"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*3"
+ },
+ name: "--ds-spacing-3",
+ attributes: {},
+ path: [
+ "spacing",
+ "3"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*4"
+ },
+ name: "--ds-spacing-4",
+ attributes: {},
+ path: [
+ "spacing",
+ "4"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*5"
+ },
+ name: "--ds-spacing-5",
+ attributes: {},
+ path: [
+ "spacing",
+ "5"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*6"
+ },
+ name: "--ds-spacing-6",
+ attributes: {},
+ path: [
+ "spacing",
+ "6"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*7"
+ },
+ name: "--ds-spacing-7",
+ attributes: {},
+ path: [
+ "spacing",
+ "7"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*8"
+ },
+ name: "--ds-spacing-8",
+ attributes: {},
+ path: [
+ "spacing",
+ "8"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*9"
+ },
+ name: "--ds-spacing-9",
+ attributes: {},
+ path: [
+ "spacing",
+ "9"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*10"
+ },
+ name: "--ds-spacing-10",
+ attributes: {},
+ path: [
+ "spacing",
+ "10"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*11"
+ },
+ name: "--ds-spacing-11",
+ attributes: {},
+ path: [
+ "spacing",
+ "11"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*12"
+ },
+ name: "--ds-spacing-12",
+ attributes: {},
+ path: [
+ "spacing",
+ "12"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*13"
+ },
+ name: "--ds-spacing-13",
+ attributes: {},
+ path: [
+ "spacing",
+ "13"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*14"
+ },
+ name: "--ds-spacing-14",
+ attributes: {},
+ path: [
+ "spacing",
+ "14"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*15"
+ },
+ name: "--ds-spacing-15",
+ attributes: {},
+ path: [
+ "spacing",
+ "15"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "4.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*18"
+ },
+ name: "--ds-spacing-18",
+ attributes: {},
+ path: [
+ "spacing",
+ "18"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "5.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*22"
+ },
+ name: "--ds-spacing-22",
+ attributes: {},
+ path: [
+ "spacing",
+ "22"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "6.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*26"
+ },
+ name: "--ds-spacing-26",
+ attributes: {},
+ path: [
+ "spacing",
+ "26"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "7.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{spacing.scale}*30"
+ },
+ name: "--ds-spacing-30",
+ attributes: {},
+ path: [
+ "spacing",
+ "30"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*0"
+ },
+ name: "--ds-sizing-0",
+ attributes: {},
+ path: [
+ "sizing",
+ "0"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*1"
+ },
+ name: "--ds-sizing-1",
+ attributes: {},
+ path: [
+ "sizing",
+ "1"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*2"
+ },
+ name: "--ds-sizing-2",
+ attributes: {},
+ path: [
+ "sizing",
+ "2"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "0.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*3"
+ },
+ name: "--ds-sizing-3",
+ attributes: {},
+ path: [
+ "sizing",
+ "3"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*4"
+ },
+ name: "--ds-sizing-4",
+ attributes: {},
+ path: [
+ "sizing",
+ "4"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*5"
+ },
+ name: "--ds-sizing-5",
+ attributes: {},
+ path: [
+ "sizing",
+ "5"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*6"
+ },
+ name: "--ds-sizing-6",
+ attributes: {},
+ path: [
+ "sizing",
+ "6"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "1.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*7"
+ },
+ name: "--ds-sizing-7",
+ attributes: {},
+ path: [
+ "sizing",
+ "7"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*8"
+ },
+ name: "--ds-sizing-8",
+ attributes: {},
+ path: [
+ "sizing",
+ "8"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*9"
+ },
+ name: "--ds-sizing-9",
+ attributes: {},
+ path: [
+ "sizing",
+ "9"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*10"
+ },
+ name: "--ds-sizing-10",
+ attributes: {},
+ path: [
+ "sizing",
+ "10"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "2.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*11"
+ },
+ name: "--ds-sizing-11",
+ attributes: {},
+ path: [
+ "sizing",
+ "11"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*12"
+ },
+ name: "--ds-sizing-12",
+ attributes: {},
+ path: [
+ "sizing",
+ "12"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.25rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*13"
+ },
+ name: "--ds-sizing-13",
+ attributes: {},
+ path: [
+ "sizing",
+ "13"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*14"
+ },
+ name: "--ds-sizing-14",
+ attributes: {},
+ path: [
+ "sizing",
+ "14"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "3.75rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*15"
+ },
+ name: "--ds-sizing-15",
+ attributes: {},
+ path: [
+ "sizing",
+ "15"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "4.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*18"
+ },
+ name: "--ds-sizing-18",
+ attributes: {},
+ path: [
+ "sizing",
+ "18"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "5.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*22"
+ },
+ name: "--ds-sizing-22",
+ attributes: {},
+ path: [
+ "sizing",
+ "22"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "6.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*26"
+ },
+ name: "--ds-sizing-26",
+ attributes: {},
+ path: [
+ "sizing",
+ "26"
+ ]
+ },
+ {
+ $type: "dimension",
+ $value: "7.5rem",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "dimension",
+ $value: "{sizing.scale}*30"
+ },
+ name: "--ds-sizing-30",
+ attributes: {},
+ path: [
+ "sizing",
+ "30"
+ ]
+ }
+]
+
+export const typography = [
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "3.75rem",
+ letterSpacing: "-1%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.11}",
+ letterSpacing: "{letter-spacing.1}"
+ }
+ },
+ name: "--ds-heading-2xl",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "2xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "3rem",
+ letterSpacing: "-1%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.10}",
+ letterSpacing: "{letter-spacing.1}"
+ }
+ },
+ name: "--ds-heading-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "2.25rem",
+ letterSpacing: "-0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.9}",
+ letterSpacing: "{letter-spacing.2}"
+ }
+ },
+ name: "--ds-heading-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.875rem",
+ letterSpacing: "-0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.8}",
+ letterSpacing: "{letter-spacing.3}"
+ }
+ },
+ name: "--ds-heading-md",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.5rem",
+ letterSpacing: "0%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.5}"
+ }
+ },
+ name: "--ds-heading-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-heading-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 500,
+ lineHeight: "1.3",
+ fontSize: "1.125rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.medium}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-heading-2xs",
+ attributes: {},
+ path: [
+ "typography",
+ "heading",
+ "2xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.5",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.md}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-short-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-short-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.3",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.sm}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-short-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "short",
+ "xs"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.5rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.7}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-xl",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "xl"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.3125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.6}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-lg",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "lg"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1.125rem",
+ letterSpacing: "0.5%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.5}",
+ letterSpacing: "{letter-spacing.8}"
+ }
+ },
+ name: "--ds-body-long-md",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "md"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "1rem",
+ letterSpacing: "0.25%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.4}",
+ letterSpacing: "{letter-spacing.7}"
+ }
+ },
+ name: "--ds-body-long-sm",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "sm"
+ ]
+ },
+ {
+ $type: "typography",
+ $value: {
+ fontFamily: "Inter",
+ fontWeight: 400,
+ lineHeight: "1.7",
+ fontSize: "0.875rem",
+ letterSpacing: "0.15%"
+ },
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "typography",
+ $value: {
+ fontFamily: "{font.family}",
+ fontWeight: "{font-weight.regular}",
+ lineHeight: "{line-height.lg}",
+ fontSize: "{font-size.3}",
+ letterSpacing: "{letter-spacing.6}"
+ }
+ },
+ name: "--ds-body-long-xs",
+ attributes: {},
+ path: [
+ "typography",
+ "body",
+ "long",
+ "xs"
+ ]
+ }
+]
+
+export const opacity = [
+ {
+ $type: "opacity",
+ $value: "30%",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "opacity",
+ $value: "{opacity.30}"
+ },
+ name: "--ds-disabled-opacity",
+ attributes: {},
+ path: [
+ "disabled",
+ "opacity"
+ ]
+ }
+]
+
+export const shadow = [
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.16), 0 1px 2px 0 rgba(0,0,0,0.12)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.100}"
+ },
+ name: "--ds-shadow-xs",
+ attributes: {},
+ path: [
+ "shadow",
+ "xs"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.15), 0 1px 2px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.1)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.200}"
+ },
+ name: "--ds-shadow-sm",
+ attributes: {},
+ path: [
+ "shadow",
+ "sm"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.14), 0 2px 4px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.12)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.300}"
+ },
+ name: "--ds-shadow-md",
+ attributes: {},
+ path: [
+ "shadow",
+ "md"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.13), 0 3px 5px 0 rgba(0,0,0,0.13), 0 6px 12px 0 rgba(0,0,0,0.14)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.400}"
+ },
+ name: "--ds-shadow-lg",
+ attributes: {},
+ path: [
+ "shadow",
+ "lg"
+ ]
+ },
+ {
+ $type: "shadow",
+ $value: "0 0 1px 0 rgba(0,0,0,0.12), 0 4px 8px 0 rgba(0,0,0,0.16), 0 12px 24px 0 rgba(0,0,0,0.16)",
+ filePath: "../../design-tokens/semantic/style.json",
+ isSource: false,
+ original: {
+ $type: "shadow",
+ $value: "{shadow.500}"
+ },
+ name: "--ds-shadow-xl",
+ attributes: {},
+ path: [
+ "shadow",
+ "xl"
+ ]
+ }
+]
diff --git a/apps/storefront/tsconfig.json b/apps/storefront/tsconfig.json
index d65d80c027..1acbc9ece2 100644
--- a/apps/storefront/tsconfig.json
+++ b/apps/storefront/tsconfig.json
@@ -4,7 +4,7 @@
"paths": {
"@components": ["components"],
"@layouts": ["layouts"],
- "@blog": ["components/Blog"]
+ "@blog": ["app/bloggen/_components"]
},
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
diff --git a/apps/storefront/utils/FileReaderLogic.tsx b/apps/storefront/utils/FileReaderLogic.tsx
deleted file mode 100644
index 84d7f262d2..0000000000
--- a/apps/storefront/utils/FileReaderLogic.tsx
+++ /dev/null
@@ -1,38 +0,0 @@
-import fs from 'fs';
-import path from 'path';
-
-/*
- * Scans the components directory and generates list og Meta data used in menus and lists of components
- */
-const getStaticProps = () => {
- const postsDirectory = path.join(process.cwd(), 'pages/komponenter');
- const fileNames = fs.readdirSync(postsDirectory);
-
- const test = fileNames.map((fileName) => {
- // Remove ".mdx" from file name to get id
- const pageName = fileName.replace(/\.mdx$/, '');
-
- // Read markdown file as string
- const fullPath = path.join(postsDirectory, fileName);
- const fileContents = fs.readFileSync(fullPath, 'utf8');
-
- // Check if component is beta by finding string pattern
- const beta = fileContents.indexOf("status='beta'") !== -1;
- const deprecated = fileContents.indexOf("status='deprecated'") !== -1;
- const status = beta ? 'beta' : deprecated ? 'deprecated' : 'stable';
-
- return {
- title: pageName,
- status: status,
- url: 'komponenter/' + pageName,
- };
- });
-
- return {
- props: {
- menu: test,
- },
- };
-};
-
-export { getStaticProps };
diff --git a/apps/storybook/.env.example b/apps/storybook/.env.example
new file mode 100644
index 0000000000..498893f50e
--- /dev/null
+++ b/apps/storybook/.env.example
@@ -0,0 +1,11 @@
+
+##
+## This file contains examples of useful environment variables for the Storybook project.
+## To actually use them, create a .env file in this directory, and set the desired
+## environment variables. That file is in .gitignore and will never be commited.
+##
+
+# To run Chromatic locally, set this var and replace with the token from
+# https://www.chromatic.com/manage?appId=66fe736b9d639fe6801bf130&view=configure
+# ...under "Setup Chromatic with this project token".
+CHROMATIC_PROJECT_TOKEN=
diff --git a/apps/storybook/.storybook/customTheme.ts b/apps/storybook/.storybook/customTheme.ts
new file mode 100644
index 0000000000..f60ed0fbdf
--- /dev/null
+++ b/apps/storybook/.storybook/customTheme.ts
@@ -0,0 +1,16 @@
+import { create } from '@storybook/theming';
+
+export default create({
+ brandTitle: 'Komponenter',
+ // brandImage: 'logo_digdir.svg',
+ fontBase: '"Inter", sans-serif',
+ // Colors
+ base: 'light',
+ colorSecondary: '#0062BA',
+ barTextColor: '#243142',
+ textColor: '#1e2b3c', // TODO does not work with css vars atm. bug?
+ inputTextColor: '#243142',
+ appBg: '#fefefe',
+ appPreviewBg: 'var(--ds-color-neutral-background-default)',
+ appContentBg: '#fefefe',
+});
diff --git a/apps/storybook/declarations.d.ts b/apps/storybook/.storybook/declarations.d.ts
similarity index 100%
rename from apps/storybook/declarations.d.ts
rename to apps/storybook/.storybook/declarations.d.ts
diff --git a/apps/storybook/.storybook/main.ts b/apps/storybook/.storybook/main.ts
new file mode 100644
index 0000000000..f3686651f6
--- /dev/null
+++ b/apps/storybook/.storybook/main.ts
@@ -0,0 +1,60 @@
+import { dirname, join, resolve } from 'node:path';
+
+import type { StorybookConfig } from '@storybook/react-vite';
+import type { PropItem } from 'react-docgen-typescript';
+
+const config: StorybookConfig = {
+ typescript: {
+ check: true,
+ /* If in prod, use docgen-typescript, locally use docgen */
+ reactDocgen: 'react-docgen-typescript',
+ reactDocgenTypescriptOptions: {
+ include: [resolve(__dirname, '../../../packages/react/**/**.tsx')], // <- This is the important line.
+ shouldExtractLiteralValuesFromEnum: true,
+ shouldRemoveUndefinedFromOptional: true,
+ propFilter: (prop: PropItem) => {
+ // Keep the default filter logic from storybook:
+ // https://github.com/storybookjs/storybook/blob/40523765403480c4065373664553bb6cbdf9543d/code/core/src/core-server/presets/common-preset.ts#L169C5-L169C98
+ const defaultLogicFromStorybook = prop.parent
+ ? !/node_modules/.test(prop.parent.fileName)
+ : true;
+ return defaultLogicFromStorybook && prop.name !== 'popovertarget'; // Skip popovertarget @types/react-dom patch}
+ },
+ },
+ },
+ stories: [
+ '../../../packages/*.mdx',
+ '../../../packages/css/**/*.mdx',
+ '../../../packages/theme/**/*.mdx',
+ '../../../packages/react/**/*.mdx',
+ '../../../packages/react/**/*.stories.ts?(x)',
+ ],
+ addons: [
+ getAbsolutePath('@storybook/addon-a11y'),
+ getAbsolutePath('@storybook/addon-links'),
+ getAbsolutePath('@storybook/addon-essentials'),
+ getAbsolutePath('@storybook/addon-interactions'),
+ getAbsolutePath('@storybook/addon-mdx-gfm'),
+ getAbsolutePath('@chromatic-com/storybook'),
+ getAbsolutePath('@storybook/addon-storysource'),
+ '@storybook/addon-themes',
+ 'storybook-addon-pseudo-states',
+ ],
+ staticDirs: ['../assets'],
+ framework: {
+ name: '@storybook/react-vite',
+ options: {
+ builder: {
+ viteConfigPath: resolve(__dirname, '../../../vite.config.ts'),
+ },
+ },
+ },
+};
+
+export default config;
+
+function getAbsolutePath(value: string): StorybookConfig['framework'] {
+ return dirname(
+ require.resolve(join(value, 'package.json')),
+ ) as StorybookConfig['framework'];
+}
diff --git a/apps/storybook/manager-head.html b/apps/storybook/.storybook/manager-head.html
similarity index 83%
rename from apps/storybook/manager-head.html
rename to apps/storybook/.storybook/manager-head.html
index afe60652c5..481ec9c535 100644
--- a/apps/storybook/manager-head.html
+++ b/apps/storybook/.storybook/manager-head.html
@@ -2,13 +2,16 @@
rel="shortcut icon"
href="/favicon.ico"
/>
+
+
@@ -40,6 +43,19 @@
html {
font-family: 'Inter', sans-serif;
}
+
+ iframe {
+ color-scheme: auto;
+ }
+
+ .ds-focus:focus-visible {
+ --dsc-focus-border-width: 3px;
+
+ outline: var(--dsc-focus-border-width) solid var(--ds-color-focus-outer);
+ outline-offset: var(--dsc-focus-border-width);
+ box-shadow: 0 0 0 var(--dsc-focus-border-width) var(--ds-color-focus-inner);
+ }
+
/* HEADER */
.header {
height: 96px;
@@ -53,7 +69,7 @@
align-items: center;
justify-content: space-between;
width: 100%;
- padding: 0 var(--fds-spacing-7);
+ padding: 0 var(--ds-spacing-7);
}
.header__logo {
@@ -80,34 +96,38 @@
.header__item {
list-style: none;
- margin-left: var(--fds-spacing-7);
+ margin-left: var(--ds-spacing-7);
}
.header__link {
color: inherit;
text-decoration: none;
- font: var(--fds-typography-paragraph-medium);
border-bottom: 3px solid transparent;
- padding-bottom: var(--fds-spacing-2);
- transition: 0.1s all ease-out;
+ padding-bottom: var(--ds-spacing-2);
+ transition: 0.1s border-color ease-out;
+ }
+
+ .header__link:hover,
+ .header__link:focus-visible {
+ border-color: var(--ds-color-neutral-border-subtle);
}
.header__link:hover {
- border-color: var(--fds-semantic-border-neutral-subtle);
+ border-color: var(--ds-color-neutral-border-subtle);
}
.header__itemIcon {
- margin-left: var(--fds-spacing-1);
+ margin-left: var(--ds-spacing-1);
}
.header__firstIcon {
- margin-left: var(--fds-spacing-7);
+ margin-left: var(--ds-spacing-7);
}
.header__linkIcon {
display: grid;
place-items: center;
- padding: 0 var(--fds-spacing-2);
+ padding: 0 var(--ds-spacing-2);
}
.header__linkIcon > svg {
@@ -116,28 +136,28 @@
}
.header__linkIcon.header__figma path {
- stroke: var(--fds-colors-grey-800);
+ stroke: var(--ds-color-neutral-border-strong);
}
.header__linkIcon.header__github path {
- fill: var(--fds-colors-grey-800);
+ fill: var(--ds-color-neutral-border-strong);
}
.header__linkIcon.header__figma:hover path {
- stroke: var(--fds-semantic-border-neutral-default);
+ stroke: var(--ds-color-neutral-border-strong);
}
.header__linkIcon.header__github:hover path {
- fill: var(--fds-semantic-border-neutral-default);
+ fill: var(--ds-color-neutral-border-strong);
}
.header__item .header__active {
- border-color: var(--fds-semantic-border-neutral-default);
+ border-color: var(--ds-color-neutral-border-strong);
font-weight: 500;
}
.header__item .header__active.header__link:hover {
- border-color: var(--fds-semantic-border-neutral-default);
+ border-color: var(--ds-color-neutral-border-strong);
}
@media (max-width: 991.98px) {
@@ -161,7 +181,7 @@
right: 0;
top: 71px;
background-color: white;
- box-shadow: var(--fds-shadow-large);
+ box-shadow: var(--ds-shadow-lg);
flex-direction: column;
display: none;
padding: 20px 0;
@@ -226,7 +246,7 @@
@@ -299,7 +319,7 @@