Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add export format "Amazon Style Dictionary" #806

Open
TimKolberger opened this issue Aug 9, 2024 · 1 comment · May be fixed by #820
Open

feat: add export format "Amazon Style Dictionary" #806

TimKolberger opened this issue Aug 9, 2024 · 1 comment · May be fixed by #820
Labels
👩‍👧‍👦community feedback 🪩 🔥 🕺 cool topic some relevant topics, that we even also need to report in different rounds / to stakeholders

Comments

@TimKolberger
Copy link

TimKolberger commented Aug 9, 2024

Feature request

📝 Description

We maintain a separate design system with our own component library, and want to migrate to the new DB X tokens.
Our token management is based on Amazon Style Dictionary with our core tokens, semantic tokens and component tokens.

🧑‍🏫 Problem Statement

The Theme Builder export does not contain a .json export for the core and semantic tokens which are compatible with Style Dictionary.
The other exports (CSS, Android, Utils, or WhiteLabelTheme.json) are not compatible.

🧑‍🔬 Possible Solution

The Builder could export additional files in the Style Dictionary format:

.
├── StyleDictionary
│   └── core-tokens
│           ├── colors.json
│           ├── sizes.json
│           └── ...
│   ├──  semantic-tokens
│           ├── colors.json
│           └── colors-dark.json

Where the core-tokens/colors.json could look like this:

{
  "colors": {
    "blue": {
      "50": {
        "value": "#EFF7FD"
      },
      "100": {
        "value": "#e0effb"
      }
      // ...
  }
}

core-tokens/sizes.json:

{
  "sizes": {
    "1": {
      "value": "0.25rem"
    },
    "2": {
      "value": "0.5rem"
    }
    // ...
}

semantic-tokens/colors.json:

{
  "colors": {
    "brand": {
        "value": "{colors.red.500.value}" // variable references
      }
    // ...
  }
}

semantic-tokens/colors-dark.json:

{
  "colors": {
    "brand": {
      "_dark": {
        "value": "{colors.red.400.value}"
      }
    }
  }
}

📝 Additional Information

We use Style Dictionary to generate theme definitions for tailwind, Chakra UI, Vanilla Extract and plain CSS.
These new export formats would help us to align with the DB X Design System mid to long term.

@nmerget nmerget linked a pull request Aug 15, 2024 that will close this issue
@mfranzke mfranzke added the 🪩 🔥 🕺 cool topic some relevant topics, that we even also need to report in different rounds / to stakeholders label Aug 30, 2024
@TimKolberger
Copy link
Author

As discussed, this is the format we are currently working with:

palette.json{ "colors": { "neutral": { "0": { "value": "#070709" }, "1": { "value": "#0d0e11" }, "2": { "value": "#121316" }, "3": { "value": "#1a1c1f" }, "4": { "value": "#2e3036" }, "5": { "value": "#43474e" }, "6": { "value": "#5a5e68" }, "7": { "value": "#727782" }, "8": { "value": "#8a919e" }, "9": { "value": "#a6abb6" }, "10": { "value": "#c3c7ce" }, "11": { "value": "#e1e2e6" }, "12": { "value": "#edeef0" }, "13": { "value": "#f3f3f5" }, "14": { "value": "#ffffff" }, "origin": { "base": { "comment": "This is just to resolve the original origin color", "value": "#646973" } }, "light": { "origin": { "default": { "value": "#646973" }, "hovered": { "value": "#4d5159" }, "pressed": { "value": "#373a40" } }, "on": { "origin": { "default": { "value": "#f9f9fa" }, "hovered": { "value": "#dcdce2" }, "pressed": { "value": "#c0c0cb" } } } }, "dark": { "origin": { "default": { "value": "#646973" }, "hovered": { "value": "#7c828e" }, "pressed": { "value": "#969ca9" } }, "on": { "origin": { "default": { "value": "#f9f9fa" }, "hovered": { "value": "#dcdce2" }, "pressed": { "value": "#c0c0cb" } } } } }, "brand": { "0": { "value": "#1a0000" }, "1": { "value": "#280001" }, "2": { "value": "#310001" }, "3": { "value": "#410002" }, "4": { "value": "#690004" }, "5": { "value": "#930009" }, "6": { "value": "#c00010" }, "7": { "value": "#ef0016" }, "8": { "value": "#ff5357" }, "9": { "value": "#ff888a" }, "10": { "value": "#ffb3b4" }, "11": { "value": "#ffdada" }, "12": { "value": "#ffe9e9" }, "13": { "value": "#fff0f0" }, "14": { "value": "#fff8f8" }, "origin": { "base": { "comment": "This is just to resolve the original origin color", "value": "#EC0016" } }, "light": { "origin": { "default": { "value": "#EC0016" }, "hovered": { "value": "#bd000f" }, "pressed": { "value": "#900009" } }, "on": { "origin": { "default": { "value": "#ffffff" }, "hovered": { "value": "#ffdada" }, "pressed": { "value": "#ffb3b4" } } } }, "dark": { "origin": { "default": { "value": "#EC0016" }, "hovered": { "value": "#ff4f53" }, "pressed": { "value": "#ff8587" } }, "on": { "origin": { "default": { "value": "#ffffff" }, "hovered": { "value": "#ffdada" }, "pressed": { "value": "#ffb3b4" } } } } }, "informational": { "0": { "value": "#01080f" }, "1": { "value": "#011018" }, "2": { "value": "#021520" }, "3": { "value": "#041e2b" }, "4": { "value": "#0a3447" }, "5": { "value": "#124c66" }, "6": { "value": "#1b6586" }, "7": { "value": "#257fa8" }, "8": { "value": "#2e9acb" }, "9": { "value": "#38b6ef" }, "10": { "value": "#89cffa" }, "11": { "value": "#cae6fd" }, "12": { "value": "#e0f0fe" }, "13": { "value": "#ebf5fe" }, "14": { "value": "#f5faff" }, "origin": { "base": { "comment": "This is just to resolve the original origin color", "value": "#309FD1" } }, "light": { "origin": { "default": { "value": "#309FD1" }, "hovered": { "value": "#2684ae" }, "pressed": { "value": "#1d698c" } }, "on": { "origin": { "default": { "value": "#01080f" }, "hovered": { "value": "#072231" }, "pressed": { "value": "#0f384f" } } } }, "dark": { "origin": { "default": { "value": "#309FD1" }, "hovered": { "value": "#3abbf5" }, "pressed": { "value": "#96d2fb" } }, "on": { "origin": { "default": { "value": "#01080f" }, "hovered": { "value": "#072231" }, "pressed": { "value": "#0f384f" } } } } }, "warning": { "0": { "value": "#100500" }, "1": { "value": "#190b00" }, "2": { "value": "#210f00" }, "3": { "value": "#2c1600" }, "4": { "value": "#4a2800" }, "5": { "value": "#693c00" }, "6": { "value": "#8a5100" }, "7": { "value": "#ad6600" }, "8": { "value": "#d17d00" }, "9": { "value": "#f69400" }, "10": { "value": "#ffb782" }, "11": { "value": "#ffdbc8" }, "12": { "value": "#ffeadf" }, "13": { "value": "#fff1ea" }, "14": { "value": "#fff8f5" }, "origin": { "base": { "comment": "This is just to resolve the original origin color", "value": "#F39200" } }, "light": { "origin": { "default": { "value": "#F39200" }, "hovered": { "value": "#ce7b00" }, "pressed": { "value": "#aa6500" } }, "on": { "origin": { "default": { "value": "#100500" }, "hovered": { "value": "#331900" }, "pressed": { "value": "#512b00" } } } }, "dark": { "origin": { "default": { "value": "#F39200" }, "hovered": { "value": "#ffb47b" }, "pressed": { "value": "#ffd9c3" } }, "on": { "origin": { "default": { "value": "#100500" }, "hovered": { "value": "#331900" }, "pressed": { "value": "#512b00" } } } } }, "successful": { "0": { "value": "#030900" }, "1": { "value": "#061100" }, "2": { "value": "#091701" }, "3": { "value": "#0f2001" }, "4": { "value": "#1d3702" }, "5": { "value": "#2d5005" }, "6": { "value": "#3d6a09" }, "7": { "value": "#4e850f" }, "8": { "value": "#60a114" }, "9": { "value": "#72bf1a" }, "10": { "value": "#85dd20" }, "11": { "value": "#99fc26" }, "12": { "value": "#c3ff9d" }, "13": { "value": "#d9ffc4" }, "14": { "value": "#edffe4" }, "origin": { "base": { "comment": "This is just to resolve the original origin color", "value": "#63A615" } }, "light": { "origin": { "default": { "value": "#63A615" }, "hovered": { "value": "#51890f" }, "pressed": { "value": "#406e0a" } }, "on": { "origin": { "default": { "value": "#030900" }, "hovered": { "value": "#122400" }, "pressed": { "value": "#213c00" } } } }, "dark": { "origin": { "default": { "value": "#63A615" }, "hovered": { "value": "#75c31b" }, "pressed": { "value": "#88e221" } }, "on": { "origin": { "default": { "value": "#030900" }, "hovered": { "value": "#122400" }, "pressed": { "value": "#213c00" } } } } }, "critical": { "0": { "value": "#1a0000" }, "1": { "value": "#280001" }, "2": { "value": "#310001" }, "3": { "value": "#410002" }, "4": { "value": "#690004" }, "5": { "value": "#930009" }, "6": { "value": "#c00010" }, "7": { "value": "#ef0016" }, "8": { "value": "#ff5357" }, "9": { "value": "#ff888a" }, "10": { "value": "#ffb3b4" }, "11": { "value": "#ffdada" }, "12": { "value": "#ffe9e9" }, "13": { "value": "#fff0f0" }, "14": { "value": "#fff8f8" }, "origin": { "base": { "comment": "This is just to resolve the original origin color", "value": "#EC0016" } }, "light": { "origin": { "default": { "value": "#EC0016" }, "hovered": { "value": "#bd000f" }, "pressed": { "value": "#900009" } }, "on": { "origin": { "default": { "value": "#ffffff" }, "hovered": { "value": "#ffdada" }, "pressed": { "value": "#ffb3b4" } } } }, "dark": { "origin": { "default": { "value": "#EC0016" }, "hovered": { "value": "#ff4f53" }, "pressed": { "value": "#ff8587" } }, "on": { "origin": { "default": { "value": "#ffffff" }, "hovered": { "value": "#ffdada" }, "pressed": { "value": "#ffb3b4" } } } } }, "yellow": { "0": { "value": "#0a0700" }, "1": { "value": "#130e00" }, "2": { "value": "#191300" }, "3": { "value": "#221b00" }, "4": { "value": "#3a3000" }, "5": { "value": "#544600" }, "6": { "value": "#6f5d00" }, "7": { "value": "#8c7600" }, "8": { "value": "#aa8f00" }, "9": { "value": "#c8a900" }, "10": { "value": "#e8c400" }, "11": { "value": "#ffe17c" }, "12": { "value": "#ffedbc" }, "13": { "value": "#fff3d5" }, "14": { "value": "#fff9eb" }, "origin": { "base": { "comment": "This is just to resolve the original origin color", "value": "#FFD800" } }, "light": { "origin": { "default": { "value": "#FFD800" }, "hovered": { "value": "#dfbc00" }, "pressed": { "value": "#bfa200" } }, "on": { "origin": { "default": { "value": "#0a0700" }, "hovered": { "value": "#261f00" }, "pressed": { "value": "#3f3400" } } } }, "dark": { "origin": { "default": { "value": "#FFD800" }, "hovered": { "value": "#dfbc00" }, "pressed": { "value": "#bfa200" } }, "on": { "origin": { "default": { "value": "#0a0700" }, "hovered": { "value": "#261f00" }, "pressed": { "value": "#3f3400" } } } } }, "orange": { "0": { "value": "#100500" }, "1": { "value": "#190b00" }, "2": { "value": "#210f00" }, "3": { "value": "#2c1600" }, "4": { "value": "#4a2800" }, "5": { "value": "#693c00" }, "6": { "value": "#8a5100" }, "7": { "value": "#ad6600" }, "8": { "value": "#d17d00" }, "9": { "value": "#f69400" }, "10": { "value": "#ffb782" }, "11": { "value": "#ffdbc8" }, "12": { "value": "#ffeadf" }, "13": { "value": "#fff1ea" }, "14": { "value": "#fff8f5" }, "origin": { "base": { "comment": "This is just to resolve the original origin color", "value": "#F39200" } }, "light": { "origin": { "default": { "value": "#F39200" }, "hovered": { "value": "#ce7b00" }, "pressed": { "value": "#aa6500" } }, "on": { "origin": { "default": { "value": "#100500" }, "hovered": { "value": "#331900" }, "pressed": { "value": "#512b00" } } } }, "dark": { "origin": { "default": { "value": "#F39200" }, "hovered": { "value": "#ffb47b" }, "pressed": { "value": "#ffd9c3" } }, "on": { "origin": { "default": { "value": "#100500" }, "hovered": { "value": "#331900" }, "pressed": { "value": "#512b00" } } } } }, "red": { "0": { "value": "#1a0000" }, "1": { "value": "#280001" }, "2": { "value": "#310001" }, "3": { "value": "#410002" }, "4": { "value": "#690004" }, "5": { "value": "#930009" }, "6": { "value": "#c00010" }, "7": { "value": "#ef0016" }, "8": { "value": "#ff5357" }, "9": { "value": "#ff888a" }, "10": { "value": "#ffb3b4" }, "11": { "value": "#ffdada" }, "12": { "value": "#ffe9e9" }, "13": { "value": "#fff0f0" }, "14": { "value": "#fff8f8" }, "origin": { "base": { "comment": "This is just to resolve the original origin color", "value": "#EC0016" } }, "light": { "origin": { "default": { "value": "#EC0016" }, "hovered": { "value": "#bd000f" }, "pressed": { "value": "#900009" } }, "on": { "origin": { "default": { "value": "#ffffff" }, "hovered": { "value": "#ffdada" }, "pressed": { "value": "#ffb3b4" } } } }, "dark": { "origin": { "default": { "value": "#EC0016" }, "hovered": { "value": "#ff4f53" }, "pressed": { "value": "#ff8587" } }, "on": { "origin": { "default": { "value": "#ffffff" }, "hovered": { "value": "#ffdada" }, "pressed": { "value": "#ffb3b4" } } } } }, "pink": { "0": { "value": "#160209" }, "1": { "value": "#220310" }, "2": { "value": "#2b0516" }, "3": { "value": "#39081f" }, "4": { "value": "#5c1335" }, "5": { "value": "#821e4e" }, "6": { "value": "#aa2b67" }, "7": { "value": "#d43882" }, "8": { "value": "#ed5c9b" }, "9": { "value": "#f18cb2" }, "10": { "value": "#f5b5cb" }, "11": { "value": "#fadbe4" }, "12": { "value": "#fce9ef" }, "13": { "value": "#fdf1f4" }, "14": { "value": "#fef8fa" }, "origin": { "base": { "comment": "This is just to resolve the original origin color", "value": "#E93E8F" } }, "light": { "origin": { "default": { "value": "#E93E8F" }, "hovered": { "value": "#be3174" }, "pressed": { "value": "#95245a" } }, "on": { "origin": { "default": { "value": "#260413" }, "hovered": { "value": "#490e29" }, "pressed": { "value": "#6e1941" } } } }, "dark": { "origin": { "default": { "value": "#E93E8F" }, "hovered": { "value": "#ef75a6" }, "pressed": { "value": "#f3a0be" } }, "on": { "origin": { "default": { "value": "#260413" }, "hovered": { "value": "#490e29" }, "pressed": { "value": "#6e1941" } } } } }, "violet": { "0": { "value": "#0d0412" }, "1": { "value": "#17081c" }, "2": { "value": "#1d0c24" }, "3": { "value": "#281330" }, "4": { "value": "#432350" }, "5": { "value": "#603571" }, "6": { "value": "#7f4895" }, "7": { "value": "#9f5bba" }, "8": { "value": "#b47ace" }, "9": { "value": "#c69cda" }, "10": { "value": "#d8bde6" }, "11": { "value": "#ebdef2" }, "12": { "value": "#f3ebf7" }, "13": { "value": "#f7f2fa" }, "14": { "value": "#fbf8fc" }, "origin": { "base": { "comment": "This is just to resolve the original origin color", "value": "#814997" } }, "light": { "origin": { "default": { "value": "#814997" }, "hovered": { "value": "#623673" }, "pressed": { "value": "#452452" } }, "on": { "origin": { "default": { "value": "#fbf8fc" }, "hovered": { "value": "#e9d7ee" }, "pressed": { "value": "#d7b5e1" } } } }, "dark": { "origin": { "default": { "value": "#814997" }, "hovered": { "value": "#a15dbc" }, "pressed": { "value": "#b67cce" } }, "on": { "origin": { "default": { "value": "#fbf8fc" }, "hovered": { "value": "#e9d7ee" }, "pressed": { "value": "#d7b5e1" } } } } }, "blue": { "0": { "value": "#00061b" }, "1": { "value": "#010d29" }, "2": { "value": "#011133" }, "3": { "value": "#021943" }, "4": { "value": "#072d6c" }, "5": { "value": "#0d4298" }, "6": { "value": "#1558c6" }, "7": { "value": "#1d6ff7" }, "8": { "value": "#638bfa" }, "9": { "value": "#90a8fc" }, "10": { "value": "#b7c4fd" }, "11": { "value": "#dbe1fe" }, "12": { "value": "#eaedfe" }, "13": { "value": "#f1f3ff" }, "14": { "value": "#f8f9ff" }, "origin": { "base": { "comment": "This is just to resolve the original origin color", "value": "#1455C0" } }, "light": { "origin": { "default": { "value": "#1455C0" }, "hovered": { "value": "#0c3f92" }, "pressed": { "value": "#062a67" } }, "on": { "origin": { "default": { "value": "#f8f9ff" }, "hovered": { "value": "#d5dbff" }, "pressed": { "value": "#b0beff" } } } }, "dark": { "origin": { "default": { "value": "#1455C0" }, "hovered": { "value": "#1c6cf0" }, "pressed": { "value": "#5c87fa" } }, "on": { "origin": { "default": { "value": "#f8f9ff" }, "hovered": { "value": "#d5dbff" }, "pressed": { "value": "#b0beff" } } } } }, "cyan": { "0": { "value": "#01080f" }, "1": { "value": "#011018" }, "2": { "value": "#021520" }, "3": { "value": "#041e2b" }, "4": { "value": "#0a3447" }, "5": { "value": "#124c66" }, "6": { "value": "#1b6586" }, "7": { "value": "#257fa8" }, "8": { "value": "#2e9acb" }, "9": { "value": "#38b6ef" }, "10": { "value": "#89cffa" }, "11": { "value": "#cae6fd" }, "12": { "value": "#e0f0fe" }, "13": { "value": "#ebf5fe" }, "14": { "value": "#f5faff" }, "origin": { "base": { "comment": "This is just to resolve the original origin color", "value": "#309FD1" } }, "light": { "origin": { "default": { "value": "#309FD1" }, "hovered": { "value": "#2684ae" }, "pressed": { "value": "#1d698c" } }, "on": { "origin": { "default": { "value": "#01080f" }, "hovered": { "value": "#072231" }, "pressed": { "value": "#0f384f" } } } }, "dark": { "origin": { "default": { "value": "#309FD1" }, "hovered": { "value": "#3abbf5" }, "pressed": { "value": "#96d2fb" } }, "on": { "origin": { "default": { "value": "#01080f" }, "hovered": { "value": "#072231" }, "pressed": { "value": "#0f384f" } } } } }, "turquoise": { "0": { "value": "#000908" }, "1": { "value": "#001110" }, "2": { "value": "#001715" }, "3": { "value": "#00201e" }, "4": { "value": "#003734" }, "5": { "value": "#00504c" }, "6": { "value": "#006a65" }, "7": { "value": "#00857f" }, "8": { "value": "#00a29b" }, "9": { "value": "#00bfb7" }, "10": { "value": "#00ddd4" }, "11": { "value": "#00fcf2" }, "12": { "value": "#9bfff8" }, "13": { "value": "#c3fffa" }, "14": { "value": "#e3fffd" }, "origin": { "base": { "comment": "This is just to resolve the original origin color", "value": "#00A099" } }, "light": { "origin": { "default": { "value": "#00A099" }, "hovered": { "value": "#00847e" }, "pressed": { "value": "#006864" } }, "on": { "origin": { "default": { "value": "#000908" }, "hovered": { "value": "#002422" }, "pressed": { "value": "#003c38" } } } }, "dark": { "origin": { "default": { "value": "#00A099" }, "hovered": { "value": "#00bdb5" }, "pressed": { "value": "#00dcd2" } }, "on": { "origin": { "default": { "value": "#000908" }, "hovered": { "value": "#002422" }, "pressed": { "value": "#003c38" } } } } }, "green": { "0": { "value": "#030900" }, "1": { "value": "#061100" }, "2": { "value": "#091701" }, "3": { "value": "#0f2001" }, "4": { "value": "#1d3702" }, "5": { "value": "#2d5005" }, "6": { "value": "#3d6a09" }, "7": { "value": "#4e850f" }, "8": { "value": "#60a114" }, "9": { "value": "#72bf1a" }, "10": { "value": "#85dd20" }, "11": { "value": "#99fc26" }, "12": { "value": "#c3ff9d" }, "13": { "value": "#d9ffc4" }, "14": { "value": "#edffe4" }, "origin": { "base": { "comment": "This is just to resolve the original origin color", "value": "#63A615" } }, "light": { "origin": { "default": { "value": "#63A615" }, "hovered": { "value": "#51890f" }, "pressed": { "value": "#406e0a" } }, "on": { "origin": { "default": { "value": "#030900" }, "hovered": { "value": "#122400" }, "pressed": { "value": "#213c00" } } } }, "dark": { "origin": { "default": { "value": "#63A615" }, "hovered": { "value": "#75c31b" }, "pressed": { "value": "#88e221" } }, "on": { "origin": { "default": { "value": "#030900" }, "hovered": { "value": "#122400" }, "pressed": { "value": "#213c00" } } } } }, "primary": { "0": { "value": "#000811" }, "1": { "value": "#00101b" }, "2": { "value": "#001522" }, "3": { "value": "#001e2e" }, "4": { "value": "#00344c" }, "5": { "value": "#004c6d" }, "6": { "value": "#00658f" }, "7": { "value": "#007fb3" }, "8": { "value": "#009ad8" }, "9": { "value": "#00b6fe" }, "10": { "value": "#8dcdff" }, "11": { "value": "#cbe6ff" }, "12": { "value": "#e1f0ff" }, "13": { "value": "#ebf5ff" }, "14": { "value": "#f5faff" }, "origin": { "base": { "comment": "This is just to resolve the original origin color", "value": "#006A96" } }, "light": { "origin": { "default": { "value": "#006A96" }, "hovered": { "value": "#005173" }, "pressed": { "value": "#003953" } }, "on": { "origin": { "default": { "value": "#f5faff" }, "hovered": { "value": "#c0e1ff" }, "pressed": { "value": "#7ec9ff" } } } }, "dark": { "origin": { "default": { "value": "#006A96" }, "hovered": { "value": "#0084ba" }, "pressed": { "value": "#00a0df" } }, "on": { "origin": { "default": { "value": "#f5faff" }, "hovered": { "value": "#c0e1ff" }, "pressed": { "value": "#7ec9ff" } } } } } } }
speaking-colors.json{ "colors": { "light": { "neutral": { "origin": { "default": { "value": "{colors.neutral.light.origin.default.value}" }, "hovered": { "value": "{colors.neutral.light.origin.hovered.value}" }, "pressed": { "value": "{colors.neutral.light.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.neutral.light.on.origin.default.value}" }, "hovered": { "value": "{colors.neutral.light.on.origin.hovered.value}" }, "pressed": { "value": "{colors.neutral.light.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.neutral.9.value}" }, "hovered": { "value": "{colors.neutral.8.value}" }, "pressed": { "value": "{colors.neutral.7.value}" } }, "60": { "default": { "value": "{colors.neutral.10.value}" }, "hovered": { "value": "{colors.neutral.9.value}" }, "pressed": { "value": "{colors.neutral.8.value}" } }, "70": { "default": { "value": "{colors.neutral.7.value}" }, "hovered": { "value": "{colors.neutral.6.value}" }, "pressed": { "value": "{colors.neutral.5.value}" } }, "80": { "default": { "value": "{colors.neutral.6.value}" }, "hovered": { "value": "{colors.neutral.5.value}" }, "pressed": { "value": "{colors.neutral.4.value}" } }, "90": { "default": { "value": "{colors.neutral.5.value}" }, "hovered": { "value": "{colors.neutral.6.value}" }, "pressed": { "value": "{colors.neutral.7.value}" } }, "100": { "default": { "value": "{colors.neutral.3.value}" }, "hovered": { "value": "{colors.neutral.4.value}" }, "pressed": { "value": "{colors.neutral.5.value}" } } } }, "inverted": { "default": { "value": "{colors.neutral.14.value}" }, "hovered": { "value": "{colors.neutral.13.value}" }, "pressed": { "value": "{colors.neutral.12.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.neutral.14.value}" }, "hovered": { "value": "{colors.neutral.13.value}" }, "pressed": { "value": "{colors.neutral.12.value}" } }, "2": { "default": { "value": "{colors.neutral.13.value}" }, "hovered": { "value": "{colors.neutral.12.value}" }, "pressed": { "value": "{colors.neutral.11.value}" } }, "3": { "default": { "value": "{colors.neutral.12.value}" }, "hovered": { "value": "{colors.neutral.11.value}" }, "pressed": { "value": "{colors.neutral.10.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.neutral.6.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.neutral.6.value}", "transparent": 92 } }, "hovered": { "value": "{colors.neutral.6.value}", "transparent": 84 }, "pressed": { "value": "{colors.neutral.6.value}", "transparent": 76 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.neutral.3.value}" }, "hovered": { "value": "{colors.neutral.4.value}" }, "pressed": { "value": "{colors.neutral.5.value}" } }, "high": { "default": { "value": "{colors.neutral.6.value}" }, "hovered": { "value": "{colors.neutral.5.value}" }, "pressed": { "value": "{colors.neutral.4.value}" } }, "low": { "default": { "value": "{colors.neutral.7.value}" }, "hovered": { "value": "{colors.neutral.6.value}" }, "pressed": { "value": "{colors.neutral.5.value}" } } } } } }, "brand": { "origin": { "default": { "value": "{colors.brand.light.origin.default.value}" }, "hovered": { "value": "{colors.brand.light.origin.hovered.value}" }, "pressed": { "value": "{colors.brand.light.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.brand.light.on.origin.default.value}" }, "hovered": { "value": "{colors.brand.light.on.origin.hovered.value}" }, "pressed": { "value": "{colors.brand.light.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.brand.9.value}" }, "hovered": { "value": "{colors.brand.8.value}" }, "pressed": { "value": "{colors.brand.7.value}" } }, "60": { "default": { "value": "{colors.brand.10.value}" }, "hovered": { "value": "{colors.brand.9.value}" }, "pressed": { "value": "{colors.brand.8.value}" } }, "70": { "default": { "value": "{colors.brand.7.value}" }, "hovered": { "value": "{colors.brand.6.value}" }, "pressed": { "value": "{colors.brand.5.value}" } }, "80": { "default": { "value": "{colors.brand.6.value}" }, "hovered": { "value": "{colors.brand.5.value}" }, "pressed": { "value": "{colors.brand.4.value}" } }, "90": { "default": { "value": "{colors.brand.5.value}" }, "hovered": { "value": "{colors.brand.6.value}" }, "pressed": { "value": "{colors.brand.7.value}" } }, "100": { "default": { "value": "{colors.brand.3.value}" }, "hovered": { "value": "{colors.brand.4.value}" }, "pressed": { "value": "{colors.brand.5.value}" } } } }, "inverted": { "default": { "value": "{colors.brand.14.value}" }, "hovered": { "value": "{colors.brand.13.value}" }, "pressed": { "value": "{colors.brand.12.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.brand.14.value}" }, "hovered": { "value": "{colors.brand.13.value}" }, "pressed": { "value": "{colors.brand.12.value}" } }, "2": { "default": { "value": "{colors.brand.13.value}" }, "hovered": { "value": "{colors.brand.12.value}" }, "pressed": { "value": "{colors.brand.11.value}" } }, "3": { "default": { "value": "{colors.brand.12.value}" }, "hovered": { "value": "{colors.brand.11.value}" }, "pressed": { "value": "{colors.brand.10.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.brand.6.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.brand.6.value}", "transparent": 92 } }, "hovered": { "value": "{colors.brand.6.value}", "transparent": 84 }, "pressed": { "value": "{colors.brand.6.value}", "transparent": 76 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.brand.3.value}" }, "hovered": { "value": "{colors.brand.4.value}" }, "pressed": { "value": "{colors.brand.5.value}" } }, "high": { "default": { "value": "{colors.brand.6.value}" }, "hovered": { "value": "{colors.brand.5.value}" }, "pressed": { "value": "{colors.brand.4.value}" } }, "low": { "default": { "value": "{colors.brand.7.value}" }, "hovered": { "value": "{colors.brand.6.value}" }, "pressed": { "value": "{colors.brand.5.value}" } } } } } }, "informational": { "origin": { "default": { "value": "{colors.informational.light.origin.default.value}" }, "hovered": { "value": "{colors.informational.light.origin.hovered.value}" }, "pressed": { "value": "{colors.informational.light.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.informational.light.on.origin.default.value}" }, "hovered": { "value": "{colors.informational.light.on.origin.hovered.value}" }, "pressed": { "value": "{colors.informational.light.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.informational.9.value}" }, "hovered": { "value": "{colors.informational.8.value}" }, "pressed": { "value": "{colors.informational.7.value}" } }, "60": { "default": { "value": "{colors.informational.10.value}" }, "hovered": { "value": "{colors.informational.9.value}" }, "pressed": { "value": "{colors.informational.8.value}" } }, "70": { "default": { "value": "{colors.informational.7.value}" }, "hovered": { "value": "{colors.informational.6.value}" }, "pressed": { "value": "{colors.informational.5.value}" } }, "80": { "default": { "value": "{colors.informational.6.value}" }, "hovered": { "value": "{colors.informational.5.value}" }, "pressed": { "value": "{colors.informational.4.value}" } }, "90": { "default": { "value": "{colors.informational.5.value}" }, "hovered": { "value": "{colors.informational.6.value}" }, "pressed": { "value": "{colors.informational.7.value}" } }, "100": { "default": { "value": "{colors.informational.3.value}" }, "hovered": { "value": "{colors.informational.4.value}" }, "pressed": { "value": "{colors.informational.5.value}" } } } }, "inverted": { "default": { "value": "{colors.informational.14.value}" }, "hovered": { "value": "{colors.informational.13.value}" }, "pressed": { "value": "{colors.informational.12.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.informational.14.value}" }, "hovered": { "value": "{colors.informational.13.value}" }, "pressed": { "value": "{colors.informational.12.value}" } }, "2": { "default": { "value": "{colors.informational.13.value}" }, "hovered": { "value": "{colors.informational.12.value}" }, "pressed": { "value": "{colors.informational.11.value}" } }, "3": { "default": { "value": "{colors.informational.12.value}" }, "hovered": { "value": "{colors.informational.11.value}" }, "pressed": { "value": "{colors.informational.10.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.informational.6.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.informational.6.value}", "transparent": 92 } }, "hovered": { "value": "{colors.informational.6.value}", "transparent": 84 }, "pressed": { "value": "{colors.informational.6.value}", "transparent": 76 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.informational.3.value}" }, "hovered": { "value": "{colors.informational.4.value}" }, "pressed": { "value": "{colors.informational.5.value}" } }, "high": { "default": { "value": "{colors.informational.6.value}" }, "hovered": { "value": "{colors.informational.5.value}" }, "pressed": { "value": "{colors.informational.4.value}" } }, "low": { "default": { "value": "{colors.informational.7.value}" }, "hovered": { "value": "{colors.informational.6.value}" }, "pressed": { "value": "{colors.informational.5.value}" } } } } } }, "warning": { "origin": { "default": { "value": "{colors.warning.light.origin.default.value}" }, "hovered": { "value": "{colors.warning.light.origin.hovered.value}" }, "pressed": { "value": "{colors.warning.light.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.warning.light.on.origin.default.value}" }, "hovered": { "value": "{colors.warning.light.on.origin.hovered.value}" }, "pressed": { "value": "{colors.warning.light.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.warning.9.value}" }, "hovered": { "value": "{colors.warning.8.value}" }, "pressed": { "value": "{colors.warning.7.value}" } }, "60": { "default": { "value": "{colors.warning.10.value}" }, "hovered": { "value": "{colors.warning.9.value}" }, "pressed": { "value": "{colors.warning.8.value}" } }, "70": { "default": { "value": "{colors.warning.7.value}" }, "hovered": { "value": "{colors.warning.6.value}" }, "pressed": { "value": "{colors.warning.5.value}" } }, "80": { "default": { "value": "{colors.warning.6.value}" }, "hovered": { "value": "{colors.warning.5.value}" }, "pressed": { "value": "{colors.warning.4.value}" } }, "90": { "default": { "value": "{colors.warning.5.value}" }, "hovered": { "value": "{colors.warning.6.value}" }, "pressed": { "value": "{colors.warning.7.value}" } }, "100": { "default": { "value": "{colors.warning.3.value}" }, "hovered": { "value": "{colors.warning.4.value}" }, "pressed": { "value": "{colors.warning.5.value}" } } } }, "inverted": { "default": { "value": "{colors.warning.14.value}" }, "hovered": { "value": "{colors.warning.13.value}" }, "pressed": { "value": "{colors.warning.12.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.warning.14.value}" }, "hovered": { "value": "{colors.warning.13.value}" }, "pressed": { "value": "{colors.warning.12.value}" } }, "2": { "default": { "value": "{colors.warning.13.value}" }, "hovered": { "value": "{colors.warning.12.value}" }, "pressed": { "value": "{colors.warning.11.value}" } }, "3": { "default": { "value": "{colors.warning.12.value}" }, "hovered": { "value": "{colors.warning.11.value}" }, "pressed": { "value": "{colors.warning.10.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.warning.6.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.warning.6.value}", "transparent": 92 } }, "hovered": { "value": "{colors.warning.6.value}", "transparent": 84 }, "pressed": { "value": "{colors.warning.6.value}", "transparent": 76 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.warning.3.value}" }, "hovered": { "value": "{colors.warning.4.value}" }, "pressed": { "value": "{colors.warning.5.value}" } }, "high": { "default": { "value": "{colors.warning.6.value}" }, "hovered": { "value": "{colors.warning.5.value}" }, "pressed": { "value": "{colors.warning.4.value}" } }, "low": { "default": { "value": "{colors.warning.7.value}" }, "hovered": { "value": "{colors.warning.6.value}" }, "pressed": { "value": "{colors.warning.5.value}" } } } } } }, "successful": { "origin": { "default": { "value": "{colors.successful.light.origin.default.value}" }, "hovered": { "value": "{colors.successful.light.origin.hovered.value}" }, "pressed": { "value": "{colors.successful.light.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.successful.light.on.origin.default.value}" }, "hovered": { "value": "{colors.successful.light.on.origin.hovered.value}" }, "pressed": { "value": "{colors.successful.light.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.successful.9.value}" }, "hovered": { "value": "{colors.successful.8.value}" }, "pressed": { "value": "{colors.successful.7.value}" } }, "60": { "default": { "value": "{colors.successful.10.value}" }, "hovered": { "value": "{colors.successful.9.value}" }, "pressed": { "value": "{colors.successful.8.value}" } }, "70": { "default": { "value": "{colors.successful.7.value}" }, "hovered": { "value": "{colors.successful.6.value}" }, "pressed": { "value": "{colors.successful.5.value}" } }, "80": { "default": { "value": "{colors.successful.6.value}" }, "hovered": { "value": "{colors.successful.5.value}" }, "pressed": { "value": "{colors.successful.4.value}" } }, "90": { "default": { "value": "{colors.successful.5.value}" }, "hovered": { "value": "{colors.successful.6.value}" }, "pressed": { "value": "{colors.successful.7.value}" } }, "100": { "default": { "value": "{colors.successful.3.value}" }, "hovered": { "value": "{colors.successful.4.value}" }, "pressed": { "value": "{colors.successful.5.value}" } } } }, "inverted": { "default": { "value": "{colors.successful.14.value}" }, "hovered": { "value": "{colors.successful.13.value}" }, "pressed": { "value": "{colors.successful.12.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.successful.14.value}" }, "hovered": { "value": "{colors.successful.13.value}" }, "pressed": { "value": "{colors.successful.12.value}" } }, "2": { "default": { "value": "{colors.successful.13.value}" }, "hovered": { "value": "{colors.successful.12.value}" }, "pressed": { "value": "{colors.successful.11.value}" } }, "3": { "default": { "value": "{colors.successful.12.value}" }, "hovered": { "value": "{colors.successful.11.value}" }, "pressed": { "value": "{colors.successful.10.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.successful.6.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.successful.6.value}", "transparent": 92 } }, "hovered": { "value": "{colors.successful.6.value}", "transparent": 84 }, "pressed": { "value": "{colors.successful.6.value}", "transparent": 76 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.successful.3.value}" }, "hovered": { "value": "{colors.successful.4.value}" }, "pressed": { "value": "{colors.successful.5.value}" } }, "high": { "default": { "value": "{colors.successful.6.value}" }, "hovered": { "value": "{colors.successful.5.value}" }, "pressed": { "value": "{colors.successful.4.value}" } }, "low": { "default": { "value": "{colors.successful.7.value}" }, "hovered": { "value": "{colors.successful.6.value}" }, "pressed": { "value": "{colors.successful.5.value}" } } } } } }, "critical": { "origin": { "default": { "value": "{colors.critical.light.origin.default.value}" }, "hovered": { "value": "{colors.critical.light.origin.hovered.value}" }, "pressed": { "value": "{colors.critical.light.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.critical.light.on.origin.default.value}" }, "hovered": { "value": "{colors.critical.light.on.origin.hovered.value}" }, "pressed": { "value": "{colors.critical.light.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.critical.9.value}" }, "hovered": { "value": "{colors.critical.8.value}" }, "pressed": { "value": "{colors.critical.7.value}" } }, "60": { "default": { "value": "{colors.critical.10.value}" }, "hovered": { "value": "{colors.critical.9.value}" }, "pressed": { "value": "{colors.critical.8.value}" } }, "70": { "default": { "value": "{colors.critical.7.value}" }, "hovered": { "value": "{colors.critical.6.value}" }, "pressed": { "value": "{colors.critical.5.value}" } }, "80": { "default": { "value": "{colors.critical.6.value}" }, "hovered": { "value": "{colors.critical.5.value}" }, "pressed": { "value": "{colors.critical.4.value}" } }, "90": { "default": { "value": "{colors.critical.5.value}" }, "hovered": { "value": "{colors.critical.6.value}" }, "pressed": { "value": "{colors.critical.7.value}" } }, "100": { "default": { "value": "{colors.critical.3.value}" }, "hovered": { "value": "{colors.critical.4.value}" }, "pressed": { "value": "{colors.critical.5.value}" } } } }, "inverted": { "default": { "value": "{colors.critical.14.value}" }, "hovered": { "value": "{colors.critical.13.value}" }, "pressed": { "value": "{colors.critical.12.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.critical.14.value}" }, "hovered": { "value": "{colors.critical.13.value}" }, "pressed": { "value": "{colors.critical.12.value}" } }, "2": { "default": { "value": "{colors.critical.13.value}" }, "hovered": { "value": "{colors.critical.12.value}" }, "pressed": { "value": "{colors.critical.11.value}" } }, "3": { "default": { "value": "{colors.critical.12.value}" }, "hovered": { "value": "{colors.critical.11.value}" }, "pressed": { "value": "{colors.critical.10.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.critical.6.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.critical.6.value}", "transparent": 92 } }, "hovered": { "value": "{colors.critical.6.value}", "transparent": 84 }, "pressed": { "value": "{colors.critical.6.value}", "transparent": 76 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.critical.3.value}" }, "hovered": { "value": "{colors.critical.4.value}" }, "pressed": { "value": "{colors.critical.5.value}" } }, "high": { "default": { "value": "{colors.critical.6.value}" }, "hovered": { "value": "{colors.critical.5.value}" }, "pressed": { "value": "{colors.critical.4.value}" } }, "low": { "default": { "value": "{colors.critical.7.value}" }, "hovered": { "value": "{colors.critical.6.value}" }, "pressed": { "value": "{colors.critical.5.value}" } } } } } }, "yellow": { "origin": { "default": { "value": "{colors.yellow.light.origin.default.value}" }, "hovered": { "value": "{colors.yellow.light.origin.hovered.value}" }, "pressed": { "value": "{colors.yellow.light.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.yellow.light.on.origin.default.value}" }, "hovered": { "value": "{colors.yellow.light.on.origin.hovered.value}" }, "pressed": { "value": "{colors.yellow.light.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.yellow.9.value}" }, "hovered": { "value": "{colors.yellow.8.value}" }, "pressed": { "value": "{colors.yellow.7.value}" } }, "60": { "default": { "value": "{colors.yellow.10.value}" }, "hovered": { "value": "{colors.yellow.9.value}" }, "pressed": { "value": "{colors.yellow.8.value}" } }, "70": { "default": { "value": "{colors.yellow.7.value}" }, "hovered": { "value": "{colors.yellow.6.value}" }, "pressed": { "value": "{colors.yellow.5.value}" } }, "80": { "default": { "value": "{colors.yellow.6.value}" }, "hovered": { "value": "{colors.yellow.5.value}" }, "pressed": { "value": "{colors.yellow.4.value}" } }, "90": { "default": { "value": "{colors.yellow.5.value}" }, "hovered": { "value": "{colors.yellow.6.value}" }, "pressed": { "value": "{colors.yellow.7.value}" } }, "100": { "default": { "value": "{colors.yellow.3.value}" }, "hovered": { "value": "{colors.yellow.4.value}" }, "pressed": { "value": "{colors.yellow.5.value}" } } } }, "inverted": { "default": { "value": "{colors.yellow.14.value}" }, "hovered": { "value": "{colors.yellow.13.value}" }, "pressed": { "value": "{colors.yellow.12.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.yellow.14.value}" }, "hovered": { "value": "{colors.yellow.13.value}" }, "pressed": { "value": "{colors.yellow.12.value}" } }, "2": { "default": { "value": "{colors.yellow.13.value}" }, "hovered": { "value": "{colors.yellow.12.value}" }, "pressed": { "value": "{colors.yellow.11.value}" } }, "3": { "default": { "value": "{colors.yellow.12.value}" }, "hovered": { "value": "{colors.yellow.11.value}" }, "pressed": { "value": "{colors.yellow.10.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.yellow.6.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.yellow.6.value}", "transparent": 92 } }, "hovered": { "value": "{colors.yellow.6.value}", "transparent": 84 }, "pressed": { "value": "{colors.yellow.6.value}", "transparent": 76 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.yellow.3.value}" }, "hovered": { "value": "{colors.yellow.4.value}" }, "pressed": { "value": "{colors.yellow.5.value}" } }, "high": { "default": { "value": "{colors.yellow.6.value}" }, "hovered": { "value": "{colors.yellow.5.value}" }, "pressed": { "value": "{colors.yellow.4.value}" } }, "low": { "default": { "value": "{colors.yellow.7.value}" }, "hovered": { "value": "{colors.yellow.6.value}" }, "pressed": { "value": "{colors.yellow.5.value}" } } } } } }, "orange": { "origin": { "default": { "value": "{colors.orange.light.origin.default.value}" }, "hovered": { "value": "{colors.orange.light.origin.hovered.value}" }, "pressed": { "value": "{colors.orange.light.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.orange.light.on.origin.default.value}" }, "hovered": { "value": "{colors.orange.light.on.origin.hovered.value}" }, "pressed": { "value": "{colors.orange.light.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.orange.9.value}" }, "hovered": { "value": "{colors.orange.8.value}" }, "pressed": { "value": "{colors.orange.7.value}" } }, "60": { "default": { "value": "{colors.orange.10.value}" }, "hovered": { "value": "{colors.orange.9.value}" }, "pressed": { "value": "{colors.orange.8.value}" } }, "70": { "default": { "value": "{colors.orange.7.value}" }, "hovered": { "value": "{colors.orange.6.value}" }, "pressed": { "value": "{colors.orange.5.value}" } }, "80": { "default": { "value": "{colors.orange.6.value}" }, "hovered": { "value": "{colors.orange.5.value}" }, "pressed": { "value": "{colors.orange.4.value}" } }, "90": { "default": { "value": "{colors.orange.5.value}" }, "hovered": { "value": "{colors.orange.6.value}" }, "pressed": { "value": "{colors.orange.7.value}" } }, "100": { "default": { "value": "{colors.orange.3.value}" }, "hovered": { "value": "{colors.orange.4.value}" }, "pressed": { "value": "{colors.orange.5.value}" } } } }, "inverted": { "default": { "value": "{colors.orange.14.value}" }, "hovered": { "value": "{colors.orange.13.value}" }, "pressed": { "value": "{colors.orange.12.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.orange.14.value}" }, "hovered": { "value": "{colors.orange.13.value}" }, "pressed": { "value": "{colors.orange.12.value}" } }, "2": { "default": { "value": "{colors.orange.13.value}" }, "hovered": { "value": "{colors.orange.12.value}" }, "pressed": { "value": "{colors.orange.11.value}" } }, "3": { "default": { "value": "{colors.orange.12.value}" }, "hovered": { "value": "{colors.orange.11.value}" }, "pressed": { "value": "{colors.orange.10.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.orange.6.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.orange.6.value}", "transparent": 92 } }, "hovered": { "value": "{colors.orange.6.value}", "transparent": 84 }, "pressed": { "value": "{colors.orange.6.value}", "transparent": 76 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.orange.3.value}" }, "hovered": { "value": "{colors.orange.4.value}" }, "pressed": { "value": "{colors.orange.5.value}" } }, "high": { "default": { "value": "{colors.orange.6.value}" }, "hovered": { "value": "{colors.orange.5.value}" }, "pressed": { "value": "{colors.orange.4.value}" } }, "low": { "default": { "value": "{colors.orange.7.value}" }, "hovered": { "value": "{colors.orange.6.value}" }, "pressed": { "value": "{colors.orange.5.value}" } } } } } }, "red": { "origin": { "default": { "value": "{colors.red.light.origin.default.value}" }, "hovered": { "value": "{colors.red.light.origin.hovered.value}" }, "pressed": { "value": "{colors.red.light.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.red.light.on.origin.default.value}" }, "hovered": { "value": "{colors.red.light.on.origin.hovered.value}" }, "pressed": { "value": "{colors.red.light.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.red.9.value}" }, "hovered": { "value": "{colors.red.8.value}" }, "pressed": { "value": "{colors.red.7.value}" } }, "60": { "default": { "value": "{colors.red.10.value}" }, "hovered": { "value": "{colors.red.9.value}" }, "pressed": { "value": "{colors.red.8.value}" } }, "70": { "default": { "value": "{colors.red.7.value}" }, "hovered": { "value": "{colors.red.6.value}" }, "pressed": { "value": "{colors.red.5.value}" } }, "80": { "default": { "value": "{colors.red.6.value}" }, "hovered": { "value": "{colors.red.5.value}" }, "pressed": { "value": "{colors.red.4.value}" } }, "90": { "default": { "value": "{colors.red.5.value}" }, "hovered": { "value": "{colors.red.6.value}" }, "pressed": { "value": "{colors.red.7.value}" } }, "100": { "default": { "value": "{colors.red.3.value}" }, "hovered": { "value": "{colors.red.4.value}" }, "pressed": { "value": "{colors.red.5.value}" } } } }, "inverted": { "default": { "value": "{colors.red.14.value}" }, "hovered": { "value": "{colors.red.13.value}" }, "pressed": { "value": "{colors.red.12.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.red.14.value}" }, "hovered": { "value": "{colors.red.13.value}" }, "pressed": { "value": "{colors.red.12.value}" } }, "2": { "default": { "value": "{colors.red.13.value}" }, "hovered": { "value": "{colors.red.12.value}" }, "pressed": { "value": "{colors.red.11.value}" } }, "3": { "default": { "value": "{colors.red.12.value}" }, "hovered": { "value": "{colors.red.11.value}" }, "pressed": { "value": "{colors.red.10.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.red.6.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.red.6.value}", "transparent": 92 } }, "hovered": { "value": "{colors.red.6.value}", "transparent": 84 }, "pressed": { "value": "{colors.red.6.value}", "transparent": 76 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.red.3.value}" }, "hovered": { "value": "{colors.red.4.value}" }, "pressed": { "value": "{colors.red.5.value}" } }, "high": { "default": { "value": "{colors.red.6.value}" }, "hovered": { "value": "{colors.red.5.value}" }, "pressed": { "value": "{colors.red.4.value}" } }, "low": { "default": { "value": "{colors.red.7.value}" }, "hovered": { "value": "{colors.red.6.value}" }, "pressed": { "value": "{colors.red.5.value}" } } } } } }, "pink": { "origin": { "default": { "value": "{colors.pink.light.origin.default.value}" }, "hovered": { "value": "{colors.pink.light.origin.hovered.value}" }, "pressed": { "value": "{colors.pink.light.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.pink.light.on.origin.default.value}" }, "hovered": { "value": "{colors.pink.light.on.origin.hovered.value}" }, "pressed": { "value": "{colors.pink.light.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.pink.9.value}" }, "hovered": { "value": "{colors.pink.8.value}" }, "pressed": { "value": "{colors.pink.7.value}" } }, "60": { "default": { "value": "{colors.pink.10.value}" }, "hovered": { "value": "{colors.pink.9.value}" }, "pressed": { "value": "{colors.pink.8.value}" } }, "70": { "default": { "value": "{colors.pink.7.value}" }, "hovered": { "value": "{colors.pink.6.value}" }, "pressed": { "value": "{colors.pink.5.value}" } }, "80": { "default": { "value": "{colors.pink.6.value}" }, "hovered": { "value": "{colors.pink.5.value}" }, "pressed": { "value": "{colors.pink.4.value}" } }, "90": { "default": { "value": "{colors.pink.5.value}" }, "hovered": { "value": "{colors.pink.6.value}" }, "pressed": { "value": "{colors.pink.7.value}" } }, "100": { "default": { "value": "{colors.pink.3.value}" }, "hovered": { "value": "{colors.pink.4.value}" }, "pressed": { "value": "{colors.pink.5.value}" } } } }, "inverted": { "default": { "value": "{colors.pink.14.value}" }, "hovered": { "value": "{colors.pink.13.value}" }, "pressed": { "value": "{colors.pink.12.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.pink.14.value}" }, "hovered": { "value": "{colors.pink.13.value}" }, "pressed": { "value": "{colors.pink.12.value}" } }, "2": { "default": { "value": "{colors.pink.13.value}" }, "hovered": { "value": "{colors.pink.12.value}" }, "pressed": { "value": "{colors.pink.11.value}" } }, "3": { "default": { "value": "{colors.pink.12.value}" }, "hovered": { "value": "{colors.pink.11.value}" }, "pressed": { "value": "{colors.pink.10.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.pink.6.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.pink.6.value}", "transparent": 92 } }, "hovered": { "value": "{colors.pink.6.value}", "transparent": 84 }, "pressed": { "value": "{colors.pink.6.value}", "transparent": 76 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.pink.3.value}" }, "hovered": { "value": "{colors.pink.4.value}" }, "pressed": { "value": "{colors.pink.5.value}" } }, "high": { "default": { "value": "{colors.pink.6.value}" }, "hovered": { "value": "{colors.pink.5.value}" }, "pressed": { "value": "{colors.pink.4.value}" } }, "low": { "default": { "value": "{colors.pink.7.value}" }, "hovered": { "value": "{colors.pink.6.value}" }, "pressed": { "value": "{colors.pink.5.value}" } } } } } }, "violet": { "origin": { "default": { "value": "{colors.violet.light.origin.default.value}" }, "hovered": { "value": "{colors.violet.light.origin.hovered.value}" }, "pressed": { "value": "{colors.violet.light.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.violet.light.on.origin.default.value}" }, "hovered": { "value": "{colors.violet.light.on.origin.hovered.value}" }, "pressed": { "value": "{colors.violet.light.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.violet.9.value}" }, "hovered": { "value": "{colors.violet.8.value}" }, "pressed": { "value": "{colors.violet.7.value}" } }, "60": { "default": { "value": "{colors.violet.10.value}" }, "hovered": { "value": "{colors.violet.9.value}" }, "pressed": { "value": "{colors.violet.8.value}" } }, "70": { "default": { "value": "{colors.violet.7.value}" }, "hovered": { "value": "{colors.violet.6.value}" }, "pressed": { "value": "{colors.violet.5.value}" } }, "80": { "default": { "value": "{colors.violet.6.value}" }, "hovered": { "value": "{colors.violet.5.value}" }, "pressed": { "value": "{colors.violet.4.value}" } }, "90": { "default": { "value": "{colors.violet.5.value}" }, "hovered": { "value": "{colors.violet.6.value}" }, "pressed": { "value": "{colors.violet.7.value}" } }, "100": { "default": { "value": "{colors.violet.3.value}" }, "hovered": { "value": "{colors.violet.4.value}" }, "pressed": { "value": "{colors.violet.5.value}" } } } }, "inverted": { "default": { "value": "{colors.violet.14.value}" }, "hovered": { "value": "{colors.violet.13.value}" }, "pressed": { "value": "{colors.violet.12.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.violet.14.value}" }, "hovered": { "value": "{colors.violet.13.value}" }, "pressed": { "value": "{colors.violet.12.value}" } }, "2": { "default": { "value": "{colors.violet.13.value}" }, "hovered": { "value": "{colors.violet.12.value}" }, "pressed": { "value": "{colors.violet.11.value}" } }, "3": { "default": { "value": "{colors.violet.12.value}" }, "hovered": { "value": "{colors.violet.11.value}" }, "pressed": { "value": "{colors.violet.10.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.violet.6.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.violet.6.value}", "transparent": 92 } }, "hovered": { "value": "{colors.violet.6.value}", "transparent": 84 }, "pressed": { "value": "{colors.violet.6.value}", "transparent": 76 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.violet.3.value}" }, "hovered": { "value": "{colors.violet.4.value}" }, "pressed": { "value": "{colors.violet.5.value}" } }, "high": { "default": { "value": "{colors.violet.6.value}" }, "hovered": { "value": "{colors.violet.5.value}" }, "pressed": { "value": "{colors.violet.4.value}" } }, "low": { "default": { "value": "{colors.violet.7.value}" }, "hovered": { "value": "{colors.violet.6.value}" }, "pressed": { "value": "{colors.violet.5.value}" } } } } } }, "blue": { "origin": { "default": { "value": "{colors.blue.light.origin.default.value}" }, "hovered": { "value": "{colors.blue.light.origin.hovered.value}" }, "pressed": { "value": "{colors.blue.light.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.blue.light.on.origin.default.value}" }, "hovered": { "value": "{colors.blue.light.on.origin.hovered.value}" }, "pressed": { "value": "{colors.blue.light.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.blue.9.value}" }, "hovered": { "value": "{colors.blue.8.value}" }, "pressed": { "value": "{colors.blue.7.value}" } }, "60": { "default": { "value": "{colors.blue.10.value}" }, "hovered": { "value": "{colors.blue.9.value}" }, "pressed": { "value": "{colors.blue.8.value}" } }, "70": { "default": { "value": "{colors.blue.7.value}" }, "hovered": { "value": "{colors.blue.6.value}" }, "pressed": { "value": "{colors.blue.5.value}" } }, "80": { "default": { "value": "{colors.blue.6.value}" }, "hovered": { "value": "{colors.blue.5.value}" }, "pressed": { "value": "{colors.blue.4.value}" } }, "90": { "default": { "value": "{colors.blue.5.value}" }, "hovered": { "value": "{colors.blue.6.value}" }, "pressed": { "value": "{colors.blue.7.value}" } }, "100": { "default": { "value": "{colors.blue.3.value}" }, "hovered": { "value": "{colors.blue.4.value}" }, "pressed": { "value": "{colors.blue.5.value}" } } } }, "inverted": { "default": { "value": "{colors.blue.14.value}" }, "hovered": { "value": "{colors.blue.13.value}" }, "pressed": { "value": "{colors.blue.12.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.blue.14.value}" }, "hovered": { "value": "{colors.blue.13.value}" }, "pressed": { "value": "{colors.blue.12.value}" } }, "2": { "default": { "value": "{colors.blue.13.value}" }, "hovered": { "value": "{colors.blue.12.value}" }, "pressed": { "value": "{colors.blue.11.value}" } }, "3": { "default": { "value": "{colors.blue.12.value}" }, "hovered": { "value": "{colors.blue.11.value}" }, "pressed": { "value": "{colors.blue.10.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.blue.6.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.blue.6.value}", "transparent": 92 } }, "hovered": { "value": "{colors.blue.6.value}", "transparent": 84 }, "pressed": { "value": "{colors.blue.6.value}", "transparent": 76 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.blue.3.value}" }, "hovered": { "value": "{colors.blue.4.value}" }, "pressed": { "value": "{colors.blue.5.value}" } }, "high": { "default": { "value": "{colors.blue.6.value}" }, "hovered": { "value": "{colors.blue.5.value}" }, "pressed": { "value": "{colors.blue.4.value}" } }, "low": { "default": { "value": "{colors.blue.7.value}" }, "hovered": { "value": "{colors.blue.6.value}" }, "pressed": { "value": "{colors.blue.5.value}" } } } } } }, "cyan": { "origin": { "default": { "value": "{colors.cyan.light.origin.default.value}" }, "hovered": { "value": "{colors.cyan.light.origin.hovered.value}" }, "pressed": { "value": "{colors.cyan.light.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.cyan.light.on.origin.default.value}" }, "hovered": { "value": "{colors.cyan.light.on.origin.hovered.value}" }, "pressed": { "value": "{colors.cyan.light.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.cyan.9.value}" }, "hovered": { "value": "{colors.cyan.8.value}" }, "pressed": { "value": "{colors.cyan.7.value}" } }, "60": { "default": { "value": "{colors.cyan.10.value}" }, "hovered": { "value": "{colors.cyan.9.value}" }, "pressed": { "value": "{colors.cyan.8.value}" } }, "70": { "default": { "value": "{colors.cyan.7.value}" }, "hovered": { "value": "{colors.cyan.6.value}" }, "pressed": { "value": "{colors.cyan.5.value}" } }, "80": { "default": { "value": "{colors.cyan.6.value}" }, "hovered": { "value": "{colors.cyan.5.value}" }, "pressed": { "value": "{colors.cyan.4.value}" } }, "90": { "default": { "value": "{colors.cyan.5.value}" }, "hovered": { "value": "{colors.cyan.6.value}" }, "pressed": { "value": "{colors.cyan.7.value}" } }, "100": { "default": { "value": "{colors.cyan.3.value}" }, "hovered": { "value": "{colors.cyan.4.value}" }, "pressed": { "value": "{colors.cyan.5.value}" } } } }, "inverted": { "default": { "value": "{colors.cyan.14.value}" }, "hovered": { "value": "{colors.cyan.13.value}" }, "pressed": { "value": "{colors.cyan.12.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.cyan.14.value}" }, "hovered": { "value": "{colors.cyan.13.value}" }, "pressed": { "value": "{colors.cyan.12.value}" } }, "2": { "default": { "value": "{colors.cyan.13.value}" }, "hovered": { "value": "{colors.cyan.12.value}" }, "pressed": { "value": "{colors.cyan.11.value}" } }, "3": { "default": { "value": "{colors.cyan.12.value}" }, "hovered": { "value": "{colors.cyan.11.value}" }, "pressed": { "value": "{colors.cyan.10.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.cyan.6.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.cyan.6.value}", "transparent": 92 } }, "hovered": { "value": "{colors.cyan.6.value}", "transparent": 84 }, "pressed": { "value": "{colors.cyan.6.value}", "transparent": 76 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.cyan.3.value}" }, "hovered": { "value": "{colors.cyan.4.value}" }, "pressed": { "value": "{colors.cyan.5.value}" } }, "high": { "default": { "value": "{colors.cyan.6.value}" }, "hovered": { "value": "{colors.cyan.5.value}" }, "pressed": { "value": "{colors.cyan.4.value}" } }, "low": { "default": { "value": "{colors.cyan.7.value}" }, "hovered": { "value": "{colors.cyan.6.value}" }, "pressed": { "value": "{colors.cyan.5.value}" } } } } } }, "turquoise": { "origin": { "default": { "value": "{colors.turquoise.light.origin.default.value}" }, "hovered": { "value": "{colors.turquoise.light.origin.hovered.value}" }, "pressed": { "value": "{colors.turquoise.light.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.turquoise.light.on.origin.default.value}" }, "hovered": { "value": "{colors.turquoise.light.on.origin.hovered.value}" }, "pressed": { "value": "{colors.turquoise.light.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.turquoise.9.value}" }, "hovered": { "value": "{colors.turquoise.8.value}" }, "pressed": { "value": "{colors.turquoise.7.value}" } }, "60": { "default": { "value": "{colors.turquoise.10.value}" }, "hovered": { "value": "{colors.turquoise.9.value}" }, "pressed": { "value": "{colors.turquoise.8.value}" } }, "70": { "default": { "value": "{colors.turquoise.7.value}" }, "hovered": { "value": "{colors.turquoise.6.value}" }, "pressed": { "value": "{colors.turquoise.5.value}" } }, "80": { "default": { "value": "{colors.turquoise.6.value}" }, "hovered": { "value": "{colors.turquoise.5.value}" }, "pressed": { "value": "{colors.turquoise.4.value}" } }, "90": { "default": { "value": "{colors.turquoise.5.value}" }, "hovered": { "value": "{colors.turquoise.6.value}" }, "pressed": { "value": "{colors.turquoise.7.value}" } }, "100": { "default": { "value": "{colors.turquoise.3.value}" }, "hovered": { "value": "{colors.turquoise.4.value}" }, "pressed": { "value": "{colors.turquoise.5.value}" } } } }, "inverted": { "default": { "value": "{colors.turquoise.14.value}" }, "hovered": { "value": "{colors.turquoise.13.value}" }, "pressed": { "value": "{colors.turquoise.12.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.turquoise.14.value}" }, "hovered": { "value": "{colors.turquoise.13.value}" }, "pressed": { "value": "{colors.turquoise.12.value}" } }, "2": { "default": { "value": "{colors.turquoise.13.value}" }, "hovered": { "value": "{colors.turquoise.12.value}" }, "pressed": { "value": "{colors.turquoise.11.value}" } }, "3": { "default": { "value": "{colors.turquoise.12.value}" }, "hovered": { "value": "{colors.turquoise.11.value}" }, "pressed": { "value": "{colors.turquoise.10.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.turquoise.6.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.turquoise.6.value}", "transparent": 92 } }, "hovered": { "value": "{colors.turquoise.6.value}", "transparent": 84 }, "pressed": { "value": "{colors.turquoise.6.value}", "transparent": 76 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.turquoise.3.value}" }, "hovered": { "value": "{colors.turquoise.4.value}" }, "pressed": { "value": "{colors.turquoise.5.value}" } }, "high": { "default": { "value": "{colors.turquoise.6.value}" }, "hovered": { "value": "{colors.turquoise.5.value}" }, "pressed": { "value": "{colors.turquoise.4.value}" } }, "low": { "default": { "value": "{colors.turquoise.7.value}" }, "hovered": { "value": "{colors.turquoise.6.value}" }, "pressed": { "value": "{colors.turquoise.5.value}" } } } } } }, "green": { "origin": { "default": { "value": "{colors.green.light.origin.default.value}" }, "hovered": { "value": "{colors.green.light.origin.hovered.value}" }, "pressed": { "value": "{colors.green.light.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.green.light.on.origin.default.value}" }, "hovered": { "value": "{colors.green.light.on.origin.hovered.value}" }, "pressed": { "value": "{colors.green.light.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.green.9.value}" }, "hovered": { "value": "{colors.green.8.value}" }, "pressed": { "value": "{colors.green.7.value}" } }, "60": { "default": { "value": "{colors.green.10.value}" }, "hovered": { "value": "{colors.green.9.value}" }, "pressed": { "value": "{colors.green.8.value}" } }, "70": { "default": { "value": "{colors.green.7.value}" }, "hovered": { "value": "{colors.green.6.value}" }, "pressed": { "value": "{colors.green.5.value}" } }, "80": { "default": { "value": "{colors.green.6.value}" }, "hovered": { "value": "{colors.green.5.value}" }, "pressed": { "value": "{colors.green.4.value}" } }, "90": { "default": { "value": "{colors.green.5.value}" }, "hovered": { "value": "{colors.green.6.value}" }, "pressed": { "value": "{colors.green.7.value}" } }, "100": { "default": { "value": "{colors.green.3.value}" }, "hovered": { "value": "{colors.green.4.value}" }, "pressed": { "value": "{colors.green.5.value}" } } } }, "inverted": { "default": { "value": "{colors.green.14.value}" }, "hovered": { "value": "{colors.green.13.value}" }, "pressed": { "value": "{colors.green.12.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.green.14.value}" }, "hovered": { "value": "{colors.green.13.value}" }, "pressed": { "value": "{colors.green.12.value}" } }, "2": { "default": { "value": "{colors.green.13.value}" }, "hovered": { "value": "{colors.green.12.value}" }, "pressed": { "value": "{colors.green.11.value}" } }, "3": { "default": { "value": "{colors.green.12.value}" }, "hovered": { "value": "{colors.green.11.value}" }, "pressed": { "value": "{colors.green.10.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.green.6.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.green.6.value}", "transparent": 92 } }, "hovered": { "value": "{colors.green.6.value}", "transparent": 84 }, "pressed": { "value": "{colors.green.6.value}", "transparent": 76 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.green.3.value}" }, "hovered": { "value": "{colors.green.4.value}" }, "pressed": { "value": "{colors.green.5.value}" } }, "high": { "default": { "value": "{colors.green.6.value}" }, "hovered": { "value": "{colors.green.5.value}" }, "pressed": { "value": "{colors.green.4.value}" } }, "low": { "default": { "value": "{colors.green.7.value}" }, "hovered": { "value": "{colors.green.6.value}" }, "pressed": { "value": "{colors.green.5.value}" } } } } } }, "primary": { "origin": { "default": { "value": "{colors.primary.light.origin.default.value}" }, "hovered": { "value": "{colors.primary.light.origin.hovered.value}" }, "pressed": { "value": "{colors.primary.light.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.primary.light.on.origin.default.value}" }, "hovered": { "value": "{colors.primary.light.on.origin.hovered.value}" }, "pressed": { "value": "{colors.primary.light.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.primary.9.value}" }, "hovered": { "value": "{colors.primary.8.value}" }, "pressed": { "value": "{colors.primary.7.value}" } }, "60": { "default": { "value": "{colors.primary.10.value}" }, "hovered": { "value": "{colors.primary.9.value}" }, "pressed": { "value": "{colors.primary.8.value}" } }, "70": { "default": { "value": "{colors.primary.7.value}" }, "hovered": { "value": "{colors.primary.6.value}" }, "pressed": { "value": "{colors.primary.5.value}" } }, "80": { "default": { "value": "{colors.primary.6.value}" }, "hovered": { "value": "{colors.primary.5.value}" }, "pressed": { "value": "{colors.primary.4.value}" } }, "90": { "default": { "value": "{colors.primary.5.value}" }, "hovered": { "value": "{colors.primary.6.value}" }, "pressed": { "value": "{colors.primary.7.value}" } }, "100": { "default": { "value": "{colors.primary.3.value}" }, "hovered": { "value": "{colors.primary.4.value}" }, "pressed": { "value": "{colors.primary.5.value}" } } } }, "inverted": { "default": { "value": "{colors.primary.14.value}" }, "hovered": { "value": "{colors.primary.13.value}" }, "pressed": { "value": "{colors.primary.12.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.primary.14.value}" }, "hovered": { "value": "{colors.primary.13.value}" }, "pressed": { "value": "{colors.primary.12.value}" } }, "2": { "default": { "value": "{colors.primary.13.value}" }, "hovered": { "value": "{colors.primary.12.value}" }, "pressed": { "value": "{colors.primary.11.value}" } }, "3": { "default": { "value": "{colors.primary.12.value}" }, "hovered": { "value": "{colors.primary.11.value}" }, "pressed": { "value": "{colors.primary.10.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.primary.6.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.primary.6.value}", "transparent": 92 } }, "hovered": { "value": "{colors.primary.6.value}", "transparent": 84 }, "pressed": { "value": "{colors.primary.6.value}", "transparent": 76 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.primary.3.value}" }, "hovered": { "value": "{colors.primary.4.value}" }, "pressed": { "value": "{colors.primary.5.value}" } }, "high": { "default": { "value": "{colors.primary.6.value}" }, "hovered": { "value": "{colors.primary.5.value}" }, "pressed": { "value": "{colors.primary.4.value}" } }, "low": { "default": { "value": "{colors.primary.7.value}" }, "hovered": { "value": "{colors.primary.6.value}" }, "pressed": { "value": "{colors.primary.5.value}" } } } } } } }, "dark": { "neutral": { "origin": { "default": { "value": "{colors.neutral.dark.origin.default.value}" }, "hovered": { "value": "{colors.neutral.dark.origin.hovered.value}" }, "pressed": { "value": "{colors.neutral.dark.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.neutral.dark.on.origin.default.value}" }, "hovered": { "value": "{colors.neutral.dark.on.origin.hovered.value}" }, "pressed": { "value": "{colors.neutral.dark.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.neutral.5.value}" }, "hovered": { "value": "{colors.neutral.4.value}" }, "pressed": { "value": "{colors.neutral.3.value}" } }, "60": { "default": { "value": "{colors.neutral.6.value}" }, "hovered": { "value": "{colors.neutral.5.value}" }, "pressed": { "value": "{colors.neutral.4.value}" } }, "70": { "default": { "value": "{colors.neutral.8.value}" }, "hovered": { "value": "{colors.neutral.7.value}" }, "pressed": { "value": "{colors.neutral.6.value}" } }, "80": { "default": { "value": "{colors.neutral.9.value}" }, "hovered": { "value": "{colors.neutral.8.value}" }, "pressed": { "value": "{colors.neutral.7.value}" } }, "90": { "default": { "value": "{colors.neutral.10.value}" }, "hovered": { "value": "{colors.neutral.9.value}" }, "pressed": { "value": "{colors.neutral.8.value}" } }, "100": { "default": { "value": "{colors.neutral.12.value}" }, "hovered": { "value": "{colors.neutral.11.value}" }, "pressed": { "value": "{colors.neutral.10.value}" } } } }, "inverted": { "default": { "value": "{colors.neutral.3.value}" }, "hovered": { "value": "{colors.neutral.4.value}" }, "pressed": { "value": "{colors.neutral.5.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.neutral.3.value}" }, "hovered": { "value": "{colors.neutral.4.value}" }, "pressed": { "value": "{colors.neutral.5.value}" } }, "2": { "default": { "value": "{colors.neutral.2.value}" }, "hovered": { "value": "{colors.neutral.3.value}" }, "pressed": { "value": "{colors.neutral.4.value}" } }, "3": { "default": { "value": "{colors.neutral.1.value}" }, "hovered": { "value": "{colors.neutral.2.value}" }, "pressed": { "value": "{colors.neutral.3.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.neutral.9.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.neutral.9.value}", "transparent": 84 } }, "hovered": { "value": "{colors.neutral.9.value}", "transparent": 76 }, "pressed": { "value": "{colors.neutral.9.value}", "transparent": 68 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.neutral.12.value}" }, "hovered": { "value": "{colors.neutral.11.value}" }, "pressed": { "value": "{colors.neutral.10.value}" } }, "high": { "default": { "value": "{colors.neutral.9.value}" }, "hovered": { "value": "{colors.neutral.8.value}" }, "pressed": { "value": "{colors.neutral.7.value}" } }, "low": { "default": { "value": "{colors.neutral.8.value}" }, "hovered": { "value": "{colors.neutral.7.value}" }, "pressed": { "value": "{colors.neutral.6.value}" } } } } } }, "brand": { "origin": { "default": { "value": "{colors.brand.dark.origin.default.value}" }, "hovered": { "value": "{colors.brand.dark.origin.hovered.value}" }, "pressed": { "value": "{colors.brand.dark.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.brand.dark.on.origin.default.value}" }, "hovered": { "value": "{colors.brand.dark.on.origin.hovered.value}" }, "pressed": { "value": "{colors.brand.dark.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.brand.5.value}" }, "hovered": { "value": "{colors.brand.4.value}" }, "pressed": { "value": "{colors.brand.3.value}" } }, "60": { "default": { "value": "{colors.brand.6.value}" }, "hovered": { "value": "{colors.brand.5.value}" }, "pressed": { "value": "{colors.brand.4.value}" } }, "70": { "default": { "value": "{colors.brand.8.value}" }, "hovered": { "value": "{colors.brand.7.value}" }, "pressed": { "value": "{colors.brand.6.value}" } }, "80": { "default": { "value": "{colors.brand.9.value}" }, "hovered": { "value": "{colors.brand.8.value}" }, "pressed": { "value": "{colors.brand.7.value}" } }, "90": { "default": { "value": "{colors.brand.10.value}" }, "hovered": { "value": "{colors.brand.9.value}" }, "pressed": { "value": "{colors.brand.8.value}" } }, "100": { "default": { "value": "{colors.brand.12.value}" }, "hovered": { "value": "{colors.brand.11.value}" }, "pressed": { "value": "{colors.brand.10.value}" } } } }, "inverted": { "default": { "value": "{colors.brand.3.value}" }, "hovered": { "value": "{colors.brand.4.value}" }, "pressed": { "value": "{colors.brand.5.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.brand.3.value}" }, "hovered": { "value": "{colors.brand.4.value}" }, "pressed": { "value": "{colors.brand.5.value}" } }, "2": { "default": { "value": "{colors.brand.2.value}" }, "hovered": { "value": "{colors.brand.3.value}" }, "pressed": { "value": "{colors.brand.4.value}" } }, "3": { "default": { "value": "{colors.brand.1.value}" }, "hovered": { "value": "{colors.brand.2.value}" }, "pressed": { "value": "{colors.brand.3.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.brand.9.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.brand.9.value}", "transparent": 84 } }, "hovered": { "value": "{colors.brand.9.value}", "transparent": 76 }, "pressed": { "value": "{colors.brand.9.value}", "transparent": 68 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.brand.12.value}" }, "hovered": { "value": "{colors.brand.11.value}" }, "pressed": { "value": "{colors.brand.10.value}" } }, "high": { "default": { "value": "{colors.brand.9.value}" }, "hovered": { "value": "{colors.brand.8.value}" }, "pressed": { "value": "{colors.brand.7.value}" } }, "low": { "default": { "value": "{colors.brand.8.value}" }, "hovered": { "value": "{colors.brand.7.value}" }, "pressed": { "value": "{colors.brand.6.value}" } } } } } }, "informational": { "origin": { "default": { "value": "{colors.informational.dark.origin.default.value}" }, "hovered": { "value": "{colors.informational.dark.origin.hovered.value}" }, "pressed": { "value": "{colors.informational.dark.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.informational.dark.on.origin.default.value}" }, "hovered": { "value": "{colors.informational.dark.on.origin.hovered.value}" }, "pressed": { "value": "{colors.informational.dark.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.informational.5.value}" }, "hovered": { "value": "{colors.informational.4.value}" }, "pressed": { "value": "{colors.informational.3.value}" } }, "60": { "default": { "value": "{colors.informational.6.value}" }, "hovered": { "value": "{colors.informational.5.value}" }, "pressed": { "value": "{colors.informational.4.value}" } }, "70": { "default": { "value": "{colors.informational.8.value}" }, "hovered": { "value": "{colors.informational.7.value}" }, "pressed": { "value": "{colors.informational.6.value}" } }, "80": { "default": { "value": "{colors.informational.9.value}" }, "hovered": { "value": "{colors.informational.8.value}" }, "pressed": { "value": "{colors.informational.7.value}" } }, "90": { "default": { "value": "{colors.informational.10.value}" }, "hovered": { "value": "{colors.informational.9.value}" }, "pressed": { "value": "{colors.informational.8.value}" } }, "100": { "default": { "value": "{colors.informational.12.value}" }, "hovered": { "value": "{colors.informational.11.value}" }, "pressed": { "value": "{colors.informational.10.value}" } } } }, "inverted": { "default": { "value": "{colors.informational.3.value}" }, "hovered": { "value": "{colors.informational.4.value}" }, "pressed": { "value": "{colors.informational.5.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.informational.3.value}" }, "hovered": { "value": "{colors.informational.4.value}" }, "pressed": { "value": "{colors.informational.5.value}" } }, "2": { "default": { "value": "{colors.informational.2.value}" }, "hovered": { "value": "{colors.informational.3.value}" }, "pressed": { "value": "{colors.informational.4.value}" } }, "3": { "default": { "value": "{colors.informational.1.value}" }, "hovered": { "value": "{colors.informational.2.value}" }, "pressed": { "value": "{colors.informational.3.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.informational.9.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.informational.9.value}", "transparent": 84 } }, "hovered": { "value": "{colors.informational.9.value}", "transparent": 76 }, "pressed": { "value": "{colors.informational.9.value}", "transparent": 68 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.informational.12.value}" }, "hovered": { "value": "{colors.informational.11.value}" }, "pressed": { "value": "{colors.informational.10.value}" } }, "high": { "default": { "value": "{colors.informational.9.value}" }, "hovered": { "value": "{colors.informational.8.value}" }, "pressed": { "value": "{colors.informational.7.value}" } }, "low": { "default": { "value": "{colors.informational.8.value}" }, "hovered": { "value": "{colors.informational.7.value}" }, "pressed": { "value": "{colors.informational.6.value}" } } } } } }, "warning": { "origin": { "default": { "value": "{colors.warning.dark.origin.default.value}" }, "hovered": { "value": "{colors.warning.dark.origin.hovered.value}" }, "pressed": { "value": "{colors.warning.dark.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.warning.dark.on.origin.default.value}" }, "hovered": { "value": "{colors.warning.dark.on.origin.hovered.value}" }, "pressed": { "value": "{colors.warning.dark.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.warning.5.value}" }, "hovered": { "value": "{colors.warning.4.value}" }, "pressed": { "value": "{colors.warning.3.value}" } }, "60": { "default": { "value": "{colors.warning.6.value}" }, "hovered": { "value": "{colors.warning.5.value}" }, "pressed": { "value": "{colors.warning.4.value}" } }, "70": { "default": { "value": "{colors.warning.8.value}" }, "hovered": { "value": "{colors.warning.7.value}" }, "pressed": { "value": "{colors.warning.6.value}" } }, "80": { "default": { "value": "{colors.warning.9.value}" }, "hovered": { "value": "{colors.warning.8.value}" }, "pressed": { "value": "{colors.warning.7.value}" } }, "90": { "default": { "value": "{colors.warning.10.value}" }, "hovered": { "value": "{colors.warning.9.value}" }, "pressed": { "value": "{colors.warning.8.value}" } }, "100": { "default": { "value": "{colors.warning.12.value}" }, "hovered": { "value": "{colors.warning.11.value}" }, "pressed": { "value": "{colors.warning.10.value}" } } } }, "inverted": { "default": { "value": "{colors.warning.3.value}" }, "hovered": { "value": "{colors.warning.4.value}" }, "pressed": { "value": "{colors.warning.5.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.warning.3.value}" }, "hovered": { "value": "{colors.warning.4.value}" }, "pressed": { "value": "{colors.warning.5.value}" } }, "2": { "default": { "value": "{colors.warning.2.value}" }, "hovered": { "value": "{colors.warning.3.value}" }, "pressed": { "value": "{colors.warning.4.value}" } }, "3": { "default": { "value": "{colors.warning.1.value}" }, "hovered": { "value": "{colors.warning.2.value}" }, "pressed": { "value": "{colors.warning.3.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.warning.9.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.warning.9.value}", "transparent": 84 } }, "hovered": { "value": "{colors.warning.9.value}", "transparent": 76 }, "pressed": { "value": "{colors.warning.9.value}", "transparent": 68 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.warning.12.value}" }, "hovered": { "value": "{colors.warning.11.value}" }, "pressed": { "value": "{colors.warning.10.value}" } }, "high": { "default": { "value": "{colors.warning.9.value}" }, "hovered": { "value": "{colors.warning.8.value}" }, "pressed": { "value": "{colors.warning.7.value}" } }, "low": { "default": { "value": "{colors.warning.8.value}" }, "hovered": { "value": "{colors.warning.7.value}" }, "pressed": { "value": "{colors.warning.6.value}" } } } } } }, "successful": { "origin": { "default": { "value": "{colors.successful.dark.origin.default.value}" }, "hovered": { "value": "{colors.successful.dark.origin.hovered.value}" }, "pressed": { "value": "{colors.successful.dark.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.successful.dark.on.origin.default.value}" }, "hovered": { "value": "{colors.successful.dark.on.origin.hovered.value}" }, "pressed": { "value": "{colors.successful.dark.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.successful.5.value}" }, "hovered": { "value": "{colors.successful.4.value}" }, "pressed": { "value": "{colors.successful.3.value}" } }, "60": { "default": { "value": "{colors.successful.6.value}" }, "hovered": { "value": "{colors.successful.5.value}" }, "pressed": { "value": "{colors.successful.4.value}" } }, "70": { "default": { "value": "{colors.successful.8.value}" }, "hovered": { "value": "{colors.successful.7.value}" }, "pressed": { "value": "{colors.successful.6.value}" } }, "80": { "default": { "value": "{colors.successful.9.value}" }, "hovered": { "value": "{colors.successful.8.value}" }, "pressed": { "value": "{colors.successful.7.value}" } }, "90": { "default": { "value": "{colors.successful.10.value}" }, "hovered": { "value": "{colors.successful.9.value}" }, "pressed": { "value": "{colors.successful.8.value}" } }, "100": { "default": { "value": "{colors.successful.12.value}" }, "hovered": { "value": "{colors.successful.11.value}" }, "pressed": { "value": "{colors.successful.10.value}" } } } }, "inverted": { "default": { "value": "{colors.successful.3.value}" }, "hovered": { "value": "{colors.successful.4.value}" }, "pressed": { "value": "{colors.successful.5.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.successful.3.value}" }, "hovered": { "value": "{colors.successful.4.value}" }, "pressed": { "value": "{colors.successful.5.value}" } }, "2": { "default": { "value": "{colors.successful.2.value}" }, "hovered": { "value": "{colors.successful.3.value}" }, "pressed": { "value": "{colors.successful.4.value}" } }, "3": { "default": { "value": "{colors.successful.1.value}" }, "hovered": { "value": "{colors.successful.2.value}" }, "pressed": { "value": "{colors.successful.3.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.successful.9.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.successful.9.value}", "transparent": 84 } }, "hovered": { "value": "{colors.successful.9.value}", "transparent": 76 }, "pressed": { "value": "{colors.successful.9.value}", "transparent": 68 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.successful.12.value}" }, "hovered": { "value": "{colors.successful.11.value}" }, "pressed": { "value": "{colors.successful.10.value}" } }, "high": { "default": { "value": "{colors.successful.9.value}" }, "hovered": { "value": "{colors.successful.8.value}" }, "pressed": { "value": "{colors.successful.7.value}" } }, "low": { "default": { "value": "{colors.successful.8.value}" }, "hovered": { "value": "{colors.successful.7.value}" }, "pressed": { "value": "{colors.successful.6.value}" } } } } } }, "critical": { "origin": { "default": { "value": "{colors.critical.dark.origin.default.value}" }, "hovered": { "value": "{colors.critical.dark.origin.hovered.value}" }, "pressed": { "value": "{colors.critical.dark.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.critical.dark.on.origin.default.value}" }, "hovered": { "value": "{colors.critical.dark.on.origin.hovered.value}" }, "pressed": { "value": "{colors.critical.dark.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.critical.5.value}" }, "hovered": { "value": "{colors.critical.4.value}" }, "pressed": { "value": "{colors.critical.3.value}" } }, "60": { "default": { "value": "{colors.critical.6.value}" }, "hovered": { "value": "{colors.critical.5.value}" }, "pressed": { "value": "{colors.critical.4.value}" } }, "70": { "default": { "value": "{colors.critical.8.value}" }, "hovered": { "value": "{colors.critical.7.value}" }, "pressed": { "value": "{colors.critical.6.value}" } }, "80": { "default": { "value": "{colors.critical.9.value}" }, "hovered": { "value": "{colors.critical.8.value}" }, "pressed": { "value": "{colors.critical.7.value}" } }, "90": { "default": { "value": "{colors.critical.10.value}" }, "hovered": { "value": "{colors.critical.9.value}" }, "pressed": { "value": "{colors.critical.8.value}" } }, "100": { "default": { "value": "{colors.critical.12.value}" }, "hovered": { "value": "{colors.critical.11.value}" }, "pressed": { "value": "{colors.critical.10.value}" } } } }, "inverted": { "default": { "value": "{colors.critical.3.value}" }, "hovered": { "value": "{colors.critical.4.value}" }, "pressed": { "value": "{colors.critical.5.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.critical.3.value}" }, "hovered": { "value": "{colors.critical.4.value}" }, "pressed": { "value": "{colors.critical.5.value}" } }, "2": { "default": { "value": "{colors.critical.2.value}" }, "hovered": { "value": "{colors.critical.3.value}" }, "pressed": { "value": "{colors.critical.4.value}" } }, "3": { "default": { "value": "{colors.critical.1.value}" }, "hovered": { "value": "{colors.critical.2.value}" }, "pressed": { "value": "{colors.critical.3.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.critical.9.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.critical.9.value}", "transparent": 84 } }, "hovered": { "value": "{colors.critical.9.value}", "transparent": 76 }, "pressed": { "value": "{colors.critical.9.value}", "transparent": 68 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.critical.12.value}" }, "hovered": { "value": "{colors.critical.11.value}" }, "pressed": { "value": "{colors.critical.10.value}" } }, "high": { "default": { "value": "{colors.critical.9.value}" }, "hovered": { "value": "{colors.critical.8.value}" }, "pressed": { "value": "{colors.critical.7.value}" } }, "low": { "default": { "value": "{colors.critical.8.value}" }, "hovered": { "value": "{colors.critical.7.value}" }, "pressed": { "value": "{colors.critical.6.value}" } } } } } }, "yellow": { "origin": { "default": { "value": "{colors.yellow.dark.origin.default.value}" }, "hovered": { "value": "{colors.yellow.dark.origin.hovered.value}" }, "pressed": { "value": "{colors.yellow.dark.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.yellow.dark.on.origin.default.value}" }, "hovered": { "value": "{colors.yellow.dark.on.origin.hovered.value}" }, "pressed": { "value": "{colors.yellow.dark.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.yellow.5.value}" }, "hovered": { "value": "{colors.yellow.4.value}" }, "pressed": { "value": "{colors.yellow.3.value}" } }, "60": { "default": { "value": "{colors.yellow.6.value}" }, "hovered": { "value": "{colors.yellow.5.value}" }, "pressed": { "value": "{colors.yellow.4.value}" } }, "70": { "default": { "value": "{colors.yellow.8.value}" }, "hovered": { "value": "{colors.yellow.7.value}" }, "pressed": { "value": "{colors.yellow.6.value}" } }, "80": { "default": { "value": "{colors.yellow.9.value}" }, "hovered": { "value": "{colors.yellow.8.value}" }, "pressed": { "value": "{colors.yellow.7.value}" } }, "90": { "default": { "value": "{colors.yellow.10.value}" }, "hovered": { "value": "{colors.yellow.9.value}" }, "pressed": { "value": "{colors.yellow.8.value}" } }, "100": { "default": { "value": "{colors.yellow.12.value}" }, "hovered": { "value": "{colors.yellow.11.value}" }, "pressed": { "value": "{colors.yellow.10.value}" } } } }, "inverted": { "default": { "value": "{colors.yellow.3.value}" }, "hovered": { "value": "{colors.yellow.4.value}" }, "pressed": { "value": "{colors.yellow.5.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.yellow.3.value}" }, "hovered": { "value": "{colors.yellow.4.value}" }, "pressed": { "value": "{colors.yellow.5.value}" } }, "2": { "default": { "value": "{colors.yellow.2.value}" }, "hovered": { "value": "{colors.yellow.3.value}" }, "pressed": { "value": "{colors.yellow.4.value}" } }, "3": { "default": { "value": "{colors.yellow.1.value}" }, "hovered": { "value": "{colors.yellow.2.value}" }, "pressed": { "value": "{colors.yellow.3.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.yellow.9.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.yellow.9.value}", "transparent": 84 } }, "hovered": { "value": "{colors.yellow.9.value}", "transparent": 76 }, "pressed": { "value": "{colors.yellow.9.value}", "transparent": 68 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.yellow.12.value}" }, "hovered": { "value": "{colors.yellow.11.value}" }, "pressed": { "value": "{colors.yellow.10.value}" } }, "high": { "default": { "value": "{colors.yellow.9.value}" }, "hovered": { "value": "{colors.yellow.8.value}" }, "pressed": { "value": "{colors.yellow.7.value}" } }, "low": { "default": { "value": "{colors.yellow.8.value}" }, "hovered": { "value": "{colors.yellow.7.value}" }, "pressed": { "value": "{colors.yellow.6.value}" } } } } } }, "orange": { "origin": { "default": { "value": "{colors.orange.dark.origin.default.value}" }, "hovered": { "value": "{colors.orange.dark.origin.hovered.value}" }, "pressed": { "value": "{colors.orange.dark.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.orange.dark.on.origin.default.value}" }, "hovered": { "value": "{colors.orange.dark.on.origin.hovered.value}" }, "pressed": { "value": "{colors.orange.dark.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.orange.5.value}" }, "hovered": { "value": "{colors.orange.4.value}" }, "pressed": { "value": "{colors.orange.3.value}" } }, "60": { "default": { "value": "{colors.orange.6.value}" }, "hovered": { "value": "{colors.orange.5.value}" }, "pressed": { "value": "{colors.orange.4.value}" } }, "70": { "default": { "value": "{colors.orange.8.value}" }, "hovered": { "value": "{colors.orange.7.value}" }, "pressed": { "value": "{colors.orange.6.value}" } }, "80": { "default": { "value": "{colors.orange.9.value}" }, "hovered": { "value": "{colors.orange.8.value}" }, "pressed": { "value": "{colors.orange.7.value}" } }, "90": { "default": { "value": "{colors.orange.10.value}" }, "hovered": { "value": "{colors.orange.9.value}" }, "pressed": { "value": "{colors.orange.8.value}" } }, "100": { "default": { "value": "{colors.orange.12.value}" }, "hovered": { "value": "{colors.orange.11.value}" }, "pressed": { "value": "{colors.orange.10.value}" } } } }, "inverted": { "default": { "value": "{colors.orange.3.value}" }, "hovered": { "value": "{colors.orange.4.value}" }, "pressed": { "value": "{colors.orange.5.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.orange.3.value}" }, "hovered": { "value": "{colors.orange.4.value}" }, "pressed": { "value": "{colors.orange.5.value}" } }, "2": { "default": { "value": "{colors.orange.2.value}" }, "hovered": { "value": "{colors.orange.3.value}" }, "pressed": { "value": "{colors.orange.4.value}" } }, "3": { "default": { "value": "{colors.orange.1.value}" }, "hovered": { "value": "{colors.orange.2.value}" }, "pressed": { "value": "{colors.orange.3.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.orange.9.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.orange.9.value}", "transparent": 84 } }, "hovered": { "value": "{colors.orange.9.value}", "transparent": 76 }, "pressed": { "value": "{colors.orange.9.value}", "transparent": 68 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.orange.12.value}" }, "hovered": { "value": "{colors.orange.11.value}" }, "pressed": { "value": "{colors.orange.10.value}" } }, "high": { "default": { "value": "{colors.orange.9.value}" }, "hovered": { "value": "{colors.orange.8.value}" }, "pressed": { "value": "{colors.orange.7.value}" } }, "low": { "default": { "value": "{colors.orange.8.value}" }, "hovered": { "value": "{colors.orange.7.value}" }, "pressed": { "value": "{colors.orange.6.value}" } } } } } }, "red": { "origin": { "default": { "value": "{colors.red.dark.origin.default.value}" }, "hovered": { "value": "{colors.red.dark.origin.hovered.value}" }, "pressed": { "value": "{colors.red.dark.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.red.dark.on.origin.default.value}" }, "hovered": { "value": "{colors.red.dark.on.origin.hovered.value}" }, "pressed": { "value": "{colors.red.dark.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.red.5.value}" }, "hovered": { "value": "{colors.red.4.value}" }, "pressed": { "value": "{colors.red.3.value}" } }, "60": { "default": { "value": "{colors.red.6.value}" }, "hovered": { "value": "{colors.red.5.value}" }, "pressed": { "value": "{colors.red.4.value}" } }, "70": { "default": { "value": "{colors.red.8.value}" }, "hovered": { "value": "{colors.red.7.value}" }, "pressed": { "value": "{colors.red.6.value}" } }, "80": { "default": { "value": "{colors.red.9.value}" }, "hovered": { "value": "{colors.red.8.value}" }, "pressed": { "value": "{colors.red.7.value}" } }, "90": { "default": { "value": "{colors.red.10.value}" }, "hovered": { "value": "{colors.red.9.value}" }, "pressed": { "value": "{colors.red.8.value}" } }, "100": { "default": { "value": "{colors.red.12.value}" }, "hovered": { "value": "{colors.red.11.value}" }, "pressed": { "value": "{colors.red.10.value}" } } } }, "inverted": { "default": { "value": "{colors.red.3.value}" }, "hovered": { "value": "{colors.red.4.value}" }, "pressed": { "value": "{colors.red.5.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.red.3.value}" }, "hovered": { "value": "{colors.red.4.value}" }, "pressed": { "value": "{colors.red.5.value}" } }, "2": { "default": { "value": "{colors.red.2.value}" }, "hovered": { "value": "{colors.red.3.value}" }, "pressed": { "value": "{colors.red.4.value}" } }, "3": { "default": { "value": "{colors.red.1.value}" }, "hovered": { "value": "{colors.red.2.value}" }, "pressed": { "value": "{colors.red.3.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.red.9.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.red.9.value}", "transparent": 84 } }, "hovered": { "value": "{colors.red.9.value}", "transparent": 76 }, "pressed": { "value": "{colors.red.9.value}", "transparent": 68 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.red.12.value}" }, "hovered": { "value": "{colors.red.11.value}" }, "pressed": { "value": "{colors.red.10.value}" } }, "high": { "default": { "value": "{colors.red.9.value}" }, "hovered": { "value": "{colors.red.8.value}" }, "pressed": { "value": "{colors.red.7.value}" } }, "low": { "default": { "value": "{colors.red.8.value}" }, "hovered": { "value": "{colors.red.7.value}" }, "pressed": { "value": "{colors.red.6.value}" } } } } } }, "pink": { "origin": { "default": { "value": "{colors.pink.dark.origin.default.value}" }, "hovered": { "value": "{colors.pink.dark.origin.hovered.value}" }, "pressed": { "value": "{colors.pink.dark.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.pink.dark.on.origin.default.value}" }, "hovered": { "value": "{colors.pink.dark.on.origin.hovered.value}" }, "pressed": { "value": "{colors.pink.dark.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.pink.5.value}" }, "hovered": { "value": "{colors.pink.4.value}" }, "pressed": { "value": "{colors.pink.3.value}" } }, "60": { "default": { "value": "{colors.pink.6.value}" }, "hovered": { "value": "{colors.pink.5.value}" }, "pressed": { "value": "{colors.pink.4.value}" } }, "70": { "default": { "value": "{colors.pink.8.value}" }, "hovered": { "value": "{colors.pink.7.value}" }, "pressed": { "value": "{colors.pink.6.value}" } }, "80": { "default": { "value": "{colors.pink.9.value}" }, "hovered": { "value": "{colors.pink.8.value}" }, "pressed": { "value": "{colors.pink.7.value}" } }, "90": { "default": { "value": "{colors.pink.10.value}" }, "hovered": { "value": "{colors.pink.9.value}" }, "pressed": { "value": "{colors.pink.8.value}" } }, "100": { "default": { "value": "{colors.pink.12.value}" }, "hovered": { "value": "{colors.pink.11.value}" }, "pressed": { "value": "{colors.pink.10.value}" } } } }, "inverted": { "default": { "value": "{colors.pink.3.value}" }, "hovered": { "value": "{colors.pink.4.value}" }, "pressed": { "value": "{colors.pink.5.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.pink.3.value}" }, "hovered": { "value": "{colors.pink.4.value}" }, "pressed": { "value": "{colors.pink.5.value}" } }, "2": { "default": { "value": "{colors.pink.2.value}" }, "hovered": { "value": "{colors.pink.3.value}" }, "pressed": { "value": "{colors.pink.4.value}" } }, "3": { "default": { "value": "{colors.pink.1.value}" }, "hovered": { "value": "{colors.pink.2.value}" }, "pressed": { "value": "{colors.pink.3.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.pink.9.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.pink.9.value}", "transparent": 84 } }, "hovered": { "value": "{colors.pink.9.value}", "transparent": 76 }, "pressed": { "value": "{colors.pink.9.value}", "transparent": 68 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.pink.12.value}" }, "hovered": { "value": "{colors.pink.11.value}" }, "pressed": { "value": "{colors.pink.10.value}" } }, "high": { "default": { "value": "{colors.pink.9.value}" }, "hovered": { "value": "{colors.pink.8.value}" }, "pressed": { "value": "{colors.pink.7.value}" } }, "low": { "default": { "value": "{colors.pink.8.value}" }, "hovered": { "value": "{colors.pink.7.value}" }, "pressed": { "value": "{colors.pink.6.value}" } } } } } }, "violet": { "origin": { "default": { "value": "{colors.violet.dark.origin.default.value}" }, "hovered": { "value": "{colors.violet.dark.origin.hovered.value}" }, "pressed": { "value": "{colors.violet.dark.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.violet.dark.on.origin.default.value}" }, "hovered": { "value": "{colors.violet.dark.on.origin.hovered.value}" }, "pressed": { "value": "{colors.violet.dark.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.violet.5.value}" }, "hovered": { "value": "{colors.violet.4.value}" }, "pressed": { "value": "{colors.violet.3.value}" } }, "60": { "default": { "value": "{colors.violet.6.value}" }, "hovered": { "value": "{colors.violet.5.value}" }, "pressed": { "value": "{colors.violet.4.value}" } }, "70": { "default": { "value": "{colors.violet.8.value}" }, "hovered": { "value": "{colors.violet.7.value}" }, "pressed": { "value": "{colors.violet.6.value}" } }, "80": { "default": { "value": "{colors.violet.9.value}" }, "hovered": { "value": "{colors.violet.8.value}" }, "pressed": { "value": "{colors.violet.7.value}" } }, "90": { "default": { "value": "{colors.violet.10.value}" }, "hovered": { "value": "{colors.violet.9.value}" }, "pressed": { "value": "{colors.violet.8.value}" } }, "100": { "default": { "value": "{colors.violet.12.value}" }, "hovered": { "value": "{colors.violet.11.value}" }, "pressed": { "value": "{colors.violet.10.value}" } } } }, "inverted": { "default": { "value": "{colors.violet.3.value}" }, "hovered": { "value": "{colors.violet.4.value}" }, "pressed": { "value": "{colors.violet.5.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.violet.3.value}" }, "hovered": { "value": "{colors.violet.4.value}" }, "pressed": { "value": "{colors.violet.5.value}" } }, "2": { "default": { "value": "{colors.violet.2.value}" }, "hovered": { "value": "{colors.violet.3.value}" }, "pressed": { "value": "{colors.violet.4.value}" } }, "3": { "default": { "value": "{colors.violet.1.value}" }, "hovered": { "value": "{colors.violet.2.value}" }, "pressed": { "value": "{colors.violet.3.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.violet.9.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.violet.9.value}", "transparent": 84 } }, "hovered": { "value": "{colors.violet.9.value}", "transparent": 76 }, "pressed": { "value": "{colors.violet.9.value}", "transparent": 68 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.violet.12.value}" }, "hovered": { "value": "{colors.violet.11.value}" }, "pressed": { "value": "{colors.violet.10.value}" } }, "high": { "default": { "value": "{colors.violet.9.value}" }, "hovered": { "value": "{colors.violet.8.value}" }, "pressed": { "value": "{colors.violet.7.value}" } }, "low": { "default": { "value": "{colors.violet.8.value}" }, "hovered": { "value": "{colors.violet.7.value}" }, "pressed": { "value": "{colors.violet.6.value}" } } } } } }, "blue": { "origin": { "default": { "value": "{colors.blue.dark.origin.default.value}" }, "hovered": { "value": "{colors.blue.dark.origin.hovered.value}" }, "pressed": { "value": "{colors.blue.dark.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.blue.dark.on.origin.default.value}" }, "hovered": { "value": "{colors.blue.dark.on.origin.hovered.value}" }, "pressed": { "value": "{colors.blue.dark.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.blue.5.value}" }, "hovered": { "value": "{colors.blue.4.value}" }, "pressed": { "value": "{colors.blue.3.value}" } }, "60": { "default": { "value": "{colors.blue.6.value}" }, "hovered": { "value": "{colors.blue.5.value}" }, "pressed": { "value": "{colors.blue.4.value}" } }, "70": { "default": { "value": "{colors.blue.8.value}" }, "hovered": { "value": "{colors.blue.7.value}" }, "pressed": { "value": "{colors.blue.6.value}" } }, "80": { "default": { "value": "{colors.blue.9.value}" }, "hovered": { "value": "{colors.blue.8.value}" }, "pressed": { "value": "{colors.blue.7.value}" } }, "90": { "default": { "value": "{colors.blue.10.value}" }, "hovered": { "value": "{colors.blue.9.value}" }, "pressed": { "value": "{colors.blue.8.value}" } }, "100": { "default": { "value": "{colors.blue.12.value}" }, "hovered": { "value": "{colors.blue.11.value}" }, "pressed": { "value": "{colors.blue.10.value}" } } } }, "inverted": { "default": { "value": "{colors.blue.3.value}" }, "hovered": { "value": "{colors.blue.4.value}" }, "pressed": { "value": "{colors.blue.5.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.blue.3.value}" }, "hovered": { "value": "{colors.blue.4.value}" }, "pressed": { "value": "{colors.blue.5.value}" } }, "2": { "default": { "value": "{colors.blue.2.value}" }, "hovered": { "value": "{colors.blue.3.value}" }, "pressed": { "value": "{colors.blue.4.value}" } }, "3": { "default": { "value": "{colors.blue.1.value}" }, "hovered": { "value": "{colors.blue.2.value}" }, "pressed": { "value": "{colors.blue.3.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.blue.9.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.blue.9.value}", "transparent": 84 } }, "hovered": { "value": "{colors.blue.9.value}", "transparent": 76 }, "pressed": { "value": "{colors.blue.9.value}", "transparent": 68 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.blue.12.value}" }, "hovered": { "value": "{colors.blue.11.value}" }, "pressed": { "value": "{colors.blue.10.value}" } }, "high": { "default": { "value": "{colors.blue.9.value}" }, "hovered": { "value": "{colors.blue.8.value}" }, "pressed": { "value": "{colors.blue.7.value}" } }, "low": { "default": { "value": "{colors.blue.8.value}" }, "hovered": { "value": "{colors.blue.7.value}" }, "pressed": { "value": "{colors.blue.6.value}" } } } } } }, "cyan": { "origin": { "default": { "value": "{colors.cyan.dark.origin.default.value}" }, "hovered": { "value": "{colors.cyan.dark.origin.hovered.value}" }, "pressed": { "value": "{colors.cyan.dark.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.cyan.dark.on.origin.default.value}" }, "hovered": { "value": "{colors.cyan.dark.on.origin.hovered.value}" }, "pressed": { "value": "{colors.cyan.dark.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.cyan.5.value}" }, "hovered": { "value": "{colors.cyan.4.value}" }, "pressed": { "value": "{colors.cyan.3.value}" } }, "60": { "default": { "value": "{colors.cyan.6.value}" }, "hovered": { "value": "{colors.cyan.5.value}" }, "pressed": { "value": "{colors.cyan.4.value}" } }, "70": { "default": { "value": "{colors.cyan.8.value}" }, "hovered": { "value": "{colors.cyan.7.value}" }, "pressed": { "value": "{colors.cyan.6.value}" } }, "80": { "default": { "value": "{colors.cyan.9.value}" }, "hovered": { "value": "{colors.cyan.8.value}" }, "pressed": { "value": "{colors.cyan.7.value}" } }, "90": { "default": { "value": "{colors.cyan.10.value}" }, "hovered": { "value": "{colors.cyan.9.value}" }, "pressed": { "value": "{colors.cyan.8.value}" } }, "100": { "default": { "value": "{colors.cyan.12.value}" }, "hovered": { "value": "{colors.cyan.11.value}" }, "pressed": { "value": "{colors.cyan.10.value}" } } } }, "inverted": { "default": { "value": "{colors.cyan.3.value}" }, "hovered": { "value": "{colors.cyan.4.value}" }, "pressed": { "value": "{colors.cyan.5.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.cyan.3.value}" }, "hovered": { "value": "{colors.cyan.4.value}" }, "pressed": { "value": "{colors.cyan.5.value}" } }, "2": { "default": { "value": "{colors.cyan.2.value}" }, "hovered": { "value": "{colors.cyan.3.value}" }, "pressed": { "value": "{colors.cyan.4.value}" } }, "3": { "default": { "value": "{colors.cyan.1.value}" }, "hovered": { "value": "{colors.cyan.2.value}" }, "pressed": { "value": "{colors.cyan.3.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.cyan.9.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.cyan.9.value}", "transparent": 84 } }, "hovered": { "value": "{colors.cyan.9.value}", "transparent": 76 }, "pressed": { "value": "{colors.cyan.9.value}", "transparent": 68 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.cyan.12.value}" }, "hovered": { "value": "{colors.cyan.11.value}" }, "pressed": { "value": "{colors.cyan.10.value}" } }, "high": { "default": { "value": "{colors.cyan.9.value}" }, "hovered": { "value": "{colors.cyan.8.value}" }, "pressed": { "value": "{colors.cyan.7.value}" } }, "low": { "default": { "value": "{colors.cyan.8.value}" }, "hovered": { "value": "{colors.cyan.7.value}" }, "pressed": { "value": "{colors.cyan.6.value}" } } } } } }, "turquoise": { "origin": { "default": { "value": "{colors.turquoise.dark.origin.default.value}" }, "hovered": { "value": "{colors.turquoise.dark.origin.hovered.value}" }, "pressed": { "value": "{colors.turquoise.dark.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.turquoise.dark.on.origin.default.value}" }, "hovered": { "value": "{colors.turquoise.dark.on.origin.hovered.value}" }, "pressed": { "value": "{colors.turquoise.dark.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.turquoise.5.value}" }, "hovered": { "value": "{colors.turquoise.4.value}" }, "pressed": { "value": "{colors.turquoise.3.value}" } }, "60": { "default": { "value": "{colors.turquoise.6.value}" }, "hovered": { "value": "{colors.turquoise.5.value}" }, "pressed": { "value": "{colors.turquoise.4.value}" } }, "70": { "default": { "value": "{colors.turquoise.8.value}" }, "hovered": { "value": "{colors.turquoise.7.value}" }, "pressed": { "value": "{colors.turquoise.6.value}" } }, "80": { "default": { "value": "{colors.turquoise.9.value}" }, "hovered": { "value": "{colors.turquoise.8.value}" }, "pressed": { "value": "{colors.turquoise.7.value}" } }, "90": { "default": { "value": "{colors.turquoise.10.value}" }, "hovered": { "value": "{colors.turquoise.9.value}" }, "pressed": { "value": "{colors.turquoise.8.value}" } }, "100": { "default": { "value": "{colors.turquoise.12.value}" }, "hovered": { "value": "{colors.turquoise.11.value}" }, "pressed": { "value": "{colors.turquoise.10.value}" } } } }, "inverted": { "default": { "value": "{colors.turquoise.3.value}" }, "hovered": { "value": "{colors.turquoise.4.value}" }, "pressed": { "value": "{colors.turquoise.5.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.turquoise.3.value}" }, "hovered": { "value": "{colors.turquoise.4.value}" }, "pressed": { "value": "{colors.turquoise.5.value}" } }, "2": { "default": { "value": "{colors.turquoise.2.value}" }, "hovered": { "value": "{colors.turquoise.3.value}" }, "pressed": { "value": "{colors.turquoise.4.value}" } }, "3": { "default": { "value": "{colors.turquoise.1.value}" }, "hovered": { "value": "{colors.turquoise.2.value}" }, "pressed": { "value": "{colors.turquoise.3.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.turquoise.9.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.turquoise.9.value}", "transparent": 84 } }, "hovered": { "value": "{colors.turquoise.9.value}", "transparent": 76 }, "pressed": { "value": "{colors.turquoise.9.value}", "transparent": 68 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.turquoise.12.value}" }, "hovered": { "value": "{colors.turquoise.11.value}" }, "pressed": { "value": "{colors.turquoise.10.value}" } }, "high": { "default": { "value": "{colors.turquoise.9.value}" }, "hovered": { "value": "{colors.turquoise.8.value}" }, "pressed": { "value": "{colors.turquoise.7.value}" } }, "low": { "default": { "value": "{colors.turquoise.8.value}" }, "hovered": { "value": "{colors.turquoise.7.value}" }, "pressed": { "value": "{colors.turquoise.6.value}" } } } } } }, "green": { "origin": { "default": { "value": "{colors.green.dark.origin.default.value}" }, "hovered": { "value": "{colors.green.dark.origin.hovered.value}" }, "pressed": { "value": "{colors.green.dark.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.green.dark.on.origin.default.value}" }, "hovered": { "value": "{colors.green.dark.on.origin.hovered.value}" }, "pressed": { "value": "{colors.green.dark.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.green.5.value}" }, "hovered": { "value": "{colors.green.4.value}" }, "pressed": { "value": "{colors.green.3.value}" } }, "60": { "default": { "value": "{colors.green.6.value}" }, "hovered": { "value": "{colors.green.5.value}" }, "pressed": { "value": "{colors.green.4.value}" } }, "70": { "default": { "value": "{colors.green.8.value}" }, "hovered": { "value": "{colors.green.7.value}" }, "pressed": { "value": "{colors.green.6.value}" } }, "80": { "default": { "value": "{colors.green.9.value}" }, "hovered": { "value": "{colors.green.8.value}" }, "pressed": { "value": "{colors.green.7.value}" } }, "90": { "default": { "value": "{colors.green.10.value}" }, "hovered": { "value": "{colors.green.9.value}" }, "pressed": { "value": "{colors.green.8.value}" } }, "100": { "default": { "value": "{colors.green.12.value}" }, "hovered": { "value": "{colors.green.11.value}" }, "pressed": { "value": "{colors.green.10.value}" } } } }, "inverted": { "default": { "value": "{colors.green.3.value}" }, "hovered": { "value": "{colors.green.4.value}" }, "pressed": { "value": "{colors.green.5.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.green.3.value}" }, "hovered": { "value": "{colors.green.4.value}" }, "pressed": { "value": "{colors.green.5.value}" } }, "2": { "default": { "value": "{colors.green.2.value}" }, "hovered": { "value": "{colors.green.3.value}" }, "pressed": { "value": "{colors.green.4.value}" } }, "3": { "default": { "value": "{colors.green.1.value}" }, "hovered": { "value": "{colors.green.2.value}" }, "pressed": { "value": "{colors.green.3.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.green.9.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.green.9.value}", "transparent": 84 } }, "hovered": { "value": "{colors.green.9.value}", "transparent": 76 }, "pressed": { "value": "{colors.green.9.value}", "transparent": 68 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.green.12.value}" }, "hovered": { "value": "{colors.green.11.value}" }, "pressed": { "value": "{colors.green.10.value}" } }, "high": { "default": { "value": "{colors.green.9.value}" }, "hovered": { "value": "{colors.green.8.value}" }, "pressed": { "value": "{colors.green.7.value}" } }, "low": { "default": { "value": "{colors.green.8.value}" }, "hovered": { "value": "{colors.green.7.value}" }, "pressed": { "value": "{colors.green.6.value}" } } } } } }, "primary": { "origin": { "default": { "value": "{colors.primary.dark.origin.default.value}" }, "hovered": { "value": "{colors.primary.dark.origin.hovered.value}" }, "pressed": { "value": "{colors.primary.dark.origin.pressed.value}" } }, "on": { "origin": { "default": { "value": "{colors.primary.dark.on.origin.default.value}" }, "hovered": { "value": "{colors.primary.dark.on.origin.hovered.value}" }, "pressed": { "value": "{colors.primary.dark.on.origin.pressed.value}" } }, "bg": { "basic": { "emphasis": { "50": { "default": { "value": "{colors.primary.5.value}" }, "hovered": { "value": "{colors.primary.4.value}" }, "pressed": { "value": "{colors.primary.3.value}" } }, "60": { "default": { "value": "{colors.primary.6.value}" }, "hovered": { "value": "{colors.primary.5.value}" }, "pressed": { "value": "{colors.primary.4.value}" } }, "70": { "default": { "value": "{colors.primary.8.value}" }, "hovered": { "value": "{colors.primary.7.value}" }, "pressed": { "value": "{colors.primary.6.value}" } }, "80": { "default": { "value": "{colors.primary.9.value}" }, "hovered": { "value": "{colors.primary.8.value}" }, "pressed": { "value": "{colors.primary.7.value}" } }, "90": { "default": { "value": "{colors.primary.10.value}" }, "hovered": { "value": "{colors.primary.9.value}" }, "pressed": { "value": "{colors.primary.8.value}" } }, "100": { "default": { "value": "{colors.primary.12.value}" }, "hovered": { "value": "{colors.primary.11.value}" }, "pressed": { "value": "{colors.primary.10.value}" } } } }, "inverted": { "default": { "value": "{colors.primary.3.value}" }, "hovered": { "value": "{colors.primary.4.value}" }, "pressed": { "value": "{colors.primary.5.value}" } } } }, "bg": { "basic": { "level": { "1": { "default": { "value": "{colors.primary.3.value}" }, "hovered": { "value": "{colors.primary.4.value}" }, "pressed": { "value": "{colors.primary.5.value}" } }, "2": { "default": { "value": "{colors.primary.2.value}" }, "hovered": { "value": "{colors.primary.3.value}" }, "pressed": { "value": "{colors.primary.4.value}" } }, "3": { "default": { "value": "{colors.primary.1.value}" }, "hovered": { "value": "{colors.primary.2.value}" }, "pressed": { "value": "{colors.primary.3.value}" } } }, "transparent": { "full": { "default": { "value": "{colors.primary.9.value}", "transparent": 100 } }, "semi": { "default": { "value": "{colors.primary.9.value}", "transparent": 84 } }, "hovered": { "value": "{colors.primary.9.value}", "transparent": 76 }, "pressed": { "value": "{colors.primary.9.value}", "transparent": 68 } } }, "inverted": { "contrast": { "max": { "default": { "value": "{colors.primary.12.value}" }, "hovered": { "value": "{colors.primary.11.value}" }, "pressed": { "value": "{colors.primary.10.value}" } }, "high": { "default": { "value": "{colors.primary.9.value}" }, "hovered": { "value": "{colors.primary.8.value}" }, "pressed": { "value": "{colors.primary.7.value}" } }, "low": { "default": { "value": "{colors.primary.8.value}" }, "hovered": { "value": "{colors.primary.7.value}" }, "pressed": { "value": "{colors.primary.6.value}" } } } } } } } } }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
👩‍👧‍👦community feedback 🪩 🔥 🕺 cool topic some relevant topics, that we even also need to report in different rounds / to stakeholders
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants