diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 6587302..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..2420214 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +.github/ @VKCOM/vk-sec diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml deleted file mode 100644 index 5faf8e4..0000000 --- a/.github/workflows/nodejs.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Node.js CI - -on: [push, pull_request] - -jobs: - build: - - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [12.x] - - steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - run: yarn test \ No newline at end of file diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..a9c7cc3 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,64 @@ +name: "Publish" + +on: + workflow_dispatch: + inputs: + type: + description: "version type:" + required: true + type: choice + default: "minor" + options: + - patch + - minor + - major + custom_version: + description: 'custom version: x.y.z (without "v")' + required: false + +run-name: Publish ${{ inputs.type }} ${{ inputs.custom_version }} + +jobs: + publish: + runs-on: ubuntu-latest + permissions: + id-token: write + steps: + - uses: actions/checkout@v4 + with: + token: ${{ secrets.DEVTOOLS_GITHUB_TOKEN }} + + - uses: actions/setup-node@v4 + with: + node-version: 20 + cache: "npm" + always-auth: true + registry-url: "https://registry.npmjs.org" + + # - run: npm run test + # - run: npm run build + + - name: Set Git credentials + run: | + git config --local user.email "actions@github.com" + git config --local user.name "GitHub Action" + + - name: Bump by version type + if: ${{ !github.event.inputs.custom_version }} + run: npm version ${{ github.event.inputs.type }} --no-commit-hooks -m "v%s" + + - name: Bump by custom version + if: ${{ github.event.inputs.custom_version }} + run: npm version ${{ github.event.inputs.custom_version }} --no-commit-hooks -m "v%s" + + - name: Pushing changes + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.DEVTOOLS_GITHUB_TOKEN }} + branch: ${{ github.ref }} + tags: true + + - name: Publishing release + run: npm publish --non-interactive + env: + NODE_AUTH_TOKEN: ${{ secrets.NPMJS_PUBLISH_TOKEN }} diff --git a/main.valette/gradients.json b/main.valette/gradients.json index 5b378ec..abd4dc2 100644 --- a/main.valette/gradients.json +++ b/main.valette/gradients.json @@ -130,5 +130,21 @@ "gradient_sberkot": { "colors": ["#9DF19D", "#31C2A7", "#21A19A", "#107F8C"], "angle": 135.0 + }, + "gradient_mable": { + "colors": ["#D9F4FF", "#D9F4FF"], + "angle": 135.0 + }, + "gradient_womens_day": { + "colors": ["#FF99CC", "#E52E6A"], + "angle": 135.0 + }, + "gradient_vk17": { + "colors": ["#2496FF", "#612AFC", "#2A65FC"], + "angle": -135.0 + }, + "gradient_vk_video": { + "colors": ["#0A0A0A", "#0A0A0A", "#0077FF", "#FF2B42", "#FF2B42"], + "angle": 0 } } diff --git a/main.valette/palette.json b/main.valette/palette.json index f870a06..29aea23 100644 --- a/main.valette/palette.json +++ b/main.valette/palette.json @@ -1,140 +1,148 @@ { - "identifier": "default", - "family": "va", - "colors": { - "azure_100_muted": "#67A5EB", - "azure_300": "#2688EB", - "azure_350": "#2975CC", - "azure_A100": "#0077FF", - "azure_A400": "#2D81E0", - "black": "#000000", - "black_alpha05": "#0D000000", - "black_alpha8": "#14000000", - "black_alpha12": "#1F000000", - "black_alpha15": "#26000000", - "black_alpha16": "#28000000", - "black_alpha20": "#34000000", - "black_alpha24": "#3D000000", - "black_alpha35": "#59000000", - "black_alpha6": "#0F000000", - "black_alpha45": "#73000000", - "black_alpha60": "#99000000", - "black_alpha75": "#BF000000", - "black_blue10": "#000C1A", - "black_blue24": "#001C3D", - "black_blue24_alpha8": "#14001C3D", - "black_blue24_alpha24": "#3D001C3D", - "black_blue30_alpha66": "#A800244D", - "black_blue45_alpha10": "#1A003973", - "black_lavender_alpha5": "#0D00083D", - "blue_200": "#5C9CE6", - "blue_200_muted": "#74A2D6", - "blue_300": "#528BCC", - "blue_400": "#5181B8", - "blue_600": "#45678F", - "blue_A300": "#4772A6", - "blue_A400": "#346CAD", - "blue_A500": "#3C6A9E", - "blue_A800": "#28436E", - "blue_facebook": "#4367A3", - "blue_overlight_1_alpha32": "#52ADD3FF", - "blue_overlight_2_alpha80": "#CCC2DEFF", - "blue_overlight_3": "#92B2D6", - "brown_gold": "#9E8F72", - "brown_light": "#C2B79F", - "clear": "#00000000", - "charcoal": "#384452", - "emerald": "#4CD964", - "gold_200": "#F4E7C3", - "gold_250": "#E3D3AC", - "gold_300": "#D1C097", - "gold_400": "#AB9871", - "gold_500": "#857250", - "gray_100": "#E1E3E6", - "gray_20": "#F9F9F9", - "gray_200": "#C4C8CC", - "gray_300": "#AAAEB3", - "gray_40": "#F2F3F5", - "gray_400": "#909499", - "gray_450": "#7F8285", - "gray_50": "#EBEDF0", - "gray_500": "#76787A", - "gray_600": "#5D5F61", - "gray_700": "#454647", - "gray_750": "#363738", - "gray_800": "#2C2D2E", - "gray_850": "#232324", - "gray_900": "#19191A", - "gray_950": "#141414", - "gray_1000": "#0A0A0A", - "gray_A150": "#D7D8D9", - "gray_A40": "#F5F5F5", - "gray_A970": "#070708", - "gray_alpha": "#B3D7DBE0", - "green": "#4BB34B", - "green_alpha": "#264BB34B", - "light_gray_2": "#A9B0B8", - "mint_100": "#D4FDE8", - "mint_200": "#AEE6C9", - "mint_400": "#6D8F7E", - "mint_500": "#567867", - "mint_A1_alpha12": "#1F006732", - "neon_pink": "#F45FFF", - "orange": "#FFA000", - "orange_tint": "#F9B54F", - "orange_light": "#FFC062", - "orange_fire": "#F05C44", - "pink": "#E6457A", - "pink_alpha": "#2E1E000C", - "pink_light": "#FAEBEB", - "raspberry_pink": "#E03FAB", - "raspberry_pink_light": "#F060C0", - "purple": "#735CE6", - "purple_light": "#937FF5", - "red": "#E64646", - "red_dark": "#522E2E", - "red_error": "#EB4250", - "red_light": "#FF5C5C", - "red_nice": "#FF3347", - "sky_300": "#529EF4", - "steel_gray_150": "#B8C1CC", - "steel_gray_200": "#AEB7C2", - "steel_gray_250": "#A3ADB8", - "steel_gray_300": "#99A2AD", - "steel_gray_350": "#9099A3", - "steel_gray_400": "#818C99", - "steel_gray_500": "#6D7885", - "steel_gray_600": "#5A6470", - "turquoise": "#63B9BA", - "violet": "#792EC0", - "violet_dark": "#1F1B2C", - "violet_light": "#A393F5", - "violet_muted": "#4B4D61", - "white": "#FFFFFF", - "white_alpha8": "#14FFFFFF", - "white_alpha12": "#1FFFFFFF", - "white_alpha15": "#26FFFFFF", - "white_alpha20": "#33FFFFFF", - "white_alpha32": "#52FFFFFF", - "white_alpha40": "#66FFFFFF", - "white_alpha60": "#99FFFFFF", - "white_blue20": "#CCE4FF", - "white_blue32": "#ADD3FF", - "yellow": "#FFC107", - "yellow_light": "#FFD54F", - "yellow_overlight": "#FFF2D6", - "yellow_sunflower": "#FECE00", - "lavender_A100": "#E6E5FF", - "lavender_A200": "#CECCFF", - "lavender_A300": "#B0ADFF", - "lavender_A400": "#928FFF", - "lavender_A700": "#4B47B2", - "lavender_A800": "#353380", - "lavender_100": "#E6E9FF", - "lavender_200": "#CCD3FF", - "lavender_300": "#ADB8FF", - "lavender_700": "#5965B3", - "lavender_800": "#404980", - "lavender_900": "#262B4D" - } + "azure_100_muted": "#67A5EB", + "azure_300": "#2688EB", + "azure_350": "#2975CC", + "azure_A100": "#0077FF", + "azure_A400": "#2D81E0", + "black": "#000000", + "black_alpha05": "#0D000000", + "black_alpha8": "#14000000", + "black_alpha12": "#1F000000", + "black_alpha15": "#26000000", + "black_alpha16": "#28000000", + "black_alpha20": "#34000000", + "black_alpha24": "#3D000000", + "black_alpha35": "#59000000", + "black_alpha6": "#0F000000", + "black_alpha45": "#73000000", + "black_alpha60": "#99000000", + "black_alpha75": "#BF000000", + "black_blue10": "#000C1A", + "black_blue24": "#001C3D", + "black_blue24_alpha8": "#14001C3D", + "black_blue24_alpha24": "#3D001C3D", + "black_blue30_alpha66": "#A800244D", + "black_blue45_alpha10": "#1A003973", + "black_lavender_alpha5": "#0D00083D", + "blue_200": "#5C9CE6", + "blue_200_muted": "#74A2D6", + "blue_300": "#528BCC", + "blue_400": "#5181B8", + "blue_600": "#45678F", + "blue_A300": "#4772A6", + "blue_A400": "#346CAD", + "blue_A500": "#3C6A9E", + "blue_A800": "#28436E", + "blue_facebook": "#4367A3", + "blue_overlight_1_alpha32": "#52ADD3FF", + "blue_overlight_2_alpha80": "#CCC2DEFF", + "blue_overlight_3": "#92B2D6", + "brown_gold": "#9E8F72", + "brown_light": "#C2B79F", + "clear": "#00000000", + "charcoal": "#384452", + "emerald": "#4CD964", + "gold_200": "#F4E7C3", + "gold_250": "#E3D3AC", + "gold_300": "#D1C097", + "gold_400": "#AB9871", + "gold_500": "#857250", + "gray_100": "#E1E3E6", + "gray_20": "#F9F9F9", + "gray_200": "#C4C8CC", + "gray_300": "#AAAEB3", + "gray_40": "#F2F3F5", + "gray_400": "#909499", + "gray_450": "#7F8285", + "gray_50": "#EBEDF0", + "gray_500": "#76787A", + "gray_600": "#5D5F61", + "gray_700": "#454647", + "gray_750": "#363738", + "gray_800": "#2C2D2E", + "gray_850": "#232324", + "gray_900": "#19191A", + "gray_950": "#141414", + "gray_1000": "#0A0A0A", + "gray_A150": "#D7D8D9", + "gray_A40": "#F5F5F5", + "gray_A970": "#070708", + "gray_alpha": "#B3D7DBE0", + "gray_alpha_700": "#80454647", + "green": "#4BB34B", + "green_emerald": "#1DA377", + "green_alpha": "#264BB34B", + "light_gray_2": "#A9B0B8", + "mable_blue_100": "#D9F4FF", + "mable_blue_200": "#B0E8FF", + "mint_100": "#D4FDE8", + "mint_200": "#AEE6C9", + "mint_400": "#6D8F7E", + "mint_500": "#567867", + "mint_A1_alpha12": "#1F006732", + "neon_pink": "#F45FFF", + "neon_pink_deep": "#D357FF", + "orange": "#FFA000", + "orange_tint": "#F9B54F", + "orange_light": "#FFC062", + "orange_fire": "#F05C44", + "orange_tangerine": "#FF8000", + "pink": "#E6457A", + "pink_alpha": "#2E1E000C", + "pink_light": "#FAEBEB", + "pink_barbie": "#FA60A3", + "raspberry_pink": "#E03FAB", + "raspberry_pink_light": "#F060C0", + "purple": "#735CE6", + "purple_light": "#937FF5", + "purple_neon": "#925CFF", + "red": "#E64646", + "red_dark": "#522E2E", + "red_error": "#EB4250", + "red_light": "#FF5C5C", + "red_nice": "#FF3347", + "red_cranberry": "#D12A47", + "sky_300": "#529EF4", + "steel_gray_150": "#B8C1CC", + "steel_gray_200": "#AEB7C2", + "steel_gray_250": "#A3ADB8", + "steel_gray_300": "#99A2AD", + "steel_gray_350": "#9099A3", + "steel_gray_400": "#818C99", + "steel_gray_500": "#6D7885", + "steel_gray_600": "#5A6470", + "turquoise": "#63B9BA", + "violet": "#792EC0", + "violet_dark": "#1F1B2C", + "violet_light": "#A393F5", + "violet_muted": "#4B4D61", + "violet_tint": "#780CF7", + "violet_french": "#A94FFF", + "white": "#FFFFFF", + "white_alpha8": "#14FFFFFF", + "white_alpha12": "#1FFFFFFF", + "white_alpha15": "#26FFFFFF", + "white_alpha20": "#33FFFFFF", + "white_alpha32": "#52FFFFFF", + "white_alpha40": "#66FFFFFF", + "white_alpha60": "#99FFFFFF", + "white_blue20": "#CCE4FF", + "white_blue32": "#ADD3FF", + "yellow": "#FFC107", + "yellow_light": "#FFD54F", + "yellow_overlight": "#FFF2D6", + "yellow_sunflower": "#FECE00", + "lavender_A100": "#E6E5FF", + "lavender_A200": "#CECCFF", + "lavender_A300": "#B0ADFF", + "lavender_A400": "#928FFF", + "lavender_A700": "#4B47B2", + "lavender_A800": "#353380", + "lavender_100": "#E6E9FF", + "lavender_250": "#C2CBFF", + "lavender_200": "#CCD3FF", + "lavender_300": "#ADB8FF", + "lavender_700": "#5965B3", + "lavender_800": "#404980", + "lavender_900": "#262B4D" } diff --git a/main.valette/palette_edu.json b/main.valette/palette_edu.json index f9b39bb..b334afd 100644 --- a/main.valette/palette_edu.json +++ b/main.valette/palette_edu.json @@ -1,133 +1,140 @@ { - "identifier":"edu", - "family":"va", - "colors":{ - "azure_100_muted":"#67A5EB", - "azure_300":"#3F8AE0", - "azure_350":"#2975CC", - "azure_A100":"#2787F5", - "azure_A400":"#4986CC", - "black":"#000000", - "black_alpha05":"#0D000000", - "black_alpha8":"#14000000", - "black_alpha12":"#1F000000", - "black_alpha15":"#26000000", - "black_alpha16":"#28000000", - "black_alpha20":"#34000000", - "black_alpha24":"#3D000000", - "black_alpha35":"#59000000", - "black_alpha6":"#0F000000", - "black_alpha60":"#99000000", - "black_alpha75":"#BF000000", - "black_blue10":"#000C1A", - "black_blue24":"#001C3D", - "black_blue24_alpha8":"#14001C3D", - "black_blue24_alpha24":"#3D001C3D", - "black_blue30_alpha66":"#A800244D", - "black_blue45_alpha10":"#1A003973", - "black_lavender_alpha5":"#0D00083D", - "blue_200":"#5C9CE6", - "blue_200_muted":"#74A2D6", - "blue_300":"#528BCC", - "blue_400":"#5181B8", - "blue_600":"#45678F", - "blue_A300":"#4772A6", - "blue_A400":"#346CAD", - "blue_A500":"#3C6A9E", - "blue_A800":"#28436E", - "blue_facebook":"#4367A3", - "blue_overlight_1_alpha32":"#52ADD3FF", - "blue_overlight_2_alpha80":"#CCC2DEFF", - "blue_overlight_3":"#92B2D6", - "brown_gold":"#9E8F72", - "brown_light":"#C2B79F", - "clear":"#00000000", - "charcoal":"#384452", - "emerald":"#4CD964", - "gold_200":"#F4E7C3", - "gold_250":"#E3D3AC", - "gold_300":"#D1C097", - "gold_400":"#AB9871", - "gold_500":"#857250", - "gray_100":"#E1E3E6", - "gray_20":"#F9F9F9", - "gray_200":"#C4C8CC", - "gray_300":"#AAAEB3", - "gray_40":"#F2F3F5", - "gray_400":"#909499", - "gray_450":"#7F8285", - "gray_50":"#EBEDF0", - "gray_500":"#76787A", - "gray_600":"#5D5F61", - "gray_700":"#454647", - "gray_750":"#363738", - "gray_800":"#2C2D2E", - "gray_850":"#232324", - "gray_900":"#19191A", - "gray_950":"#141414", - "gray_1000":"#0A0A0A", - "gray_A150":"#D7D8D9", - "gray_A40":"#F5F5F5", - "gray_A970":"#070708", - "gray_alpha":"#B3D7DBE0", - "green":"#4BB34B", - "green_alpha":"#264BB34B", - "light_gray_2":"#A9B0B8", - "mint_100":"#D4FDE8", - "mint_200":"#AEE6C9", - "mint_400":"#6D8F7E", - "mint_500":"#567867", - "mint_A1_alpha12":"#1F006732", - "orange":"#FFA000", - "orange_fire":"#F05C44", - "pink":"#E6457A", - "pink_alpha":"#2E1E000C", - "pink_light":"#FAEBEB", - "raspberry_pink":"#E03FAB", - "raspberry_pink_light":"#F060C0", - "purple":"#735CE6", - "purple_light":"#937FF5", - "red":"#E64646", - "red_dark":"#522E2E", - "red_error":"#EB4250", - "red_light":"#FF5C5C", - "red_nice":"#FF3347", - "sky_300":"#71AAEB", - "steel_gray_150":"#B8C1CC", - "steel_gray_200":"#AEB7C2", - "steel_gray_250":"#A3ADB8", - "steel_gray_300":"#99A2AD", - "steel_gray_350":"#9099A3", - "steel_gray_400":"#818C99", - "steel_gray_500":"#6D7885", - "turquoise":"#63B9BA", - "violet":"#792EC0", - "violet_dark":"#1F1B2C", - "violet_light":"#A393F5", - "violet_muted":"#4B4D61", - "white":"#FFFFFF", - "white_alpha8":"#14FFFFFF", - "white_alpha12":"#1FFFFFFF", - "white_alpha15":"#26FFFFFF", - "white_alpha20":"#33FFFFFF", - "white_alpha40":"#66FFFFFF", - "white_alpha60":"#99FFFFFF", - "white_blue20":"#CCE4FF", - "white_blue32":"#ADD3FF", - "yellow":"#FFC107", - "yellow_light":"#FFD54F", - "yellow_overlight":"#FFF2D6", - "yellow_sunflower":"#FECE00", - "lavender_A100":"#E6E5FF", - "lavender_A200":"#CECCFF", - "lavender_A400":"#928FFF", - "lavender_A700":"#4B47B2", - "lavender_A800":"#353380", - "lavender_100":"#E6E9FF", - "lavender_200":"#CCD3FF", - "lavender_300":"#ADB8FF", - "lavender_700":"#5965B3", - "lavender_800":"#404980", - "lavender_900":"#262B4D" - } + "azure_100_muted":"#67A5EB", + "azure_300":"#3F8AE0", + "azure_350":"#2975CC", + "azure_A100":"#2787F5", + "azure_A400":"#4986CC", + "black":"#000000", + "black_alpha05":"#0D000000", + "black_alpha8":"#14000000", + "black_alpha12":"#1F000000", + "black_alpha15":"#26000000", + "black_alpha16":"#28000000", + "black_alpha20":"#34000000", + "black_alpha24":"#3D000000", + "black_alpha35":"#59000000", + "black_alpha6":"#0F000000", + "black_alpha60":"#99000000", + "black_alpha75":"#BF000000", + "black_blue10":"#000C1A", + "black_blue24":"#001C3D", + "black_blue24_alpha8":"#14001C3D", + "black_blue24_alpha24":"#3D001C3D", + "black_blue30_alpha66":"#A800244D", + "black_blue45_alpha10":"#1A003973", + "black_lavender_alpha5":"#0D00083D", + "blue_200":"#5C9CE6", + "blue_200_muted":"#74A2D6", + "blue_300":"#528BCC", + "blue_400":"#5181B8", + "blue_600":"#45678F", + "blue_A300":"#4772A6", + "blue_A400":"#346CAD", + "blue_A500":"#3C6A9E", + "blue_A800":"#28436E", + "blue_facebook":"#4367A3", + "blue_overlight_1_alpha32":"#52ADD3FF", + "blue_overlight_2_alpha80":"#CCC2DEFF", + "blue_overlight_3":"#92B2D6", + "brown_gold":"#9E8F72", + "brown_light":"#C2B79F", + "clear":"#00000000", + "charcoal":"#384452", + "emerald":"#4CD964", + "gold_200":"#F4E7C3", + "gold_250":"#E3D3AC", + "gold_300":"#D1C097", + "gold_400":"#AB9871", + "gold_500":"#857250", + "gray_100":"#E1E3E6", + "gray_20":"#F9F9F9", + "gray_200":"#C4C8CC", + "gray_300":"#AAAEB3", + "gray_40":"#F2F3F5", + "gray_400":"#909499", + "gray_450":"#7F8285", + "gray_50":"#EBEDF0", + "gray_500":"#76787A", + "gray_600":"#5D5F61", + "gray_700":"#454647", + "gray_750":"#363738", + "gray_800":"#2C2D2E", + "gray_850":"#232324", + "gray_900":"#19191A", + "gray_950":"#141414", + "gray_1000":"#0A0A0A", + "gray_A150":"#D7D8D9", + "gray_A40":"#F5F5F5", + "gray_A970":"#070708", + "gray_alpha":"#B3D7DBE0", + "green":"#4BB34B", + "green_emerald": "#1DA377", + "green_alpha":"#264BB34B", + "light_gray_2":"#A9B0B8", + "mint_100":"#D4FDE8", + "mint_200":"#AEE6C9", + "mint_400":"#6D8F7E", + "mint_500":"#567867", + "mint_A1_alpha12":"#1F006732", + "mable_blue_100": "#D9F4FF", + "mable_blue_200": "#B0E8FF", + "orange":"#FFA000", + "orange_fire":"#F05C44", + "orange_tangerine": "#FF8000", + "pink":"#E6457A", + "pink_alpha":"#2E1E000C", + "pink_light":"#FAEBEB", + "neon_pink_deep": "#D357FF", + "raspberry_pink":"#E03FAB", + "raspberry_pink_light":"#F060C0", + "pink_barbie": "#FA60A3", + "purple":"#735CE6", + "purple_light":"#937FF5", + "purple_neon": "#925CFF", + "red":"#E64646", + "red_dark":"#522E2E", + "red_error":"#EB4250", + "red_light":"#FF5C5C", + "red_nice":"#FF3347", + "red_cranberry": "#D12A47", + "sky_300":"#71AAEB", + "steel_gray_150":"#B8C1CC", + "steel_gray_200":"#AEB7C2", + "steel_gray_250":"#A3ADB8", + "steel_gray_300":"#99A2AD", + "steel_gray_350":"#9099A3", + "steel_gray_400":"#818C99", + "steel_gray_500":"#6D7885", + "turquoise":"#63B9BA", + "violet":"#792EC0", + "violet_dark":"#1F1B2C", + "violet_light":"#A393F5", + "violet_muted":"#4B4D61", + "violet_tint": "#780CF7", + "violet_french": "#A94FFF", + "white":"#FFFFFF", + "white_alpha8":"#14FFFFFF", + "white_alpha12":"#1FFFFFFF", + "white_alpha15":"#26FFFFFF", + "white_alpha20":"#33FFFFFF", + "white_alpha40":"#66FFFFFF", + "white_alpha60":"#99FFFFFF", + "white_blue20":"#CCE4FF", + "white_blue32":"#ADD3FF", + "yellow":"#FFC107", + "yellow_light":"#FFD54F", + "yellow_overlight":"#FFF2D6", + "yellow_sunflower":"#FECE00", + "lavender_A100":"#E6E5FF", + "lavender_A200":"#CECCFF", + "lavender_A400":"#928FFF", + "lavender_A700":"#4B47B2", + "lavender_A800":"#353380", + "lavender_100":"#E6E9FF", + "lavender_200":"#CCD3FF", + "lavender_250": "#C2CBFF", + "lavender_300":"#ADB8FF", + "lavender_700":"#5965B3", + "lavender_800":"#404980", + "lavender_900":"#262B4D" } diff --git a/main.valette/palette_messages.json b/main.valette/palette_messages.json index c4ca192..da52032 100644 --- a/main.valette/palette_messages.json +++ b/main.valette/palette_messages.json @@ -1,117 +1,118 @@ { - "identifier": "default", - "family": "me", - "colors": { - "aquamarine": "#33CCAD", - "azure_300": "#3F8AE0", - "azure_A100": "#2787F5", - "black": "#000000", - "blue_200": "#5C9CE6", - "blue_300": "#528BCC", - "blue_400": "#5181B8", - "blue_600": "#45678F", - "blue_A500": "#3C6A9E", - "blue_dark": "#1348C2", - "carrot_100": "#FFDDCC", - "carrot_200": "#FFCCB2", - "carrot_300": "#F2A179", - "carrot_400": "#F28149", - "carrot_50": "#FFEEE5", - "carrot_600": "#BF5926", - "carrot_800": "#663014", - "carrot_900": "#401E0D", - "carrot_A500": "#E56322", - "dark_gold_100": "#FAE8C8", - "dark_gold_400": "#CC9B47", - "dark_gold_50": "#FAF1E1", - "dark_gold_600": "#99712E", - "dark_gold_800": "#593C09", - "dark_gold_900": "#593C09", - "dark_gold_A500": "#B27812", - "deep_lilac_100": "#EFD6FF", - "deep_lilac_200": "#C695E6", - "deep_lilac_300": "#B973E6", - "deep_lilac_400": "#A15CCC", - "deep_lilac_50": "#F5E5FF", - "deep_lilac_600": "#8042A6", - "deep_lilac_800": "#4F2966", - "deep_lilac_900": "#3B1E4C", - "deep_lilac_A500": "#9D52CC", - "emerald": "#4CD964", - "forest_green_100": "#C4F5C4", - "forest_green_400": "#60BF60", - "forest_green_50": "#E1FAE1", - "forest_green_600": "#4C994C", - "forest_green_800": "#264C26", - "forest_green_900": "#1A331A", - "forest_green_A500": "#1F991F", - "gray_100": "#E1E3E6", - "gray_20": "#F9F9F9", - "gray_300": "#AAAEB3", - "gray_40": "#F2F3F5", - "gray_50": "#EBEDF0", - "gray_500": "#76787A", - "gray_600": "#5D5F61", - "gray_700": "#454647", - "gray_800": "#2C2D2E", - "gray_A150": "#D7D8D9", - "gray_950": "#121212", - "green": "#4BB34B", - "green_dark": "#168C51", - "jam_100": "#FFCCDD", - "jam_200": "#FFB2CC", - "jam_300": "#F279A2", - "jam_400": "#E65C8A", - "jam_50": "#FFE5EE", - "jam_600": "#B2365F", - "jam_800": "#661430", - "jam_900": "#4C0F24", - "jam_A500": "#CC3D6D", - "orange": "#FFA000", - "orange_fire": "#F05C44", - "pacific_blue_100": "#CCF2FF", - "pacific_blue_400": "#57B9D9", - "pacific_blue_50": "#E5F9FF", - "pacific_blue_600": "#2185A6", - "pacific_blue_800": "#124759", - "pacific_blue_900": "#063240", - "pacific_blue_A500": "#149ECC", - "pink": "#E6457A", - "pink_pastel": "#FF99CC", - "pink_rose": "#F474A8", - "purple": "#735CE6", - "purple_light": "#937FF5", - "raspberry_pink": "#E03FAB", - "raspberry_pink_light": "#F060C0", - "red": "#E64646", - "red_cardinal": "#CB1E3B", - "red_error": "#EB4250", - "red_light": "#FF5C5C", - "royal_blue_100": "#CCD9FF", - "royal_blue_400": "#809FFF", - "royal_blue_50": "#E5ECFF", - "royal_blue_600": "#5C77CC", - "royal_blue_800": "#293866", - "royal_blue_900": "#1E2A4C", - "royal_blue_A500": "#2E5CE5", - "sky_300": "#71AAEB", - "steel_gray_400": "#818C99", - "turquoise_blue": "#29AACC", - "turquoise_bright": "#2BD9D9", - "violet": "#792EC0", - "violet_light": "#A393F5", - "white": "#FFFFFF", - "white_alpha40": "#66FFFFFF", - "white_blue20": "#CCE4FF", - "white_blue32": "#ADD3FF", - "yellow": "#FFC107", - "im_red": "#F45767", - "im_yellow": "#F5C22E", - "im_orange": "#F39456", - "im_green": "#4CCC55", - "im_cyan": "#5CD9EC", - "im_blue": "#56B0F2", - "im_violet": "#B375F1", - "im_grey": "#A7B0BB" - } + "aquamarine": "#33CCAD", + "azure_300": "#3F8AE0", + "azure_A100": "#2787F5", + "black": "#000000", + "blue_200": "#5C9CE6", + "blue_300": "#528BCC", + "blue_400": "#5181B8", + "blue_600": "#45678F", + "blue_A500": "#3C6A9E", + "blue_dark": "#1348C2", + "carrot_100": "#FFDDCC", + "carrot_200": "#FFCCB2", + "carrot_300": "#F2A179", + "carrot_400": "#F28149", + "carrot_50": "#FFEEE5", + "carrot_600": "#BF5926", + "carrot_800": "#663014", + "carrot_900": "#401E0D", + "carrot_A500": "#E56322", + "dark_gold_100": "#FAE8C8", + "dark_gold_400": "#CC9B47", + "dark_gold_50": "#FAF1E1", + "dark_gold_600": "#99712E", + "dark_gold_800": "#593C09", + "dark_gold_900": "#593C09", + "dark_gold_A500": "#B27812", + "deep_lilac_100": "#EFD6FF", + "deep_lilac_200": "#C695E6", + "deep_lilac_300": "#B973E6", + "deep_lilac_400": "#A15CCC", + "deep_lilac_50": "#F5E5FF", + "deep_lilac_600": "#8042A6", + "deep_lilac_800": "#4F2966", + "deep_lilac_900": "#3B1E4C", + "deep_lilac_A500": "#9D52CC", + "emerald": "#4CD964", + "forest_green_100": "#C4F5C4", + "forest_green_400": "#60BF60", + "forest_green_50": "#E1FAE1", + "forest_green_600": "#4C994C", + "forest_green_800": "#264C26", + "forest_green_900": "#1A331A", + "forest_green_A500": "#1F991F", + "gray_100": "#E1E3E6", + "gray_20": "#F9F9F9", + "gray_300": "#AAAEB3", + "gray_40": "#F2F3F5", + "gray_50": "#EBEDF0", + "gray_500": "#76787A", + "gray_600": "#5D5F61", + "gray_700": "#454647", + "gray_800": "#2C2D2E", + "gray_A150": "#D7D8D9", + "gray_950": "#121212", + "green": "#4BB34B", + "green_dark": "#168C51", + "jam_100": "#FFCCDD", + "jam_200": "#FFB2CC", + "jam_300": "#F279A2", + "jam_400": "#E65C8A", + "jam_50": "#FFE5EE", + "jam_600": "#B2365F", + "jam_800": "#661430", + "jam_900": "#4C0F24", + "jam_A500": "#CC3D6D", + "mable_blue_100": "#D9F4FF", + "mable_blue_200": "#B0E8FF", + "orange": "#FFA000", + "orange_fire": "#F05C44", + "pacific_blue_100": "#CCF2FF", + "pacific_blue_400": "#57B9D9", + "pacific_blue_50": "#E5F9FF", + "pacific_blue_600": "#2185A6", + "pacific_blue_800": "#124759", + "pacific_blue_900": "#063240", + "pacific_blue_A500": "#149ECC", + "pink": "#E6457A", + "pink_pastel": "#FF99CC", + "pink_rose": "#F474A8", + "neon_pink_deep": "#D357FF", + "purple": "#735CE6", + "purple_light": "#937FF5", + "raspberry_pink": "#E03FAB", + "raspberry_pink_light": "#F060C0", + "red": "#E64646", + "red_cardinal": "#CB1E3B", + "red_error": "#EB4250", + "red_light": "#FF5C5C", + "royal_blue_100": "#CCD9FF", + "royal_blue_400": "#809FFF", + "royal_blue_50": "#E5ECFF", + "royal_blue_600": "#5C77CC", + "royal_blue_800": "#293866", + "royal_blue_900": "#1E2A4C", + "royal_blue_A500": "#2E5CE5", + "sky_300": "#71AAEB", + "steel_gray_400": "#818C99", + "turquoise_blue": "#29AACC", + "turquoise_bright": "#2BD9D9", + "violet": "#792EC0", + "violet_light": "#A393F5", + "violet_tint": "#780CF7", + "violet_french": "#A94FFF", + "white": "#FFFFFF", + "white_alpha40": "#66FFFFFF", + "white_blue20": "#CCE4FF", + "white_blue32": "#ADD3FF", + "yellow": "#FFC107", + "im_red": "#F45767", + "im_yellow": "#F5C22E", + "im_orange": "#F39456", + "im_green": "#4CCC55", + "im_cyan": "#5CD9EC", + "im_blue": "#56B0F2", + "im_violet": "#B375F1", + "im_grey": "#A7B0BB" } diff --git a/main.valette/palette_ok.json b/main.valette/palette_ok.json index 86eede9..69ceefb 100644 --- a/main.valette/palette_ok.json +++ b/main.valette/palette_ok.json @@ -68,7 +68,9 @@ "gray_A40": "#F5F5F5", "gray_A970": "#070708", "gray_alpha": "#B3D7DBE0", + "gray_alpha_700": "#80454647", "green": "#4BB34B", + "green_emerald": "#1DA377", "green_alpha": "#264BB34B", "light_gray_2": "#A9B0B8", "mint_100": "#D4FDE8", @@ -76,7 +78,10 @@ "mint_400": "#6D8F7E", "mint_500": "#567867", "mint_A1_alpha12": "#1F006732", + "mable_blue_100": "#D9F4FF", + "mable_blue_200": "#B0E8FF", "neon_pink": "#F45FFF", + "neon_pink_deep": "#D357FF", "ok_black_light": "#282828", "ok_gray_dark": "#686868", "ok_gray_light": "#EBEBEB", @@ -84,18 +89,22 @@ "ok_orange": "#FF8800", "orange": "#FFA000", "orange_fire": "#F05C44", + "orange_tangerine": "#FF8000", "pink": "#E6457A", "pink_alpha": "#2E1E000C", "pink_light": "#FAEBEB", "raspberry_pink": "#E03FAB", "raspberry_pink_light": "#F060C0", + "pink_barbie": "#FA60A3", "purple": "#735CE6", "purple_light": "#937FF5", + "purple_neon": "#925CFF", "red": "#E64646", "red_dark": "#522E2E", "red_error": "#EB4250", "red_light": "#FF5C5C", "red_nice": "#FF3347", + "red_cranberry": "#D12A47", "sky_300": "#529EF4", "steel_gray_150": "#B8C1CC", "steel_gray_200": "#AEB7C2", @@ -110,6 +119,8 @@ "violet_dark": "#1F1B2C", "violet_light": "#A393F5", "violet_muted": "#4B4D61", + "violet_tint": "#780CF7", + "violet_french": "#A94FFF", "white": "#FFFFFF", "white_alpha8": "#14FFFFFF", "white_alpha12": "#1FFFFFFF", @@ -132,6 +143,7 @@ "lavender_A800": "#353380", "lavender_100": "#E6E9FF", "lavender_200": "#CCD3FF", + "lavender_250": "#C2CBFF", "lavender_300": "#ADB8FF", "lavender_700": "#5965B3", "lavender_800": "#404980", diff --git a/main.valette/palette_web.json b/main.valette/palette_web.json index 406af9f..eecbb72 100644 --- a/main.valette/palette_web.json +++ b/main.valette/palette_web.json @@ -62,12 +62,16 @@ "gray_900_alpha88": "#E0222222", "gray_940": "#141414", "gray_960": "#0A0A0A", + "gray_alpha_700": "#80454647", "green_alpha16": "#294BB34B", "green_350": "#4BB34B", "green_400": "#43A843", "green_600": "#1B7A1B", "green_light": "#DEF0D3", "green_nice": "#3DCC4B", + "green_emerald": "#1DA377", + "mable_blue_100": "#D9F4FF", + "mable_blue_200": "#B0E8FF", "light_blue_40": "#E5EBF1", "light_blue_40_alpha72": "#B8E5EBF1", "light_blue_80": "#DFE6ED", @@ -78,6 +82,7 @@ "light_blue_700": "#45688E", "light_blue_A300": "#8FADC8", "neon_pink": "#F45FFF", + "neon_pink_deep": "#D357FF", "orange": "#FFA000", "orange_tint": "#F9B54F", "orange_light": "#FFC062", @@ -85,8 +90,10 @@ "orange_prominent": "#FF724C", "raspberry_pink": "#E03FAB", "raspberry_pink_light": "#F060C0", + "pink_barbie": "#FA60A3", "purple": "#735CE6", "purple_light": "#937FF5", + "purple_neon": "#925CFF", "pink": "#E6457A", "pink_light": "#FAEBEB", "red": "#E64646", @@ -95,6 +102,7 @@ "red_dark": "#DB3B3B", "red_light": "#FF5C5C", "red_nice": "#FF3347", + "red_cranberry": "#D12A47", "sky_60": "#CCE9FF", "sky_80": "#B2DEFF", "sky_100": "#99D3FF", @@ -126,6 +134,8 @@ "violet_dark": "#1F1B2C", "violet_light": "#A393F5", "violet_muted": "#4B4D61", + "violet_tint": "#780CF7", + "violet_french": "#A94FFF", "white": "#FFFFFF", "white_alpha72": "#B8FFFFFF", "white_alpha64": "#A3FFFFFF", @@ -141,8 +151,10 @@ "yellow": "#FFC107", "yellow_light": "#FAEFD2", "yellow_alpha16": "#29FFCA63", + "yellow_overlight": "#FFF2D6", "lavender_100": "#E6E9FF", "lavender_200": "#CCD3FF", + "lavender_250": "#C2CBFF", "lavender_300": "#ADB8FF", "lavender_700": "#5965B3", "lavender_800": "#404980", diff --git a/main.valette/scheme.json b/main.valette/scheme.json index 41c179f..5e45625 100644 --- a/main.valette/scheme.json +++ b/main.valette/scheme.json @@ -1,1470 +1,1513 @@ { - "identifier": "default", - "family": "va", - "themes": { - "space_gray": { - "appearance": "dark", - "colors": { - "accent": { - "color_identifier": "sky_300" - }, - "accent_alternate": { - "color_identifier": "white" - }, - "action_sheet_action_foreground": { - "color_identifier": "white" - }, - "action_sheet_separator": { - "color_identifier": "white_alpha12" - }, - "activity_indicator_tint": { - "color_identifier": "gray_600" - }, - "attach_picker_tab_active_background": { - "color_identifier": "gray_100" - }, - "attach_picker_tab_active_icon": { - "color_identifier": "gray_900" - }, - "attach_picker_tab_active_text": { - "color_identifier": "gray_100" - }, - "attach_picker_tab_inactive_background": { - "color_identifier": "gray_800" - }, - "attach_picker_tab_inactive_icon": { - "color_identifier": "gray_100" - }, - "attach_picker_tab_inactive_text": { - "color_identifier": "gray_500" - }, - "background_content": { - "color_identifier": "gray_900" - }, - "background_hover": { - "color_identifier": "white", - "alpha_multiplier": 0.04 - }, - "background_highlighted": { - "color_identifier": "white_alpha8" - }, - "background_keyboard": { - "color_identifier": "gray_800" - }, - "background_light": { - "color_identifier": "gray_850" - }, - "background_page": { - "color_identifier": "gray_1000" - }, - "background_suggestions": { - "color_identifier": "gray_800" - }, - "button_bot_shadow": { - "color_identifier": "gray_900" - }, - "button_commerce_background": { - "color_identifier": "green" - }, - "button_commerce_foreground": { - "color_identifier": "white" - }, - "button_muted_background": { - "color_identifier": "gray_800" - }, - "button_muted_foreground": { - "color_identifier": "gray_100" - }, - "button_outline_border": { - "color_identifier": "gray_100" - }, - "button_outline_foreground": { - "color_identifier": "gray_100" - }, - "button_primary_background": { - "color_identifier": "gray_100" - }, - "button_primary_foreground": { - "color_identifier": "gray_900" - }, - "button_secondary_background": { - "color_identifier": "gray_700" - }, - "button_secondary_background_highlighted": { - "color_identifier": "gray_700", - "alpha_multiplier": 0.6 - }, - "button_secondary_foreground": { - "color_identifier": "gray_100" - }, - "button_secondary_foreground_highlighted": { - "color_identifier": "gray_100", - "alpha_multiplier": 0.6 - }, - "button_secondary_destructive_background": { - "color_identifier": "gray_700" - }, - "button_secondary_destructive_background_highlighted": { - "color_identifier": "gray_700", - "alpha_multiplier": 0.6 - }, - "button_secondary_destructive_foreground": { - "color_identifier": "red_light" - }, - "button_secondary_destructive_foreground_highlighted": { - "color_identifier": "red_light", - "alpha_multiplier": 0.6 - }, - "button_tertiary_background": { - "color_identifier": "clear" - }, - "button_tertiary_foreground": { - "color_identifier": "gray_100" - }, - "cell_button_foreground": { - "color_identifier": "gray_100" - }, - "content_placeholder_icon": { - "color_identifier": "gray_300" - }, - "content_placeholder_text": { - "color_identifier": "gray_300" - }, - "content_tint_background": { - "color_identifier": "gray_850" - }, - "content_tint_foreground": { - "color_identifier": "gray_400" - }, - "control_background": { - "color_identifier": "gray_700" - }, - "control_background_secondary": { - "color_identifier": "gray_500" - }, - "control_foreground": { - "color_identifier": "gray_100" - }, - "control_tint": { - "color_identifier": "gray_900" - }, - "control_tint_muted": { - "color_identifier": "gray_400" - }, - "counter_primary_background": { - "color_identifier": "white" - }, - "counter_primary_text": { - "color_identifier": "gray_900" - }, - "counter_prominent_background": { - "color_identifier": "red_nice" - }, - "counter_prominent_text": { - "color_identifier": "white" - }, - "counter_secondary_background": { - "color_identifier": "gray_500" - }, - "counter_secondary_text": { - "color_identifier": "gray_900" - }, - "content_warning_background": { - "color_identifier": "gold_500" - }, - "destructive": { - "color_identifier": "red_light" - }, - "field_background": { - "color_identifier": "gray_850" - }, - "field_border": { - "color_identifier": "white_alpha12" - }, - "field_error_background": { - "color_identifier": "red_dark" - }, - "field_error_border": { - "color_identifier": "red_light" - }, - "field_valid_border": { - "color_identifier": "green" - }, - "field_text_placeholder": { - "color_identifier": "gray_500" - }, - "float_button_background": { - "color_identifier": "gray_700" - }, - "float_button_background_highlighted": { - "color_identifier": "gray_600" - }, - "float_button_foreground": { - "color_identifier": "gray_300" - }, - "float_button_border": { - "color_identifier": "black_alpha12" - }, - "header_alternate_background": { - "color_identifier": "gray_800" - }, - "header_alternate_tab_active_indicator": { - "color_identifier": "gray_100" - }, - "header_alternate_tab_active_text": { - "color_identifier": "gray_100" - }, - "header_alternate_tab_inactive_text": { - "color_identifier": "gray_500" - }, - "header_background": { - "color_identifier": "gray_900" - }, - "header_background_before_blur": { - "color_identifier": "gray_A970" - }, - "header_background_before_blur_alternate": { - "color_identifier": "gray_A970" - }, - "header_search_field_background": { - "color_identifier": "gray_750" - }, - "header_search_field_tint": { - "color_identifier": "gray_300" - }, - "header_tab_active_background": { - "color_identifier": "gray_600" - }, - "header_tab_active_text": { - "color_identifier": "gray_100" - }, - "header_tab_active_indicator": { - "color_identifier": "sky_300" - }, - "header_tab_inactive_text": { - "color_identifier": "gray_500" - }, - "header_text": { - "color_identifier": "gray_100" - }, - "header_text_alternate": { - "color_identifier": "gray_100" - }, - "header_text_secondary": { - "color_identifier": "white_alpha60" - }, - "header_tint": { - "color_identifier": "gray_100" - }, - "header_tint_alternate": { - "color_identifier": "gray_100" - }, - "icon_alpha_placeholder": { - "color_identifier": "gray_100" - }, - "icon_medium": { - "color_identifier": "gray_400" - }, - "icon_medium_alpha": { - "color_identifier": "white", - "alpha_multiplier": 0.48 - }, - "icon_outline_medium": { - "color_identifier": "gray_300" - }, - "icon_outline_secondary": { - "color_identifier": "gray_400" - }, - "icon_secondary": { - "color_identifier": "gray_500" - }, - "icon_secondary_alpha": { - "color_identifier": "white", - "alpha_multiplier": 0.36 - }, - "icon_tertiary": { - "color_identifier": "gray_600" - }, - "icon_tertiary_alpha": { - "color_identifier": "white", - "alpha_multiplier": 0.24 - }, - "im_attach_tint": { - "color_identifier": "white" - }, - "im_bubble_border_alternate": { - "color_identifier": "clear" - }, - "im_bubble_border_alternate_highlighted": { - "color_identifier": "clear" - }, - "im_bubble_button_background": { - "color_identifier": "white", - "alpha_multiplier": 0.16 - }, - "im_bubble_button_outgoing_background": { - "color_identifier": "white_alpha20" - }, - "im_bubble_button_background_highlighted": { - "color_identifier": "white", - "alpha_multiplier": 0.24 - }, - "im_bubble_button_foreground": { - "color_identifier": "gray_100" - }, - "im_bubble_incoming_expiring": { - "color_identifier": "lavender_900" - }, - "im_bubble_incoming_expiring_highlighted": { - "color_identifier": "lavender_800" - }, - "im_bubble_outgoing_expiring": { - "color_identifier": "lavender_800" - }, - "im_bubble_outgoing_expiring_highlighted": { - "color_identifier": "lavender_700" - }, - "im_bubble_incoming": { - "color_identifier": "gray_800" - }, - "im_bubble_incoming_alternate": { - "color_identifier": "gray_800" - }, - "im_bubble_incoming_alternate_highlighted": { - "color_identifier": "gray_600" - }, - "im_bubble_incoming_highlighted": { - "color_identifier": "gray_600" - }, - "im_bubble_gift_background": { - "color_identifier": "gold_500" - }, - "im_bubble_gift_background_highlighted": { - "color_identifier": "gold_400" - }, - "im_bubble_gift_text": { - "color_identifier": "white" - }, - "im_bubble_gift_text_secondary": { - "color_identifier": "gold_250" - }, - "im_bubble_outgoing": { - "color_identifier": "gray_700" - }, - "im_bubble_outgoing_alternate": { - "color_identifier": "gray_700" - }, - "im_bubble_outgoing_highlighted": { - "color_identifier": "gray_600" - }, - "im_bubble_outgoing_alternate_highlighted": { - "color_identifier": "gray_500" - }, - "im_bubble_wallpaper_button_background": { - "color_identifier": "gray_700" - }, - "im_bubble_wallpaper_button_background_highlighted": { - "color_identifier": "gray_500" - }, - "im_bubble_wallpaper_button_foreground": { - "color_identifier": "gray_100" - }, - "im_bubble_wallpaper_incoming": { - "color_identifier": "gray_800" - }, - "im_bubble_wallpaper_incoming_highlighted": { - "color_identifier": "gray_600" - }, - "im_bubble_wallpaper_outgoing": { - "color_identifier": "gray_700" - }, - "im_bubble_wallpaper_outgoing_highlighted": { - "color_identifier": "gray_600" - }, - "im_forward_line_tint": { - "color_identifier": "white", - "alpha_multiplier": 0.24 - }, - "im_reply_separator": { - "color_identifier": "white" - }, - "im_text_name": { - "color_identifier": "sky_300" - }, - "im_toolbar_voice_msg_background": { - "color_identifier": "gray_700" - }, - "im_toolbar_separator": { - "color_identifier": "gray_300" - }, - "image_border": { - "color_identifier": "white_alpha8" - }, - "input_background": { - "color_identifier": "gray_800" - }, - "input_border": { - "color_identifier": "gray_800" - }, - "landing_background": { - "color_identifier": "gray_900" - }, - "landing_field_background": { - "color_identifier": "gray_850" - }, - "landing_field_border": { - "color_identifier": "clear" - }, - "landing_field_placeholder": { - "color_identifier": "gray_300" - }, - "landing_login_button_background": { - "color_identifier": "gray_100" - }, - "landing_login_button_foreground": { - "color_identifier": "gray_900" - }, - "landing_primary_button_background": { - "color_identifier": "gray_100" - }, - "landing_primary_button_foreground": { - "color_identifier": "gray_900" - }, - "landing_tertiary_button_background": { - "color_identifier": "clear" - }, - "landing_tertiary_button_foreground": { - "color_identifier": "white" - }, - "landing_text_primary": { - "color_identifier": "gray_100" - }, - "landing_text_title": { - "color_identifier": "white" - }, - "landing_text_secondary": { - "color_identifier": "gray_500" - }, - "landing_secondary_button_background": { - "color_identifier": "white_alpha15" - }, - "landing_secondary_button_foreground": { - "color_identifier": "white" - }, - "landing_snippet_border": { - "color_identifier": "white_alpha15" - }, - "like_text_tint": { - "color_identifier": "red_light" - }, - "link_alternate": { - "color_identifier": "white" - }, - "loader_background": { - "color_identifier": "gray_900" - }, - "loader_tint": { - "color_identifier": "gray_500" - }, - "loader_track_fill": { - "color_identifier": "gray_700" - }, - "loader_track_value_fill": { - "color_identifier": "white" - }, - "media_overlay_button_background": { - "color_identifier": "white" - }, - "media_overlay_button_foreground": { - "color_identifier": "gray_800" - }, - "modal_card_background": { - "color_identifier": "gray_800" - }, - "modal_card_border": { - "color_identifier": "white_alpha12" - }, - "modal_card_header_close": { - "color_identifier": "white" - }, - "music_playback_icon": { - "color_identifier": "white" - }, - "feed_recommended_friend_promo_background": { - "color_identifier": "steel_gray_500" - }, - "overlay_status_background": { - "color_identifier": "gray_900" - }, - "overlay_status_foreground": { - "color_identifier": "gray_100" - }, - "overlay_status_icon": { - "color_identifier": "gray_50" - }, - "placeholder_icon_background": { - "color_identifier": "white_alpha8" - }, - "placeholder_icon_background_opaque": { - "color_identifier": "gray_850" - }, - "placeholder_icon_foreground_primary": { - "color_identifier": "gray_400" - }, - "placeholder_icon_foreground_secondary": { - "color_identifier": "gray_600" - }, - "placeholder_icon_tint": { - "color_identifier": "white" - }, - "poll_option_background": { - "color_identifier": "white" - }, - "search_bar_background": { - "color_identifier": "gray_900" - }, - "search_bar_field_background": { - "color_identifier": "gray_750" - }, - "search_bar_field_tint": { - "color_identifier": "gray_300" - }, - "search_bar_segmented_control_tint": { - "color_identifier": "gray_400" - }, - "segmented_control_bar_background": { - "color_identifier": "gray_900" - }, - "segmented_control_tint": { - "color_identifier": "gray_500" - }, - "selection_off_icon": { - "color_identifier": "gray_600" - }, - "separator_alpha": { - "color_identifier": "white_alpha12" - }, - "separator_alternate": { - "color_identifier": "gray_850" - }, - "separator_common": { - "color_identifier": "gray_750" - }, - "snippet_background": { - "color_identifier": "gray_850" - }, - "snippet_border": { - "color_identifier": "white_alpha15" - }, - "snippet_icon_tertiary": { - "color_identifier": "gray_600" - }, - "splashscreen_icon": { - "color_identifier": "gray_800" - }, - "statusbar_alternate_legacy_background": { - "color_identifier": "clear" - }, - "stories_create_button_background_from": { - "color_identifier": "gray_750" - }, - "stories_create_button_background_to": { - "color_identifier": "gray_750" - }, - "stories_create_button_foreground": { - "color_identifier": "gray_200" - }, - "stories_skeleton_loader_background": { - "color_identifier": "gray_700" - }, - "stories_create_button_icon_background": { - "color_identifier": "gray_700" - }, - "switch_ios_off_border": { - "color_identifier": "gray_800" - }, - "tabbar_active_icon": { - "color_identifier": "white" - }, - "tabbar_background": { - "color_identifier": "gray_800" - }, - "tabbar_inactive_icon": { - "color_identifier": "gray_500" - }, - "tabbar_tablet_active_icon": { - "color_identifier": "sky_300" - }, - "tabbar_tablet_background": { - "color_identifier": "gray_850" - }, - "tabbar_tablet_inactive_icon": { - "color_identifier": "gray_500" - }, - "tabbar_tablet_text_primary": { - "color_identifier": "gray_100" - }, - "tabbar_tablet_text_secondary": { - "color_identifier": "gray_500" - }, - "toolbar_attach_background_from": { - "color_identifier": "gray_500" - }, - "toolbar_attach_background_to": { - "color_identifier": "gray_600" - }, - "text_action_counter": { - "color_identifier": "gray_300" - }, - "text_link": { - "color_identifier": "sky_300" - }, - "text_link_highlighted_background": { - "color_identifier": "sky_300" - }, - "text_muted": { - "color_identifier": "gray_200" - }, - "text_name": { - "color_identifier": "gray_100" - }, - "text_placeholder": { - "color_identifier": "gray_300" - }, - "text_primary": { - "color_identifier": "gray_100" - }, - "text_secondary": { - "color_identifier": "gray_500" - }, - "text_subhead": { - "color_identifier": "gray_400" - }, - "text_tertiary": { - "color_identifier": "gray_600" - }, - "icon_name": { - "color_identifier": "gray_300" - }, - "panel_tab_active_background": { - "color_identifier": "gray_700" - }, - "panel_tab_active_text": { - "color_identifier": "gray_100" - }, - "panel_tab_inactive_text": { - "color_identifier": "gray_500" - }, - "im_service_message_text": { - "color_identifier": "gray_500" - }, - "writebar_icon": { - "color_identifier": "gray_100" - }, - "dynamic_blue": { - "color_identifier": "azure_300" - }, - "dynamic_gray": { - "color_identifier": "steel_gray_250" - }, - "dynamic_red": { - "color_identifier": "red_nice" - }, - "dynamic_green": { - "color_identifier": "green" - }, - "dynamic_orange": { - "color_identifier": "orange" - }, - "dynamic_orange_peach": { - "color_identifier": "orange_light" - }, - "dynamic_purple": { - "color_identifier": "purple_light" - }, - "dynamic_violet": { - "color_identifier": "violet_light" - }, - "dynamic_raspberry_pink": { - "color_identifier": "raspberry_pink_light" - }, - "dynamic_neon_pink": { - "color_identifier": "neon_pink" - }, - "vk_connect_button_primary_background": { - "color_identifier": "gray_100" - }, - "vk_connect_button_primary_foreground": { - "color_identifier": "gray_900" - }, - "vk_connect_button_secondary_background": { - "color_identifier": "gray_700" - }, - "vk_connect_button_secondary_foreground": { - "color_identifier": "gray_100" - }, - "background_text_highlighted": { - "color_identifier": "sky_300", - "alpha_multiplier": 0.24 - }, - "skeleton_shimmer_from": { - "color_identifier": "gray_900" - }, - "skeleton_shimmer_to": { - "color_identifier": "gray_900", - "alpha_multiplier": 0 - }, - "skeleton_foreground_from": { - "color_identifier": "gray_850" - }, - "skeleton_foreground_to": { - "color_identifier": "gray_800" - }, - "primary_overlay_badge": { - "color_identifier": "white_alpha40" - }, - "secondary_overlay_badge": { - "color_identifier": "white_alpha15" - }, - "content_positive_background": { - "color_identifier": "green_alpha" - }, - "vk_donut_background": { - "color_identifier": "gray_850" - - } + "space_gray": { + "appearance": "dark", + "colors": { + "accent": { + "color_identifier": "sky_300" + }, + "accent_alternate": { + "color_identifier": "white" + }, + "action_sheet_action_foreground": { + "color_identifier": "white" + }, + "action_sheet_separator": { + "color_identifier": "white_alpha12" + }, + "activity_indicator_tint": { + "color_identifier": "gray_600" + }, + "attach_picker_tab_active_background": { + "color_identifier": "gray_100" + }, + "attach_picker_tab_active_icon": { + "color_identifier": "gray_900" + }, + "attach_picker_tab_active_text": { + "color_identifier": "gray_100" + }, + "attach_picker_tab_inactive_background": { + "color_identifier": "gray_800" + }, + "attach_picker_tab_inactive_icon": { + "color_identifier": "gray_100" + }, + "attach_picker_tab_inactive_text": { + "color_identifier": "gray_500" + }, + "background_content": { + "color_identifier": "gray_900" + }, + "background_hover": { + "color_identifier": "white", + "alpha_multiplier": 0.04 + }, + "background_highlighted": { + "color_identifier": "white_alpha8" + }, + "background_keyboard": { + "color_identifier": "gray_800" + }, + "background_light": { + "color_identifier": "gray_850" + }, + "background_page": { + "color_identifier": "gray_1000" + }, + "background_suggestions": { + "color_identifier": "gray_800" + }, + "background_card_alpha": { + "color_identifier": "white_alpha32" + }, + "background_overlay_secondary": { + "color_identifier": "gray_alpha_700" + }, + "button_bot_shadow": { + "color_identifier": "gray_900" + }, + "button_commerce_background": { + "color_identifier": "green" + }, + "button_commerce_foreground": { + "color_identifier": "white" + }, + "button_muted_background": { + "color_identifier": "gray_800" + }, + "button_muted_foreground": { + "color_identifier": "gray_100" + }, + "button_outline_border": { + "color_identifier": "gray_100" + }, + "button_outline_foreground": { + "color_identifier": "gray_100" + }, + "button_primary_background": { + "color_identifier": "gray_100" + }, + "button_primary_foreground": { + "color_identifier": "gray_900" + }, + "button_secondary_background": { + "color_identifier": "gray_700" + }, + "button_secondary_background_highlighted": { + "color_identifier": "gray_700", + "alpha_multiplier": 0.6 + }, + "button_secondary_foreground": { + "color_identifier": "gray_100" + }, + "button_secondary_foreground_highlighted": { + "color_identifier": "gray_100", + "alpha_multiplier": 0.6 + }, + "button_secondary_destructive_background": { + "color_identifier": "gray_700" + }, + "button_secondary_destructive_background_highlighted": { + "color_identifier": "gray_700", + "alpha_multiplier": 0.6 + }, + "button_secondary_destructive_foreground": { + "color_identifier": "red_light" + }, + "button_secondary_destructive_foreground_highlighted": { + "color_identifier": "red_light", + "alpha_multiplier": 0.6 + }, + "button_tertiary_background": { + "color_identifier": "clear" + }, + "button_tertiary_foreground": { + "color_identifier": "gray_100" + }, + "cell_button_foreground": { + "color_identifier": "gray_100" + }, + "content_placeholder_icon": { + "color_identifier": "gray_300" + }, + "content_placeholder_text": { + "color_identifier": "gray_300" + }, + "content_tint_background": { + "color_identifier": "gray_850" + }, + "content_tint_foreground": { + "color_identifier": "gray_400" + }, + "control_background": { + "color_identifier": "gray_700" + }, + "control_background_secondary": { + "color_identifier": "gray_500" + }, + "control_foreground": { + "color_identifier": "gray_100" + }, + "control_tint": { + "color_identifier": "gray_900" + }, + "control_tint_muted": { + "color_identifier": "gray_400" + }, + "counter_primary_background": { + "color_identifier": "white" + }, + "counter_primary_text": { + "color_identifier": "gray_900" + }, + "counter_prominent_background": { + "color_identifier": "red_nice" + }, + "counter_prominent_text": { + "color_identifier": "white" + }, + "counter_secondary_background": { + "color_identifier": "gray_500" + }, + "counter_secondary_text": { + "color_identifier": "gray_900" + }, + "content_warning_background": { + "color_identifier": "gold_500" + }, + "destructive": { + "color_identifier": "red_light" + }, + "field_background": { + "color_identifier": "gray_850" + }, + "field_border": { + "color_identifier": "white_alpha12" + }, + "field_error_background": { + "color_identifier": "red_dark" + }, + "field_error_border": { + "color_identifier": "red_light" + }, + "field_valid_border": { + "color_identifier": "green" + }, + "field_text_placeholder": { + "color_identifier": "gray_500" + }, + "float_button_background": { + "color_identifier": "gray_700" + }, + "float_button_background_highlighted": { + "color_identifier": "gray_600" + }, + "float_button_foreground": { + "color_identifier": "gray_300" + }, + "float_button_border": { + "color_identifier": "black_alpha12" + }, + "header_alternate_background": { + "color_identifier": "gray_800" + }, + "header_alternate_tab_active_indicator": { + "color_identifier": "gray_100" + }, + "header_alternate_tab_active_text": { + "color_identifier": "gray_100" + }, + "header_alternate_tab_inactive_text": { + "color_identifier": "gray_500" + }, + "header_background": { + "color_identifier": "gray_900" + }, + "header_background_before_blur": { + "color_identifier": "gray_A970" + }, + "header_background_before_blur_alternate": { + "color_identifier": "gray_A970" + }, + "header_search_field_background": { + "color_identifier": "gray_750" + }, + "header_search_field_tint": { + "color_identifier": "gray_300" + }, + "header_tab_active_background": { + "color_identifier": "gray_600" + }, + "header_tab_active_text": { + "color_identifier": "gray_100" + }, + "header_tab_active_indicator": { + "color_identifier": "sky_300" + }, + "header_tab_inactive_text": { + "color_identifier": "gray_500" + }, + "header_text": { + "color_identifier": "gray_100" + }, + "header_text_alternate": { + "color_identifier": "gray_100" + }, + "header_text_secondary": { + "color_identifier": "white_alpha60" + }, + "header_tint": { + "color_identifier": "gray_100" + }, + "header_tint_alternate": { + "color_identifier": "gray_100" + }, + "icon_alpha_placeholder": { + "color_identifier": "gray_100" + }, + "icon_medium": { + "color_identifier": "gray_400" + }, + "icon_medium_alpha": { + "color_identifier": "white", + "alpha_multiplier": 0.48 + }, + "icon_outline_medium": { + "color_identifier": "gray_300" + }, + "icon_outline_secondary": { + "color_identifier": "gray_400" + }, + "icon_secondary": { + "color_identifier": "gray_500" + }, + "icon_secondary_alpha": { + "color_identifier": "white", + "alpha_multiplier": 0.36 + }, + "icon_tertiary": { + "color_identifier": "gray_600" + }, + "icon_tertiary_alpha": { + "color_identifier": "white", + "alpha_multiplier": 0.24 + }, + "im_attach_tint": { + "color_identifier": "white" + }, + "im_bubble_border_alternate": { + "color_identifier": "clear" + }, + "im_bubble_border_alternate_highlighted": { + "color_identifier": "clear" + }, + "im_bubble_button_background": { + "color_identifier": "white", + "alpha_multiplier": 0.16 + }, + "im_bubble_button_outgoing_background": { + "color_identifier": "white_alpha20" + }, + "im_bubble_button_background_highlighted": { + "color_identifier": "white", + "alpha_multiplier": 0.24 + }, + "im_bubble_button_foreground": { + "color_identifier": "gray_100" + }, + "im_bubble_incoming_expiring": { + "color_identifier": "lavender_900" + }, + "im_bubble_incoming_expiring_highlighted": { + "color_identifier": "lavender_800" + }, + "im_bubble_outgoing_expiring": { + "color_identifier": "lavender_800" + }, + "im_bubble_outgoing_expiring_highlighted": { + "color_identifier": "lavender_700" + }, + "im_bubble_incoming": { + "color_identifier": "gray_800" + }, + "im_bubble_incoming_alternate": { + "color_identifier": "gray_800" + }, + "im_bubble_incoming_alternate_highlighted": { + "color_identifier": "gray_600" + }, + "im_bubble_incoming_highlighted": { + "color_identifier": "gray_600" + }, + "im_bubble_gift_background": { + "color_identifier": "gold_500" + }, + "im_bubble_gift_background_highlighted": { + "color_identifier": "gold_400" + }, + "im_bubble_gift_text": { + "color_identifier": "white" + }, + "im_bubble_gift_text_secondary": { + "color_identifier": "gold_250" + }, + "im_bubble_mable_outgoing": { + "color_identifier": "blue_A400" + }, + "im_bubble_mable_outgoing_expiring_highlighted": { + "color_identifier": "lavender_700" + }, + "im_bubble_mable_outgoing_highlighted": { + "color_identifier": "blue_A300" + }, + "im_bubble_mable_wallpaper_outgoing": { + "color_identifier": "blue_A400" + }, + "im_bubble_mable_wallpaper_outgoing_highlighted": { + "color_identifier": "blue_A300" + }, + "im_bubble_outgoing": { + "color_identifier": "gray_700" + }, + "im_bubble_outgoing_alternate": { + "color_identifier": "gray_700" + }, + "im_bubble_outgoing_highlighted": { + "color_identifier": "gray_600" + }, + "im_bubble_outgoing_alternate_highlighted": { + "color_identifier": "gray_500" + }, + "im_bubble_wallpaper_button_background": { + "color_identifier": "gray_700" + }, + "im_bubble_wallpaper_button_background_highlighted": { + "color_identifier": "gray_500" + }, + "im_bubble_wallpaper_button_foreground": { + "color_identifier": "gray_100" + }, + "im_bubble_wallpaper_incoming": { + "color_identifier": "gray_800" + }, + "im_bubble_wallpaper_incoming_highlighted": { + "color_identifier": "gray_600" + }, + "im_bubble_wallpaper_outgoing": { + "color_identifier": "gray_700" + }, + "im_bubble_wallpaper_outgoing_highlighted": { + "color_identifier": "gray_600" + }, + "im_forward_line_tint": { + "color_identifier": "white", + "alpha_multiplier": 0.24 + }, + "im_reply_separator": { + "color_identifier": "white" + }, + "im_text_name": { + "color_identifier": "sky_300" + }, + "im_toolbar_voice_msg_background": { + "color_identifier": "gray_700" + }, + "im_toolbar_separator": { + "color_identifier": "gray_300" + }, + "image_border": { + "color_identifier": "white_alpha8" + }, + "input_background": { + "color_identifier": "gray_800" + }, + "input_border": { + "color_identifier": "gray_800" + }, + "landing_background": { + "color_identifier": "gray_900" + }, + "landing_field_background": { + "color_identifier": "gray_850" + }, + "landing_field_border": { + "color_identifier": "clear" + }, + "landing_field_placeholder": { + "color_identifier": "gray_300" + }, + "landing_login_button_background": { + "color_identifier": "gray_100" + }, + "landing_login_button_foreground": { + "color_identifier": "gray_900" + }, + "landing_primary_button_background": { + "color_identifier": "gray_100" + }, + "landing_primary_button_foreground": { + "color_identifier": "gray_900" + }, + "landing_tertiary_button_background": { + "color_identifier": "clear" + }, + "landing_tertiary_button_foreground": { + "color_identifier": "white" + }, + "landing_text_primary": { + "color_identifier": "gray_100" + }, + "landing_text_title": { + "color_identifier": "white" + }, + "landing_text_secondary": { + "color_identifier": "gray_500" + }, + "landing_secondary_button_background": { + "color_identifier": "white_alpha15" + }, + "landing_secondary_button_foreground": { + "color_identifier": "white" + }, + "landing_snippet_border": { + "color_identifier": "white_alpha15" + }, + "like_text_tint": { + "color_identifier": "red_light" + }, + "link_alternate": { + "color_identifier": "white" + }, + "loader_background": { + "color_identifier": "gray_900" + }, + "loader_tint": { + "color_identifier": "gray_500" + }, + "loader_track_fill": { + "color_identifier": "gray_700" + }, + "loader_track_value_fill": { + "color_identifier": "white" + }, + "media_overlay_button_background": { + "color_identifier": "white" + }, + "media_overlay_button_foreground": { + "color_identifier": "gray_800" + }, + "modal_card_background": { + "color_identifier": "gray_800" + }, + "modal_card_border": { + "color_identifier": "white_alpha12" + }, + "modal_card_header_close": { + "color_identifier": "white" + }, + "music_playback_icon": { + "color_identifier": "white" + }, + "feed_recommended_friend_promo_background": { + "color_identifier": "steel_gray_500" + }, + "overlay_status_background": { + "color_identifier": "gray_900" + }, + "overlay_status_foreground": { + "color_identifier": "gray_100" + }, + "overlay_status_icon": { + "color_identifier": "gray_50" + }, + "placeholder_icon_background": { + "color_identifier": "white_alpha8" + }, + "placeholder_icon_background_opaque": { + "color_identifier": "gray_850" + }, + "placeholder_icon_foreground_primary": { + "color_identifier": "gray_400" + }, + "placeholder_icon_foreground_secondary": { + "color_identifier": "gray_600" + }, + "placeholder_icon_tint": { + "color_identifier": "white" + }, + "poll_option_background": { + "color_identifier": "white" + }, + "search_bar_background": { + "color_identifier": "gray_900" + }, + "search_bar_field_background": { + "color_identifier": "gray_750" + }, + "search_bar_field_tint": { + "color_identifier": "gray_300" + }, + "search_bar_segmented_control_tint": { + "color_identifier": "gray_400" + }, + "segmented_control_bar_background": { + "color_identifier": "gray_900" + }, + "segmented_control_tint": { + "color_identifier": "gray_500" + }, + "selection_off_icon": { + "color_identifier": "gray_600" + }, + "separator_alpha": { + "color_identifier": "white_alpha12" + }, + "separator_alternate": { + "color_identifier": "gray_850" + }, + "separator_common": { + "color_identifier": "gray_750" + }, + "snippet_background": { + "color_identifier": "gray_850" + }, + "snippet_border": { + "color_identifier": "white_alpha15" + }, + "snippet_icon_tertiary": { + "color_identifier": "gray_600" + }, + "splashscreen_icon": { + "color_identifier": "gray_800" + }, + "statusbar_alternate_legacy_background": { + "color_identifier": "clear" + }, + "stories_create_button_background_from": { + "color_identifier": "gray_750" + }, + "stories_create_button_background_to": { + "color_identifier": "gray_750" + }, + "stories_create_button_foreground": { + "color_identifier": "gray_200" + }, + "stories_skeleton_loader_background": { + "color_identifier": "gray_750" + }, + "stories_create_button_icon_background": { + "color_identifier": "gray_700" + }, + "switch_ios_off_border": { + "color_identifier": "gray_800" + }, + "tabbar_active_icon": { + "color_identifier": "white" + }, + "tabbar_background": { + "color_identifier": "gray_800" + }, + "tabbar_inactive_icon": { + "color_identifier": "gray_500" + }, + "tabbar_tablet_active_icon": { + "color_identifier": "sky_300" + }, + "tabbar_tablet_background": { + "color_identifier": "gray_850" + }, + "tabbar_tablet_inactive_icon": { + "color_identifier": "gray_500" + }, + "tabbar_tablet_text_primary": { + "color_identifier": "gray_100" + }, + "tabbar_tablet_text_secondary": { + "color_identifier": "gray_500" + }, + "toolbar_attach_background_from": { + "color_identifier": "gray_500" + }, + "toolbar_attach_background_to": { + "color_identifier": "gray_600" + }, + "text_action_counter": { + "color_identifier": "gray_300" + }, + "text_link": { + "color_identifier": "sky_300" + }, + "text_link_highlighted_background": { + "color_identifier": "sky_300" + }, + "text_muted": { + "color_identifier": "gray_200" + }, + "text_name": { + "color_identifier": "gray_100" + }, + "text_placeholder": { + "color_identifier": "gray_300" + }, + "text_primary": { + "color_identifier": "gray_100" + }, + "text_secondary": { + "color_identifier": "gray_500" + }, + "text_subhead": { + "color_identifier": "gray_400" + }, + "text_tertiary": { + "color_identifier": "gray_600" + }, + "icon_name": { + "color_identifier": "gray_300" + }, + "panel_tab_active_background": { + "color_identifier": "gray_700" + }, + "panel_tab_active_text": { + "color_identifier": "gray_100" + }, + "panel_tab_inactive_text": { + "color_identifier": "gray_500" + }, + "im_service_message_text": { + "color_identifier": "gray_500" + }, + "writebar_icon": { + "color_identifier": "gray_100" + }, + "dynamic_blue": { + "color_identifier": "azure_300" + }, + "dynamic_gray": { + "color_identifier": "steel_gray_250" + }, + "dynamic_red": { + "color_identifier": "red_nice" + }, + "dynamic_green": { + "color_identifier": "green" + }, + "dynamic_orange": { + "color_identifier": "orange" + }, + "dynamic_orange_peach": { + "color_identifier": "orange_light" + }, + "dynamic_purple": { + "color_identifier": "purple_light" + }, + "dynamic_violet": { + "color_identifier": "violet_light" + }, + "dynamic_raspberry_pink": { + "color_identifier": "raspberry_pink_light" + }, + "dynamic_neon_pink": { + "color_identifier": "neon_pink" + }, + "vk_connect_button_primary_background": { + "color_identifier": "gray_100" + }, + "vk_connect_button_primary_foreground": { + "color_identifier": "gray_900" + }, + "vk_connect_button_secondary_background": { + "color_identifier": "gray_700" + }, + "vk_connect_button_secondary_foreground": { + "color_identifier": "gray_100" + }, + "background_text_highlighted": { + "color_identifier": "sky_300", + "alpha_multiplier": 0.24 + }, + "text_highlight_alpha": { + "color_identifier": "white_alpha20" + }, + "skeleton_shimmer_from": { + "color_identifier": "gray_900" + }, + "skeleton_shimmer_to": { + "color_identifier": "gray_900", + "alpha_multiplier": 0 + }, + "skeleton_foreground_from": { + "color_identifier": "gray_850" + }, + "skeleton_foreground_to": { + "color_identifier": "gray_800" + }, + "primary_overlay_badge": { + "color_identifier": "white_alpha40" + }, + "secondary_overlay_badge": { + "color_identifier": "white_alpha15" + }, + "content_positive_background": { + "color_identifier": "green_alpha" + }, + "vk_donut_background": { + "color_identifier": "gray_850" } - }, - "bright_light": { - "appearance": "light", - "colors": { - "accent": { - "color_identifier": "azure_300" - }, - "accent_alternate": { - "color_identifier": "azure_A100" - }, - "action_sheet_action_foreground": { - "color_identifier": "azure_300" - }, - "action_sheet_separator": { - "color_identifier": "black_alpha12" - }, - "activity_indicator_tint": { - "color_identifier": "steel_gray_200" - }, - "attach_picker_tab_active_background": { - "color_identifier": "azure_A400" - }, - "attach_picker_tab_active_icon": { - "color_identifier": "white" - }, - "attach_picker_tab_active_text": { - "color_identifier": "azure_A400" - }, - "attach_picker_tab_inactive_background": { - "color_identifier": "gray_40" - }, - "attach_picker_tab_inactive_icon": { - "color_identifier": "steel_gray_400" - }, - "attach_picker_tab_inactive_text": { - "color_identifier": "steel_gray_400" - }, - "background_content": { - "color_identifier": "white" - }, - "background_hover": { - "color_identifier": "black", - "alpha_multiplier": 0.04 - }, - "background_highlighted": { - "color_identifier": "black_alpha8" - }, - "background_keyboard": { - "color_identifier": "gray_100" - }, - "background_light": { - "color_identifier": "gray_20" - }, - "background_page": { - "color_identifier": "gray_50" - }, - "background_suggestions": { - "color_identifier": "white" - }, - "button_bot_shadow": { - "color_identifier": "gray_200" - }, - "button_commerce_background": { - "color_identifier": "green" - }, - "button_commerce_foreground": { - "color_identifier": "white" - }, - "button_muted_background": { - "color_identifier": "gray_40" - }, - "button_muted_foreground": { - "color_identifier": "azure_300" - }, - "button_outline_border": { - "color_identifier": "azure_300" - }, - "button_outline_foreground": { - "color_identifier": "azure_300" - }, - "button_primary_background": { - "color_identifier": "azure_A400" - }, - "button_primary_foreground": { - "color_identifier": "white" - }, - "button_secondary_background": { - "color_identifier": "black_blue24", - "alpha_multiplier": 0.05 - }, - "button_secondary_background_highlighted": { - "color_identifier": "black_blue24", - "alpha_multiplier": 0.03 - }, - "button_secondary_foreground": { - "color_identifier": "azure_300" - }, - "button_secondary_foreground_highlighted": { - "color_identifier": "azure_300", - "alpha_multiplier": 0.6 - }, - "button_secondary_destructive_background": { - "color_identifier": "black_blue24", - "alpha_multiplier": 0.05 - }, - "button_secondary_destructive_background_highlighted": { - "color_identifier": "black_blue24", - "alpha_multiplier": 0.03 - }, - "button_secondary_destructive_foreground": { - "color_identifier": "red" - }, - "button_secondary_destructive_foreground_highlighted": { - "color_identifier": "red", - "alpha_multiplier": 0.6 - }, - "button_tertiary_background": { - "color_identifier": "clear" - }, - "button_tertiary_foreground": { - "color_identifier": "azure_A400" - }, - "cell_button_foreground": { - "color_identifier": "azure_300" - }, - "content_placeholder_icon": { - "color_identifier": "steel_gray_300" - }, - "content_placeholder_text": { - "color_identifier": "steel_gray_400" - }, - "content_tint_background": { - "color_identifier": "gray_A40" - }, - "content_tint_foreground": { - "color_identifier": "gray_450" - }, - "control_background": { - "color_identifier": "gray_50" - }, - "control_background_secondary": { - "color_identifier": "white" - }, - "control_foreground": { - "color_identifier": "blue_400" - }, - "control_tint": { - "color_identifier": "white" - }, - "control_tint_muted": { - "color_identifier": "gray_500" - }, - "counter_primary_background": { - "color_identifier": "azure_300" - }, - "counter_primary_text": { - "color_identifier": "white" - }, - "counter_prominent_background": { - "color_identifier": "red_nice" - }, - "counter_prominent_text": { - "color_identifier": "white" - }, - "counter_secondary_background": { - "color_identifier": "steel_gray_200" - }, - "counter_secondary_text": { - "color_identifier": "white" - }, - "content_warning_background": { - "color_identifier": "yellow_overlight" - }, - "destructive": { - "color_identifier": "red" - }, - "field_background": { - "color_identifier": "gray_40" - }, - "field_border": { - "color_identifier": "black_alpha12" - }, - "field_error_background": { - "color_identifier": "pink_light" - }, - "field_error_border": { - "color_identifier": "red" - }, - "field_valid_border": { - "color_identifier": "green" - }, - "field_text_placeholder": { - "color_identifier": "steel_gray_400" - }, - "float_button_background": { - "color_identifier": "gray_A40" - }, - "float_button_background_highlighted": { - "color_identifier": "gray_50" - }, - "float_button_foreground": { - "color_identifier": "steel_gray_300" - }, - "float_button_border": { - "color_identifier": "black_alpha05" - }, - "header_alternate_background": { - "color_identifier": "white" - }, - "header_alternate_tab_active_indicator": { - "color_identifier": "azure_300" - }, - "header_alternate_tab_active_text": { - "color_identifier": "black" - }, - "header_alternate_tab_inactive_text": { - "color_identifier": "steel_gray_300" - }, - "header_background": { - "color_identifier": "white" - }, - "header_background_before_blur": { - "color_identifier": "white" - }, - "header_background_before_blur_alternate": { - "color_identifier": "white" - }, - "header_search_field_background": { - "color_identifier": "gray_50" - }, - "header_search_field_tint": { - "color_identifier": "steel_gray_400" - }, - "header_tab_active_background": { - "color_identifier": "clear" - }, - "header_tab_active_text": { - "color_identifier": "black" - }, - "header_tab_active_indicator": { - "color_identifier": "azure_300" - }, - "header_tab_inactive_text": { - "color_identifier": "steel_gray_300" - }, - "header_text": { - "color_identifier": "black" - }, - "header_text_alternate": { - "color_identifier": "black" - }, - "header_text_secondary": { - "color_identifier": "steel_gray_400" - }, - "header_tint": { - "color_identifier": "azure_300" - }, - "header_tint_alternate": { - "color_identifier": "azure_300" - }, - "icon_alpha_placeholder": { - "color_identifier": "white" - }, - "icon_medium": { - "color_identifier": "steel_gray_400" - }, - "icon_medium_alpha": { - "color_identifier": "black", - "alpha_multiplier": 0.48 - }, - "icon_outline_medium": { - "color_identifier": "steel_gray_400" - }, - "icon_outline_secondary": { - "color_identifier": "steel_gray_300" - }, - "icon_secondary": { - "color_identifier": "steel_gray_300" - }, - "icon_secondary_alpha": { - "color_identifier": "black", - "alpha_multiplier": 0.36 - }, - "icon_tertiary": { - "color_identifier": "steel_gray_150" - }, - "icon_tertiary_alpha": { - "color_identifier": "black", - "alpha_multiplier": 0.24 - }, - "im_attach_tint": { - "color_identifier": "azure_A400" - }, - "im_bubble_border_alternate": { - "color_identifier": "gray_100" - }, - "im_bubble_border_alternate_highlighted": { - "color_identifier": "gray_A150" - }, - "im_bubble_button_background": { - "color_identifier": "gray_20" - }, - "im_bubble_button_outgoing_background": { - "color_identifier": "white_alpha60" - }, - "im_bubble_button_background_highlighted": { - "color_identifier": "gray_A150" - }, - "im_bubble_button_foreground": { - "color_identifier": "black" - }, - "im_bubble_incoming_expiring": { - "color_identifier": "lavender_100" - }, - "im_bubble_incoming_expiring_highlighted": { - "color_identifier": "lavender_200" - }, - "im_bubble_outgoing_expiring": { - "color_identifier": "lavender_200" - }, - "im_bubble_outgoing_expiring_highlighted": { - "color_identifier": "lavender_300" - }, - "im_bubble_incoming": { - "color_identifier": "gray_50" - }, - "im_bubble_incoming_alternate": { - "color_identifier": "white" - }, - "im_bubble_incoming_alternate_highlighted": { - "color_identifier": "gray_20" - }, - "im_bubble_incoming_highlighted": { - "color_identifier": "gray_A150" - }, - "im_bubble_gift_background": { - "color_identifier": "gold_200" - }, - "im_bubble_gift_background_highlighted": { - "color_identifier": "gold_250" - }, - "im_bubble_gift_text": { - "color_identifier": "gold_500" - }, - "im_bubble_gift_text_secondary": { - "color_identifier": "gold_400" - }, - "im_bubble_outgoing": { - "color_identifier": "white_blue20" - }, - "im_bubble_outgoing_alternate": { - "color_identifier": "white" - }, - "im_bubble_outgoing_highlighted": { - "color_identifier": "white_blue32" - }, - "im_bubble_outgoing_alternate_highlighted": { - "color_identifier": "gray_20" - }, - "im_bubble_wallpaper_button_background": { - "color_identifier": "gray_40" - }, - "im_bubble_wallpaper_button_background_highlighted": { - "color_identifier": "gray_100" - }, - "im_bubble_wallpaper_button_foreground": { - "color_identifier": "black" - }, - "im_bubble_wallpaper_incoming": { - "color_identifier": "white" - }, - "im_bubble_wallpaper_incoming_highlighted": { - "color_identifier": "gray_50" - }, - "im_bubble_wallpaper_outgoing": { - "color_identifier": "white_blue20" - }, - "im_bubble_wallpaper_outgoing_highlighted": { - "color_identifier": "white_blue32" - }, - "im_forward_line_tint": { - "color_identifier": "blue_600", - "alpha_multiplier": 0.24 - }, - "im_reply_separator": { - "color_identifier": "azure_A400" - }, - "im_text_name": { - "color_identifier": "azure_A400" - }, - "im_toolbar_voice_msg_background": { - "color_identifier": "steel_gray_300" - }, - "im_toolbar_separator": { - "color_identifier": "black_blue24" - }, - "image_border": { - "color_identifier": "black_alpha8" - }, - "input_background": { - "color_identifier": "gray_40" - }, - "input_border": { - "color_identifier": "gray_100" - }, - "landing_background": { - "color_identifier": "white" - }, - "landing_field_background": { - "color_identifier": "gray_40" - }, - "landing_field_border": { - "color_identifier": "clear" - }, - "landing_field_placeholder": { - "color_identifier": "steel_gray_400" - }, - "landing_login_button_background": { - "color_identifier": "azure_A400" - }, - "landing_login_button_foreground": { - "color_identifier": "white" - }, - "landing_primary_button_background": { - "color_identifier": "azure_A400" - }, - "landing_primary_button_foreground": { - "color_identifier": "white" - }, - "landing_tertiary_button_background": { - "color_identifier": "clear" - }, - "landing_tertiary_button_foreground": { - "color_identifier": "azure_A400" - }, - "landing_text_primary": { - "color_identifier": "black" - }, - "landing_text_title": { - "color_identifier": "azure_A400" - }, - "landing_text_secondary": { - "color_identifier": "steel_gray_400" - }, - "landing_secondary_button_background": { - "color_identifier": "black_blue45_alpha10" - }, - "landing_secondary_button_foreground": { - "color_identifier": "azure_300" - }, - "landing_snippet_border": { - "color_identifier": "black_alpha15" - }, - "like_text_tint": { - "color_identifier": "red_nice" - }, - "link_alternate": { - "color_identifier": "azure_A400" - }, - "loader_background": { - "color_identifier": "gray_50" - }, - "loader_tint": { - "color_identifier": "gray_500" - }, - "loader_track_fill": { - "color_identifier": "gray_100" - }, - "loader_track_value_fill": { - "color_identifier": "blue_300" - }, - "media_overlay_button_background": { - "color_identifier": "white" - }, - "media_overlay_button_foreground": { - "color_identifier": "gray_800" - }, - "modal_card_background": { - "color_identifier": "white" - }, - "modal_card_border": { - "color_identifier": "clear" - }, - "modal_card_header_close": { - "color_identifier": "black" - }, - "music_playback_icon": { - "color_identifier": "black" - }, - "feed_recommended_friend_promo_background": { - "color_identifier": "blue_300" - }, - "overlay_status_background": { - "color_identifier": "gray_50" - }, - "overlay_status_foreground": { - "color_identifier": "steel_gray_500" - }, - "overlay_status_icon": { - "color_identifier": "steel_gray_400" - }, - "placeholder_icon_background": { - "color_identifier": "black_blue24_alpha8" - }, - "placeholder_icon_background_opaque": { - "color_identifier": "gray_40" - }, - "placeholder_icon_foreground_primary": { - "color_identifier": "steel_gray_300" - }, - "placeholder_icon_foreground_secondary": { - "color_identifier": "steel_gray_200" - }, - "placeholder_icon_tint": { - "color_identifier": "black_blue24" - }, - "poll_option_background": { - "color_identifier": "blue_600" - }, - "search_bar_background": { - "color_identifier": "white" - }, - "search_bar_field_background": { - "color_identifier": "gray_50" - }, - "search_bar_field_tint": { - "color_identifier": "steel_gray_400" - }, - "search_bar_segmented_control_tint": { - "color_identifier": "steel_gray_400" - }, - "segmented_control_bar_background": { - "color_identifier": "clear" - }, - "segmented_control_tint": { - "color_identifier": "steel_gray_300" - }, - "selection_off_icon": { - "color_identifier": "steel_gray_150" - }, - "separator_alpha": { - "color_identifier": "black_alpha12" - }, - "separator_alternate": { - "color_identifier": "gray_100" - }, - "separator_common": { - "color_identifier": "gray_A150" - }, - "snippet_background": { - "color_identifier": "white" - }, - "snippet_border": { - "color_identifier": "black_alpha15" - }, - "snippet_icon_tertiary": { - "color_identifier": "gray_200" - }, - "splashscreen_icon": { - "color_identifier": "gray_100" - }, - "statusbar_alternate_legacy_background": { - "color_identifier": "black_alpha20" - }, - "stories_create_button_background_from": { - "color_identifier": "gray_40" - }, - "stories_create_button_background_to": { - "color_identifier": "gray_100" - }, - "stories_create_button_foreground": { - "color_identifier": "steel_gray_500" - }, - "stories_skeleton_loader_background": { - "color_identifier": "gray_200" - }, - "switch_ios_off_border": { - "color_identifier": "gray_100" - }, - "stories_create_button_icon_background": { - "color_identifier": "white" - }, - "tabbar_active_icon": { - "color_identifier": "azure_350" - }, - "tabbar_background": { - "color_identifier": "gray_20" - }, - "tabbar_inactive_icon": { - "color_identifier": "steel_gray_300" - }, - "tabbar_tablet_active_icon": { - "color_identifier": "azure_350" - }, - "tabbar_tablet_background": { - "color_identifier": "gray_20" - }, - "tabbar_tablet_inactive_icon": { - "color_identifier": "steel_gray_300" - }, - "tabbar_tablet_text_primary": { - "color_identifier": "black" - }, - "tabbar_tablet_text_secondary": { - "color_identifier": "gray_400" - }, - "toolbar_attach_background_from": { - "color_identifier": "steel_gray_150" - }, - "toolbar_attach_background_to": { - "color_identifier": "steel_gray_250" - }, - "text_action_counter": { - "color_identifier": "steel_gray_400" - }, - "text_link": { - "color_identifier": "azure_A400" - }, - "text_link_highlighted_background": { - "color_identifier": "black" - }, - "text_muted": { - "color_identifier": "gray_800" - }, - "text_name": { - "color_identifier": "azure_A400" - }, - "text_placeholder": { - "color_identifier": "steel_gray_400" - }, - "text_primary": { - "color_identifier": "black" - }, - "text_secondary": { - "color_identifier": "steel_gray_400" - }, - "text_subhead": { - "color_identifier": "steel_gray_500" - }, - "text_tertiary": { - "color_identifier": "steel_gray_300" - }, - "icon_name": { - "color_identifier": "blue_200_muted" - }, - "panel_tab_active_background": { - "color_identifier": "gray_50" - }, - "panel_tab_active_text": { - "color_identifier": "gray_600" - }, - "panel_tab_inactive_text": { - "color_identifier": "gray_500" - }, - "im_service_message_text": { - "color_identifier": "steel_gray_400" - }, - "writebar_icon": { - "color_identifier": "azure_300" - }, - "dynamic_blue": { - "color_identifier": "azure_300" - }, - "dynamic_gray": { - "color_identifier": "steel_gray_250" - }, - "dynamic_red": { - "color_identifier": "red_nice" - }, - "dynamic_green": { - "color_identifier": "green" - }, - "dynamic_orange": { - "color_identifier": "orange" - }, - "dynamic_orange_peach": { - "color_identifier": "orange_tint" - }, - "dynamic_purple": { - "color_identifier": "purple" - }, - "dynamic_violet": { - "color_identifier": "violet" - }, - "dynamic_raspberry_pink": { - "color_identifier": "raspberry_pink" - }, - "dynamic_neon_pink": { - "color_identifier": "neon_pink" - }, - "vk_connect_button_primary_background": { - "color_identifier": "gray_900" - }, - "vk_connect_button_primary_foreground": { - "color_identifier": "white" - }, - "vk_connect_button_secondary_background": { - "color_identifier": "gray_40" - }, - "vk_connect_button_secondary_foreground": { - "color_identifier": "gray_900" - }, - "background_text_highlighted": { - "color_identifier": "azure_300", - "alpha_multiplier": 0.2 - }, - "skeleton_shimmer_from": { - "color_identifier": "white" - }, - "skeleton_shimmer_to": { - "color_identifier": "white", - "alpha_multiplier": 0 - }, - "skeleton_foreground_from": { - "color_identifier": "gray_A40" - }, - "skeleton_foreground_to": { - "color_identifier": "gray_100" - }, - "primary_overlay_badge": { - "color_identifier": "black_alpha60" - }, - "secondary_overlay_badge": { - "color_identifier": "black_alpha24" - }, - "content_positive_background": { - "color_identifier": "green_alpha" - }, - "vk_donut_background": { - "color_identifier": "yellow_overlight" - } + } + }, + "bright_light": { + "appearance": "light", + "colors": { + "accent": { + "color_identifier": "azure_300" + }, + "accent_alternate": { + "color_identifier": "azure_A100" + }, + "action_sheet_action_foreground": { + "color_identifier": "azure_300" + }, + "action_sheet_separator": { + "color_identifier": "black_alpha12" + }, + "activity_indicator_tint": { + "color_identifier": "steel_gray_200" + }, + "attach_picker_tab_active_background": { + "color_identifier": "azure_A400" + }, + "attach_picker_tab_active_icon": { + "color_identifier": "white" + }, + "attach_picker_tab_active_text": { + "color_identifier": "azure_A400" + }, + "attach_picker_tab_inactive_background": { + "color_identifier": "gray_40" + }, + "attach_picker_tab_inactive_icon": { + "color_identifier": "steel_gray_400" + }, + "attach_picker_tab_inactive_text": { + "color_identifier": "steel_gray_400" + }, + "background_content": { + "color_identifier": "white" + }, + "background_hover": { + "color_identifier": "black", + "alpha_multiplier": 0.04 + }, + "background_highlighted": { + "color_identifier": "black_alpha8" + }, + "background_keyboard": { + "color_identifier": "gray_100" + }, + "background_light": { + "color_identifier": "gray_20" + }, + "background_page": { + "color_identifier": "gray_50" + }, + "background_suggestions": { + "color_identifier": "white" + }, + "background_card_alpha": { + "color_identifier": "black_alpha20" + }, + "background_overlay_secondary": { + "color_identifier": "gray_alpha_700" + }, + "button_bot_shadow": { + "color_identifier": "gray_200" + }, + "button_commerce_background": { + "color_identifier": "green" + }, + "button_commerce_foreground": { + "color_identifier": "white" + }, + "button_muted_background": { + "color_identifier": "gray_40" + }, + "button_muted_foreground": { + "color_identifier": "azure_300" + }, + "button_outline_border": { + "color_identifier": "azure_300" + }, + "button_outline_foreground": { + "color_identifier": "azure_300" + }, + "button_primary_background": { + "color_identifier": "azure_A400" + }, + "button_primary_foreground": { + "color_identifier": "white" + }, + "button_secondary_background": { + "color_identifier": "black_blue24", + "alpha_multiplier": 0.05 + }, + "button_secondary_background_highlighted": { + "color_identifier": "black_blue24", + "alpha_multiplier": 0.03 + }, + "button_secondary_foreground": { + "color_identifier": "azure_300" + }, + "button_secondary_foreground_highlighted": { + "color_identifier": "azure_300", + "alpha_multiplier": 0.6 + }, + "button_secondary_destructive_background": { + "color_identifier": "black_blue24", + "alpha_multiplier": 0.05 + }, + "button_secondary_destructive_background_highlighted": { + "color_identifier": "black_blue24", + "alpha_multiplier": 0.03 + }, + "button_secondary_destructive_foreground": { + "color_identifier": "red" + }, + "button_secondary_destructive_foreground_highlighted": { + "color_identifier": "red", + "alpha_multiplier": 0.6 + }, + "button_tertiary_background": { + "color_identifier": "clear" + }, + "button_tertiary_foreground": { + "color_identifier": "azure_A400" + }, + "cell_button_foreground": { + "color_identifier": "azure_300" + }, + "content_placeholder_icon": { + "color_identifier": "steel_gray_300" + }, + "content_placeholder_text": { + "color_identifier": "steel_gray_400" + }, + "content_tint_background": { + "color_identifier": "gray_A40" + }, + "content_tint_foreground": { + "color_identifier": "gray_450" + }, + "control_background": { + "color_identifier": "gray_50" + }, + "control_background_secondary": { + "color_identifier": "white" + }, + "control_foreground": { + "color_identifier": "blue_400" + }, + "control_tint": { + "color_identifier": "white" + }, + "control_tint_muted": { + "color_identifier": "gray_500" + }, + "counter_primary_background": { + "color_identifier": "azure_300" + }, + "counter_primary_text": { + "color_identifier": "white" + }, + "counter_prominent_background": { + "color_identifier": "red_nice" + }, + "counter_prominent_text": { + "color_identifier": "white" + }, + "counter_secondary_background": { + "color_identifier": "steel_gray_200" + }, + "counter_secondary_text": { + "color_identifier": "white" + }, + "content_warning_background": { + "color_identifier": "yellow_overlight" + }, + "destructive": { + "color_identifier": "red" + }, + "field_background": { + "color_identifier": "gray_40" + }, + "field_border": { + "color_identifier": "black_alpha12" + }, + "field_error_background": { + "color_identifier": "pink_light" + }, + "field_error_border": { + "color_identifier": "red" + }, + "field_valid_border": { + "color_identifier": "green" + }, + "field_text_placeholder": { + "color_identifier": "steel_gray_400" + }, + "float_button_background": { + "color_identifier": "gray_A40" + }, + "float_button_background_highlighted": { + "color_identifier": "gray_50" + }, + "float_button_foreground": { + "color_identifier": "steel_gray_300" + }, + "float_button_border": { + "color_identifier": "black_alpha05" + }, + "header_alternate_background": { + "color_identifier": "white" + }, + "header_alternate_tab_active_indicator": { + "color_identifier": "azure_300" + }, + "header_alternate_tab_active_text": { + "color_identifier": "black" + }, + "header_alternate_tab_inactive_text": { + "color_identifier": "steel_gray_300" + }, + "header_background": { + "color_identifier": "white" + }, + "header_background_before_blur": { + "color_identifier": "white" + }, + "header_background_before_blur_alternate": { + "color_identifier": "white" + }, + "header_search_field_background": { + "color_identifier": "gray_50" + }, + "header_search_field_tint": { + "color_identifier": "steel_gray_400" + }, + "header_tab_active_background": { + "color_identifier": "clear" + }, + "header_tab_active_text": { + "color_identifier": "black" + }, + "header_tab_active_indicator": { + "color_identifier": "azure_300" + }, + "header_tab_inactive_text": { + "color_identifier": "steel_gray_300" + }, + "header_text": { + "color_identifier": "black" + }, + "header_text_alternate": { + "color_identifier": "black" + }, + "header_text_secondary": { + "color_identifier": "steel_gray_400" + }, + "header_tint": { + "color_identifier": "azure_300" + }, + "header_tint_alternate": { + "color_identifier": "azure_300" + }, + "icon_alpha_placeholder": { + "color_identifier": "white" + }, + "icon_medium": { + "color_identifier": "steel_gray_400" + }, + "icon_medium_alpha": { + "color_identifier": "black", + "alpha_multiplier": 0.48 + }, + "icon_outline_medium": { + "color_identifier": "steel_gray_400" + }, + "icon_outline_secondary": { + "color_identifier": "steel_gray_300" + }, + "icon_secondary": { + "color_identifier": "steel_gray_300" + }, + "icon_secondary_alpha": { + "color_identifier": "black", + "alpha_multiplier": 0.36 + }, + "icon_tertiary": { + "color_identifier": "steel_gray_150" + }, + "icon_tertiary_alpha": { + "color_identifier": "black", + "alpha_multiplier": 0.24 + }, + "im_attach_tint": { + "color_identifier": "azure_A400" + }, + "im_bubble_border_alternate": { + "color_identifier": "gray_100" + }, + "im_bubble_border_alternate_highlighted": { + "color_identifier": "gray_A150" + }, + "im_bubble_button_background": { + "color_identifier": "gray_20" + }, + "im_bubble_button_outgoing_background": { + "color_identifier": "white_alpha60" + }, + "im_bubble_button_background_highlighted": { + "color_identifier": "gray_A150" + }, + "im_bubble_button_foreground": { + "color_identifier": "black" + }, + "im_bubble_incoming_expiring": { + "color_identifier": "lavender_100" + }, + "im_bubble_incoming_expiring_highlighted": { + "color_identifier": "lavender_200" + }, + "im_bubble_outgoing_expiring": { + "color_identifier": "lavender_200" + }, + "im_bubble_outgoing_expiring_highlighted": { + "color_identifier": "lavender_300" + }, + "im_bubble_incoming": { + "color_identifier": "gray_50" + }, + "im_bubble_incoming_alternate": { + "color_identifier": "white" + }, + "im_bubble_incoming_alternate_highlighted": { + "color_identifier": "gray_20" + }, + "im_bubble_incoming_highlighted": { + "color_identifier": "gray_A150" + }, + "im_bubble_gift_background": { + "color_identifier": "gold_200" + }, + "im_bubble_gift_background_highlighted": { + "color_identifier": "gold_250" + }, + "im_bubble_gift_text": { + "color_identifier": "gold_500" + }, + "im_bubble_gift_text_secondary": { + "color_identifier": "gold_400" + }, + "im_bubble_mable_outgoing": { + "color_identifier": "mable_blue_100" + }, + "im_bubble_mable_outgoing_expiring_highlighted": { + "color_identifier": "lavender_250" + }, + "im_bubble_mable_outgoing_highlighted": { + "color_identifier": "mable_blue_200" + }, + "im_bubble_mable_wallpaper_outgoing": { + "color_identifier": "mable_blue_100" + }, + "im_bubble_mable_wallpaper_outgoing_highlighted": { + "color_identifier": "mable_blue_200" + }, + "im_bubble_outgoing": { + "color_identifier": "white_blue20" + }, + "im_bubble_outgoing_alternate": { + "color_identifier": "white" + }, + "im_bubble_outgoing_highlighted": { + "color_identifier": "white_blue32" + }, + "im_bubble_outgoing_alternate_highlighted": { + "color_identifier": "gray_20" + }, + "im_bubble_wallpaper_button_background": { + "color_identifier": "gray_40" + }, + "im_bubble_wallpaper_button_background_highlighted": { + "color_identifier": "gray_100" + }, + "im_bubble_wallpaper_button_foreground": { + "color_identifier": "black" + }, + "im_bubble_wallpaper_incoming": { + "color_identifier": "white" + }, + "im_bubble_wallpaper_incoming_highlighted": { + "color_identifier": "gray_50" + }, + "im_bubble_wallpaper_outgoing": { + "color_identifier": "white_blue20" + }, + "im_bubble_wallpaper_outgoing_highlighted": { + "color_identifier": "white_blue32" + }, + "im_forward_line_tint": { + "color_identifier": "blue_600", + "alpha_multiplier": 0.24 + }, + "im_reply_separator": { + "color_identifier": "azure_A400" + }, + "im_text_name": { + "color_identifier": "azure_A400" + }, + "im_toolbar_voice_msg_background": { + "color_identifier": "steel_gray_300" + }, + "im_toolbar_separator": { + "color_identifier": "black_blue24" + }, + "image_border": { + "color_identifier": "black_alpha8" + }, + "input_background": { + "color_identifier": "gray_40" + }, + "input_border": { + "color_identifier": "gray_100" + }, + "landing_background": { + "color_identifier": "white" + }, + "landing_field_background": { + "color_identifier": "gray_40" + }, + "landing_field_border": { + "color_identifier": "clear" + }, + "landing_field_placeholder": { + "color_identifier": "steel_gray_400" + }, + "landing_login_button_background": { + "color_identifier": "azure_A400" + }, + "landing_login_button_foreground": { + "color_identifier": "white" + }, + "landing_primary_button_background": { + "color_identifier": "azure_A400" + }, + "landing_primary_button_foreground": { + "color_identifier": "white" + }, + "landing_tertiary_button_background": { + "color_identifier": "clear" + }, + "landing_tertiary_button_foreground": { + "color_identifier": "azure_A400" + }, + "landing_text_primary": { + "color_identifier": "black" + }, + "landing_text_title": { + "color_identifier": "azure_A400" + }, + "landing_text_secondary": { + "color_identifier": "steel_gray_400" + }, + "landing_secondary_button_background": { + "color_identifier": "black_blue45_alpha10" + }, + "landing_secondary_button_foreground": { + "color_identifier": "azure_300" + }, + "landing_snippet_border": { + "color_identifier": "black_alpha15" + }, + "like_text_tint": { + "color_identifier": "red_nice" + }, + "link_alternate": { + "color_identifier": "azure_A400" + }, + "loader_background": { + "color_identifier": "gray_50" + }, + "loader_tint": { + "color_identifier": "gray_500" + }, + "loader_track_fill": { + "color_identifier": "gray_100" + }, + "loader_track_value_fill": { + "color_identifier": "blue_300" + }, + "media_overlay_button_background": { + "color_identifier": "white" + }, + "media_overlay_button_foreground": { + "color_identifier": "gray_800" + }, + "modal_card_background": { + "color_identifier": "white" + }, + "modal_card_border": { + "color_identifier": "clear" + }, + "modal_card_header_close": { + "color_identifier": "black" + }, + "music_playback_icon": { + "color_identifier": "black" + }, + "feed_recommended_friend_promo_background": { + "color_identifier": "blue_300" + }, + "overlay_status_background": { + "color_identifier": "gray_50" + }, + "overlay_status_foreground": { + "color_identifier": "steel_gray_500" + }, + "overlay_status_icon": { + "color_identifier": "steel_gray_400" + }, + "placeholder_icon_background": { + "color_identifier": "black_blue24_alpha8" + }, + "placeholder_icon_background_opaque": { + "color_identifier": "gray_40" + }, + "placeholder_icon_foreground_primary": { + "color_identifier": "steel_gray_300" + }, + "placeholder_icon_foreground_secondary": { + "color_identifier": "steel_gray_200" + }, + "placeholder_icon_tint": { + "color_identifier": "black_blue24" + }, + "poll_option_background": { + "color_identifier": "blue_600" + }, + "search_bar_background": { + "color_identifier": "white" + }, + "search_bar_field_background": { + "color_identifier": "gray_50" + }, + "search_bar_field_tint": { + "color_identifier": "steel_gray_400" + }, + "search_bar_segmented_control_tint": { + "color_identifier": "steel_gray_400" + }, + "segmented_control_bar_background": { + "color_identifier": "clear" + }, + "segmented_control_tint": { + "color_identifier": "steel_gray_300" + }, + "selection_off_icon": { + "color_identifier": "steel_gray_150" + }, + "separator_alpha": { + "color_identifier": "black_alpha12" + }, + "separator_alternate": { + "color_identifier": "gray_100" + }, + "separator_common": { + "color_identifier": "gray_A150" + }, + "snippet_background": { + "color_identifier": "white" + }, + "snippet_border": { + "color_identifier": "black_alpha15" + }, + "snippet_icon_tertiary": { + "color_identifier": "gray_200" + }, + "splashscreen_icon": { + "color_identifier": "gray_100" + }, + "statusbar_alternate_legacy_background": { + "color_identifier": "black_alpha20" + }, + "stories_create_button_background_from": { + "color_identifier": "gray_40" + }, + "stories_create_button_background_to": { + "color_identifier": "gray_100" + }, + "stories_create_button_foreground": { + "color_identifier": "steel_gray_500" + }, + "stories_skeleton_loader_background": { + "color_identifier": "gray_200" + }, + "switch_ios_off_border": { + "color_identifier": "gray_100" + }, + "stories_create_button_icon_background": { + "color_identifier": "white" + }, + "tabbar_active_icon": { + "color_identifier": "azure_350" + }, + "tabbar_background": { + "color_identifier": "gray_20" + }, + "tabbar_inactive_icon": { + "color_identifier": "steel_gray_300" + }, + "tabbar_tablet_active_icon": { + "color_identifier": "azure_350" + }, + "tabbar_tablet_background": { + "color_identifier": "gray_20" + }, + "tabbar_tablet_inactive_icon": { + "color_identifier": "steel_gray_300" + }, + "tabbar_tablet_text_primary": { + "color_identifier": "black" + }, + "tabbar_tablet_text_secondary": { + "color_identifier": "gray_400" + }, + "toolbar_attach_background_from": { + "color_identifier": "steel_gray_150" + }, + "toolbar_attach_background_to": { + "color_identifier": "steel_gray_250" + }, + "text_action_counter": { + "color_identifier": "steel_gray_400" + }, + "text_link": { + "color_identifier": "azure_A400" + }, + "text_link_highlighted_background": { + "color_identifier": "black" + }, + "text_muted": { + "color_identifier": "gray_800" + }, + "text_name": { + "color_identifier": "azure_A400" + }, + "text_placeholder": { + "color_identifier": "steel_gray_400" + }, + "text_primary": { + "color_identifier": "black" + }, + "text_secondary": { + "color_identifier": "steel_gray_400" + }, + "text_subhead": { + "color_identifier": "steel_gray_500" + }, + "text_tertiary": { + "color_identifier": "steel_gray_300" + }, + "icon_name": { + "color_identifier": "blue_200_muted" + }, + "panel_tab_active_background": { + "color_identifier": "gray_50" + }, + "panel_tab_active_text": { + "color_identifier": "gray_600" + }, + "panel_tab_inactive_text": { + "color_identifier": "gray_500" + }, + "im_service_message_text": { + "color_identifier": "steel_gray_400" + }, + "writebar_icon": { + "color_identifier": "azure_300" + }, + "dynamic_blue": { + "color_identifier": "azure_300" + }, + "dynamic_gray": { + "color_identifier": "steel_gray_250" + }, + "dynamic_red": { + "color_identifier": "red_nice" + }, + "dynamic_green": { + "color_identifier": "green" + }, + "dynamic_orange": { + "color_identifier": "orange" + }, + "dynamic_orange_peach": { + "color_identifier": "orange_tint" + }, + "dynamic_purple": { + "color_identifier": "purple" + }, + "dynamic_violet": { + "color_identifier": "violet" + }, + "dynamic_raspberry_pink": { + "color_identifier": "raspberry_pink" + }, + "dynamic_neon_pink": { + "color_identifier": "neon_pink" + }, + "vk_connect_button_primary_background": { + "color_identifier": "gray_900" + }, + "vk_connect_button_primary_foreground": { + "color_identifier": "white" + }, + "vk_connect_button_secondary_background": { + "color_identifier": "gray_40" + }, + "vk_connect_button_secondary_foreground": { + "color_identifier": "gray_900" + }, + "background_text_highlighted": { + "color_identifier": "azure_300", + "alpha_multiplier": 0.2 + }, + "text_highlight_alpha": { + "color_identifier": "white_blue20" + }, + "skeleton_shimmer_from": { + "color_identifier": "white" + }, + "skeleton_shimmer_to": { + "color_identifier": "white", + "alpha_multiplier": 0 + }, + "skeleton_foreground_from": { + "color_identifier": "gray_A40" + }, + "skeleton_foreground_to": { + "color_identifier": "gray_100" + }, + "primary_overlay_badge": { + "color_identifier": "black_alpha60" + }, + "secondary_overlay_badge": { + "color_identifier": "black_alpha24" + }, + "content_positive_background": { + "color_identifier": "green_alpha" + }, + "vk_donut_background": { + "color_identifier": "yellow_overlight" } } } diff --git a/main.valette/scheme_edu.json b/main.valette/scheme_edu.json index 4105cfd..8780eba 100644 --- a/main.valette/scheme_edu.json +++ b/main.valette/scheme_edu.json @@ -1,1457 +1,1496 @@ { - "identifier": "edu", - "family": "va", - "themes": { - "space_gray": { - "appearance": "dark", - "colors": { - "accent": { - "color_identifier": "lavender_A300" - }, - "accent_alternate": { - "color_identifier": "white" - }, - "action_sheet_action_foreground": { - "color_identifier": "white" - }, - "action_sheet_separator": { - "color_identifier": "white_alpha12" - }, - "activity_indicator_tint": { - "color_identifier": "gray_600" - }, - "attach_picker_tab_active_background": { - "color_identifier": "gray_100" - }, - "attach_picker_tab_active_icon": { - "color_identifier": "gray_900" - }, - "attach_picker_tab_active_text": { - "color_identifier": "gray_100" - }, - "attach_picker_tab_inactive_background": { - "color_identifier": "gray_800" - }, - "attach_picker_tab_inactive_icon": { - "color_identifier": "gray_100" - }, - "attach_picker_tab_inactive_text": { - "color_identifier": "gray_500" - }, - "background_content": { - "color_identifier": "gray_900" - }, - "background_hover": { - "color_identifier": "white", - "alpha_multiplier": 0.04 - }, - "background_highlighted": { - "color_identifier": "white_alpha8" - }, - "background_keyboard": { - "color_identifier": "gray_800" - }, - "background_light": { - "color_identifier": "gray_850" - }, - "background_page": { - "color_identifier": "gray_1000" - }, - "background_suggestions": { - "color_identifier": "gray_800" - }, - "button_bot_shadow": { - "color_identifier": "gray_900" - }, - "button_commerce_background": { - "color_identifier": "green" - }, - "button_commerce_foreground": { - "color_identifier": "white" - }, - "button_muted_background": { - "color_identifier": "gray_800" - }, - "button_muted_foreground": { - "color_identifier": "gray_100" - }, - "button_outline_border": { - "color_identifier": "gray_100" - }, - "button_outline_foreground": { - "color_identifier": "gray_100" - }, - "button_primary_background": { - "color_identifier": "gray_100" - }, - "button_primary_foreground": { - "color_identifier": "gray_900" - }, - "button_secondary_background": { - "color_identifier": "gray_700" - }, - "button_secondary_background_highlighted": { - "color_identifier": "gray_700", - "alpha_multiplier": 0.6 - }, - "button_secondary_foreground": { - "color_identifier": "gray_100" - }, - "button_secondary_foreground_highlighted": { - "color_identifier": "gray_100", - "alpha_multiplier": 0.6 - }, - "button_secondary_destructive_background": { - "color_identifier": "gray_700" - }, - "button_secondary_destructive_background_highlighted": { - "color_identifier": "gray_700", - "alpha_multiplier": 0.6 - }, - "button_secondary_destructive_foreground": { - "color_identifier": "red_light" - }, - "button_secondary_destructive_foreground_highlighted": { - "color_identifier": "red_light", - "alpha_multiplier": 0.6 - }, - "button_tertiary_background": { - "color_identifier": "clear" - }, - "button_tertiary_foreground": { - "color_identifier": "gray_100" - }, - "cell_button_foreground": { - "color_identifier": "gray_100" - }, - "content_placeholder_icon": { - "color_identifier": "gray_300" - }, - "content_placeholder_text": { - "color_identifier": "gray_300" - }, - "content_tint_background": { - "color_identifier": "gray_850" - }, - "content_tint_foreground": { - "color_identifier": "gray_400" - }, - "control_background": { - "color_identifier": "gray_700" - }, - "control_background_secondary": { - "color_identifier": "gray_500" - }, - "control_foreground": { - "color_identifier": "gray_100" - }, - "control_tint": { - "color_identifier": "gray_900" - }, - "control_tint_muted": { - "color_identifier": "gray_400" - }, - "counter_primary_background": { - "color_identifier": "white" - }, - "counter_primary_text": { - "color_identifier": "gray_900" - }, - "counter_prominent_background": { - "color_identifier": "red_nice" - }, - "counter_prominent_text": { - "color_identifier": "white" - }, - "counter_secondary_background": { - "color_identifier": "gray_500" - }, - "counter_secondary_text": { - "color_identifier": "gray_900" - }, - "content_warning_background": { - "color_identifier": "gold_500" - }, - "destructive": { - "color_identifier": "red_light" - }, - "field_background": { - "color_identifier": "gray_850" - }, - "field_border": { - "color_identifier": "white_alpha12" - }, - "field_error_background": { - "color_identifier": "red_dark" - }, - "field_error_border": { - "color_identifier": "red_light" - }, - "field_valid_border": { - "color_identifier": "green" - }, - "field_text_placeholder": { - "color_identifier": "gray_500" - }, - "float_button_background": { - "color_identifier": "gray_700" - }, - "float_button_background_highlighted": { - "color_identifier": "gray_600" - }, - "float_button_foreground": { - "color_identifier": "gray_300" - }, - "float_button_border": { - "color_identifier": "black_alpha12" - }, - "header_alternate_background": { - "color_identifier": "gray_800" - }, - "header_alternate_tab_active_indicator": { - "color_identifier": "gray_100" - }, - "header_alternate_tab_active_text": { - "color_identifier": "gray_100" - }, - "header_alternate_tab_inactive_text": { - "color_identifier": "gray_500" - }, - "header_background": { - "color_identifier": "gray_900" - }, - "header_background_before_blur": { - "color_identifier": "gray_A970" - }, - "header_background_before_blur_alternate": { - "color_identifier": "gray_A970" - }, - "header_search_field_background": { - "color_identifier": "gray_750" - }, - "header_search_field_tint": { - "color_identifier": "gray_300" - }, - "header_tab_active_background": { - "color_identifier": "gray_600" - }, - "header_tab_active_text": { - "color_identifier": "gray_100" - }, - "header_tab_active_indicator": { - "color_identifier": "lavender_A300" - }, - "header_tab_inactive_text": { - "color_identifier": "gray_500" - }, - "header_text": { - "color_identifier": "gray_100" - }, - "header_text_alternate": { - "color_identifier": "gray_100" - }, - "header_text_secondary": { - "color_identifier": "white_alpha60" - }, - "header_tint": { - "color_identifier": "gray_100" - }, - "header_tint_alternate": { - "color_identifier": "gray_100" - }, - "icon_alpha_placeholder": { - "color_identifier": "gray_100" - }, - "icon_medium": { - "color_identifier": "gray_400" - }, - "icon_medium_alpha": { - "color_identifier": "white", - "alpha_multiplier": 0.48 - }, - "icon_outline_medium": { - "color_identifier": "gray_300" - }, - "icon_outline_secondary": { - "color_identifier": "gray_400" - }, - "icon_secondary": { - "color_identifier": "gray_500" - }, - "icon_secondary_alpha": { - "color_identifier": "white", - "alpha_multiplier": 0.36 - }, - "icon_tertiary": { - "color_identifier": "gray_600" - }, - "icon_tertiary_alpha": { - "color_identifier": "white", - "alpha_multiplier": 0.24 - }, - "im_attach_tint": { - "color_identifier": "white" - }, - "im_bubble_border_alternate": { - "color_identifier": "clear" - }, - "im_bubble_border_alternate_highlighted": { - "color_identifier": "clear" - }, - "im_bubble_button_background": { - "color_identifier": "white", - "alpha_multiplier": 0.16 - }, - "im_bubble_button_outgoing_background": { - "color_identifier": "white_alpha20" - }, - "im_bubble_button_background_highlighted": { - "color_identifier": "white", - "alpha_multiplier": 0.24 - }, - "im_bubble_button_foreground": { - "color_identifier": "gray_100" - }, - "im_bubble_incoming_expiring": { - "color_identifier": "lavender_900" - }, - "im_bubble_incoming_expiring_highlighted": { - "color_identifier": "lavender_800" - }, - "im_bubble_outgoing_expiring": { - "color_identifier": "lavender_800" - }, - "im_bubble_outgoing_expiring_highlighted": { - "color_identifier": "lavender_700" - }, - "im_bubble_incoming": { - "color_identifier": "gray_800" - }, - "im_bubble_incoming_alternate": { - "color_identifier": "gray_800" - }, - "im_bubble_incoming_alternate_highlighted": { - "color_identifier": "gray_600" - }, - "im_bubble_incoming_highlighted": { - "color_identifier": "gray_600" - }, - "im_bubble_gift_background": { - "color_identifier": "gold_500" - }, - "im_bubble_gift_background_highlighted": { - "color_identifier": "gold_400" - }, - "im_bubble_gift_text": { - "color_identifier": "white" - }, - "im_bubble_gift_text_secondary": { - "color_identifier": "gold_250" - }, - "im_bubble_outgoing": { - "color_identifier": "gray_700" - }, - "im_bubble_outgoing_alternate": { - "color_identifier": "gray_700" - }, - "im_bubble_outgoing_highlighted": { - "color_identifier": "gray_600" - }, - "im_bubble_outgoing_alternate_highlighted": { - "color_identifier": "gray_500" - }, - "im_bubble_wallpaper_button_background": { - "color_identifier": "gray_700" - }, - "im_bubble_wallpaper_button_background_highlighted": { - "color_identifier": "gray_500" - }, - "im_bubble_wallpaper_button_foreground": { - "color_identifier": "gray_100" - }, - "im_bubble_wallpaper_incoming": { - "color_identifier": "gray_800" - }, - "im_bubble_wallpaper_incoming_highlighted": { - "color_identifier": "gray_600" - }, - "im_bubble_wallpaper_outgoing": { - "color_identifier": "gray_700" - }, - "im_bubble_wallpaper_outgoing_highlighted": { - "color_identifier": "gray_600" - }, - "im_forward_line_tint": { - "color_identifier": "white", - "alpha_multiplier": 0.24 - }, - "im_reply_separator": { - "color_identifier": "white" - }, - "im_text_name": { - "color_identifier": "lavender_A300" - }, - "im_toolbar_voice_msg_background": { - "color_identifier": "gray_700" - }, - "im_toolbar_separator": { - "color_identifier": "gray_300" - }, - "image_border": { - "color_identifier": "white_alpha8" - }, - "input_background": { - "color_identifier": "gray_800" - }, - "input_border": { - "color_identifier": "gray_800" - }, - "landing_background": { - "color_identifier": "gray_900" - }, - "landing_field_background": { - "color_identifier": "gray_850" - }, - "landing_field_border": { - "color_identifier": "clear" - }, - "landing_field_placeholder": { - "color_identifier": "gray_300" - }, - "landing_login_button_background": { - "color_identifier": "gray_100" - }, - "landing_login_button_foreground": { - "color_identifier": "gray_900" - }, - "landing_primary_button_background": { - "color_identifier": "gray_100" - }, - "landing_primary_button_foreground": { - "color_identifier": "gray_900" - }, - "landing_tertiary_button_background": { - "color_identifier": "clear" - }, - "landing_tertiary_button_foreground": { - "color_identifier": "white" - }, - "landing_text_primary": { - "color_identifier": "gray_100" - }, - "landing_text_title": { - "color_identifier": "white" - }, - "landing_text_secondary": { - "color_identifier": "gray_500" - }, - "landing_secondary_button_background": { - "color_identifier": "white_alpha15" - }, - "landing_secondary_button_foreground": { - "color_identifier": "white" - }, - "landing_snippet_border": { - "color_identifier": "white_alpha15" - }, - "like_text_tint": { - "color_identifier": "red_light" - }, - "link_alternate": { - "color_identifier": "white" - }, - "loader_background": { - "color_identifier": "gray_900" - }, - "loader_tint": { - "color_identifier": "gray_500" - }, - "loader_track_fill": { - "color_identifier": "gray_700" - }, - "loader_track_value_fill": { - "color_identifier": "white" - }, - "media_overlay_button_background": { - "color_identifier": "white" - }, - "media_overlay_button_foreground": { - "color_identifier": "gray_800" - }, - "modal_card_background": { - "color_identifier": "gray_800" - }, - "modal_card_border": { - "color_identifier": "white_alpha12" - }, - "modal_card_header_close": { - "color_identifier": "white" - }, - "music_playback_icon": { - "color_identifier": "white" - }, - "feed_recommended_friend_promo_background": { - "color_identifier": "steel_gray_500" - }, - "overlay_status_background": { - "color_identifier": "gray_900" - }, - "overlay_status_foreground": { - "color_identifier": "gray_100" - }, - "overlay_status_icon": { - "color_identifier": "gray_50" - }, - "placeholder_icon_background": { - "color_identifier": "white_alpha8" - }, - "placeholder_icon_background_opaque": { - "color_identifier": "gray_850" - }, - "placeholder_icon_foreground_primary": { - "color_identifier": "gray_400" - }, - "placeholder_icon_foreground_secondary": { - "color_identifier": "gray_600" - }, - "placeholder_icon_tint": { - "color_identifier": "white" - }, - "poll_option_background": { - "color_identifier": "white" - }, - "search_bar_background": { - "color_identifier": "gray_900" - }, - "search_bar_field_background": { - "color_identifier": "gray_750" - }, - "search_bar_field_tint": { - "color_identifier": "gray_300" - }, - "search_bar_segmented_control_tint": { - "color_identifier": "gray_400" - }, - "segmented_control_bar_background": { - "color_identifier": "gray_900" - }, - "segmented_control_tint": { - "color_identifier": "gray_500" - }, - "selection_off_icon": { - "color_identifier": "gray_600" - }, - "separator_alpha": { - "color_identifier": "white_alpha12" - }, - "separator_alternate": { - "color_identifier": "gray_850" - }, - "separator_common": { - "color_identifier": "gray_750" - }, - "snippet_background": { - "color_identifier": "gray_850" - }, - "snippet_border": { - "color_identifier": "white_alpha15" - }, - "snippet_icon_tertiary": { - "color_identifier": "gray_600" - }, - "splashscreen_icon": { - "color_identifier": "gray_800" - }, - "statusbar_alternate_legacy_background": { - "color_identifier": "clear" - }, - "stories_create_button_background_from": { - "color_identifier": "gray_750" - }, - "stories_create_button_background_to": { - "color_identifier": "gray_750" - }, - "stories_create_button_foreground": { - "color_identifier": "gray_200" - }, - "stories_skeleton_loader_background": { - "color_identifier": "gray_700" - }, - "stories_create_button_icon_background": { - "color_identifier": "gray_700" - }, - "switch_ios_off_border": { - "color_identifier": "gray_800" - }, - "tabbar_active_icon": { - "color_identifier": "white" - }, - "tabbar_background": { - "color_identifier": "gray_800" - }, - "tabbar_inactive_icon": { - "color_identifier": "gray_500" - }, - "tabbar_tablet_active_icon": { - "color_identifier": "lavender_A300" - }, - "tabbar_tablet_background": { - "color_identifier": "gray_850" - }, - "tabbar_tablet_inactive_icon": { - "color_identifier": "gray_500" - }, - "tabbar_tablet_text_primary": { - "color_identifier": "gray_100" - }, - "tabbar_tablet_text_secondary": { - "color_identifier": "gray_500" - }, - "toolbar_attach_background_from": { - "color_identifier": "gray_500" - }, - "toolbar_attach_background_to": { - "color_identifier": "gray_600" - }, - "text_action_counter": { - "color_identifier": "gray_300" - }, - "text_link": { - "color_identifier": "lavender_A300" - }, - "text_link_highlighted_background": { - "color_identifier": "lavender_A300" - }, - "text_muted": { - "color_identifier": "gray_200" - }, - "text_name": { - "color_identifier": "gray_100" - }, - "text_placeholder": { - "color_identifier": "gray_300" - }, - "text_primary": { - "color_identifier": "gray_100" - }, - "text_secondary": { - "color_identifier": "gray_500" - }, - "text_subhead": { - "color_identifier": "gray_400" - }, - "text_tertiary": { - "color_identifier": "gray_600" - }, - "icon_name": { - "color_identifier": "gray_300" - }, - "panel_tab_active_background": { - "color_identifier": "gray_700" - }, - "panel_tab_active_text": { - "color_identifier": "gray_100" - }, - "panel_tab_inactive_text": { - "color_identifier": "gray_500" - }, - "im_service_message_text": { - "color_identifier": "gray_500" - }, - "writebar_icon": { - "color_identifier": "gray_100" - }, - "dynamic_blue": { - "color_identifier": "azure_300" - }, - "dynamic_gray": { - "color_identifier": "steel_gray_250" - }, - "dynamic_red": { - "color_identifier": "red_nice" - }, - "dynamic_green": { - "color_identifier": "green" - }, - "dynamic_orange": { - "color_identifier": "orange" - }, - "dynamic_purple": { - "color_identifier": "purple_light" - }, - "dynamic_violet": { - "color_identifier": "violet_light" - }, - "dynamic_raspberry_pink": { - "color_identifier": "raspberry_pink_light" - }, - "dynamic_neon_pink": { - "color_identifier": "neon_pink" - }, - "vk_connect_button_primary_background": { - "color_identifier": "gray_100" - }, - "vk_connect_button_primary_foreground": { - "color_identifier": "gray_900" - }, - "vk_connect_button_secondary_background": { - "color_identifier": "gray_700" - }, - "vk_connect_button_secondary_foreground": { - "color_identifier": "gray_100" - }, - "background_text_highlighted": { - "color_identifier": "lavender_A300", - "alpha_multiplier": 0.24 - }, - "skeleton_shimmer_from": { - "color_identifier": "gray_900" - }, - "skeleton_shimmer_to": { - "color_identifier": "gray_900", - "alpha_multiplier": 0 - }, - "skeleton_foreground_from": { - "color_identifier": "gray_850" - }, - "skeleton_foreground_to": { - "color_identifier": "gray_800" - }, - "primary_overlay_badge": { - "color_identifier": "white_alpha40" - }, - "secondary_overlay_badge": { - "color_identifier": "white_alpha15" - }, - "content_positive_background": { - "color_identifier": "green_alpha" - } + "space_gray": { + "appearance": "dark", + "colors": { + "accent": { + "color_identifier": "lavender_A300" + }, + "accent_alternate": { + "color_identifier": "white" + }, + "action_sheet_action_foreground": { + "color_identifier": "white" + }, + "action_sheet_separator": { + "color_identifier": "white_alpha12" + }, + "activity_indicator_tint": { + "color_identifier": "gray_600" + }, + "attach_picker_tab_active_background": { + "color_identifier": "gray_100" + }, + "attach_picker_tab_active_icon": { + "color_identifier": "gray_900" + }, + "attach_picker_tab_active_text": { + "color_identifier": "gray_100" + }, + "attach_picker_tab_inactive_background": { + "color_identifier": "gray_800" + }, + "attach_picker_tab_inactive_icon": { + "color_identifier": "gray_100" + }, + "attach_picker_tab_inactive_text": { + "color_identifier": "gray_500" + }, + "background_content": { + "color_identifier": "gray_900" + }, + "background_hover": { + "color_identifier": "white", + "alpha_multiplier": 0.04 + }, + "background_highlighted": { + "color_identifier": "white_alpha8" + }, + "background_keyboard": { + "color_identifier": "gray_800" + }, + "background_light": { + "color_identifier": "gray_850" + }, + "background_page": { + "color_identifier": "gray_1000" + }, + "background_suggestions": { + "color_identifier": "gray_800" + }, + "background_card_alpha": { + "color_identifier": "white_alpha32" + }, + "button_bot_shadow": { + "color_identifier": "gray_900" + }, + "button_commerce_background": { + "color_identifier": "green" + }, + "button_commerce_foreground": { + "color_identifier": "white" + }, + "button_muted_background": { + "color_identifier": "gray_800" + }, + "button_muted_foreground": { + "color_identifier": "gray_100" + }, + "button_outline_border": { + "color_identifier": "gray_100" + }, + "button_outline_foreground": { + "color_identifier": "gray_100" + }, + "button_primary_background": { + "color_identifier": "gray_100" + }, + "button_primary_foreground": { + "color_identifier": "gray_900" + }, + "button_secondary_background": { + "color_identifier": "gray_700" + }, + "button_secondary_background_highlighted": { + "color_identifier": "gray_700", + "alpha_multiplier": 0.6 + }, + "button_secondary_foreground": { + "color_identifier": "gray_100" + }, + "button_secondary_foreground_highlighted": { + "color_identifier": "gray_100", + "alpha_multiplier": 0.6 + }, + "button_secondary_destructive_background": { + "color_identifier": "gray_700" + }, + "button_secondary_destructive_background_highlighted": { + "color_identifier": "gray_700", + "alpha_multiplier": 0.6 + }, + "button_secondary_destructive_foreground": { + "color_identifier": "red_light" + }, + "button_secondary_destructive_foreground_highlighted": { + "color_identifier": "red_light", + "alpha_multiplier": 0.6 + }, + "button_tertiary_background": { + "color_identifier": "clear" + }, + "button_tertiary_foreground": { + "color_identifier": "gray_100" + }, + "cell_button_foreground": { + "color_identifier": "gray_100" + }, + "content_placeholder_icon": { + "color_identifier": "gray_300" + }, + "content_placeholder_text": { + "color_identifier": "gray_300" + }, + "content_tint_background": { + "color_identifier": "gray_850" + }, + "content_tint_foreground": { + "color_identifier": "gray_400" + }, + "control_background": { + "color_identifier": "gray_700" + }, + "control_background_secondary": { + "color_identifier": "gray_500" + }, + "control_foreground": { + "color_identifier": "gray_100" + }, + "control_tint": { + "color_identifier": "gray_900" + }, + "control_tint_muted": { + "color_identifier": "gray_400" + }, + "counter_primary_background": { + "color_identifier": "white" + }, + "counter_primary_text": { + "color_identifier": "gray_900" + }, + "counter_prominent_background": { + "color_identifier": "red_nice" + }, + "counter_prominent_text": { + "color_identifier": "white" + }, + "counter_secondary_background": { + "color_identifier": "gray_500" + }, + "counter_secondary_text": { + "color_identifier": "gray_900" + }, + "content_warning_background": { + "color_identifier": "gold_500" + }, + "destructive": { + "color_identifier": "red_light" + }, + "field_background": { + "color_identifier": "gray_850" + }, + "field_border": { + "color_identifier": "white_alpha12" + }, + "field_error_background": { + "color_identifier": "red_dark" + }, + "field_error_border": { + "color_identifier": "red_light" + }, + "field_valid_border": { + "color_identifier": "green" + }, + "field_text_placeholder": { + "color_identifier": "gray_500" + }, + "float_button_background": { + "color_identifier": "gray_700" + }, + "float_button_background_highlighted": { + "color_identifier": "gray_600" + }, + "float_button_foreground": { + "color_identifier": "gray_300" + }, + "float_button_border": { + "color_identifier": "black_alpha12" + }, + "header_alternate_background": { + "color_identifier": "gray_800" + }, + "header_alternate_tab_active_indicator": { + "color_identifier": "gray_100" + }, + "header_alternate_tab_active_text": { + "color_identifier": "gray_100" + }, + "header_alternate_tab_inactive_text": { + "color_identifier": "gray_500" + }, + "header_background": { + "color_identifier": "gray_900" + }, + "header_background_before_blur": { + "color_identifier": "gray_A970" + }, + "header_background_before_blur_alternate": { + "color_identifier": "gray_A970" + }, + "header_search_field_background": { + "color_identifier": "gray_750" + }, + "header_search_field_tint": { + "color_identifier": "gray_300" + }, + "header_tab_active_background": { + "color_identifier": "gray_600" + }, + "header_tab_active_text": { + "color_identifier": "gray_100" + }, + "header_tab_active_indicator": { + "color_identifier": "lavender_A300" + }, + "header_tab_inactive_text": { + "color_identifier": "gray_500" + }, + "header_text": { + "color_identifier": "gray_100" + }, + "header_text_alternate": { + "color_identifier": "gray_100" + }, + "header_text_secondary": { + "color_identifier": "white_alpha60" + }, + "header_tint": { + "color_identifier": "gray_100" + }, + "header_tint_alternate": { + "color_identifier": "gray_100" + }, + "icon_alpha_placeholder": { + "color_identifier": "gray_100" + }, + "icon_medium": { + "color_identifier": "gray_400" + }, + "icon_medium_alpha": { + "color_identifier": "white", + "alpha_multiplier": 0.48 + }, + "icon_outline_medium": { + "color_identifier": "gray_300" + }, + "icon_outline_secondary": { + "color_identifier": "gray_400" + }, + "icon_secondary": { + "color_identifier": "gray_500" + }, + "icon_secondary_alpha": { + "color_identifier": "white", + "alpha_multiplier": 0.36 + }, + "icon_tertiary": { + "color_identifier": "gray_600" + }, + "icon_tertiary_alpha": { + "color_identifier": "white", + "alpha_multiplier": 0.24 + }, + "im_attach_tint": { + "color_identifier": "white" + }, + "im_bubble_border_alternate": { + "color_identifier": "clear" + }, + "im_bubble_border_alternate_highlighted": { + "color_identifier": "clear" + }, + "im_bubble_button_background": { + "color_identifier": "white", + "alpha_multiplier": 0.16 + }, + "im_bubble_button_outgoing_background": { + "color_identifier": "white_alpha20" + }, + "im_bubble_button_background_highlighted": { + "color_identifier": "white", + "alpha_multiplier": 0.24 + }, + "im_bubble_button_foreground": { + "color_identifier": "gray_100" + }, + "im_bubble_incoming_expiring": { + "color_identifier": "lavender_900" + }, + "im_bubble_incoming_expiring_highlighted": { + "color_identifier": "lavender_800" + }, + "im_bubble_outgoing_expiring": { + "color_identifier": "lavender_800" + }, + "im_bubble_outgoing_expiring_highlighted": { + "color_identifier": "lavender_700" + }, + "im_bubble_incoming": { + "color_identifier": "gray_800" + }, + "im_bubble_incoming_alternate": { + "color_identifier": "gray_800" + }, + "im_bubble_incoming_alternate_highlighted": { + "color_identifier": "gray_600" + }, + "im_bubble_incoming_highlighted": { + "color_identifier": "gray_600" + }, + "im_bubble_gift_background": { + "color_identifier": "gold_500" + }, + "im_bubble_gift_background_highlighted": { + "color_identifier": "gold_400" + }, + "im_bubble_gift_text": { + "color_identifier": "white" + }, + "im_bubble_gift_text_secondary": { + "color_identifier": "gold_250" + }, + "im_bubble_mable_outgoing": { + "color_identifier": "mable_blue_100" + }, + "im_bubble_mable_outgoing_expiring_highlighted": { + "color_identifier": "lavender_700" + }, + "im_bubble_mable_outgoing_highlighted": { + "color_identifier": "mable_blue_200" + }, + "im_bubble_mable_wallpaper_outgoing": { + "color_identifier": "mable_blue_100" + }, + "im_bubble_mable_wallpaper_outgoing_highlighted": { + "color_identifier": "mable_blue_200" + }, + "im_bubble_outgoing": { + "color_identifier": "gray_700" + }, + "im_bubble_outgoing_alternate": { + "color_identifier": "gray_700" + }, + "im_bubble_outgoing_highlighted": { + "color_identifier": "gray_600" + }, + "im_bubble_outgoing_alternate_highlighted": { + "color_identifier": "gray_500" + }, + "im_bubble_wallpaper_button_background": { + "color_identifier": "gray_700" + }, + "im_bubble_wallpaper_button_background_highlighted": { + "color_identifier": "gray_500" + }, + "im_bubble_wallpaper_button_foreground": { + "color_identifier": "gray_100" + }, + "im_bubble_wallpaper_incoming": { + "color_identifier": "gray_800" + }, + "im_bubble_wallpaper_incoming_highlighted": { + "color_identifier": "gray_600" + }, + "im_bubble_wallpaper_outgoing": { + "color_identifier": "gray_700" + }, + "im_bubble_wallpaper_outgoing_highlighted": { + "color_identifier": "gray_600" + }, + "im_forward_line_tint": { + "color_identifier": "white", + "alpha_multiplier": 0.24 + }, + "im_reply_separator": { + "color_identifier": "white" + }, + "im_text_name": { + "color_identifier": "lavender_A300" + }, + "im_toolbar_voice_msg_background": { + "color_identifier": "gray_700" + }, + "im_toolbar_separator": { + "color_identifier": "gray_300" + }, + "image_border": { + "color_identifier": "white_alpha8" + }, + "input_background": { + "color_identifier": "gray_800" + }, + "input_border": { + "color_identifier": "gray_800" + }, + "landing_background": { + "color_identifier": "gray_900" + }, + "landing_field_background": { + "color_identifier": "gray_850" + }, + "landing_field_border": { + "color_identifier": "clear" + }, + "landing_field_placeholder": { + "color_identifier": "gray_300" + }, + "landing_login_button_background": { + "color_identifier": "gray_100" + }, + "landing_login_button_foreground": { + "color_identifier": "gray_900" + }, + "landing_primary_button_background": { + "color_identifier": "gray_100" + }, + "landing_primary_button_foreground": { + "color_identifier": "gray_900" + }, + "landing_tertiary_button_background": { + "color_identifier": "clear" + }, + "landing_tertiary_button_foreground": { + "color_identifier": "white" + }, + "landing_text_primary": { + "color_identifier": "gray_100" + }, + "landing_text_title": { + "color_identifier": "white" + }, + "landing_text_secondary": { + "color_identifier": "gray_500" + }, + "landing_secondary_button_background": { + "color_identifier": "white_alpha15" + }, + "landing_secondary_button_foreground": { + "color_identifier": "white" + }, + "landing_snippet_border": { + "color_identifier": "white_alpha15" + }, + "like_text_tint": { + "color_identifier": "red_light" + }, + "link_alternate": { + "color_identifier": "white" + }, + "loader_background": { + "color_identifier": "gray_900" + }, + "loader_tint": { + "color_identifier": "gray_500" + }, + "loader_track_fill": { + "color_identifier": "gray_700" + }, + "loader_track_value_fill": { + "color_identifier": "white" + }, + "media_overlay_button_background": { + "color_identifier": "white" + }, + "media_overlay_button_foreground": { + "color_identifier": "gray_800" + }, + "modal_card_background": { + "color_identifier": "gray_800" + }, + "modal_card_border": { + "color_identifier": "white_alpha12" + }, + "modal_card_header_close": { + "color_identifier": "white" + }, + "music_playback_icon": { + "color_identifier": "white" + }, + "feed_recommended_friend_promo_background": { + "color_identifier": "steel_gray_500" + }, + "overlay_status_background": { + "color_identifier": "gray_900" + }, + "overlay_status_foreground": { + "color_identifier": "gray_100" + }, + "overlay_status_icon": { + "color_identifier": "gray_50" + }, + "placeholder_icon_background": { + "color_identifier": "white_alpha8" + }, + "placeholder_icon_background_opaque": { + "color_identifier": "gray_850" + }, + "placeholder_icon_foreground_primary": { + "color_identifier": "gray_400" + }, + "placeholder_icon_foreground_secondary": { + "color_identifier": "gray_600" + }, + "placeholder_icon_tint": { + "color_identifier": "white" + }, + "poll_option_background": { + "color_identifier": "white" + }, + "search_bar_background": { + "color_identifier": "gray_900" + }, + "search_bar_field_background": { + "color_identifier": "gray_750" + }, + "search_bar_field_tint": { + "color_identifier": "gray_300" + }, + "search_bar_segmented_control_tint": { + "color_identifier": "gray_400" + }, + "segmented_control_bar_background": { + "color_identifier": "gray_900" + }, + "segmented_control_tint": { + "color_identifier": "gray_500" + }, + "selection_off_icon": { + "color_identifier": "gray_600" + }, + "separator_alpha": { + "color_identifier": "white_alpha12" + }, + "separator_alternate": { + "color_identifier": "gray_850" + }, + "separator_common": { + "color_identifier": "gray_750" + }, + "snippet_background": { + "color_identifier": "gray_850" + }, + "snippet_border": { + "color_identifier": "white_alpha15" + }, + "snippet_icon_tertiary": { + "color_identifier": "gray_600" + }, + "splashscreen_icon": { + "color_identifier": "gray_800" + }, + "statusbar_alternate_legacy_background": { + "color_identifier": "clear" + }, + "stories_create_button_background_from": { + "color_identifier": "gray_750" + }, + "stories_create_button_background_to": { + "color_identifier": "gray_750" + }, + "stories_create_button_foreground": { + "color_identifier": "gray_200" + }, + "stories_skeleton_loader_background": { + "color_identifier": "gray_700" + }, + "stories_create_button_icon_background": { + "color_identifier": "gray_700" + }, + "switch_ios_off_border": { + "color_identifier": "gray_800" + }, + "tabbar_active_icon": { + "color_identifier": "white" + }, + "tabbar_background": { + "color_identifier": "gray_800" + }, + "tabbar_inactive_icon": { + "color_identifier": "gray_500" + }, + "tabbar_tablet_active_icon": { + "color_identifier": "lavender_A300" + }, + "tabbar_tablet_background": { + "color_identifier": "gray_850" + }, + "tabbar_tablet_inactive_icon": { + "color_identifier": "gray_500" + }, + "tabbar_tablet_text_primary": { + "color_identifier": "gray_100" + }, + "tabbar_tablet_text_secondary": { + "color_identifier": "gray_500" + }, + "toolbar_attach_background_from": { + "color_identifier": "gray_500" + }, + "toolbar_attach_background_to": { + "color_identifier": "gray_600" + }, + "text_action_counter": { + "color_identifier": "gray_300" + }, + "text_link": { + "color_identifier": "lavender_A300" + }, + "text_link_highlighted_background": { + "color_identifier": "lavender_A300" + }, + "text_muted": { + "color_identifier": "gray_200" + }, + "text_name": { + "color_identifier": "gray_100" + }, + "text_placeholder": { + "color_identifier": "gray_300" + }, + "text_primary": { + "color_identifier": "gray_100" + }, + "text_secondary": { + "color_identifier": "gray_500" + }, + "text_subhead": { + "color_identifier": "gray_400" + }, + "text_tertiary": { + "color_identifier": "gray_600" + }, + "icon_name": { + "color_identifier": "gray_300" + }, + "panel_tab_active_background": { + "color_identifier": "gray_700" + }, + "panel_tab_active_text": { + "color_identifier": "gray_100" + }, + "panel_tab_inactive_text": { + "color_identifier": "gray_500" + }, + "im_service_message_text": { + "color_identifier": "gray_500" + }, + "writebar_icon": { + "color_identifier": "gray_100" + }, + "dynamic_blue": { + "color_identifier": "azure_300" + }, + "dynamic_gray": { + "color_identifier": "steel_gray_250" + }, + "dynamic_red": { + "color_identifier": "red_nice" + }, + "dynamic_green": { + "color_identifier": "green" + }, + "dynamic_orange": { + "color_identifier": "orange" + }, + "dynamic_purple": { + "color_identifier": "purple_light" + }, + "dynamic_violet": { + "color_identifier": "violet_light" + }, + "dynamic_raspberry_pink": { + "color_identifier": "raspberry_pink_light" + }, + "dynamic_neon_pink": { + "color_identifier": "neon_pink" + }, + "vk_connect_button_primary_background": { + "color_identifier": "gray_100" + }, + "vk_connect_button_primary_foreground": { + "color_identifier": "gray_900" + }, + "vk_connect_button_secondary_background": { + "color_identifier": "gray_700" + }, + "vk_connect_button_secondary_foreground": { + "color_identifier": "gray_100" + }, + "background_text_highlighted": { + "color_identifier": "lavender_A300", + "alpha_multiplier": 0.24 + }, + "text_highlight_alpha": { + "color_identifier": "white_alpha20" + }, + "skeleton_shimmer_from": { + "color_identifier": "gray_900" + }, + "skeleton_shimmer_to": { + "color_identifier": "gray_900", + "alpha_multiplier": 0 + }, + "skeleton_foreground_from": { + "color_identifier": "gray_850" + }, + "skeleton_foreground_to": { + "color_identifier": "gray_800" + }, + "primary_overlay_badge": { + "color_identifier": "white_alpha40" + }, + "secondary_overlay_badge": { + "color_identifier": "white_alpha15" + }, + "content_positive_background": { + "color_identifier": "green_alpha" } - }, - "bright_light_edu": { - "appearance": "light", - "colors": { - "accent": { - "color_identifier": "lavender_A700" - }, - "accent_alternate": { - "color_identifier": "lavender_A700" - }, - "action_sheet_action_foreground": { - "color_identifier": "lavender_A700" - }, - "action_sheet_separator": { - "color_identifier": "black_alpha12" - }, - "activity_indicator_tint": { - "color_identifier": "steel_gray_200" - }, - "attach_picker_tab_active_background": { - "color_identifier": "lavender_A700" - }, - "attach_picker_tab_active_icon": { - "color_identifier": "white" - }, - "attach_picker_tab_active_text": { - "color_identifier": "lavender_A700" - }, - "attach_picker_tab_inactive_background": { - "color_identifier": "gray_40" - }, - "attach_picker_tab_inactive_icon": { - "color_identifier": "steel_gray_400" - }, - "attach_picker_tab_inactive_text": { - "color_identifier": "steel_gray_400" - }, - "background_content": { - "color_identifier": "white" - }, - "background_hover": { - "color_identifier": "black", - "alpha_multiplier": 0.04 - }, - "background_highlighted": { - "color_identifier": "black_alpha8" - }, - "background_keyboard": { - "color_identifier": "gray_100" - }, - "background_light": { - "color_identifier": "gray_20" - }, - "background_page": { - "color_identifier": "gray_50" - }, - "background_suggestions": { - "color_identifier": "white" - }, - "button_bot_shadow": { - "color_identifier": "gray_200" - }, - "button_commerce_background": { - "color_identifier": "green" - }, - "button_commerce_foreground": { - "color_identifier": "white" - }, - "button_muted_background": { - "color_identifier": "gray_40" - }, - "button_muted_foreground": { - "color_identifier": "lavender_A700" - }, - "button_outline_border": { - "color_identifier": "lavender_A700" - }, - "button_outline_foreground": { - "color_identifier": "lavender_A700" - }, - "button_primary_background": { - "color_identifier": "lavender_A700" - }, - "button_primary_foreground": { - "color_identifier": "white" - }, - "button_secondary_background": { - "color_identifier": "lavender_A700", - "alpha_multiplier": 0.1 - }, - "button_secondary_background_highlighted": { - "color_identifier": "lavender_A700", - "alpha_multiplier": 0.08 - }, - "button_secondary_foreground": { - "color_identifier": "lavender_A700" - }, - "button_secondary_foreground_highlighted": { - "color_identifier": "lavender_A700", - "alpha_multiplier": 0.6 - }, - "button_secondary_destructive_background": { - "color_identifier": "lavender_A700", - "alpha_multiplier": 0.1 - }, - "button_secondary_destructive_background_highlighted": { - "color_identifier": "lavender_A700", - "alpha_multiplier": 0.08 - }, - "button_secondary_destructive_foreground": { - "color_identifier": "red" - }, - "button_secondary_destructive_foreground_highlighted": { - "color_identifier": "red", - "alpha_multiplier": 0.6 - }, - "button_tertiary_background": { - "color_identifier": "clear" - }, - "button_tertiary_foreground": { - "color_identifier": "lavender_A700" - }, - "cell_button_foreground": { - "color_identifier": "lavender_A700" - }, - "content_placeholder_icon": { - "color_identifier": "steel_gray_300" - }, - "content_placeholder_text": { - "color_identifier": "steel_gray_500" - }, - "content_tint_background": { - "color_identifier": "gray_A40" - }, - "content_tint_foreground": { - "color_identifier": "gray_450" - }, - "control_background": { - "color_identifier": "gray_50" - }, - "control_background_secondary": { - "color_identifier": "white" - }, - "control_foreground": { - "color_identifier": "lavender_A700" - }, - "control_tint": { - "color_identifier": "white" - }, - "control_tint_muted": { - "color_identifier": "gray_500" - }, - "counter_primary_background": { - "color_identifier": "lavender_A700" - }, - "counter_primary_text": { - "color_identifier": "white" - }, - "counter_prominent_background": { - "color_identifier": "red_nice" - }, - "counter_prominent_text": { - "color_identifier": "white" - }, - "counter_secondary_background": { - "color_identifier": "steel_gray_200" - }, - "counter_secondary_text": { - "color_identifier": "white" - }, - "content_warning_background": { - "color_identifier": "yellow_overlight" - }, - "destructive": { - "color_identifier": "red" - }, - "field_background": { - "color_identifier": "gray_40" - }, - "field_border": { - "color_identifier": "black_alpha12" - }, - "field_error_background": { - "color_identifier": "pink_light" - }, - "field_error_border": { - "color_identifier": "red" - }, - "field_valid_border": { - "color_identifier": "green" - }, - "field_text_placeholder": { - "color_identifier": "steel_gray_400" - }, - "float_button_background": { - "color_identifier": "gray_A40" - }, - "float_button_background_highlighted": { - "color_identifier": "gray_50" - }, - "float_button_foreground": { - "color_identifier": "steel_gray_300" - }, - "float_button_border": { - "color_identifier": "black_alpha05" - }, - "header_alternate_background": { - "color_identifier": "white" - }, - "header_alternate_tab_active_indicator": { - "color_identifier": "lavender_A700" - }, - "header_alternate_tab_active_text": { - "color_identifier": "black" - }, - "header_alternate_tab_inactive_text": { - "color_identifier": "steel_gray_300" - }, - "header_background": { - "color_identifier": "white" - }, - "header_background_before_blur": { - "color_identifier": "white" - }, - "header_background_before_blur_alternate": { - "color_identifier": "white" - }, - "header_search_field_background": { - "color_identifier": "gray_50" - }, - "header_search_field_tint": { - "color_identifier": "steel_gray_400" - }, - "header_tab_active_background": { - "color_identifier": "clear" - }, - "header_tab_active_text": { - "color_identifier": "black" - }, - "header_tab_active_indicator": { - "color_identifier": "lavender_A700" - }, - "header_tab_inactive_text": { - "color_identifier": "steel_gray_300" - }, - "header_text": { - "color_identifier": "black" - }, - "header_text_alternate": { - "color_identifier": "black" - }, - "header_text_secondary": { - "color_identifier": "steel_gray_600" - }, - "header_tint": { - "color_identifier": "lavender_A700" - }, - "header_tint_alternate": { - "color_identifier": "lavender_A700" - }, - "icon_alpha_placeholder": { - "color_identifier": "white" - }, - "icon_medium": { - "color_identifier": "steel_gray_400" - }, - "icon_medium_alpha": { - "color_identifier": "black", - "alpha_multiplier": 0.48 - }, - "icon_outline_medium": { - "color_identifier": "steel_gray_400" - }, - "icon_outline_secondary": { - "color_identifier": "steel_gray_400" - }, - "icon_secondary": { - "color_identifier": "steel_gray_400" - }, - "icon_secondary_alpha": { - "color_identifier": "black", - "alpha_multiplier": 0.36 - }, - "icon_tertiary": { - "color_identifier": "steel_gray_300" - }, - "icon_tertiary_alpha": { - "color_identifier": "black", - "alpha_multiplier": 0.24 - }, - "im_attach_tint": { - "color_identifier": "lavender_A700" - }, - "im_bubble_border_alternate": { - "color_identifier": "gray_100" - }, - "im_bubble_border_alternate_highlighted": { - "color_identifier": "gray_A150" - }, - "im_bubble_button_background": { - "color_identifier": "gray_20" - }, - "im_bubble_button_outgoing_background": { - "color_identifier": "white_alpha60" - }, - "im_bubble_button_background_highlighted": { - "color_identifier": "gray_A150" - }, - "im_bubble_button_foreground": { - "color_identifier": "black" - }, - "im_bubble_incoming_expiring": { - "color_identifier": "lavender_100" - }, - "im_bubble_incoming_expiring_highlighted": { - "color_identifier": "lavender_200" - }, - "im_bubble_outgoing_expiring": { - "color_identifier": "lavender_200" - }, - "im_bubble_outgoing_expiring_highlighted": { - "color_identifier": "lavender_300" - }, - "im_bubble_incoming": { - "color_identifier": "gray_50" - }, - "im_bubble_incoming_alternate": { - "color_identifier": "white" - }, - "im_bubble_incoming_alternate_highlighted": { - "color_identifier": "gray_20" - }, - "im_bubble_incoming_highlighted": { - "color_identifier": "gray_A150" - }, - "im_bubble_gift_background": { - "color_identifier": "gold_200" - }, - "im_bubble_gift_background_highlighted": { - "color_identifier": "gold_250" - }, - "im_bubble_gift_text": { - "color_identifier": "gold_500" - }, - "im_bubble_gift_text_secondary": { - "color_identifier": "gold_400" - }, - "im_bubble_outgoing": { - "color_identifier": "lavender_A100" - }, - "im_bubble_outgoing_alternate": { - "color_identifier": "white" - }, - "im_bubble_outgoing_highlighted": { - "color_identifier": "lavender_A200" - }, - "im_bubble_outgoing_alternate_highlighted": { - "color_identifier": "gray_20" - }, - "im_bubble_wallpaper_button_background": { - "color_identifier": "gray_40" - }, - "im_bubble_wallpaper_button_background_highlighted": { - "color_identifier": "gray_100" - }, - "im_bubble_wallpaper_button_foreground": { - "color_identifier": "black" - }, - "im_bubble_wallpaper_incoming": { - "color_identifier": "white" - }, - "im_bubble_wallpaper_incoming_highlighted": { - "color_identifier": "gray_50" - }, - "im_bubble_wallpaper_outgoing": { - "color_identifier": "lavender_A100" - }, - "im_bubble_wallpaper_outgoing_highlighted": { - "color_identifier": "lavender_A200" - }, - "im_forward_line_tint": { - "color_identifier": "lavender_A700", - "alpha_multiplier": 0.24 - }, - "im_reply_separator": { - "color_identifier": "lavender_A700" - }, - "im_text_name": { - "color_identifier": "lavender_A700" - }, - "im_toolbar_voice_msg_background": { - "color_identifier": "steel_gray_300" - }, - "im_toolbar_separator": { - "color_identifier": "black_lavender_alpha5" - }, - "image_border": { - "color_identifier": "black_alpha8" - }, - "input_background": { - "color_identifier": "gray_40" - }, - "input_border": { - "color_identifier": "gray_100" - }, - "landing_background": { - "color_identifier": "white" - }, - "landing_field_background": { - "color_identifier": "gray_40" - }, - "landing_field_border": { - "color_identifier": "clear" - }, - "landing_field_placeholder": { - "color_identifier": "steel_gray_400" - }, - "landing_login_button_background": { - "color_identifier": "lavender_A700" - }, - "landing_login_button_foreground": { - "color_identifier": "white" - }, - "landing_primary_button_background": { - "color_identifier": "lavender_A700" - }, - "landing_primary_button_foreground": { - "color_identifier": "white" - }, - "landing_tertiary_button_background": { - "color_identifier": "clear" - }, - "landing_tertiary_button_foreground": { - "color_identifier": "lavender_A700" - }, - "landing_text_primary": { - "color_identifier": "black" - }, - "landing_text_title": { - "color_identifier": "lavender_A700" - }, - "landing_text_secondary": { - "color_identifier": "steel_gray_400" - }, - "landing_secondary_button_background": { - "color_identifier": "black_blue45_alpha10" - }, - "landing_secondary_button_foreground": { - "color_identifier": "lavender_A700" - }, - "landing_snippet_border": { - "color_identifier": "black_alpha15" - }, - "like_text_tint": { - "color_identifier": "red_nice" - }, - "link_alternate": { - "color_identifier": "lavender_A700" - }, - "loader_background": { - "color_identifier": "gray_50" - }, - "loader_tint": { - "color_identifier": "gray_500" - }, - "loader_track_fill": { - "color_identifier": "gray_100" - }, - "loader_track_value_fill": { - "color_identifier": "lavender_A700" - }, - "media_overlay_button_background": { - "color_identifier": "white" - }, - "media_overlay_button_foreground": { - "color_identifier": "gray_800" - }, - "modal_card_background": { - "color_identifier": "white" - }, - "modal_card_border": { - "color_identifier": "clear" - }, - "modal_card_header_close": { - "color_identifier": "black" - }, - "music_playback_icon": { - "color_identifier": "black" - }, - "feed_recommended_friend_promo_background": { - "color_identifier": "lavender_700" - }, - "overlay_status_background": { - "color_identifier": "gray_50" - }, - "overlay_status_foreground": { - "color_identifier": "steel_gray_500" - }, - "overlay_status_icon": { - "color_identifier": "steel_gray_400" - }, - "placeholder_icon_background": { - "color_identifier": "black_blue24_alpha8" - }, - "placeholder_icon_background_opaque": { - "color_identifier": "gray_50" - }, - "placeholder_icon_foreground_primary": { - "color_identifier": "steel_gray_300" - }, - "placeholder_icon_foreground_secondary": { - "color_identifier": "steel_gray_300" - }, - "placeholder_icon_tint": { - "color_identifier": "lavender_A800" - }, - "poll_option_background": { - "color_identifier": "lavender_A700" - }, - "search_bar_background": { - "color_identifier": "white" - }, - "search_bar_field_background": { - "color_identifier": "gray_50" - }, - "search_bar_field_tint": { - "color_identifier": "steel_gray_500" - }, - "search_bar_segmented_control_tint": { - "color_identifier": "steel_gray_400" - }, - "segmented_control_bar_background": { - "color_identifier": "clear" - }, - "segmented_control_tint": { - "color_identifier": "steel_gray_300" - }, - "selection_off_icon": { - "color_identifier": "steel_gray_150" - }, - "separator_alpha": { - "color_identifier": "black_alpha12" - }, - "separator_alternate": { - "color_identifier": "gray_100" - }, - "separator_common": { - "color_identifier": "gray_A150" - }, - "snippet_background": { - "color_identifier": "white" - }, - "snippet_border": { - "color_identifier": "black_alpha15" - }, - "snippet_icon_tertiary": { - "color_identifier": "gray_200" - }, - "splashscreen_icon": { - "color_identifier": "gray_100" - }, - "statusbar_alternate_legacy_background": { - "color_identifier": "black_alpha20" - }, - "stories_create_button_background_from": { - "color_identifier": "gray_40" - }, - "stories_create_button_background_to": { - "color_identifier": "gray_100" - }, - "stories_create_button_foreground": { - "color_identifier": "steel_gray_500" - }, - "stories_skeleton_loader_background": { - "color_identifier": "gray_200" - }, - "switch_ios_off_border": { - "color_identifier": "gray_100" - }, - "stories_create_button_icon_background": { - "color_identifier": "white" - }, - "tabbar_active_icon": { - "color_identifier": "lavender_A700" - }, - "tabbar_background": { - "color_identifier": "gray_20" - }, - "tabbar_inactive_icon": { - "color_identifier": "steel_gray_400" - }, - "tabbar_tablet_active_icon": { - "color_identifier": "lavender_A700" - }, - "tabbar_tablet_background": { - "color_identifier": "gray_20" - }, - "tabbar_tablet_inactive_icon": { - "color_identifier": "steel_gray_400" - }, - "tabbar_tablet_text_primary": { - "color_identifier": "black" - }, - "tabbar_tablet_text_secondary": { - "color_identifier": "gray_400" - }, - "toolbar_attach_background_from": { - "color_identifier": "steel_gray_150" - }, - "toolbar_attach_background_to": { - "color_identifier": "steel_gray_250" - }, - "text_action_counter": { - "color_identifier": "steel_gray_400" - }, - "text_link": { - "color_identifier": "lavender_A700" - }, - "text_link_highlighted_background": { - "color_identifier": "black" - }, - "text_muted": { - "color_identifier": "gray_800" - }, - "text_name": { - "color_identifier": "lavender_A700" - }, - "text_placeholder": { - "color_identifier": "steel_gray_500" - }, - "text_primary": { - "color_identifier": "black" - }, - "text_secondary": { - "color_identifier": "steel_gray_600" - }, - "text_subhead": { - "color_identifier": "steel_gray_600" - }, - "text_tertiary": { - "color_identifier": "steel_gray_400" - }, - "icon_name": { - "color_identifier": "lavender_A700" - }, - "panel_tab_active_background": { - "color_identifier": "gray_50" - }, - "panel_tab_active_text": { - "color_identifier": "gray_600" - }, - "panel_tab_inactive_text": { - "color_identifier": "gray_500" - }, - "im_service_message_text": { - "color_identifier": "steel_gray_500" - }, - "writebar_icon": { - "color_identifier": "lavender_A700" - }, - "dynamic_blue": { - "color_identifier": "azure_300" - }, - "dynamic_gray": { - "color_identifier": "steel_gray_250" - }, - "dynamic_red": { - "color_identifier": "red_nice" - }, - "dynamic_green": { - "color_identifier": "green" - }, - "dynamic_orange": { - "color_identifier": "orange" - }, - "dynamic_purple": { - "color_identifier": "purple" - }, - "dynamic_violet": { - "color_identifier": "violet" - }, - "dynamic_raspberry_pink": { - "color_identifier": "raspberry_pink" - }, - "dynamic_neon_pink": { - "color_identifier": "neon_pink" - }, - "vk_connect_button_primary_background": { - "color_identifier": "gray_900" - }, - "vk_connect_button_primary_foreground": { - "color_identifier": "white" - }, - "vk_connect_button_secondary_background": { - "color_identifier": "gray_40" - }, - "vk_connect_button_secondary_foreground": { - "color_identifier": "gray_900" - }, - "background_text_highlighted": { - "color_identifier": "lavender_A700", - "alpha_multiplier": 0.2 - }, - "skeleton_shimmer_from": { - "color_identifier": "white" - }, - "skeleton_shimmer_to": { - "color_identifier": "white", - "alpha_multiplier": 0 - }, - "skeleton_foreground_from": { - "color_identifier": "gray_A40" - }, - "skeleton_foreground_to": { - "color_identifier": "gray_100" - }, - "primary_overlay_badge": { - "color_identifier": "black_alpha60" - }, - "secondary_overlay_badge": { - "color_identifier": "black_alpha24" - }, - "content_positive_background": { - "color_identifier": "green_alpha" - } + } + }, + "bright_light_edu": { + "appearance": "light", + "colors": { + "accent": { + "color_identifier": "lavender_A700" + }, + "accent_alternate": { + "color_identifier": "lavender_A700" + }, + "action_sheet_action_foreground": { + "color_identifier": "lavender_A700" + }, + "action_sheet_separator": { + "color_identifier": "black_alpha12" + }, + "activity_indicator_tint": { + "color_identifier": "steel_gray_200" + }, + "attach_picker_tab_active_background": { + "color_identifier": "lavender_A700" + }, + "attach_picker_tab_active_icon": { + "color_identifier": "white" + }, + "attach_picker_tab_active_text": { + "color_identifier": "lavender_A700" + }, + "attach_picker_tab_inactive_background": { + "color_identifier": "gray_40" + }, + "attach_picker_tab_inactive_icon": { + "color_identifier": "steel_gray_400" + }, + "attach_picker_tab_inactive_text": { + "color_identifier": "steel_gray_400" + }, + "background_content": { + "color_identifier": "white" + }, + "background_hover": { + "color_identifier": "black", + "alpha_multiplier": 0.04 + }, + "background_highlighted": { + "color_identifier": "black_alpha8" + }, + "background_keyboard": { + "color_identifier": "gray_100" + }, + "background_light": { + "color_identifier": "gray_20" + }, + "background_page": { + "color_identifier": "gray_50" + }, + "background_suggestions": { + "color_identifier": "white" + }, + "background_card_alpha": { + "color_identifier": "black_alpha20" + + }, + "button_bot_shadow": { + "color_identifier": "gray_200" + }, + "button_commerce_background": { + "color_identifier": "green" + }, + "button_commerce_foreground": { + "color_identifier": "white" + }, + "button_muted_background": { + "color_identifier": "gray_40" + }, + "button_muted_foreground": { + "color_identifier": "lavender_A700" + }, + "button_outline_border": { + "color_identifier": "lavender_A700" + }, + "button_outline_foreground": { + "color_identifier": "lavender_A700" + }, + "button_primary_background": { + "color_identifier": "lavender_A700" + }, + "button_primary_foreground": { + "color_identifier": "white" + }, + "button_secondary_background": { + "color_identifier": "lavender_A700", + "alpha_multiplier": 0.1 + }, + "button_secondary_background_highlighted": { + "color_identifier": "lavender_A700", + "alpha_multiplier": 0.08 + }, + "button_secondary_foreground": { + "color_identifier": "lavender_A700" + }, + "button_secondary_foreground_highlighted": { + "color_identifier": "lavender_A700", + "alpha_multiplier": 0.6 + }, + "button_secondary_destructive_background": { + "color_identifier": "lavender_A700", + "alpha_multiplier": 0.1 + }, + "button_secondary_destructive_background_highlighted": { + "color_identifier": "lavender_A700", + "alpha_multiplier": 0.08 + }, + "button_secondary_destructive_foreground": { + "color_identifier": "red" + }, + "button_secondary_destructive_foreground_highlighted": { + "color_identifier": "red", + "alpha_multiplier": 0.6 + }, + "button_tertiary_background": { + "color_identifier": "clear" + }, + "button_tertiary_foreground": { + "color_identifier": "lavender_A700" + }, + "cell_button_foreground": { + "color_identifier": "lavender_A700" + }, + "content_placeholder_icon": { + "color_identifier": "steel_gray_300" + }, + "content_placeholder_text": { + "color_identifier": "steel_gray_500" + }, + "content_tint_background": { + "color_identifier": "gray_A40" + }, + "content_tint_foreground": { + "color_identifier": "gray_450" + }, + "control_background": { + "color_identifier": "gray_50" + }, + "control_background_secondary": { + "color_identifier": "white" + }, + "control_foreground": { + "color_identifier": "lavender_A700" + }, + "control_tint": { + "color_identifier": "white" + }, + "control_tint_muted": { + "color_identifier": "gray_500" + }, + "counter_primary_background": { + "color_identifier": "lavender_A700" + }, + "counter_primary_text": { + "color_identifier": "white" + }, + "counter_prominent_background": { + "color_identifier": "red_nice" + }, + "counter_prominent_text": { + "color_identifier": "white" + }, + "counter_secondary_background": { + "color_identifier": "steel_gray_200" + }, + "counter_secondary_text": { + "color_identifier": "white" + }, + "content_warning_background": { + "color_identifier": "yellow_overlight" + }, + "destructive": { + "color_identifier": "red" + }, + "field_background": { + "color_identifier": "gray_40" + }, + "field_border": { + "color_identifier": "black_alpha12" + }, + "field_error_background": { + "color_identifier": "pink_light" + }, + "field_error_border": { + "color_identifier": "red" + }, + "field_valid_border": { + "color_identifier": "green" + }, + "field_text_placeholder": { + "color_identifier": "steel_gray_400" + }, + "float_button_background": { + "color_identifier": "gray_A40" + }, + "float_button_background_highlighted": { + "color_identifier": "gray_50" + }, + "float_button_foreground": { + "color_identifier": "steel_gray_300" + }, + "float_button_border": { + "color_identifier": "black_alpha05" + }, + "header_alternate_background": { + "color_identifier": "white" + }, + "header_alternate_tab_active_indicator": { + "color_identifier": "lavender_A700" + }, + "header_alternate_tab_active_text": { + "color_identifier": "black" + }, + "header_alternate_tab_inactive_text": { + "color_identifier": "steel_gray_300" + }, + "header_background": { + "color_identifier": "white" + }, + "header_background_before_blur": { + "color_identifier": "white" + }, + "header_background_before_blur_alternate": { + "color_identifier": "white" + }, + "header_search_field_background": { + "color_identifier": "gray_50" + }, + "header_search_field_tint": { + "color_identifier": "steel_gray_400" + }, + "header_tab_active_background": { + "color_identifier": "clear" + }, + "header_tab_active_text": { + "color_identifier": "black" + }, + "header_tab_active_indicator": { + "color_identifier": "lavender_A700" + }, + "header_tab_inactive_text": { + "color_identifier": "steel_gray_300" + }, + "header_text": { + "color_identifier": "black" + }, + "header_text_alternate": { + "color_identifier": "black" + }, + "header_text_secondary": { + "color_identifier": "steel_gray_600" + }, + "header_tint": { + "color_identifier": "lavender_A700" + }, + "header_tint_alternate": { + "color_identifier": "lavender_A700" + }, + "icon_alpha_placeholder": { + "color_identifier": "white" + }, + "icon_medium": { + "color_identifier": "steel_gray_400" + }, + "icon_medium_alpha": { + "color_identifier": "black", + "alpha_multiplier": 0.48 + }, + "icon_outline_medium": { + "color_identifier": "steel_gray_400" + }, + "icon_outline_secondary": { + "color_identifier": "steel_gray_400" + }, + "icon_secondary": { + "color_identifier": "steel_gray_400" + }, + "icon_secondary_alpha": { + "color_identifier": "black", + "alpha_multiplier": 0.36 + }, + "icon_tertiary": { + "color_identifier": "steel_gray_300" + }, + "icon_tertiary_alpha": { + "color_identifier": "black", + "alpha_multiplier": 0.24 + }, + "im_attach_tint": { + "color_identifier": "lavender_A700" + }, + "im_bubble_border_alternate": { + "color_identifier": "gray_100" + }, + "im_bubble_border_alternate_highlighted": { + "color_identifier": "gray_A150" + }, + "im_bubble_button_background": { + "color_identifier": "gray_20" + }, + "im_bubble_button_outgoing_background": { + "color_identifier": "white_alpha60" + }, + "im_bubble_button_background_highlighted": { + "color_identifier": "gray_A150" + }, + "im_bubble_button_foreground": { + "color_identifier": "black" + }, + "im_bubble_incoming_expiring": { + "color_identifier": "lavender_100" + }, + "im_bubble_incoming_expiring_highlighted": { + "color_identifier": "lavender_200" + }, + "im_bubble_outgoing_expiring": { + "color_identifier": "lavender_200" + }, + "im_bubble_outgoing_expiring_highlighted": { + "color_identifier": "lavender_300" + }, + "im_bubble_incoming": { + "color_identifier": "gray_50" + }, + "im_bubble_incoming_alternate": { + "color_identifier": "white" + }, + "im_bubble_incoming_alternate_highlighted": { + "color_identifier": "gray_20" + }, + "im_bubble_incoming_highlighted": { + "color_identifier": "gray_A150" + }, + "im_bubble_gift_background": { + "color_identifier": "gold_200" + }, + "im_bubble_gift_background_highlighted": { + "color_identifier": "gold_250" + }, + "im_bubble_gift_text": { + "color_identifier": "gold_500" + }, + "im_bubble_gift_text_secondary": { + "color_identifier": "gold_400" + }, + "im_bubble_mable_outgoing": { + "color_identifier": "mable_blue_100" + }, + "im_bubble_mable_outgoing_expiring_highlighted": { + "color_identifier": "lavender_250" + }, + "im_bubble_mable_outgoing_highlighted": { + "color_identifier": "mable_blue_200" + }, + "im_bubble_mable_wallpaper_outgoing": { + "color_identifier": "mable_blue_100" + }, + "im_bubble_mable_wallpaper_outgoing_highlighted": { + "color_identifier": "mable_blue_200" + }, + "im_bubble_outgoing": { + "color_identifier": "lavender_A100" + }, + "im_bubble_outgoing_alternate": { + "color_identifier": "white" + }, + "im_bubble_outgoing_highlighted": { + "color_identifier": "lavender_A200" + }, + "im_bubble_outgoing_alternate_highlighted": { + "color_identifier": "gray_20" + }, + "im_bubble_wallpaper_button_background": { + "color_identifier": "gray_40" + }, + "im_bubble_wallpaper_button_background_highlighted": { + "color_identifier": "gray_100" + }, + "im_bubble_wallpaper_button_foreground": { + "color_identifier": "black" + }, + "im_bubble_wallpaper_incoming": { + "color_identifier": "white" + }, + "im_bubble_wallpaper_incoming_highlighted": { + "color_identifier": "gray_50" + }, + "im_bubble_wallpaper_outgoing": { + "color_identifier": "lavender_A100" + }, + "im_bubble_wallpaper_outgoing_highlighted": { + "color_identifier": "lavender_A200" + }, + "im_forward_line_tint": { + "color_identifier": "lavender_A700", + "alpha_multiplier": 0.24 + }, + "im_reply_separator": { + "color_identifier": "lavender_A700" + }, + "im_text_name": { + "color_identifier": "lavender_A700" + }, + "im_toolbar_voice_msg_background": { + "color_identifier": "steel_gray_300" + }, + "im_toolbar_separator": { + "color_identifier": "black_lavender_alpha5" + }, + "image_border": { + "color_identifier": "black_alpha8" + }, + "input_background": { + "color_identifier": "gray_40" + }, + "input_border": { + "color_identifier": "gray_100" + }, + "landing_background": { + "color_identifier": "white" + }, + "landing_field_background": { + "color_identifier": "gray_40" + }, + "landing_field_border": { + "color_identifier": "clear" + }, + "landing_field_placeholder": { + "color_identifier": "steel_gray_400" + }, + "landing_login_button_background": { + "color_identifier": "lavender_A700" + }, + "landing_login_button_foreground": { + "color_identifier": "white" + }, + "landing_primary_button_background": { + "color_identifier": "lavender_A700" + }, + "landing_primary_button_foreground": { + "color_identifier": "white" + }, + "landing_tertiary_button_background": { + "color_identifier": "clear" + }, + "landing_tertiary_button_foreground": { + "color_identifier": "lavender_A700" + }, + "landing_text_primary": { + "color_identifier": "black" + }, + "landing_text_title": { + "color_identifier": "lavender_A700" + }, + "landing_text_secondary": { + "color_identifier": "steel_gray_400" + }, + "landing_secondary_button_background": { + "color_identifier": "black_blue45_alpha10" + }, + "landing_secondary_button_foreground": { + "color_identifier": "lavender_A700" + }, + "landing_snippet_border": { + "color_identifier": "black_alpha15" + }, + "like_text_tint": { + "color_identifier": "red_nice" + }, + "link_alternate": { + "color_identifier": "lavender_A700" + }, + "loader_background": { + "color_identifier": "gray_50" + }, + "loader_tint": { + "color_identifier": "gray_500" + }, + "loader_track_fill": { + "color_identifier": "gray_100" + }, + "loader_track_value_fill": { + "color_identifier": "lavender_A700" + }, + "media_overlay_button_background": { + "color_identifier": "white" + }, + "media_overlay_button_foreground": { + "color_identifier": "gray_800" + }, + "modal_card_background": { + "color_identifier": "white" + }, + "modal_card_border": { + "color_identifier": "clear" + }, + "modal_card_header_close": { + "color_identifier": "black" + }, + "music_playback_icon": { + "color_identifier": "black" + }, + "feed_recommended_friend_promo_background": { + "color_identifier": "lavender_700" + }, + "overlay_status_background": { + "color_identifier": "gray_50" + }, + "overlay_status_foreground": { + "color_identifier": "steel_gray_500" + }, + "overlay_status_icon": { + "color_identifier": "steel_gray_400" + }, + "placeholder_icon_background": { + "color_identifier": "black_blue24_alpha8" + }, + "placeholder_icon_background_opaque": { + "color_identifier": "gray_50" + }, + "placeholder_icon_foreground_primary": { + "color_identifier": "steel_gray_300" + }, + "placeholder_icon_foreground_secondary": { + "color_identifier": "steel_gray_300" + }, + "placeholder_icon_tint": { + "color_identifier": "lavender_A800" + }, + "poll_option_background": { + "color_identifier": "lavender_A700" + }, + "search_bar_background": { + "color_identifier": "white" + }, + "search_bar_field_background": { + "color_identifier": "gray_50" + }, + "search_bar_field_tint": { + "color_identifier": "steel_gray_500" + }, + "search_bar_segmented_control_tint": { + "color_identifier": "steel_gray_400" + }, + "segmented_control_bar_background": { + "color_identifier": "clear" + }, + "segmented_control_tint": { + "color_identifier": "steel_gray_300" + }, + "selection_off_icon": { + "color_identifier": "steel_gray_150" + }, + "separator_alpha": { + "color_identifier": "black_alpha12" + }, + "separator_alternate": { + "color_identifier": "gray_100" + }, + "separator_common": { + "color_identifier": "gray_A150" + }, + "snippet_background": { + "color_identifier": "white" + }, + "snippet_border": { + "color_identifier": "black_alpha15" + }, + "snippet_icon_tertiary": { + "color_identifier": "gray_200" + }, + "splashscreen_icon": { + "color_identifier": "gray_100" + }, + "statusbar_alternate_legacy_background": { + "color_identifier": "black_alpha20" + }, + "stories_create_button_background_from": { + "color_identifier": "gray_40" + }, + "stories_create_button_background_to": { + "color_identifier": "gray_100" + }, + "stories_create_button_foreground": { + "color_identifier": "steel_gray_500" + }, + "stories_skeleton_loader_background": { + "color_identifier": "gray_200" + }, + "switch_ios_off_border": { + "color_identifier": "gray_100" + }, + "stories_create_button_icon_background": { + "color_identifier": "white" + }, + "tabbar_active_icon": { + "color_identifier": "lavender_A700" + }, + "tabbar_background": { + "color_identifier": "gray_20" + }, + "tabbar_inactive_icon": { + "color_identifier": "steel_gray_400" + }, + "tabbar_tablet_active_icon": { + "color_identifier": "lavender_A700" + }, + "tabbar_tablet_background": { + "color_identifier": "gray_20" + }, + "tabbar_tablet_inactive_icon": { + "color_identifier": "steel_gray_400" + }, + "tabbar_tablet_text_primary": { + "color_identifier": "black" + }, + "tabbar_tablet_text_secondary": { + "color_identifier": "gray_400" + }, + "toolbar_attach_background_from": { + "color_identifier": "steel_gray_150" + }, + "toolbar_attach_background_to": { + "color_identifier": "steel_gray_250" + }, + "text_action_counter": { + "color_identifier": "steel_gray_400" + }, + "text_link": { + "color_identifier": "lavender_A700" + }, + "text_link_highlighted_background": { + "color_identifier": "black" + }, + "text_muted": { + "color_identifier": "gray_800" + }, + "text_name": { + "color_identifier": "lavender_A700" + }, + "text_placeholder": { + "color_identifier": "steel_gray_500" + }, + "text_primary": { + "color_identifier": "black" + }, + "text_secondary": { + "color_identifier": "steel_gray_600" + }, + "text_subhead": { + "color_identifier": "steel_gray_600" + }, + "text_tertiary": { + "color_identifier": "steel_gray_400" + }, + "icon_name": { + "color_identifier": "lavender_A700" + }, + "panel_tab_active_background": { + "color_identifier": "gray_50" + }, + "panel_tab_active_text": { + "color_identifier": "gray_600" + }, + "panel_tab_inactive_text": { + "color_identifier": "gray_500" + }, + "im_service_message_text": { + "color_identifier": "steel_gray_500" + }, + "writebar_icon": { + "color_identifier": "lavender_A700" + }, + "dynamic_blue": { + "color_identifier": "azure_300" + }, + "dynamic_gray": { + "color_identifier": "steel_gray_250" + }, + "dynamic_red": { + "color_identifier": "red_nice" + }, + "dynamic_green": { + "color_identifier": "green" + }, + "dynamic_orange": { + "color_identifier": "orange" + }, + "dynamic_purple": { + "color_identifier": "purple" + }, + "dynamic_violet": { + "color_identifier": "violet" + }, + "dynamic_raspberry_pink": { + "color_identifier": "raspberry_pink" + }, + "dynamic_neon_pink": { + "color_identifier": "neon_pink" + }, + "vk_connect_button_primary_background": { + "color_identifier": "gray_900" + }, + "vk_connect_button_primary_foreground": { + "color_identifier": "white" + }, + "vk_connect_button_secondary_background": { + "color_identifier": "gray_40" + }, + "vk_connect_button_secondary_foreground": { + "color_identifier": "gray_900" + }, + "background_text_highlighted": { + "color_identifier": "lavender_A700", + "alpha_multiplier": 0.2 + }, + "text_highlight_alpha": { + "color_identifier": "white_blue20" + }, + "skeleton_shimmer_from": { + "color_identifier": "white" + }, + "skeleton_shimmer_to": { + "color_identifier": "white", + "alpha_multiplier": 0 + }, + "skeleton_foreground_from": { + "color_identifier": "gray_A40" + }, + "skeleton_foreground_to": { + "color_identifier": "gray_100" + }, + "primary_overlay_badge": { + "color_identifier": "black_alpha60" + }, + "secondary_overlay_badge": { + "color_identifier": "black_alpha24" + }, + "content_positive_background": { + "color_identifier": "green_alpha" } } } diff --git a/main.valette/scheme_messages.json b/main.valette/scheme_messages.json index 571d955..1b890f9 100644 --- a/main.valette/scheme_messages.json +++ b/main.valette/scheme_messages.json @@ -1,1531 +1,1563 @@ { - "identifier": "default", - "family": "me", - "themes": { - "space_gray": { - "appearance": "dark", - "colors": { - "im_default_theme_outgoing_bubble_background": { - "color_identifier": "gray_700" - }, - "im_default_theme_outgoing_alternate_bubble_background": { - "color_identifier": "gray_700" - }, - "im_default_theme_outgoing_bubble_background_highlighted": { - "color_identifier": "gray_600" - }, - "im_default_theme_outgoing_alternate_bubble_background_highlighted": { - "color_identifier": "gray_500" - }, - "im_default_theme_outgoing_text_primary": { - "color_identifier": "white" - }, - "im_default_theme_outgoing_text_title": { - "color_identifier": "white" - }, - "im_default_theme_outgoing_text_placeholder": { - "color_identifier": "gray_300" - }, - "im_default_theme_outgoing_link": { - "color_identifier": "sky_300" - }, - "im_default_theme_outgoing_hint_text": { - "color_identifier": "gray_300" - }, - "im_default_theme_outgoing_forward_line_tint": { - "color_identifier": "white" - }, - "im_default_theme_outgoing_button_tertiary_foreground": { - "color_identifier": "gray_100" - }, - "im_default_theme_outgoing_attach_tint": { - "color_identifier": "sky_300" - }, - "im_default_theme_outgoing_accent": { - "color_identifier": "white" - }, - "im_default_theme_incoming_bubble_background": { - "color_identifier": "gray_800" - }, - "im_default_theme_incoming_alternate_bubble_background": { - "color_identifier": "gray_800" - }, - "im_default_theme_incoming_bubble_background_highlighted": { - "color_identifier": "gray_600" - }, - "im_default_theme_incoming_alternate_bubble_background_highlighted": { - "color_identifier": "gray_600" - }, - "im_default_theme_incoming_text_primary": { - "color_identifier": "white" - }, - "im_default_theme_incoming_text_title": { - "color_identifier": "white" - }, - "im_default_theme_incoming_text_placeholder": { - "color_identifier": "gray_300" - }, - "im_default_theme_incoming_link": { - "color_identifier": "sky_300" - }, - "im_default_theme_incoming_hint_text": { - "color_identifier": "gray_300" - }, - "im_default_theme_incoming_forward_line_tint": { - "color_identifier": "white" - }, - "im_default_theme_incoming_button_tertiary_foreground": { - "color_identifier": "gray_100" - }, - "im_default_theme_incoming_attach_tint": { - "color_identifier": "sky_300" - }, - "im_default_theme_incoming_accent": { - "color_identifier": "white" - }, - "im_pink_theme_main_tint": { - "color_identifier": "jam_A500" - }, - "im_pink_theme_outgoing_bubble_background": { - "color_identifier": "jam_A500" - }, - "im_pink_theme_outgoing_bubble_background_highlighted": { - "color_identifier": "jam_400" - }, - "im_pink_theme_outgoing_text_primary": { - "color_identifier": "white" - }, - "im_pink_theme_outgoing_text_title": { - "color_identifier": "white" - }, - "im_pink_theme_outgoing_text_placeholder": { - "color_identifier": "jam_200" - }, - "im_pink_theme_outgoing_link": { - "color_identifier": "white" - }, - "im_pink_theme_outgoing_hint_text": { - "color_identifier": "jam_200" - }, - "im_pink_theme_outgoing_forward_line_tint": { - "color_identifier": "white" - }, - "im_pink_theme_outgoing_button_tertiary_foreground": { - "color_identifier": "white" - }, - "im_pink_theme_outgoing_attach_tint": { - "color_identifier": "white" - }, - "im_pink_theme_outgoing_accent": { - "color_identifier": "white" - }, - "im_pink_theme_incoming_color1_bubble_background": { - "color_identifier": "royal_blue_900" - }, - "im_pink_theme_incoming_color1_bubble_background_highlighted": { - "color_identifier": "royal_blue_800" - }, - "im_pink_theme_incoming_color1_text_primary": { - "color_identifier": "white" - }, - "im_pink_theme_incoming_color1_text_title": { - "color_identifier": "white" - }, - "im_pink_theme_incoming_color1_text_placeholder": { - "color_identifier": "royal_blue_600" - }, - "im_pink_theme_incoming_color1_link": { - "color_identifier": "white" - }, - "im_pink_theme_incoming_color1_hint_text": { - "color_identifier": "royal_blue_600" - }, - "im_pink_theme_incoming_color1_forward_line_tint": { - "color_identifier": "royal_blue_400" - }, - "im_pink_theme_incoming_color1_button_tertiary_foreground": { - "color_identifier": "royal_blue_400" - }, - "im_pink_theme_incoming_color1_attach_tint": { - "color_identifier": "royal_blue_400" - }, - "im_pink_theme_incoming_color1_accent": { - "color_identifier": "royal_blue_400" - }, - "im_pink_theme_incoming_color2_bubble_background": { - "color_identifier": "deep_lilac_900" - }, - "im_pink_theme_incoming_color2_bubble_background_highlighted": { - "color_identifier": "deep_lilac_800" - }, - "im_pink_theme_incoming_color2_text_primary": { - "color_identifier": "white" - }, - "im_pink_theme_incoming_color2_text_title": { - "color_identifier": "white" - }, - "im_pink_theme_incoming_color2_text_placeholder": { - "color_identifier": "deep_lilac_400" - }, - "im_pink_theme_incoming_color2_link": { - "color_identifier": "white" - }, - "im_pink_theme_incoming_color2_hint_text": { - "color_identifier": "deep_lilac_400" - }, - "im_pink_theme_incoming_color2_forward_line_tint": { - "color_identifier": "deep_lilac_300" - }, - "im_pink_theme_incoming_color2_button_tertiary_foreground": { - "color_identifier": "deep_lilac_300" - }, - "im_pink_theme_incoming_color2_attach_tint": { - "color_identifier": "deep_lilac_300" - }, - "im_pink_theme_incoming_color2_accent": { - "color_identifier": "deep_lilac_300" - }, - "im_pink_theme_incoming_color3_bubble_background": { - "color_identifier": "jam_900" - }, - "im_pink_theme_incoming_color3_bubble_background_highlighted": { - "color_identifier": "jam_100" - }, - "im_pink_theme_incoming_color3_text_primary": { - "color_identifier": "white" - }, - "im_pink_theme_incoming_color3_text_title": { - "color_identifier": "white" - }, - "im_pink_theme_incoming_color3_text_placeholder": { - "color_identifier": "jam_400" - }, - "im_pink_theme_incoming_color3_link": { - "color_identifier": "white" - }, - "im_pink_theme_incoming_color3_hint_text": { - "color_identifier": "jam_400" - }, - "im_pink_theme_incoming_color3_forward_line_tint": { - "color_identifier": "jam_300" - }, - "im_pink_theme_incoming_color3_button_tertiary_foreground": { - "color_identifier": "jam_300" - }, - "im_pink_theme_incoming_color3_attach_tint": { - "color_identifier": "jam_300" - }, - "im_pink_theme_incoming_color3_accent": { - "color_identifier": "jam_300" - }, - "im_pink_theme_outgoing_reply_sender_text": { - "color_identifier": "white" - }, - "im_pink_theme_outgoing_reply_separator": { - "color_identifier": "white" - }, - "im_pink_theme_incoming_color1_reply_sender_text": { - "color_identifier": "royal_blue_400" - }, - "im_pink_theme_incoming_color2_reply_sender_text": { - "color_identifier": "deep_lilac_300" - }, - "im_pink_theme_incoming_color3_reply_sender_text": { - "color_identifier": "jam_300" - }, - "im_pink_theme_incoming_color1_reply_separator": { - "color_identifier": "royal_blue_400" - }, - "im_pink_theme_incoming_color2_reply_separator": { - "color_identifier": "deep_lilac_300" - }, - "im_pink_theme_incoming_color3_reply_separator": { - "color_identifier": "jam_300" - }, - "im_purple_theme_main_tint": { - "color_identifier": "deep_lilac_A500" - }, - "im_purple_theme_outgoing_bubble_background": { - "color_identifier": "deep_lilac_A500" - }, - "im_purple_theme_outgoing_bubble_background_highlighted": { - "color_identifier": "deep_lilac_300" - }, - "im_purple_theme_outgoing_text_primary": { - "color_identifier": "white" - }, - "im_purple_theme_outgoing_text_title": { - "color_identifier": "white" - }, - "im_purple_theme_outgoing_text_placeholder": { - "color_identifier": "deep_lilac_100" - }, - "im_purple_theme_outgoing_link": { - "color_identifier": "white" - }, - "im_purple_theme_outgoing_hint_text": { - "color_identifier": "deep_lilac_100" - }, - "im_purple_theme_outgoing_forward_line_tint": { - "color_identifier": "white" - }, - "im_purple_theme_outgoing_button_tertiary_foreground": { - "color_identifier": "white" - }, - "im_purple_theme_outgoing_attach_tint": { - "color_identifier": "white" - }, - "im_purple_theme_outgoing_accent": { - "color_identifier": "white" - }, - "im_purple_theme_incoming_color1_bubble_background": { - "color_identifier": "royal_blue_900" - }, - "im_purple_theme_incoming_color1_bubble_background_highlighted": { - "color_identifier": "royal_blue_800" - }, - "im_purple_theme_incoming_color1_text_primary": { - "color_identifier": "white" - }, - "im_purple_theme_incoming_color1_text_title": { - "color_identifier": "white" - }, - "im_purple_theme_incoming_color1_text_placeholder": { - "color_identifier": "royal_blue_600" - }, - "im_purple_theme_incoming_color1_link": { - "color_identifier": "white" - }, - "im_purple_theme_incoming_color1_hint_text": { - "color_identifier": "royal_blue_600" - }, - "im_purple_theme_incoming_color1_forward_line_tint": { - "color_identifier": "royal_blue_400" - }, - "im_purple_theme_incoming_color1_button_tertiary_foreground": { - "color_identifier": "royal_blue_400" - }, - "im_purple_theme_incoming_color1_attach_tint": { - "color_identifier": "royal_blue_400" - }, - "im_purple_theme_incoming_color1_accent": { - "color_identifier": "royal_blue_400" - }, - "im_purple_theme_incoming_color2_bubble_background": { - "color_identifier": "deep_lilac_900" - }, - "im_purple_theme_incoming_color2_bubble_background_highlighted": { - "color_identifier": "deep_lilac_800" - }, - "im_purple_theme_incoming_color2_text_primary": { - "color_identifier": "white" - }, - "im_purple_theme_incoming_color2_text_title": { - "color_identifier": "white" - }, - "im_purple_theme_incoming_color2_text_placeholder": { - "color_identifier": "deep_lilac_400" - }, - "im_purple_theme_incoming_color2_link": { - "color_identifier": "white" - }, - "im_purple_theme_incoming_color2_hint_text": { - "color_identifier": "deep_lilac_400" - }, - "im_purple_theme_incoming_color2_forward_line_tint": { - "color_identifier": "deep_lilac_300" - }, - "im_purple_theme_incoming_color2_button_tertiary_foreground": { - "color_identifier": "deep_lilac_300" - }, - "im_purple_theme_incoming_color2_attach_tint": { - "color_identifier": "deep_lilac_300" - }, - "im_purple_theme_incoming_color2_accent": { - "color_identifier": "deep_lilac_300" - }, - "im_purple_theme_incoming_color3_bubble_background": { - "color_identifier": "pacific_blue_900" - }, - "im_purple_theme_incoming_color3_bubble_background_highlighted": { - "color_identifier": "pacific_blue_800" - }, - "im_purple_theme_incoming_color3_text_primary": { - "color_identifier": "white" - }, - "im_purple_theme_incoming_color3_text_title": { - "color_identifier": "white" - }, - "im_purple_theme_incoming_color3_text_placeholder": { - "color_identifier": "pacific_blue_600" - }, - "im_purple_theme_incoming_color3_link": { - "color_identifier": "white" - }, - "im_purple_theme_incoming_color3_hint_text": { - "color_identifier": "pacific_blue_600" - }, - "im_purple_theme_incoming_color3_forward_line_tint": { - "color_identifier": "pacific_blue_400" - }, - "im_purple_theme_incoming_color3_button_tertiary_foreground": { - "color_identifier": "pacific_blue_400" - }, - "im_purple_theme_incoming_color3_attach_tint": { - "color_identifier": "pacific_blue_400" - }, - "im_purple_theme_incoming_color3_accent": { - "color_identifier": "pacific_blue_400" - }, - "im_purple_theme_outgoing_reply_sender_text": { - "color_identifier": "white" - }, - "im_purple_theme_outgoing_reply_separator": { - "color_identifier": "deep_lilac_300" - }, - "im_purple_theme_incoming_color1_reply_sender_text": { - "color_identifier": "royal_blue_400" - }, - "im_purple_theme_incoming_color2_reply_sender_text": { - "color_identifier": "deep_lilac_300" - }, - "im_purple_theme_incoming_color3_reply_sender_text": { - "color_identifier": "pacific_blue_400" - }, - "im_purple_theme_incoming_color1_reply_separator": { - "color_identifier": "royal_blue_400" - }, - "im_purple_theme_incoming_color2_reply_separator": { - "color_identifier": "deep_lilac_300" - }, - "im_purple_theme_incoming_color3_reply_separator": { - "color_identifier": "pacific_blue_400" - }, - "im_orange_theme_main_tint": { - "color_identifier": "carrot_A500" - }, - "im_orange_theme_outgoing_bubble_background": { - "color_identifier": "carrot_A500" - }, - "im_orange_theme_outgoing_bubble_background_highlighted": { - "color_identifier": "carrot_400" - }, - "im_orange_theme_outgoing_text_primary": { - "color_identifier": "white" - }, - "im_orange_theme_outgoing_text_title": { - "color_identifier": "white" - }, - "im_orange_theme_outgoing_text_placeholder": { - "color_identifier": "carrot_200" - }, - "im_orange_theme_outgoing_link": { - "color_identifier": "white" - }, - "im_orange_theme_outgoing_hint_text": { - "color_identifier": "carrot_200" - }, - "im_orange_theme_outgoing_forward_line_tint": { - "color_identifier": "white" - }, - "im_orange_theme_outgoing_button_tertiary_foreground": { - "color_identifier": "white" - }, - "im_orange_theme_outgoing_attach_tint": { - "color_identifier": "white" - }, - "im_orange_theme_outgoing_accent": { - "color_identifier": "white" - }, - "im_orange_theme_incoming_color1_bubble_background": { - "color_identifier": "carrot_900" - }, - "im_orange_theme_incoming_color1_bubble_background_highlighted": { - "color_identifier": "carrot_800" - }, - "im_orange_theme_incoming_color1_text_primary": { - "color_identifier": "white" - }, - "im_orange_theme_incoming_color1_text_title": { - "color_identifier": "white" - }, - "im_orange_theme_incoming_color1_text_placeholder": { - "color_identifier": "carrot_600" - }, - "im_orange_theme_incoming_color1_link": { - "color_identifier": "white" - }, - "im_orange_theme_incoming_color1_hint_text": { - "color_identifier": "carrot_600" - }, - "im_orange_theme_incoming_color1_forward_line_tint": { - "color_identifier": "carrot_400" - }, - "im_orange_theme_incoming_color1_button_tertiary_foreground": { - "color_identifier": "carrot_400" - }, - "im_orange_theme_incoming_color1_attach_tint": { - "color_identifier": "carrot_400" - }, - "im_orange_theme_incoming_color1_accent": { - "color_identifier": "carrot_400" - }, - "im_orange_theme_incoming_color2_bubble_background": { - "color_identifier": "dark_gold_900" - }, - "im_orange_theme_incoming_color2_bubble_background_highlighted": { - "color_identifier": "dark_gold_800" - }, - "im_orange_theme_incoming_color2_text_primary": { - "color_identifier": "white" - }, - "im_orange_theme_incoming_color2_text_title": { - "color_identifier": "white" - }, - "im_orange_theme_incoming_color2_text_placeholder": { - "color_identifier": "dark_gold_600" - }, - "im_orange_theme_incoming_color2_link": { - "color_identifier": "white" - }, - "im_orange_theme_incoming_color2_hint_text": { - "color_identifier": "dark_gold_600" - }, - "im_orange_theme_incoming_color2_forward_line_tint": { - "color_identifier": "dark_gold_400" - }, - "im_orange_theme_incoming_color2_button_tertiary_foreground": { - "color_identifier": "dark_gold_400" - }, - "im_orange_theme_incoming_color2_attach_tint": { - "color_identifier": "dark_gold_400" - }, - "im_orange_theme_incoming_color2_accent": { - "color_identifier": "dark_gold_400" - }, - "im_orange_theme_incoming_color3_bubble_background": { - "color_identifier": "forest_green_900" - }, - "im_orange_theme_incoming_color3_bubble_background_highlighted": { - "color_identifier": "forest_green_800" - }, - "im_orange_theme_incoming_color3_text_primary": { - "color_identifier": "white" - }, - "im_orange_theme_incoming_color3_text_title": { - "color_identifier": "white" - }, - "im_orange_theme_incoming_color3_text_placeholder": { - "color_identifier": "forest_green_600" - }, - "im_orange_theme_incoming_color3_link": { - "color_identifier": "white" - }, - "im_orange_theme_incoming_color3_hint_text": { - "color_identifier": "forest_green_600" - }, - "im_orange_theme_incoming_color3_forward_line_tint": { - "color_identifier": "forest_green_400" - }, - "im_orange_theme_incoming_color3_button_tertiary_foreground": { - "color_identifier": "forest_green_400" - }, - "im_orange_theme_incoming_color3_attach_tint": { - "color_identifier": "forest_green_400" - }, - "im_orange_theme_incoming_color3_accent": { - "color_identifier": "forest_green_400" - }, - "im_orange_theme_outgoing_reply_sender_text": { - "color_identifier": "white" - }, - "im_orange_theme_outgoing_reply_separator": { - "color_identifier": "carrot_400" - }, - "im_orange_theme_incoming_color1_reply_sender_text": { - "color_identifier": "carrot_400" - }, - "im_orange_theme_incoming_color2_reply_sender_text": { - "color_identifier": "dark_gold_400" - }, - "im_orange_theme_incoming_color3_reply_sender_text": { - "color_identifier": "forest_green_400" - }, - "im_orange_theme_incoming_color1_reply_separator": { - "color_identifier": "carrot_400" - }, - "im_orange_theme_incoming_color2_reply_separator": { - "color_identifier": "dark_gold_400" - }, - "im_orange_theme_incoming_color3_reply_separator": { - "color_identifier": "forest_green_400" - }, - "im_gradient_disco_theme_header_tint": { - "color_identifier": "raspberry_pink_light" - }, - "im_gradient_disco_theme_accent": { - "color_identifier": "raspberry_pink_light" - }, - "im_gradient_disco_theme_write_bar_tint": { - "color_identifier": "raspberry_pink_light" - }, - "im_gradient_twilight_theme_header_tint": { - "color_identifier": "purple_light" - }, - "im_gradient_twilight_theme_accent": { - "color_identifier": "purple_light" - }, - "im_gradient_twilight_theme_write_bar_tint": { - "color_identifier": "purple_light" - }, - "im_gradient_sunset_theme_header_tint": { - "color_identifier": "orange" - }, - "im_gradient_sunset_theme_accent": { - "color_identifier": "orange" - }, - "im_gradient_sunset_theme_write_bar_tint": { - "color_identifier": "orange" - }, - "im_gradient_retrowave_theme_header_tint": { - "color_identifier": "sky_300" - }, - "im_gradient_retrowave_theme_accent": { - "color_identifier": "sky_300" - }, - "im_gradient_retrowave_theme_write_bar_tint": { - "color_identifier": "sky_300" - }, - "im_gradient_marine_theme_header_tint": { - "color_identifier": "aquamarine" - }, - "im_gradient_marine_theme_accent": { - "color_identifier": "aquamarine" - }, - "im_gradient_marine_theme_write_bar_tint": { - "color_identifier": "aquamarine" - }, - "im_gradient_lagoon_theme_header_tint": { - "color_identifier": "turquoise_bright" - }, - "im_gradient_lagoon_theme_accent": { - "color_identifier": "turquoise_bright" - }, - "im_gradient_lagoon_theme_write_bar_tint": { - "color_identifier": "turquoise_bright" - }, - "im_gradient_candy_theme_header_tint": { - "color_identifier": "pink_pastel" - }, - "im_gradient_candy_theme_accent": { - "color_identifier": "pink_pastel" - }, - "im_gradient_candy_theme_write_bar_tint": { - "color_identifier": "pink_pastel" - }, - "im_gradient_crimson_theme_header_tint": { - "color_identifier": "red_light" - }, - "im_gradient_crimson_theme_accent": { - "color_identifier": "red_light" - }, - "im_gradient_crimson_theme_write_bar_tint": { - "color_identifier": "red_light" - }, - "im_gradient_emerald_theme_header_tint": { - "color_identifier": "emerald" - }, - "im_gradient_emerald_theme_accent": { - "color_identifier": "emerald" - }, - "im_gradient_emerald_theme_write_bar_tint": { - "color_identifier": "emerald" - }, - "im_gradient_unicorn_theme_header_tint": { - "color_identifier": "violet_light" - }, - "im_gradient_unicorn_theme_accent": { - "color_identifier": "violet_light" - }, - "im_gradient_unicorn_theme_write_bar_tint": { - "color_identifier": "violet_light" - }, - "im_gradient_midnight_theme_header_tint": { - "color_identifier": "sky_300" - }, - "im_gradient_midnight_theme_accent": { - "color_identifier": "sky_300" - }, - "im_gradient_midnight_theme_write_bar_tint": { - "color_identifier": "sky_300" - }, - "im_gradient_halloween_orange_theme_header_tint": { - "color_identifier": "orange" - }, - "im_gradient_halloween_orange_theme_accent": { - "color_identifier": "orange" - }, - "im_gradient_halloween_orange_theme_write_bar_tint": { - "color_identifier": "orange" - }, - "im_gradient_halloween_violet_theme_header_tint": { - "color_identifier": "violet_light" - }, - "im_gradient_halloween_violet_theme_accent": { - "color_identifier": "violet_light" - }, - "im_gradient_halloween_violet_theme_write_bar_tint": { - "color_identifier": "violet_light" - }, - "im_gradient_frost_theme_header_tint": { - "color_identifier": "sky_300" - }, - "im_gradient_frost_theme_accent": { - "color_identifier": "sky_300" - }, - "im_gradient_frost_theme_write_bar_tint": { - "color_identifier": "sky_300" - }, - "im_gradient_new_year_theme_header_tint": { - "color_identifier": "violet_light" - }, - "im_gradient_new_year_theme_accent": { - "color_identifier": "violet_light" - }, - "im_gradient_new_year_theme_write_bar_tint": { - "color_identifier": "violet_light" - }, - "im_gradient_valentine_theme_header_tint": { - "color_identifier": "pink_pastel" - }, - "im_gradient_valentine_theme_accent": { - "color_identifier": "pink_pastel" - }, - "im_gradient_valentine_theme_write_bar_tint": { - "color_identifier": "pink_pastel" - }, - "im_gradient_warm_valentine_theme_header_tint": { - "color_identifier": "pink_pastel" - }, - "im_gradient_warm_valentine_theme_accent": { - "color_identifier": "pink_pastel" - }, - "im_gradient_warm_valentine_theme_write_bar_tint": { - "color_identifier": "pink_pastel" - }, - "im_gradient_sberkot_theme_header_tint": { - "color_identifier": "emerald" - }, - "im_gradient_sberkot_theme_accent": { - "color_identifier": "emerald" - }, - "im_gradient_sberkot_theme_write_bar_tint": { - "color_identifier": "emerald" - }, - "im_gradient_theme_text_primary": { - "color_identifier": "white" - }, - "im_gradient_theme_text_placeholder": { - "color_identifier": "white", - "alpha_multiplier": 0.8 - }, - "im_gradient_theme_forward_line": { - "color_identifier": "white_alpha40" - }, - "im_background_primary_additional": { - "color_identifier": "gray_950" - }, - "im_background_secondary_additional": { - "color_identifier": "black" - }, - "im_palette_red": { - "color_identifier": "im_red" - }, - "im_palette_yellow": { - "color_identifier": "im_yellow" - }, - "im_palette_orange": { - "color_identifier": "im_orange" - }, - "im_palette_green": { - "color_identifier": "im_green" - }, - "im_palette_cyan": { - "color_identifier": "im_cyan" - }, - "im_palette_blue": { - "color_identifier": "im_blue" - }, - "im_palette_violet": { - "color_identifier": "im_violet" - }, - "im_palette_grey": { - "color_identifier": "im_grey" - } + "space_gray": { + "appearance": "dark", + "colors": { + "im_default_theme_outgoing_bubble_background": { + "color_identifier": "gray_700" + }, + "im_default_theme_outgoing_alternate_bubble_background": { + "color_identifier": "gray_700" + }, + "im_default_theme_outgoing_bubble_background_highlighted": { + "color_identifier": "gray_600" + }, + "im_default_theme_outgoing_alternate_bubble_background_highlighted": { + "color_identifier": "gray_500" + }, + "im_default_theme_outgoing_text_primary": { + "color_identifier": "white" + }, + "im_default_theme_outgoing_text_title": { + "color_identifier": "white" + }, + "im_default_theme_outgoing_text_placeholder": { + "color_identifier": "gray_300" + }, + "im_default_theme_outgoing_link": { + "color_identifier": "sky_300" + }, + "im_default_theme_outgoing_hint_text": { + "color_identifier": "gray_300" + }, + "im_default_theme_outgoing_forward_line_tint": { + "color_identifier": "white" + }, + "im_default_theme_outgoing_button_tertiary_foreground": { + "color_identifier": "gray_100" + }, + "im_default_theme_outgoing_attach_tint": { + "color_identifier": "sky_300" + }, + "im_default_theme_outgoing_accent": { + "color_identifier": "white" + }, + "im_default_theme_incoming_bubble_background": { + "color_identifier": "gray_800" + }, + "im_default_theme_incoming_alternate_bubble_background": { + "color_identifier": "gray_800" + }, + "im_default_theme_incoming_bubble_background_highlighted": { + "color_identifier": "gray_600" + }, + "im_default_theme_incoming_alternate_bubble_background_highlighted": { + "color_identifier": "gray_600" + }, + "im_default_theme_incoming_text_primary": { + "color_identifier": "white" + }, + "im_default_theme_incoming_text_title": { + "color_identifier": "white" + }, + "im_default_theme_incoming_text_placeholder": { + "color_identifier": "gray_300" + }, + "im_default_theme_incoming_link": { + "color_identifier": "sky_300" + }, + "im_default_theme_incoming_hint_text": { + "color_identifier": "gray_300" + }, + "im_default_theme_incoming_forward_line_tint": { + "color_identifier": "white" + }, + "im_default_theme_incoming_button_tertiary_foreground": { + "color_identifier": "gray_100" + }, + "im_default_theme_incoming_attach_tint": { + "color_identifier": "sky_300" + }, + "im_default_theme_incoming_accent": { + "color_identifier": "white" + }, + "im_pink_theme_main_tint": { + "color_identifier": "jam_A500" + }, + "im_pink_theme_outgoing_bubble_background": { + "color_identifier": "jam_A500" + }, + "im_pink_theme_outgoing_bubble_background_highlighted": { + "color_identifier": "jam_400" + }, + "im_pink_theme_outgoing_text_primary": { + "color_identifier": "white" + }, + "im_pink_theme_outgoing_text_title": { + "color_identifier": "white" + }, + "im_pink_theme_outgoing_text_placeholder": { + "color_identifier": "jam_200" + }, + "im_pink_theme_outgoing_link": { + "color_identifier": "white" + }, + "im_pink_theme_outgoing_hint_text": { + "color_identifier": "jam_200" + }, + "im_pink_theme_outgoing_forward_line_tint": { + "color_identifier": "white" + }, + "im_pink_theme_outgoing_button_tertiary_foreground": { + "color_identifier": "white" + }, + "im_pink_theme_outgoing_attach_tint": { + "color_identifier": "white" + }, + "im_pink_theme_outgoing_accent": { + "color_identifier": "white" + }, + "im_pink_theme_incoming_color1_bubble_background": { + "color_identifier": "royal_blue_900" + }, + "im_pink_theme_incoming_color1_bubble_background_highlighted": { + "color_identifier": "royal_blue_800" + }, + "im_pink_theme_incoming_color1_text_primary": { + "color_identifier": "white" + }, + "im_pink_theme_incoming_color1_text_title": { + "color_identifier": "white" + }, + "im_pink_theme_incoming_color1_text_placeholder": { + "color_identifier": "royal_blue_600" + }, + "im_pink_theme_incoming_color1_link": { + "color_identifier": "white" + }, + "im_pink_theme_incoming_color1_hint_text": { + "color_identifier": "royal_blue_600" + }, + "im_pink_theme_incoming_color1_forward_line_tint": { + "color_identifier": "royal_blue_400" + }, + "im_pink_theme_incoming_color1_button_tertiary_foreground": { + "color_identifier": "royal_blue_400" + }, + "im_pink_theme_incoming_color1_attach_tint": { + "color_identifier": "royal_blue_400" + }, + "im_pink_theme_incoming_color1_accent": { + "color_identifier": "royal_blue_400" + }, + "im_pink_theme_incoming_color2_bubble_background": { + "color_identifier": "deep_lilac_900" + }, + "im_pink_theme_incoming_color2_bubble_background_highlighted": { + "color_identifier": "deep_lilac_800" + }, + "im_pink_theme_incoming_color2_text_primary": { + "color_identifier": "white" + }, + "im_pink_theme_incoming_color2_text_title": { + "color_identifier": "white" + }, + "im_pink_theme_incoming_color2_text_placeholder": { + "color_identifier": "deep_lilac_400" + }, + "im_pink_theme_incoming_color2_link": { + "color_identifier": "white" + }, + "im_pink_theme_incoming_color2_hint_text": { + "color_identifier": "deep_lilac_400" + }, + "im_pink_theme_incoming_color2_forward_line_tint": { + "color_identifier": "deep_lilac_300" + }, + "im_pink_theme_incoming_color2_button_tertiary_foreground": { + "color_identifier": "deep_lilac_300" + }, + "im_pink_theme_incoming_color2_attach_tint": { + "color_identifier": "deep_lilac_300" + }, + "im_pink_theme_incoming_color2_accent": { + "color_identifier": "deep_lilac_300" + }, + "im_pink_theme_incoming_color3_bubble_background": { + "color_identifier": "jam_900" + }, + "im_pink_theme_incoming_color3_bubble_background_highlighted": { + "color_identifier": "jam_100" + }, + "im_pink_theme_incoming_color3_text_primary": { + "color_identifier": "white" + }, + "im_pink_theme_incoming_color3_text_title": { + "color_identifier": "white" + }, + "im_pink_theme_incoming_color3_text_placeholder": { + "color_identifier": "jam_400" + }, + "im_pink_theme_incoming_color3_link": { + "color_identifier": "white" + }, + "im_pink_theme_incoming_color3_hint_text": { + "color_identifier": "jam_400" + }, + "im_pink_theme_incoming_color3_forward_line_tint": { + "color_identifier": "jam_300" + }, + "im_pink_theme_incoming_color3_button_tertiary_foreground": { + "color_identifier": "jam_300" + }, + "im_pink_theme_incoming_color3_attach_tint": { + "color_identifier": "jam_300" + }, + "im_pink_theme_incoming_color3_accent": { + "color_identifier": "jam_300" + }, + "im_pink_theme_outgoing_reply_sender_text": { + "color_identifier": "white" + }, + "im_pink_theme_outgoing_reply_separator": { + "color_identifier": "white" + }, + "im_pink_theme_incoming_color1_reply_sender_text": { + "color_identifier": "royal_blue_400" + }, + "im_pink_theme_incoming_color2_reply_sender_text": { + "color_identifier": "deep_lilac_300" + }, + "im_pink_theme_incoming_color3_reply_sender_text": { + "color_identifier": "jam_300" + }, + "im_pink_theme_incoming_color1_reply_separator": { + "color_identifier": "royal_blue_400" + }, + "im_pink_theme_incoming_color2_reply_separator": { + "color_identifier": "deep_lilac_300" + }, + "im_pink_theme_incoming_color3_reply_separator": { + "color_identifier": "jam_300" + }, + "im_purple_theme_main_tint": { + "color_identifier": "deep_lilac_A500" + }, + "im_purple_theme_outgoing_bubble_background": { + "color_identifier": "deep_lilac_A500" + }, + "im_purple_theme_outgoing_bubble_background_highlighted": { + "color_identifier": "deep_lilac_300" + }, + "im_purple_theme_outgoing_text_primary": { + "color_identifier": "white" + }, + "im_purple_theme_outgoing_text_title": { + "color_identifier": "white" + }, + "im_purple_theme_outgoing_text_placeholder": { + "color_identifier": "deep_lilac_100" + }, + "im_purple_theme_outgoing_link": { + "color_identifier": "white" + }, + "im_purple_theme_outgoing_hint_text": { + "color_identifier": "deep_lilac_100" + }, + "im_purple_theme_outgoing_forward_line_tint": { + "color_identifier": "white" + }, + "im_purple_theme_outgoing_button_tertiary_foreground": { + "color_identifier": "white" + }, + "im_purple_theme_outgoing_attach_tint": { + "color_identifier": "white" + }, + "im_purple_theme_outgoing_accent": { + "color_identifier": "white" + }, + "im_purple_theme_incoming_color1_bubble_background": { + "color_identifier": "royal_blue_900" + }, + "im_purple_theme_incoming_color1_bubble_background_highlighted": { + "color_identifier": "royal_blue_800" + }, + "im_purple_theme_incoming_color1_text_primary": { + "color_identifier": "white" + }, + "im_purple_theme_incoming_color1_text_title": { + "color_identifier": "white" + }, + "im_purple_theme_incoming_color1_text_placeholder": { + "color_identifier": "royal_blue_600" + }, + "im_purple_theme_incoming_color1_link": { + "color_identifier": "white" + }, + "im_purple_theme_incoming_color1_hint_text": { + "color_identifier": "royal_blue_600" + }, + "im_purple_theme_incoming_color1_forward_line_tint": { + "color_identifier": "royal_blue_400" + }, + "im_purple_theme_incoming_color1_button_tertiary_foreground": { + "color_identifier": "royal_blue_400" + }, + "im_purple_theme_incoming_color1_attach_tint": { + "color_identifier": "royal_blue_400" + }, + "im_purple_theme_incoming_color1_accent": { + "color_identifier": "royal_blue_400" + }, + "im_purple_theme_incoming_color2_bubble_background": { + "color_identifier": "deep_lilac_900" + }, + "im_purple_theme_incoming_color2_bubble_background_highlighted": { + "color_identifier": "deep_lilac_800" + }, + "im_purple_theme_incoming_color2_text_primary": { + "color_identifier": "white" + }, + "im_purple_theme_incoming_color2_text_title": { + "color_identifier": "white" + }, + "im_purple_theme_incoming_color2_text_placeholder": { + "color_identifier": "deep_lilac_400" + }, + "im_purple_theme_incoming_color2_link": { + "color_identifier": "white" + }, + "im_purple_theme_incoming_color2_hint_text": { + "color_identifier": "deep_lilac_400" + }, + "im_purple_theme_incoming_color2_forward_line_tint": { + "color_identifier": "deep_lilac_300" + }, + "im_purple_theme_incoming_color2_button_tertiary_foreground": { + "color_identifier": "deep_lilac_300" + }, + "im_purple_theme_incoming_color2_attach_tint": { + "color_identifier": "deep_lilac_300" + }, + "im_purple_theme_incoming_color2_accent": { + "color_identifier": "deep_lilac_300" + }, + "im_purple_theme_incoming_color3_bubble_background": { + "color_identifier": "pacific_blue_900" + }, + "im_purple_theme_incoming_color3_bubble_background_highlighted": { + "color_identifier": "pacific_blue_800" + }, + "im_purple_theme_incoming_color3_text_primary": { + "color_identifier": "white" + }, + "im_purple_theme_incoming_color3_text_title": { + "color_identifier": "white" + }, + "im_purple_theme_incoming_color3_text_placeholder": { + "color_identifier": "pacific_blue_600" + }, + "im_purple_theme_incoming_color3_link": { + "color_identifier": "white" + }, + "im_purple_theme_incoming_color3_hint_text": { + "color_identifier": "pacific_blue_600" + }, + "im_purple_theme_incoming_color3_forward_line_tint": { + "color_identifier": "pacific_blue_400" + }, + "im_purple_theme_incoming_color3_button_tertiary_foreground": { + "color_identifier": "pacific_blue_400" + }, + "im_purple_theme_incoming_color3_attach_tint": { + "color_identifier": "pacific_blue_400" + }, + "im_purple_theme_incoming_color3_accent": { + "color_identifier": "pacific_blue_400" + }, + "im_purple_theme_outgoing_reply_sender_text": { + "color_identifier": "white" + }, + "im_purple_theme_outgoing_reply_separator": { + "color_identifier": "deep_lilac_300" + }, + "im_purple_theme_incoming_color1_reply_sender_text": { + "color_identifier": "royal_blue_400" + }, + "im_purple_theme_incoming_color2_reply_sender_text": { + "color_identifier": "deep_lilac_300" + }, + "im_purple_theme_incoming_color3_reply_sender_text": { + "color_identifier": "pacific_blue_400" + }, + "im_purple_theme_incoming_color1_reply_separator": { + "color_identifier": "royal_blue_400" + }, + "im_purple_theme_incoming_color2_reply_separator": { + "color_identifier": "deep_lilac_300" + }, + "im_purple_theme_incoming_color3_reply_separator": { + "color_identifier": "pacific_blue_400" + }, + "im_orange_theme_main_tint": { + "color_identifier": "carrot_A500" + }, + "im_orange_theme_outgoing_bubble_background": { + "color_identifier": "carrot_A500" + }, + "im_orange_theme_outgoing_bubble_background_highlighted": { + "color_identifier": "carrot_400" + }, + "im_orange_theme_outgoing_text_primary": { + "color_identifier": "white" + }, + "im_orange_theme_outgoing_text_title": { + "color_identifier": "white" + }, + "im_orange_theme_outgoing_text_placeholder": { + "color_identifier": "carrot_200" + }, + "im_orange_theme_outgoing_link": { + "color_identifier": "white" + }, + "im_orange_theme_outgoing_hint_text": { + "color_identifier": "carrot_200" + }, + "im_orange_theme_outgoing_forward_line_tint": { + "color_identifier": "white" + }, + "im_orange_theme_outgoing_button_tertiary_foreground": { + "color_identifier": "white" + }, + "im_orange_theme_outgoing_attach_tint": { + "color_identifier": "white" + }, + "im_orange_theme_outgoing_accent": { + "color_identifier": "white" + }, + "im_orange_theme_incoming_color1_bubble_background": { + "color_identifier": "carrot_900" + }, + "im_orange_theme_incoming_color1_bubble_background_highlighted": { + "color_identifier": "carrot_800" + }, + "im_orange_theme_incoming_color1_text_primary": { + "color_identifier": "white" + }, + "im_orange_theme_incoming_color1_text_title": { + "color_identifier": "white" + }, + "im_orange_theme_incoming_color1_text_placeholder": { + "color_identifier": "carrot_600" + }, + "im_orange_theme_incoming_color1_link": { + "color_identifier": "white" + }, + "im_orange_theme_incoming_color1_hint_text": { + "color_identifier": "carrot_600" + }, + "im_orange_theme_incoming_color1_forward_line_tint": { + "color_identifier": "carrot_400" + }, + "im_orange_theme_incoming_color1_button_tertiary_foreground": { + "color_identifier": "carrot_400" + }, + "im_orange_theme_incoming_color1_attach_tint": { + "color_identifier": "carrot_400" + }, + "im_orange_theme_incoming_color1_accent": { + "color_identifier": "carrot_400" + }, + "im_orange_theme_incoming_color2_bubble_background": { + "color_identifier": "dark_gold_900" + }, + "im_orange_theme_incoming_color2_bubble_background_highlighted": { + "color_identifier": "dark_gold_800" + }, + "im_orange_theme_incoming_color2_text_primary": { + "color_identifier": "white" + }, + "im_orange_theme_incoming_color2_text_title": { + "color_identifier": "white" + }, + "im_orange_theme_incoming_color2_text_placeholder": { + "color_identifier": "dark_gold_600" + }, + "im_orange_theme_incoming_color2_link": { + "color_identifier": "white" + }, + "im_orange_theme_incoming_color2_hint_text": { + "color_identifier": "dark_gold_600" + }, + "im_orange_theme_incoming_color2_forward_line_tint": { + "color_identifier": "dark_gold_400" + }, + "im_orange_theme_incoming_color2_button_tertiary_foreground": { + "color_identifier": "dark_gold_400" + }, + "im_orange_theme_incoming_color2_attach_tint": { + "color_identifier": "dark_gold_400" + }, + "im_orange_theme_incoming_color2_accent": { + "color_identifier": "dark_gold_400" + }, + "im_orange_theme_incoming_color3_bubble_background": { + "color_identifier": "forest_green_900" + }, + "im_orange_theme_incoming_color3_bubble_background_highlighted": { + "color_identifier": "forest_green_800" + }, + "im_orange_theme_incoming_color3_text_primary": { + "color_identifier": "white" + }, + "im_orange_theme_incoming_color3_text_title": { + "color_identifier": "white" + }, + "im_orange_theme_incoming_color3_text_placeholder": { + "color_identifier": "forest_green_600" + }, + "im_orange_theme_incoming_color3_link": { + "color_identifier": "white" + }, + "im_orange_theme_incoming_color3_hint_text": { + "color_identifier": "forest_green_600" + }, + "im_orange_theme_incoming_color3_forward_line_tint": { + "color_identifier": "forest_green_400" + }, + "im_orange_theme_incoming_color3_button_tertiary_foreground": { + "color_identifier": "forest_green_400" + }, + "im_orange_theme_incoming_color3_attach_tint": { + "color_identifier": "forest_green_400" + }, + "im_orange_theme_incoming_color3_accent": { + "color_identifier": "forest_green_400" + }, + "im_orange_theme_outgoing_reply_sender_text": { + "color_identifier": "white" + }, + "im_orange_theme_outgoing_reply_separator": { + "color_identifier": "carrot_400" + }, + "im_orange_theme_incoming_color1_reply_sender_text": { + "color_identifier": "carrot_400" + }, + "im_orange_theme_incoming_color2_reply_sender_text": { + "color_identifier": "dark_gold_400" + }, + "im_orange_theme_incoming_color3_reply_sender_text": { + "color_identifier": "forest_green_400" + }, + "im_orange_theme_incoming_color1_reply_separator": { + "color_identifier": "carrot_400" + }, + "im_orange_theme_incoming_color2_reply_separator": { + "color_identifier": "dark_gold_400" + }, + "im_orange_theme_incoming_color3_reply_separator": { + "color_identifier": "forest_green_400" + }, + "im_gradient_disco_theme_header_tint": { + "color_identifier": "raspberry_pink_light" + }, + "im_gradient_disco_theme_accent": { + "color_identifier": "raspberry_pink_light" + }, + "im_gradient_disco_theme_write_bar_tint": { + "color_identifier": "raspberry_pink_light" + }, + "im_gradient_twilight_theme_header_tint": { + "color_identifier": "purple_light" + }, + "im_gradient_twilight_theme_accent": { + "color_identifier": "purple_light" + }, + "im_gradient_twilight_theme_write_bar_tint": { + "color_identifier": "purple_light" + }, + "im_gradient_sunset_theme_header_tint": { + "color_identifier": "orange" + }, + "im_gradient_sunset_theme_accent": { + "color_identifier": "orange" + }, + "im_gradient_sunset_theme_write_bar_tint": { + "color_identifier": "orange" + }, + "im_gradient_retrowave_theme_header_tint": { + "color_identifier": "sky_300" + }, + "im_gradient_retrowave_theme_accent": { + "color_identifier": "sky_300" + }, + "im_gradient_retrowave_theme_write_bar_tint": { + "color_identifier": "sky_300" + }, + "im_gradient_marine_theme_header_tint": { + "color_identifier": "aquamarine" + }, + "im_gradient_marine_theme_accent": { + "color_identifier": "aquamarine" + }, + "im_gradient_marine_theme_write_bar_tint": { + "color_identifier": "aquamarine" + }, + "im_gradient_lagoon_theme_header_tint": { + "color_identifier": "turquoise_bright" + }, + "im_gradient_lagoon_theme_accent": { + "color_identifier": "turquoise_bright" + }, + "im_gradient_lagoon_theme_write_bar_tint": { + "color_identifier": "turquoise_bright" + }, + "im_gradient_candy_theme_header_tint": { + "color_identifier": "pink_pastel" + }, + "im_gradient_candy_theme_accent": { + "color_identifier": "pink_pastel" + }, + "im_gradient_candy_theme_write_bar_tint": { + "color_identifier": "pink_pastel" + }, + "im_gradient_crimson_theme_header_tint": { + "color_identifier": "red_light" + }, + "im_gradient_crimson_theme_accent": { + "color_identifier": "red_light" + }, + "im_gradient_crimson_theme_write_bar_tint": { + "color_identifier": "red_light" + }, + "im_gradient_emerald_theme_header_tint": { + "color_identifier": "emerald" + }, + "im_gradient_emerald_theme_accent": { + "color_identifier": "emerald" + }, + "im_gradient_emerald_theme_write_bar_tint": { + "color_identifier": "emerald" + }, + "im_gradient_unicorn_theme_header_tint": { + "color_identifier": "violet_light" + }, + "im_gradient_unicorn_theme_accent": { + "color_identifier": "violet_light" + }, + "im_gradient_unicorn_theme_write_bar_tint": { + "color_identifier": "violet_light" + }, + "im_gradient_midnight_theme_header_tint": { + "color_identifier": "sky_300" + }, + "im_gradient_midnight_theme_accent": { + "color_identifier": "sky_300" + }, + "im_gradient_midnight_theme_write_bar_tint": { + "color_identifier": "sky_300" + }, + "im_gradient_halloween_orange_theme_header_tint": { + "color_identifier": "orange" + }, + "im_gradient_halloween_orange_theme_accent": { + "color_identifier": "orange" + }, + "im_gradient_halloween_orange_theme_write_bar_tint": { + "color_identifier": "orange" + }, + "im_gradient_halloween_violet_theme_header_tint": { + "color_identifier": "violet_light" + }, + "im_gradient_halloween_violet_theme_accent": { + "color_identifier": "violet_light" + }, + "im_gradient_halloween_violet_theme_write_bar_tint": { + "color_identifier": "violet_light" + }, + "im_gradient_frost_theme_header_tint": { + "color_identifier": "sky_300" + }, + "im_gradient_frost_theme_accent": { + "color_identifier": "sky_300" + }, + "im_gradient_frost_theme_write_bar_tint": { + "color_identifier": "sky_300" + }, + "im_gradient_new_year_theme_header_tint": { + "color_identifier": "violet_light" + }, + "im_gradient_new_year_theme_accent": { + "color_identifier": "violet_light" + }, + "im_gradient_new_year_theme_write_bar_tint": { + "color_identifier": "violet_light" + }, + "im_gradient_valentine_theme_header_tint": { + "color_identifier": "pink_pastel" + }, + "im_gradient_valentine_theme_accent": { + "color_identifier": "pink_pastel" + }, + "im_gradient_valentine_theme_write_bar_tint": { + "color_identifier": "pink_pastel" + }, + "im_gradient_warm_valentine_theme_header_tint": { + "color_identifier": "pink_pastel" + }, + "im_gradient_warm_valentine_theme_accent": { + "color_identifier": "pink_pastel" + }, + "im_gradient_warm_valentine_theme_write_bar_tint": { + "color_identifier": "pink_pastel" + }, + "im_gradient_sberkot_theme_header_tint": { + "color_identifier": "emerald" + }, + "im_gradient_sberkot_theme_accent": { + "color_identifier": "emerald" + }, + "im_gradient_sberkot_theme_write_bar_tint": { + "color_identifier": "emerald" + }, + "im_gradient_womens_day_theme_header_tint": { + "color_identifier": "pink_pastel" + }, + "im_gradient_womens_day_theme_accent": { + "color_identifier": "pink_pastel" + }, + "im_gradient_womens_day_theme_write_bar_tint": { + "color_identifier": "pink_pastel" + }, + "im_gradient_theme_text_primary": { + "color_identifier": "white" + }, + "im_gradient_theme_text_placeholder": { + "color_identifier": "white", + "alpha_multiplier": 0.8 + }, + "im_gradient_theme_forward_line": { + "color_identifier": "white_alpha40" + }, + "im_gradient_vk17_theme_header_tint": { + "color_identifier": "sky_300" + }, + "im_gradient_vk17_theme_accent": { + "color_identifier": "sky_300" + }, + "im_gradient_vk17_theme_write_bar_tint": { + "color_identifier": "sky_300" + }, + "im_background_primary_additional": { + "color_identifier": "gray_950" + }, + "im_background_secondary_additional": { + "color_identifier": "black" + }, + "im_palette_red": { + "color_identifier": "im_red" + }, + "im_palette_yellow": { + "color_identifier": "im_yellow" + }, + "im_palette_orange": { + "color_identifier": "im_orange" + }, + "im_palette_green": { + "color_identifier": "im_green" + }, + "im_palette_cyan": { + "color_identifier": "im_cyan" + }, + "im_palette_blue": { + "color_identifier": "im_blue" + }, + "im_palette_violet": { + "color_identifier": "im_violet" + }, + "im_palette_grey": { + "color_identifier": "im_grey" } - }, - "bright_light": { - "appearance": "light", - "colors": { - "im_default_theme_outgoing_bubble_background": { - "color_identifier": "white_blue20" - }, - "im_default_theme_outgoing_alternate_bubble_background": { - "color_identifier": "white" - }, - "im_default_theme_outgoing_bubble_background_highlighted": { - "color_identifier": "white_blue32" - }, - "im_default_theme_outgoing_alternate_bubble_background_highlighted": { - "color_identifier": "gray_20" - }, - "im_default_theme_outgoing_text_primary": { - "color_identifier": "black" - }, - "im_default_theme_outgoing_text_title": { - "color_identifier": "black" - }, - "im_default_theme_outgoing_text_placeholder": { - "color_identifier": "steel_gray_400" - }, - "im_default_theme_outgoing_link": { - "color_identifier": "blue_A500" - }, - "im_default_theme_outgoing_hint_text": { - "color_identifier": "steel_gray_400" - }, - "im_default_theme_outgoing_forward_line_tint": { - "color_identifier": "blue_600" - }, - "im_default_theme_outgoing_button_tertiary_foreground": { - "color_identifier": "blue_400" - }, - "im_default_theme_outgoing_attach_tint": { - "color_identifier": "blue_400" - }, - "im_default_theme_outgoing_accent": { - "color_identifier": "blue_300" - }, - "im_default_theme_incoming_bubble_background": { - "color_identifier": "gray_50" - }, - "im_default_theme_incoming_alternate_bubble_background": { - "color_identifier": "white" - }, - "im_default_theme_incoming_bubble_background_highlighted": { - "color_identifier": "gray_20" - }, - "im_default_theme_incoming_alternate_bubble_background_highlighted": { - "color_identifier": "gray_A150" - }, - "im_default_theme_incoming_text_primary": { - "color_identifier": "black" - }, - "im_default_theme_incoming_text_title": { - "color_identifier": "black" - }, - "im_default_theme_incoming_text_placeholder": { - "color_identifier": "steel_gray_400" - }, - "im_default_theme_incoming_link": { - "color_identifier": "blue_A500" - }, - "im_default_theme_incoming_hint_text": { - "color_identifier": "steel_gray_400" - }, - "im_default_theme_incoming_forward_line_tint": { - "color_identifier": "blue_600" - }, - "im_default_theme_incoming_button_tertiary_foreground": { - "color_identifier": "blue_400" - }, - "im_default_theme_incoming_attach_tint": { - "color_identifier": "blue_400" - }, - "im_default_theme_incoming_accent": { - "color_identifier": "blue_300" - }, - "im_pink_theme_main_tint": { - "color_identifier": "jam_A500" - }, - "im_pink_theme_outgoing_bubble_background": { - "color_identifier": "jam_A500" - }, - "im_pink_theme_outgoing_bubble_background_highlighted": { - "color_identifier": "jam_600" - }, - "im_pink_theme_outgoing_text_primary": { - "color_identifier": "white" - }, - "im_pink_theme_outgoing_text_title": { - "color_identifier": "white" - }, - "im_pink_theme_outgoing_text_placeholder": { - "color_identifier": "jam_200" - }, - "im_pink_theme_outgoing_link": { - "color_identifier": "white" - }, - "im_pink_theme_outgoing_hint_text": { - "color_identifier": "jam_200" - }, - "im_pink_theme_outgoing_forward_line_tint": { - "color_identifier": "white" - }, - "im_pink_theme_outgoing_button_tertiary_foreground": { - "color_identifier": "white" - }, - "im_pink_theme_outgoing_attach_tint": { - "color_identifier": "white" - }, - "im_pink_theme_outgoing_accent": { - "color_identifier": "white" - }, - "im_pink_theme_incoming_color1_bubble_background": { - "color_identifier": "royal_blue_50" - }, - "im_pink_theme_incoming_color1_bubble_background_highlighted": { - "color_identifier": "royal_blue_100" - }, - "im_pink_theme_incoming_color1_text_primary": { - "color_identifier": "black" - }, - "im_pink_theme_incoming_color1_text_title": { - "color_identifier": "royal_blue_A500" - }, - "im_pink_theme_incoming_color1_text_placeholder": { - "color_identifier": "royal_blue_400" - }, - "im_pink_theme_incoming_color1_link": { - "color_identifier": "azure_300" - }, - "im_pink_theme_incoming_color1_hint_text": { - "color_identifier": "royal_blue_400" - }, - "im_pink_theme_incoming_color1_forward_line_tint": { - "color_identifier": "royal_blue_A500" - }, - "im_pink_theme_incoming_color1_button_tertiary_foreground": { - "color_identifier": "royal_blue_A500" - }, - "im_pink_theme_incoming_color1_attach_tint": { - "color_identifier": "royal_blue_A500" - }, - "im_pink_theme_incoming_color1_accent": { - "color_identifier": "royal_blue_A500" - }, - "im_pink_theme_incoming_color2_bubble_background": { - "color_identifier": "deep_lilac_50" - }, - "im_pink_theme_incoming_color2_bubble_background_highlighted": { - "color_identifier": "deep_lilac_100" - }, - "im_pink_theme_incoming_color2_text_primary": { - "color_identifier": "black" - }, - "im_pink_theme_incoming_color2_text_title": { - "color_identifier": "deep_lilac_A500" - }, - "im_pink_theme_incoming_color2_text_placeholder": { - "color_identifier": "deep_lilac_200" - }, - "im_pink_theme_incoming_color2_link": { - "color_identifier": "azure_300" - }, - "im_pink_theme_incoming_color2_hint_text": { - "color_identifier": "deep_lilac_200" - }, - "im_pink_theme_incoming_color2_forward_line_tint": { - "color_identifier": "deep_lilac_A500" - }, - "im_pink_theme_incoming_color2_button_tertiary_foreground": { - "color_identifier": "deep_lilac_A500" - }, - "im_pink_theme_incoming_color2_attach_tint": { - "color_identifier": "deep_lilac_A500" - }, - "im_pink_theme_incoming_color2_accent": { - "color_identifier": "deep_lilac_A500" - }, - "im_pink_theme_incoming_color3_bubble_background": { - "color_identifier": "jam_50" - }, - "im_pink_theme_incoming_color3_bubble_background_highlighted": { - "color_identifier": "jam_100" - }, - "im_pink_theme_incoming_color3_text_primary": { - "color_identifier": "black" - }, - "im_pink_theme_incoming_color3_text_title": { - "color_identifier": "jam_A500" - }, - "im_pink_theme_incoming_color3_text_placeholder": { - "color_identifier": "jam_300" - }, - "im_pink_theme_incoming_color3_link": { - "color_identifier": "azure_300" - }, - "im_pink_theme_incoming_color3_hint_text": { - "color_identifier": "jam_300" - }, - "im_pink_theme_incoming_color3_forward_line_tint": { - "color_identifier": "jam_A500" - }, - "im_pink_theme_incoming_color3_button_tertiary_foreground": { - "color_identifier": "jam_A500" - }, - "im_pink_theme_incoming_color3_attach_tint": { - "color_identifier": "jam_A500" - }, - "im_pink_theme_incoming_color3_accent": { - "color_identifier": "jam_A500" - }, - "im_pink_theme_outgoing_reply_sender_text": { - "color_identifier": "white" - }, - "im_pink_theme_outgoing_reply_separator": { - "color_identifier": "white" - }, - "im_pink_theme_incoming_color1_reply_sender_text": { - "color_identifier": "royal_blue_A500" - }, - "im_pink_theme_incoming_color2_reply_sender_text": { - "color_identifier": "deep_lilac_A500" - }, - "im_pink_theme_incoming_color3_reply_sender_text": { - "color_identifier": "jam_A500" - }, - "im_pink_theme_incoming_color1_reply_separator": { - "color_identifier": "royal_blue_A500" - }, - "im_pink_theme_incoming_color2_reply_separator": { - "color_identifier": "deep_lilac_A500" - }, - "im_pink_theme_incoming_color3_reply_separator": { - "color_identifier": "jam_A500" - }, - "im_purple_theme_main_tint": { - "color_identifier": "deep_lilac_A500" - }, - "im_purple_theme_outgoing_bubble_background": { - "color_identifier": "deep_lilac_A500" - }, - "im_purple_theme_outgoing_bubble_background_highlighted": { - "color_identifier": "deep_lilac_600" - }, - "im_purple_theme_outgoing_text_primary": { - "color_identifier": "white" - }, - "im_purple_theme_outgoing_text_title": { - "color_identifier": "white" - }, - "im_purple_theme_outgoing_text_placeholder": { - "color_identifier": "deep_lilac_100" - }, - "im_purple_theme_outgoing_link": { - "color_identifier": "white" - }, - "im_purple_theme_outgoing_hint_text": { - "color_identifier": "deep_lilac_100" - }, - "im_purple_theme_outgoing_forward_line_tint": { - "color_identifier": "white" - }, - "im_purple_theme_outgoing_button_tertiary_foreground": { - "color_identifier": "white" - }, - "im_purple_theme_outgoing_attach_tint": { - "color_identifier": "white" - }, - "im_purple_theme_outgoing_accent": { - "color_identifier": "white" - }, - "im_purple_theme_incoming_color1_bubble_background": { - "color_identifier": "royal_blue_50" - }, - "im_purple_theme_incoming_color1_bubble_background_highlighted": { - "color_identifier": "royal_blue_100" - }, - "im_purple_theme_incoming_color1_text_primary": { - "color_identifier": "black" - }, - "im_purple_theme_incoming_color1_text_title": { - "color_identifier": "royal_blue_A500" - }, - "im_purple_theme_incoming_color1_text_placeholder": { - "color_identifier": "royal_blue_400" - }, - "im_purple_theme_incoming_color1_link": { - "color_identifier": "azure_300" - }, - "im_purple_theme_incoming_color1_hint_text": { - "color_identifier": "royal_blue_400" - }, - "im_purple_theme_incoming_color1_forward_line_tint": { - "color_identifier": "royal_blue_A500" - }, - "im_purple_theme_incoming_color1_button_tertiary_foreground": { - "color_identifier": "royal_blue_A500" - }, - "im_purple_theme_incoming_color1_attach_tint": { - "color_identifier": "royal_blue_A500" - }, - "im_purple_theme_incoming_color1_accent": { - "color_identifier": "royal_blue_A500" - }, - "im_purple_theme_incoming_color2_bubble_background": { - "color_identifier": "deep_lilac_50" - }, - "im_purple_theme_incoming_color2_bubble_background_highlighted": { - "color_identifier": "deep_lilac_100" - }, - "im_purple_theme_incoming_color2_text_primary": { - "color_identifier": "black" - }, - "im_purple_theme_incoming_color2_text_title": { - "color_identifier": "deep_lilac_A500" - }, - "im_purple_theme_incoming_color2_text_placeholder": { - "color_identifier": "deep_lilac_200" - }, - "im_purple_theme_incoming_color2_link": { - "color_identifier": "azure_300" - }, - "im_purple_theme_incoming_color2_hint_text": { - "color_identifier": "deep_lilac_200" - }, - "im_purple_theme_incoming_color2_forward_line_tint": { - "color_identifier": "deep_lilac_A500" - }, - "im_purple_theme_incoming_color2_button_tertiary_foreground": { - "color_identifier": "deep_lilac_A500" - }, - "im_purple_theme_incoming_color2_attach_tint": { - "color_identifier": "deep_lilac_A500" - }, - "im_purple_theme_incoming_color2_accent": { - "color_identifier": "deep_lilac_A500" - }, - "im_purple_theme_incoming_color3_bubble_background": { - "color_identifier": "pacific_blue_50" - }, - "im_purple_theme_incoming_color3_bubble_background_highlighted": { - "color_identifier": "pacific_blue_100" - }, - "im_purple_theme_incoming_color3_text_primary": { - "color_identifier": "black" - }, - "im_purple_theme_incoming_color3_text_title": { - "color_identifier": "pacific_blue_A500" - }, - "im_purple_theme_incoming_color3_text_placeholder": { - "color_identifier": "pacific_blue_400" - }, - "im_purple_theme_incoming_color3_link": { - "color_identifier": "azure_300" - }, - "im_purple_theme_incoming_color3_hint_text": { - "color_identifier": "pacific_blue_400" - }, - "im_purple_theme_incoming_color3_forward_line_tint": { - "color_identifier": "pacific_blue_A500" - }, - "im_purple_theme_incoming_color3_button_tertiary_foreground": { - "color_identifier": "pacific_blue_A500" - }, - "im_purple_theme_incoming_color3_attach_tint": { - "color_identifier": "pacific_blue_A500" - }, - "im_purple_theme_incoming_color3_accent": { - "color_identifier": "pacific_blue_A500" - }, - "im_purple_theme_outgoing_reply_sender_text": { - "color_identifier": "white" - }, - "im_purple_theme_outgoing_reply_separator": { - "color_identifier": "white" - }, - "im_purple_theme_incoming_color1_reply_sender_text": { - "color_identifier": "royal_blue_A500" - }, - "im_purple_theme_incoming_color2_reply_sender_text": { - "color_identifier": "deep_lilac_A500" - }, - "im_purple_theme_incoming_color3_reply_sender_text": { - "color_identifier": "pacific_blue_A500" - }, - "im_purple_theme_incoming_color1_reply_separator": { - "color_identifier": "royal_blue_A500" - }, - "im_purple_theme_incoming_color2_reply_separator": { - "color_identifier": "deep_lilac_A500" - }, - "im_purple_theme_incoming_color3_reply_separator": { - "color_identifier": "pacific_blue_A500" - }, - "im_orange_theme_main_tint": { - "color_identifier": "carrot_A500" - }, - "im_orange_theme_outgoing_bubble_background": { - "color_identifier": "carrot_A500" - }, - "im_orange_theme_outgoing_bubble_background_highlighted": { - "color_identifier": "carrot_600" - }, - "im_orange_theme_outgoing_text_primary": { - "color_identifier": "white" - }, - "im_orange_theme_outgoing_text_title": { - "color_identifier": "white" - }, - "im_orange_theme_outgoing_text_placeholder": { - "color_identifier": "carrot_200" - }, - "im_orange_theme_outgoing_link": { - "color_identifier": "white" - }, - "im_orange_theme_outgoing_hint_text": { - "color_identifier": "carrot_200" - }, - "im_orange_theme_outgoing_forward_line_tint": { - "color_identifier": "white" - }, - "im_orange_theme_outgoing_button_tertiary_foreground": { - "color_identifier": "white" - }, - "im_orange_theme_outgoing_attach_tint": { - "color_identifier": "white" - }, - "im_orange_theme_outgoing_accent": { - "color_identifier": "white" - }, - "im_orange_theme_incoming_color1_bubble_background": { - "color_identifier": "carrot_50" - }, - "im_orange_theme_incoming_color1_bubble_background_highlighted": { - "color_identifier": "carrot_100" - }, - "im_orange_theme_incoming_color1_text_primary": { - "color_identifier": "black" - }, - "im_orange_theme_incoming_color1_text_title": { - "color_identifier": "carrot_A500" - }, - "im_orange_theme_incoming_color1_text_placeholder": { - "color_identifier": "carrot_300" - }, - "im_orange_theme_incoming_color1_link": { - "color_identifier": "azure_300" - }, - "im_orange_theme_incoming_color1_hint_text": { - "color_identifier": "carrot_300" - }, - "im_orange_theme_incoming_color1_forward_line_tint": { - "color_identifier": "carrot_A500" - }, - "im_orange_theme_incoming_color1_button_tertiary_foreground": { - "color_identifier": "carrot_A500" - }, - "im_orange_theme_incoming_color1_attach_tint": { - "color_identifier": "carrot_A500" - }, - "im_orange_theme_incoming_color1_accent": { - "color_identifier": "carrot_A500" - }, - "im_orange_theme_incoming_color2_bubble_background": { - "color_identifier": "dark_gold_50" - }, - "im_orange_theme_incoming_color2_bubble_background_highlighted": { - "color_identifier": "dark_gold_100" - }, - "im_orange_theme_incoming_color2_text_primary": { - "color_identifier": "black" - }, - "im_orange_theme_incoming_color2_text_title": { - "color_identifier": "dark_gold_A500" - }, - "im_orange_theme_incoming_color2_text_placeholder": { - "color_identifier": "dark_gold_400" - }, - "im_orange_theme_incoming_color2_link": { - "color_identifier": "azure_300" - }, - "im_orange_theme_incoming_color2_hint_text": { - "color_identifier": "dark_gold_400" - }, - "im_orange_theme_incoming_color2_forward_line_tint": { - "color_identifier": "dark_gold_A500" - }, - "im_orange_theme_incoming_color2_button_tertiary_foreground": { - "color_identifier": "dark_gold_A500" - }, - "im_orange_theme_incoming_color2_attach_tint": { - "color_identifier": "dark_gold_A500" - }, - "im_orange_theme_incoming_color2_accent": { - "color_identifier": "dark_gold_A500" - }, - "im_orange_theme_incoming_color3_bubble_background": { - "color_identifier": "forest_green_50" - }, - "im_orange_theme_incoming_color3_bubble_background_highlighted": { - "color_identifier": "forest_green_100" - }, - "im_orange_theme_incoming_color3_text_primary": { - "color_identifier": "black" - }, - "im_orange_theme_incoming_color3_text_title": { - "color_identifier": "forest_green_A500" - }, - "im_orange_theme_incoming_color3_text_placeholder": { - "color_identifier": "forest_green_400" - }, - "im_orange_theme_incoming_color3_link": { - "color_identifier": "azure_300" - }, - "im_orange_theme_incoming_color3_hint_text": { - "color_identifier": "forest_green_400" - }, - "im_orange_theme_incoming_color3_forward_line_tint": { - "color_identifier": "forest_green_A500" - }, - "im_orange_theme_incoming_color3_button_tertiary_foreground": { - "color_identifier": "forest_green_A500" - }, - "im_orange_theme_incoming_color3_attach_tint": { - "color_identifier": "forest_green_A500" - }, - "im_orange_theme_incoming_color3_accent": { - "color_identifier": "forest_green_A500" - }, - "im_orange_theme_outgoing_reply_sender_text": { - "color_identifier": "white" - }, - "im_orange_theme_outgoing_reply_separator": { - "color_identifier": "white" - }, - "im_orange_theme_incoming_color1_reply_sender_text": { - "color_identifier": "carrot_A500" - }, - "im_orange_theme_incoming_color2_reply_sender_text": { - "color_identifier": "dark_gold_A500" - }, - "im_orange_theme_incoming_color3_reply_sender_text": { - "color_identifier": "forest_green_A500" - }, - "im_orange_theme_incoming_color1_reply_separator": { - "color_identifier": "carrot_A500" - }, - "im_orange_theme_incoming_color2_reply_separator": { - "color_identifier": "dark_gold_A500" - }, - "im_orange_theme_incoming_color3_reply_separator": { - "color_identifier": "forest_green_A500" - }, - "im_gradient_disco_theme_accent": { - "color_identifier": "raspberry_pink" - }, - "im_gradient_disco_theme_write_bar_tint": { - "color_identifier": "raspberry_pink" - }, - "im_gradient_disco_theme_header_tint": { - "color_identifier": "raspberry_pink" - }, - "im_gradient_twilight_theme_header_tint": { - "color_identifier": "purple" - }, - "im_gradient_twilight_theme_accent": { - "color_identifier": "purple" - }, - "im_gradient_twilight_theme_write_bar_tint": { - "color_identifier": "purple" - }, - "im_gradient_sunset_theme_header_tint": { - "color_identifier": "orange_fire" - }, - "im_gradient_sunset_theme_accent": { - "color_identifier": "orange_fire" - }, - "im_gradient_sunset_theme_write_bar_tint": { - "color_identifier": "orange_fire" - }, - "im_gradient_retrowave_theme_header_tint": { - "color_identifier": "azure_A100" - }, - "im_gradient_retrowave_theme_accent": { - "color_identifier": "azure_A100" - }, - "im_gradient_retrowave_theme_write_bar_tint": { - "color_identifier": "azure_A100" - }, - "im_gradient_marine_theme_header_tint": { - "color_identifier": "green_dark" - }, - "im_gradient_marine_theme_accent": { - "color_identifier": "green_dark" - }, - "im_gradient_marine_theme_write_bar_tint": { - "color_identifier": "green_dark" - }, - "im_gradient_lagoon_theme_header_tint": { - "color_identifier": "azure_300" - }, - "im_gradient_lagoon_theme_accent": { - "color_identifier": "azure_300" - }, - "im_gradient_lagoon_theme_write_bar_tint": { - "color_identifier": "azure_300" - }, - "im_gradient_candy_theme_header_tint": { - "color_identifier": "raspberry_pink" - }, - "im_gradient_candy_theme_accent": { - "color_identifier": "raspberry_pink" - }, - "im_gradient_candy_theme_write_bar_tint": { - "color_identifier": "raspberry_pink" - }, - "im_gradient_crimson_theme_header_tint": { - "color_identifier": "red_cardinal" - }, - "im_gradient_crimson_theme_accent": { - "color_identifier": "red_cardinal" - }, - "im_gradient_crimson_theme_write_bar_tint": { - "color_identifier": "red_cardinal" - }, - "im_gradient_emerald_theme_header_tint": { - "color_identifier": "green_dark" - }, - "im_gradient_emerald_theme_accent": { - "color_identifier": "green_dark" - }, - "im_gradient_emerald_theme_write_bar_tint": { - "color_identifier": "green_dark" - }, - "im_gradient_midnight_theme_header_tint": { - "color_identifier": "azure_A100" - }, - "im_gradient_midnight_theme_accent": { - "color_identifier": "azure_A100" - }, - "im_gradient_midnight_theme_write_bar_tint": { - "color_identifier": "azure_A100" - }, - "im_gradient_unicorn_theme_header_tint": { - "color_identifier": "purple" - }, - "im_gradient_unicorn_theme_accent": { - "color_identifier": "purple" - }, - "im_gradient_unicorn_theme_write_bar_tint": { - "color_identifier": "purple" - }, - "im_gradient_halloween_orange_theme_header_tint": { - "color_identifier": "orange_fire" - }, - "im_gradient_halloween_orange_theme_accent": { - "color_identifier": "orange_fire" - }, - "im_gradient_halloween_orange_theme_write_bar_tint": { - "color_identifier": "orange_fire" - }, - "im_gradient_halloween_violet_theme_header_tint": { - "color_identifier": "violet" - }, - "im_gradient_halloween_violet_theme_accent": { - "color_identifier": "violet" - }, - "im_gradient_halloween_violet_theme_write_bar_tint": { - "color_identifier": "violet" - }, - "im_gradient_frost_theme_header_tint": { - "color_identifier": "azure_300" - }, - "im_gradient_frost_theme_accent": { - "color_identifier": "azure_300" - }, - "im_gradient_frost_theme_write_bar_tint": { - "color_identifier": "azure_300" - }, - "im_gradient_new_year_theme_header_tint": { - "color_identifier": "azure_300" - }, - "im_gradient_new_year_theme_accent": { - "color_identifier": "azure_300" - }, - "im_gradient_new_year_theme_write_bar_tint": { - "color_identifier": "azure_300" - }, - "im_gradient_valentine_theme_header_tint": { - "color_identifier": "pink" - }, - "im_gradient_valentine_theme_accent": { - "color_identifier": "pink" - }, - "im_gradient_valentine_theme_write_bar_tint": { - "color_identifier": "pink" - }, - "im_gradient_warm_valentine_theme_header_tint": { - "color_identifier": "pink" - }, - "im_gradient_warm_valentine_theme_accent": { - "color_identifier": "pink" - }, - "im_gradient_warm_valentine_theme_write_bar_tint": { - "color_identifier": "pink" - }, - "im_gradient_sberkot_theme_header_tint": { - "color_identifier": "green" - }, - "im_gradient_sberkot_theme_accent": { - "color_identifier": "green" - }, - "im_gradient_sberkot_theme_write_bar_tint": { - "color_identifier": "green" - }, - "im_gradient_theme_text_primary": { - "color_identifier": "white" - }, - "im_gradient_theme_text_placeholder": { - "color_identifier": "white", - "alpha_multiplier": 0.8 - }, - "im_gradient_theme_forward_line": { - "color_identifier": "white_alpha40" - }, - "im_background_primary_additional": { - "color_identifier": "white" - }, - "im_background_secondary_additional": { - "color_identifier": "gray_40" - }, - "im_palette_red": { - "color_identifier": "im_red" - }, - "im_palette_yellow": { - "color_identifier": "im_yellow" - }, - "im_palette_orange": { - "color_identifier": "im_orange" - }, - "im_palette_green": { - "color_identifier": "im_green" - }, - "im_palette_cyan": { - "color_identifier": "im_cyan" - }, - "im_palette_blue": { - "color_identifier": "im_blue" - }, - "im_palette_violet": { - "color_identifier": "im_violet" - }, - "im_palette_grey": { - "color_identifier": "im_grey" - } - + } + }, + "bright_light": { + "appearance": "light", + "colors": { + "im_default_theme_outgoing_bubble_background": { + "color_identifier": "white_blue20" + }, + "im_default_theme_outgoing_alternate_bubble_background": { + "color_identifier": "white" + }, + "im_default_theme_outgoing_bubble_background_highlighted": { + "color_identifier": "white_blue32" + }, + "im_default_theme_outgoing_alternate_bubble_background_highlighted": { + "color_identifier": "gray_20" + }, + "im_default_theme_outgoing_text_primary": { + "color_identifier": "black" + }, + "im_default_theme_outgoing_text_title": { + "color_identifier": "black" + }, + "im_default_theme_outgoing_text_placeholder": { + "color_identifier": "steel_gray_400" + }, + "im_default_theme_outgoing_link": { + "color_identifier": "blue_A500" + }, + "im_default_theme_outgoing_hint_text": { + "color_identifier": "steel_gray_400" + }, + "im_default_theme_outgoing_forward_line_tint": { + "color_identifier": "blue_600" + }, + "im_default_theme_outgoing_button_tertiary_foreground": { + "color_identifier": "blue_400" + }, + "im_default_theme_outgoing_attach_tint": { + "color_identifier": "blue_400" + }, + "im_default_theme_outgoing_accent": { + "color_identifier": "blue_300" + }, + "im_default_theme_incoming_bubble_background": { + "color_identifier": "gray_50" + }, + "im_default_theme_incoming_alternate_bubble_background": { + "color_identifier": "white" + }, + "im_default_theme_incoming_bubble_background_highlighted": { + "color_identifier": "gray_20" + }, + "im_default_theme_incoming_alternate_bubble_background_highlighted": { + "color_identifier": "gray_A150" + }, + "im_default_theme_incoming_text_primary": { + "color_identifier": "black" + }, + "im_default_theme_incoming_text_title": { + "color_identifier": "black" + }, + "im_default_theme_incoming_text_placeholder": { + "color_identifier": "steel_gray_400" + }, + "im_default_theme_incoming_link": { + "color_identifier": "blue_A500" + }, + "im_default_theme_incoming_hint_text": { + "color_identifier": "steel_gray_400" + }, + "im_default_theme_incoming_forward_line_tint": { + "color_identifier": "blue_600" + }, + "im_default_theme_incoming_button_tertiary_foreground": { + "color_identifier": "blue_400" + }, + "im_default_theme_incoming_attach_tint": { + "color_identifier": "blue_400" + }, + "im_default_theme_incoming_accent": { + "color_identifier": "blue_300" + }, + "im_pink_theme_main_tint": { + "color_identifier": "jam_A500" + }, + "im_pink_theme_outgoing_bubble_background": { + "color_identifier": "jam_A500" + }, + "im_pink_theme_outgoing_bubble_background_highlighted": { + "color_identifier": "jam_600" + }, + "im_pink_theme_outgoing_text_primary": { + "color_identifier": "white" + }, + "im_pink_theme_outgoing_text_title": { + "color_identifier": "white" + }, + "im_pink_theme_outgoing_text_placeholder": { + "color_identifier": "jam_200" + }, + "im_pink_theme_outgoing_link": { + "color_identifier": "white" + }, + "im_pink_theme_outgoing_hint_text": { + "color_identifier": "jam_200" + }, + "im_pink_theme_outgoing_forward_line_tint": { + "color_identifier": "white" + }, + "im_pink_theme_outgoing_button_tertiary_foreground": { + "color_identifier": "white" + }, + "im_pink_theme_outgoing_attach_tint": { + "color_identifier": "white" + }, + "im_pink_theme_outgoing_accent": { + "color_identifier": "white" + }, + "im_pink_theme_incoming_color1_bubble_background": { + "color_identifier": "royal_blue_50" + }, + "im_pink_theme_incoming_color1_bubble_background_highlighted": { + "color_identifier": "royal_blue_100" + }, + "im_pink_theme_incoming_color1_text_primary": { + "color_identifier": "black" + }, + "im_pink_theme_incoming_color1_text_title": { + "color_identifier": "royal_blue_A500" + }, + "im_pink_theme_incoming_color1_text_placeholder": { + "color_identifier": "royal_blue_400" + }, + "im_pink_theme_incoming_color1_link": { + "color_identifier": "azure_300" + }, + "im_pink_theme_incoming_color1_hint_text": { + "color_identifier": "royal_blue_400" + }, + "im_pink_theme_incoming_color1_forward_line_tint": { + "color_identifier": "royal_blue_A500" + }, + "im_pink_theme_incoming_color1_button_tertiary_foreground": { + "color_identifier": "royal_blue_A500" + }, + "im_pink_theme_incoming_color1_attach_tint": { + "color_identifier": "royal_blue_A500" + }, + "im_pink_theme_incoming_color1_accent": { + "color_identifier": "royal_blue_A500" + }, + "im_pink_theme_incoming_color2_bubble_background": { + "color_identifier": "deep_lilac_50" + }, + "im_pink_theme_incoming_color2_bubble_background_highlighted": { + "color_identifier": "deep_lilac_100" + }, + "im_pink_theme_incoming_color2_text_primary": { + "color_identifier": "black" + }, + "im_pink_theme_incoming_color2_text_title": { + "color_identifier": "deep_lilac_A500" + }, + "im_pink_theme_incoming_color2_text_placeholder": { + "color_identifier": "deep_lilac_200" + }, + "im_pink_theme_incoming_color2_link": { + "color_identifier": "azure_300" + }, + "im_pink_theme_incoming_color2_hint_text": { + "color_identifier": "deep_lilac_200" + }, + "im_pink_theme_incoming_color2_forward_line_tint": { + "color_identifier": "deep_lilac_A500" + }, + "im_pink_theme_incoming_color2_button_tertiary_foreground": { + "color_identifier": "deep_lilac_A500" + }, + "im_pink_theme_incoming_color2_attach_tint": { + "color_identifier": "deep_lilac_A500" + }, + "im_pink_theme_incoming_color2_accent": { + "color_identifier": "deep_lilac_A500" + }, + "im_pink_theme_incoming_color3_bubble_background": { + "color_identifier": "jam_50" + }, + "im_pink_theme_incoming_color3_bubble_background_highlighted": { + "color_identifier": "jam_100" + }, + "im_pink_theme_incoming_color3_text_primary": { + "color_identifier": "black" + }, + "im_pink_theme_incoming_color3_text_title": { + "color_identifier": "jam_A500" + }, + "im_pink_theme_incoming_color3_text_placeholder": { + "color_identifier": "jam_300" + }, + "im_pink_theme_incoming_color3_link": { + "color_identifier": "azure_300" + }, + "im_pink_theme_incoming_color3_hint_text": { + "color_identifier": "jam_300" + }, + "im_pink_theme_incoming_color3_forward_line_tint": { + "color_identifier": "jam_A500" + }, + "im_pink_theme_incoming_color3_button_tertiary_foreground": { + "color_identifier": "jam_A500" + }, + "im_pink_theme_incoming_color3_attach_tint": { + "color_identifier": "jam_A500" + }, + "im_pink_theme_incoming_color3_accent": { + "color_identifier": "jam_A500" + }, + "im_pink_theme_outgoing_reply_sender_text": { + "color_identifier": "white" + }, + "im_pink_theme_outgoing_reply_separator": { + "color_identifier": "white" + }, + "im_pink_theme_incoming_color1_reply_sender_text": { + "color_identifier": "royal_blue_A500" + }, + "im_pink_theme_incoming_color2_reply_sender_text": { + "color_identifier": "deep_lilac_A500" + }, + "im_pink_theme_incoming_color3_reply_sender_text": { + "color_identifier": "jam_A500" + }, + "im_pink_theme_incoming_color1_reply_separator": { + "color_identifier": "royal_blue_A500" + }, + "im_pink_theme_incoming_color2_reply_separator": { + "color_identifier": "deep_lilac_A500" + }, + "im_pink_theme_incoming_color3_reply_separator": { + "color_identifier": "jam_A500" + }, + "im_purple_theme_main_tint": { + "color_identifier": "deep_lilac_A500" + }, + "im_purple_theme_outgoing_bubble_background": { + "color_identifier": "deep_lilac_A500" + }, + "im_purple_theme_outgoing_bubble_background_highlighted": { + "color_identifier": "deep_lilac_600" + }, + "im_purple_theme_outgoing_text_primary": { + "color_identifier": "white" + }, + "im_purple_theme_outgoing_text_title": { + "color_identifier": "white" + }, + "im_purple_theme_outgoing_text_placeholder": { + "color_identifier": "deep_lilac_100" + }, + "im_purple_theme_outgoing_link": { + "color_identifier": "white" + }, + "im_purple_theme_outgoing_hint_text": { + "color_identifier": "deep_lilac_100" + }, + "im_purple_theme_outgoing_forward_line_tint": { + "color_identifier": "white" + }, + "im_purple_theme_outgoing_button_tertiary_foreground": { + "color_identifier": "white" + }, + "im_purple_theme_outgoing_attach_tint": { + "color_identifier": "white" + }, + "im_purple_theme_outgoing_accent": { + "color_identifier": "white" + }, + "im_purple_theme_incoming_color1_bubble_background": { + "color_identifier": "royal_blue_50" + }, + "im_purple_theme_incoming_color1_bubble_background_highlighted": { + "color_identifier": "royal_blue_100" + }, + "im_purple_theme_incoming_color1_text_primary": { + "color_identifier": "black" + }, + "im_purple_theme_incoming_color1_text_title": { + "color_identifier": "royal_blue_A500" + }, + "im_purple_theme_incoming_color1_text_placeholder": { + "color_identifier": "royal_blue_400" + }, + "im_purple_theme_incoming_color1_link": { + "color_identifier": "azure_300" + }, + "im_purple_theme_incoming_color1_hint_text": { + "color_identifier": "royal_blue_400" + }, + "im_purple_theme_incoming_color1_forward_line_tint": { + "color_identifier": "royal_blue_A500" + }, + "im_purple_theme_incoming_color1_button_tertiary_foreground": { + "color_identifier": "royal_blue_A500" + }, + "im_purple_theme_incoming_color1_attach_tint": { + "color_identifier": "royal_blue_A500" + }, + "im_purple_theme_incoming_color1_accent": { + "color_identifier": "royal_blue_A500" + }, + "im_purple_theme_incoming_color2_bubble_background": { + "color_identifier": "deep_lilac_50" + }, + "im_purple_theme_incoming_color2_bubble_background_highlighted": { + "color_identifier": "deep_lilac_100" + }, + "im_purple_theme_incoming_color2_text_primary": { + "color_identifier": "black" + }, + "im_purple_theme_incoming_color2_text_title": { + "color_identifier": "deep_lilac_A500" + }, + "im_purple_theme_incoming_color2_text_placeholder": { + "color_identifier": "deep_lilac_200" + }, + "im_purple_theme_incoming_color2_link": { + "color_identifier": "azure_300" + }, + "im_purple_theme_incoming_color2_hint_text": { + "color_identifier": "deep_lilac_200" + }, + "im_purple_theme_incoming_color2_forward_line_tint": { + "color_identifier": "deep_lilac_A500" + }, + "im_purple_theme_incoming_color2_button_tertiary_foreground": { + "color_identifier": "deep_lilac_A500" + }, + "im_purple_theme_incoming_color2_attach_tint": { + "color_identifier": "deep_lilac_A500" + }, + "im_purple_theme_incoming_color2_accent": { + "color_identifier": "deep_lilac_A500" + }, + "im_purple_theme_incoming_color3_bubble_background": { + "color_identifier": "pacific_blue_50" + }, + "im_purple_theme_incoming_color3_bubble_background_highlighted": { + "color_identifier": "pacific_blue_100" + }, + "im_purple_theme_incoming_color3_text_primary": { + "color_identifier": "black" + }, + "im_purple_theme_incoming_color3_text_title": { + "color_identifier": "pacific_blue_A500" + }, + "im_purple_theme_incoming_color3_text_placeholder": { + "color_identifier": "pacific_blue_400" + }, + "im_purple_theme_incoming_color3_link": { + "color_identifier": "azure_300" + }, + "im_purple_theme_incoming_color3_hint_text": { + "color_identifier": "pacific_blue_400" + }, + "im_purple_theme_incoming_color3_forward_line_tint": { + "color_identifier": "pacific_blue_A500" + }, + "im_purple_theme_incoming_color3_button_tertiary_foreground": { + "color_identifier": "pacific_blue_A500" + }, + "im_purple_theme_incoming_color3_attach_tint": { + "color_identifier": "pacific_blue_A500" + }, + "im_purple_theme_incoming_color3_accent": { + "color_identifier": "pacific_blue_A500" + }, + "im_purple_theme_outgoing_reply_sender_text": { + "color_identifier": "white" + }, + "im_purple_theme_outgoing_reply_separator": { + "color_identifier": "white" + }, + "im_purple_theme_incoming_color1_reply_sender_text": { + "color_identifier": "royal_blue_A500" + }, + "im_purple_theme_incoming_color2_reply_sender_text": { + "color_identifier": "deep_lilac_A500" + }, + "im_purple_theme_incoming_color3_reply_sender_text": { + "color_identifier": "pacific_blue_A500" + }, + "im_purple_theme_incoming_color1_reply_separator": { + "color_identifier": "royal_blue_A500" + }, + "im_purple_theme_incoming_color2_reply_separator": { + "color_identifier": "deep_lilac_A500" + }, + "im_purple_theme_incoming_color3_reply_separator": { + "color_identifier": "pacific_blue_A500" + }, + "im_orange_theme_main_tint": { + "color_identifier": "carrot_A500" + }, + "im_orange_theme_outgoing_bubble_background": { + "color_identifier": "carrot_A500" + }, + "im_orange_theme_outgoing_bubble_background_highlighted": { + "color_identifier": "carrot_600" + }, + "im_orange_theme_outgoing_text_primary": { + "color_identifier": "white" + }, + "im_orange_theme_outgoing_text_title": { + "color_identifier": "white" + }, + "im_orange_theme_outgoing_text_placeholder": { + "color_identifier": "carrot_200" + }, + "im_orange_theme_outgoing_link": { + "color_identifier": "white" + }, + "im_orange_theme_outgoing_hint_text": { + "color_identifier": "carrot_200" + }, + "im_orange_theme_outgoing_forward_line_tint": { + "color_identifier": "white" + }, + "im_orange_theme_outgoing_button_tertiary_foreground": { + "color_identifier": "white" + }, + "im_orange_theme_outgoing_attach_tint": { + "color_identifier": "white" + }, + "im_orange_theme_outgoing_accent": { + "color_identifier": "white" + }, + "im_orange_theme_incoming_color1_bubble_background": { + "color_identifier": "carrot_50" + }, + "im_orange_theme_incoming_color1_bubble_background_highlighted": { + "color_identifier": "carrot_100" + }, + "im_orange_theme_incoming_color1_text_primary": { + "color_identifier": "black" + }, + "im_orange_theme_incoming_color1_text_title": { + "color_identifier": "carrot_A500" + }, + "im_orange_theme_incoming_color1_text_placeholder": { + "color_identifier": "carrot_300" + }, + "im_orange_theme_incoming_color1_link": { + "color_identifier": "azure_300" + }, + "im_orange_theme_incoming_color1_hint_text": { + "color_identifier": "carrot_300" + }, + "im_orange_theme_incoming_color1_forward_line_tint": { + "color_identifier": "carrot_A500" + }, + "im_orange_theme_incoming_color1_button_tertiary_foreground": { + "color_identifier": "carrot_A500" + }, + "im_orange_theme_incoming_color1_attach_tint": { + "color_identifier": "carrot_A500" + }, + "im_orange_theme_incoming_color1_accent": { + "color_identifier": "carrot_A500" + }, + "im_orange_theme_incoming_color2_bubble_background": { + "color_identifier": "dark_gold_50" + }, + "im_orange_theme_incoming_color2_bubble_background_highlighted": { + "color_identifier": "dark_gold_100" + }, + "im_orange_theme_incoming_color2_text_primary": { + "color_identifier": "black" + }, + "im_orange_theme_incoming_color2_text_title": { + "color_identifier": "dark_gold_A500" + }, + "im_orange_theme_incoming_color2_text_placeholder": { + "color_identifier": "dark_gold_400" + }, + "im_orange_theme_incoming_color2_link": { + "color_identifier": "azure_300" + }, + "im_orange_theme_incoming_color2_hint_text": { + "color_identifier": "dark_gold_400" + }, + "im_orange_theme_incoming_color2_forward_line_tint": { + "color_identifier": "dark_gold_A500" + }, + "im_orange_theme_incoming_color2_button_tertiary_foreground": { + "color_identifier": "dark_gold_A500" + }, + "im_orange_theme_incoming_color2_attach_tint": { + "color_identifier": "dark_gold_A500" + }, + "im_orange_theme_incoming_color2_accent": { + "color_identifier": "dark_gold_A500" + }, + "im_orange_theme_incoming_color3_bubble_background": { + "color_identifier": "forest_green_50" + }, + "im_orange_theme_incoming_color3_bubble_background_highlighted": { + "color_identifier": "forest_green_100" + }, + "im_orange_theme_incoming_color3_text_primary": { + "color_identifier": "black" + }, + "im_orange_theme_incoming_color3_text_title": { + "color_identifier": "forest_green_A500" + }, + "im_orange_theme_incoming_color3_text_placeholder": { + "color_identifier": "forest_green_400" + }, + "im_orange_theme_incoming_color3_link": { + "color_identifier": "azure_300" + }, + "im_orange_theme_incoming_color3_hint_text": { + "color_identifier": "forest_green_400" + }, + "im_orange_theme_incoming_color3_forward_line_tint": { + "color_identifier": "forest_green_A500" + }, + "im_orange_theme_incoming_color3_button_tertiary_foreground": { + "color_identifier": "forest_green_A500" + }, + "im_orange_theme_incoming_color3_attach_tint": { + "color_identifier": "forest_green_A500" + }, + "im_orange_theme_incoming_color3_accent": { + "color_identifier": "forest_green_A500" + }, + "im_orange_theme_outgoing_reply_sender_text": { + "color_identifier": "white" + }, + "im_orange_theme_outgoing_reply_separator": { + "color_identifier": "white" + }, + "im_orange_theme_incoming_color1_reply_sender_text": { + "color_identifier": "carrot_A500" + }, + "im_orange_theme_incoming_color2_reply_sender_text": { + "color_identifier": "dark_gold_A500" + }, + "im_orange_theme_incoming_color3_reply_sender_text": { + "color_identifier": "forest_green_A500" + }, + "im_orange_theme_incoming_color1_reply_separator": { + "color_identifier": "carrot_A500" + }, + "im_orange_theme_incoming_color2_reply_separator": { + "color_identifier": "dark_gold_A500" + }, + "im_orange_theme_incoming_color3_reply_separator": { + "color_identifier": "forest_green_A500" + }, + "im_gradient_disco_theme_accent": { + "color_identifier": "raspberry_pink" + }, + "im_gradient_disco_theme_write_bar_tint": { + "color_identifier": "raspberry_pink" + }, + "im_gradient_disco_theme_header_tint": { + "color_identifier": "raspberry_pink" + }, + "im_gradient_twilight_theme_header_tint": { + "color_identifier": "purple" + }, + "im_gradient_twilight_theme_accent": { + "color_identifier": "purple" + }, + "im_gradient_twilight_theme_write_bar_tint": { + "color_identifier": "purple" + }, + "im_gradient_sunset_theme_header_tint": { + "color_identifier": "orange_fire" + }, + "im_gradient_sunset_theme_accent": { + "color_identifier": "orange_fire" + }, + "im_gradient_sunset_theme_write_bar_tint": { + "color_identifier": "orange_fire" + }, + "im_gradient_retrowave_theme_header_tint": { + "color_identifier": "azure_A100" + }, + "im_gradient_retrowave_theme_accent": { + "color_identifier": "azure_A100" + }, + "im_gradient_retrowave_theme_write_bar_tint": { + "color_identifier": "azure_A100" + }, + "im_gradient_marine_theme_header_tint": { + "color_identifier": "green_dark" + }, + "im_gradient_marine_theme_accent": { + "color_identifier": "green_dark" + }, + "im_gradient_marine_theme_write_bar_tint": { + "color_identifier": "green_dark" + }, + "im_gradient_lagoon_theme_header_tint": { + "color_identifier": "azure_300" + }, + "im_gradient_lagoon_theme_accent": { + "color_identifier": "azure_300" + }, + "im_gradient_lagoon_theme_write_bar_tint": { + "color_identifier": "azure_300" + }, + "im_gradient_candy_theme_header_tint": { + "color_identifier": "raspberry_pink" + }, + "im_gradient_candy_theme_accent": { + "color_identifier": "raspberry_pink" + }, + "im_gradient_candy_theme_write_bar_tint": { + "color_identifier": "raspberry_pink" + }, + "im_gradient_crimson_theme_header_tint": { + "color_identifier": "red_cardinal" + }, + "im_gradient_crimson_theme_accent": { + "color_identifier": "red_cardinal" + }, + "im_gradient_crimson_theme_write_bar_tint": { + "color_identifier": "red_cardinal" + }, + "im_gradient_emerald_theme_header_tint": { + "color_identifier": "green_dark" + }, + "im_gradient_emerald_theme_accent": { + "color_identifier": "green_dark" + }, + "im_gradient_emerald_theme_write_bar_tint": { + "color_identifier": "green_dark" + }, + "im_gradient_midnight_theme_header_tint": { + "color_identifier": "azure_A100" + }, + "im_gradient_midnight_theme_accent": { + "color_identifier": "azure_A100" + }, + "im_gradient_midnight_theme_write_bar_tint": { + "color_identifier": "azure_A100" + }, + "im_gradient_unicorn_theme_header_tint": { + "color_identifier": "purple" + }, + "im_gradient_unicorn_theme_accent": { + "color_identifier": "purple" + }, + "im_gradient_unicorn_theme_write_bar_tint": { + "color_identifier": "purple" + }, + "im_gradient_halloween_orange_theme_header_tint": { + "color_identifier": "orange_fire" + }, + "im_gradient_halloween_orange_theme_accent": { + "color_identifier": "orange_fire" + }, + "im_gradient_halloween_orange_theme_write_bar_tint": { + "color_identifier": "orange_fire" + }, + "im_gradient_halloween_violet_theme_header_tint": { + "color_identifier": "violet" + }, + "im_gradient_halloween_violet_theme_accent": { + "color_identifier": "violet" + }, + "im_gradient_halloween_violet_theme_write_bar_tint": { + "color_identifier": "violet" + }, + "im_gradient_frost_theme_header_tint": { + "color_identifier": "azure_300" + }, + "im_gradient_frost_theme_accent": { + "color_identifier": "azure_300" + }, + "im_gradient_frost_theme_write_bar_tint": { + "color_identifier": "azure_300" + }, + "im_gradient_new_year_theme_header_tint": { + "color_identifier": "azure_300" + }, + "im_gradient_new_year_theme_accent": { + "color_identifier": "azure_300" + }, + "im_gradient_new_year_theme_write_bar_tint": { + "color_identifier": "azure_300" + }, + "im_gradient_valentine_theme_header_tint": { + "color_identifier": "pink" + }, + "im_gradient_valentine_theme_accent": { + "color_identifier": "pink" + }, + "im_gradient_valentine_theme_write_bar_tint": { + "color_identifier": "pink" + }, + "im_gradient_warm_valentine_theme_header_tint": { + "color_identifier": "pink" + }, + "im_gradient_warm_valentine_theme_accent": { + "color_identifier": "pink" + }, + "im_gradient_warm_valentine_theme_write_bar_tint": { + "color_identifier": "pink" + }, + "im_gradient_sberkot_theme_header_tint": { + "color_identifier": "green" + }, + "im_gradient_sberkot_theme_accent": { + "color_identifier": "green" + }, + "im_gradient_sberkot_theme_write_bar_tint": { + "color_identifier": "green" + }, + "im_gradient_womens_day_theme_header_tint": { + "color_identifier": "pink" + }, + "im_gradient_womens_day_theme_accent": { + "color_identifier": "pink" + }, + "im_gradient_womens_day_theme_write_bar_tint": { + "color_identifier": "pink" + }, + "im_gradient_theme_text_primary": { + "color_identifier": "white" + }, + "im_gradient_theme_text_placeholder": { + "color_identifier": "white", + "alpha_multiplier": 0.8 + }, + "im_gradient_theme_forward_line": { + "color_identifier": "white_alpha40" + }, + "im_gradient_vk17_theme_header_tint": { + "color_identifier": "azure_A100" + }, + "im_gradient_vk17_theme_accent": { + "color_identifier": "azure_A100" + }, + "im_gradient_vk17_theme_write_bar_tint": { + "color_identifier": "azure_A100" + }, + "im_background_primary_additional": { + "color_identifier": "white" + }, + "im_background_secondary_additional": { + "color_identifier": "gray_40" + }, + "im_palette_red": { + "color_identifier": "im_red" + }, + "im_palette_yellow": { + "color_identifier": "im_yellow" + }, + "im_palette_orange": { + "color_identifier": "im_orange" + }, + "im_palette_green": { + "color_identifier": "im_green" + }, + "im_palette_cyan": { + "color_identifier": "im_cyan" + }, + "im_palette_blue": { + "color_identifier": "im_blue" + }, + "im_palette_violet": { + "color_identifier": "im_violet" + }, + "im_palette_grey": { + "color_identifier": "im_grey" } + } } } diff --git a/main.valette/scheme_ok.json b/main.valette/scheme_ok.json index 34abfc4..b602426 100644 --- a/main.valette/scheme_ok.json +++ b/main.valette/scheme_ok.json @@ -57,6 +57,12 @@ "background_suggestions": { "color_identifier": "gray_800" }, + "background_card_alpha": { + "color_identifier": "white_alpha32" + }, + "background_overlay_secondary": { + "color_identifier": "gray_alpha_700" + }, "button_bot_shadow": { "color_identifier": "gray_900" }, @@ -345,6 +351,21 @@ "im_bubble_gift_text_secondary": { "color_identifier": "gold_250" }, + "im_bubble_mable_outgoing": { + "color_identifier": "mable_blue_100" + }, + "im_bubble_mable_outgoing_expiring_highlighted": { + "color_identifier": "lavender_700" + }, + "im_bubble_mable_outgoing_highlighted": { + "color_identifier": "mable_blue_200" + }, + "im_bubble_mable_wallpaper_outgoing": { + "color_identifier": "mable_blue_100" + }, + "im_bubble_mable_wallpaper_outgoing_highlighted": { + "color_identifier": "mable_blue_200" + }, "im_bubble_outgoing": { "color_identifier": "gray_700" }, @@ -704,6 +725,9 @@ "color_identifier": "sky_300", "alpha_multiplier": 0.24 }, + "text_highlight_alpha": { + "color_identifier": "white_alpha20" + }, "skeleton_shimmer_from": { "color_identifier": "gray_900" }, @@ -789,6 +813,9 @@ "background_suggestions": { "color_identifier": "white" }, + "background_overlay_secondary": { + "color_identifier": "gray_alpha_700" + }, "button_bot_shadow": { "color_identifier": "gray_200" }, @@ -801,6 +828,9 @@ "button_muted_background": { "color_identifier": "gray_40" }, + "background_card_alpha": { + "color_identifier": "black_alpha20" + }, "button_muted_foreground": { "color_identifier": "azure_300" }, @@ -1077,6 +1107,21 @@ "im_bubble_gift_text_secondary": { "color_identifier": "gold_400" }, + "im_bubble_mable_outgoing": { + "color_identifier": "mable_blue_100" + }, + "im_bubble_mable_outgoing_expiring_highlighted": { + "color_identifier": "lavender_250" + }, + "im_bubble_mable_outgoing_highlighted": { + "color_identifier": "mable_blue_200" + }, + "im_bubble_mable_wallpaper_outgoing": { + "color_identifier": "mable_blue_100" + }, + "im_bubble_mable_wallpaper_outgoing_highlighted": { + "color_identifier": "mable_blue_200" + }, "im_bubble_outgoing": { "color_identifier": "white_blue20" }, @@ -1436,6 +1481,9 @@ "color_identifier": "azure_300", "alpha_multiplier": 0.2 }, + "text_highlight_alpha": { + "color_identifier": "white_blue20" + }, "skeleton_shimmer_from": { "color_identifier": "white" }, diff --git a/main.valette/scheme_web.json b/main.valette/scheme_web.json index 84b9e66..bf08cf9 100644 --- a/main.valette/scheme_web.json +++ b/main.valette/scheme_web.json @@ -67,6 +67,12 @@ "color_identifier": "gray_800", "deprecated_for_web": true }, + "background_card_alpha": { + "color_identifier": "white_alpha32" + }, + "background_overlay_secondary": { + "color_identifier": "gray_alpha_700" + }, "button_bot_shadow": { "color_identifier": "gray_900", "deprecated_for_web": true @@ -369,6 +375,21 @@ "im_bubble_gift_text_secondary": { "color_identifier": "gold_250" }, + "im_bubble_mable_outgoing": { + "color_identifier": "mable_blue_100" + }, + "im_bubble_mable_outgoing_expiring_highlighted": { + "color_identifier": "lavender_700" + }, + "im_bubble_mable_outgoing_highlighted": { + "color_identifier": "mable_blue_200" + }, + "im_bubble_mable_wallpaper_outgoing": { + "color_identifier": "mable_blue_100" + }, + "im_bubble_mable_wallpaper_outgoing_highlighted": { + "color_identifier": "mable_blue_200" + }, "im_bubble_outgoing": { "color_identifier": "gray_700" }, @@ -754,7 +775,7 @@ "color_identifier": "purple_light" }, "dynamic_violet": { - "color_identifier": "violet_light" + "color_identifier": "violet_french" }, "dynamic_raspberry_pink": { "color_identifier": "raspberry_pink_light" @@ -782,6 +803,9 @@ "color_identifier": "blue_400_alpha20", "deprecated_for_web": true }, + "text_highlight_alpha": { + "color_identifier": "white_alpha20" + }, "skeleton_shimmer_from": { "color_identifier": "gray_900", "deprecated_for_web": true @@ -882,6 +906,12 @@ "color_identifier": "white", "deprecated_for_web": true }, + "background_card_alpha": { + "color_identifier": "black_alpha20" + }, + "background_overlay_secondary": { + "color_identifier": "gray_alpha_700" + }, "button_bot_shadow": { "color_identifier": "gray_200", "deprecated_for_web": true @@ -1184,6 +1214,21 @@ "im_bubble_gift_text_secondary": { "color_identifier": "gold_400" }, + "im_bubble_mable_outgoing": { + "color_identifier": "mable_blue_100" + }, + "im_bubble_mable_outgoing_expiring_highlighted": { + "color_identifier": "lavender_250" + }, + "im_bubble_mable_outgoing_highlighted": { + "color_identifier": "mable_blue_200" + }, + "im_bubble_mable_wallpaper_outgoing": { + "color_identifier": "mable_blue_100" + }, + "im_bubble_mable_wallpaper_outgoing_highlighted": { + "color_identifier": "mable_blue_200" + }, "im_bubble_outgoing": { "color_identifier": "white_blue20" }, @@ -1557,7 +1602,7 @@ "color_identifier": "red_nice" }, "dynamic_green": { - "color_identifier": "green_600" + "color_identifier": "green_350" }, "dynamic_orange": { "color_identifier": "orange" @@ -1597,6 +1642,9 @@ "color_identifier": "blue_400_alpha20", "deprecated_for_web": true }, + "text_highlight_alpha": { + "color_identifier": "white_blue20" + }, "skeleton_shimmer_from": { "color_identifier": "white", "deprecated_for_web": true diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..8d01e32 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,13 @@ +{ + "name": "@vkontakte/appearance", + "version": "10.2.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@vkontakte/appearance", + "version": "10.2.0", + "license": "ISC" + } + } +} diff --git a/package.json b/package.json index 145c4b6..0cb505c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@vkontakte/appearance", - "version": "1.0.0", + "version": "10.2.0", "description": "", "scripts": { "test": "node ./main.valette/__test__/test.js" @@ -14,5 +14,8 @@ "bugs": { "url": "https://github.com/VKCOM/Appearance/issues" }, - "homepage": "https://github.com/VKCOM/Appearance#readme" + "homepage": "https://github.com/VKCOM/Appearance#readme", + "publishConfig": { + "access": "public" + } }