From 03d42ef50c3fa49ab92ae66ac6714f51c542ea31 Mon Sep 17 00:00:00 2001 From: Big Boss Date: Sun, 25 Feb 2024 16:28:33 -0600 Subject: [PATCH 001/177] deploy on dev --- .github/workflows/ci.yml | 2 +- .github/workflows/staging.yml | 84 ----------------------------------- 2 files changed, 1 insertion(+), 85 deletions(-) delete mode 100644 .github/workflows/staging.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f8d427f4..f0b9aae45 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,7 +95,7 @@ jobs: # @todo create supabase branch https://supabase.com/docs/reference/cli/supabase-branches-update vercel-deploy-preview: # skip if on dev since it will be deployed with another workflow - if: github.ref != 'refs/heads/dev' && github.ref != 'refs/heads/main' + if: github.ref != 'refs/heads/main' runs-on: ubuntu-latest needs: [cache-deps] diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml deleted file mode 100644 index 4531de91c..000000000 --- a/.github/workflows/staging.yml +++ /dev/null @@ -1,84 +0,0 @@ -name: Deploy Staging - -on: - push: - branches: - - dev - workflow_dispatch: - -concurrency: - group: ${{ github.workflow }} - -jobs: - supabase-deploy: - runs-on: ubuntu-latest - - env: - SUPABASE_ACCESS_TOKEN: '' # ${{ secrets.SUPABASE_ACCESS_TOKEN }} - SUPABASE_DB_PASSWORD: '' # ${{ secrets.STAGING_DB_PASSWORD }} - SUPABASE_PROJECT_ID: '' # ${{ secrets.STAGING_PROJECT_ID }} - - steps: - - uses: actions/checkout@v4 - with: - submodules: recursive - - - uses: supabase/setup-cli@v1 - with: - version: latest - - - run: echo todo # supabase link --project-ref $SUPABASE_PROJECT_ID - - run: echo todo # supabase db push - - vercel-deploy: - runs-on: ubuntu-latest - - env: - VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} - VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} - - steps: - - uses: actions/checkout@v4 - with: - submodules: recursive - - name: Use Node.js - uses: actions/setup-node@v4 - with: - node-version-file: .node-version - cache: 'yarn' - - uses: oven-sh/setup-bun@v1 - - name: Install Foundry - uses: foundry-rs/foundry-toolchain@v1 - with: - version: nightly - - name: Install Vercel CLI - run: yarn global add vercel - - name: Switch to Vercel Send team - run: vercel --token=${{ secrets.VERCEL_TOKEN }} team switch 0xsend - - name: Pull Vercel Environment Information - run: vercel --token=${{ secrets.VERCEL_TOKEN }} pull --yes --environment=preview - - name: Build Project Artifacts - run: vercel --token=${{ secrets.VERCEL_TOKEN }} build - - name: Extract branch name - shell: bash - run: | - branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} - branch="${branch//\//-}" # Replace / with - - branch="${branch//_/-}" # Replace _ with - - branch="${branch,,}" # Convert to lowercase - branch="${branch//[^a-z0-9-]/}" # Remove any character that is not a-z, 0-9, or - - branch="${branch%-}" # Remove trailing hyphen, if any - branch="${branch#-}" # Remove leading hyphen, if any - echo "branch=${branch}" >> $GITHUB_OUTPUT - echo "public_url=https://sendapp-${BRANCH}-0xsend.vercel.app" >> $GITHUB_OUTPUT - id: extract_branch - - name: Deploy Project Artifacts to Vercel - id: deploy - run: | - vercel --token=${{ secrets.VERCEL_TOKEN }} deploy --prebuilt \ - --env=NEXT_PUBLIC_URL=${{ steps.extract_branch.outputs.public_url }} \ - > deployment-url.txt && \ - echo "deployment_url=$(cat deployment-url.txt)" >> $GITHUB_OUTPUT - echo ::notice::Deployment URL: $(cat deployment-url.txt) - - name: Set Vercel alias - run: vercel --token=${{ secrets.VERCEL_TOKEN }} -S 0xsend alias set ${{ steps.deploy.outputs.deployment_url }} ${{ steps.extract_branch.outputs.public_url }} From 99be5b2db0b02580c87e4cbb473c6ba4bf596ea8 Mon Sep 17 00:00:00 2001 From: Big Boss Date: Sun, 25 Feb 2024 20:24:59 -0600 Subject: [PATCH 002/177] add staging deploy --- .github/actions/deploy/action.yml | 62 ++++++++++++++++++++++ .github/actions/extract-branch/action.yml | 21 ++++++++ .github/actions/supabase-deploy/action.yml | 37 +++++++++++++ .github/actions/vercel-deploy/action.yml | 10 +++- .github/workflows/ci.yml | 29 ++++------ .github/workflows/deploy-staging.yml | 25 +++++++++ supabase/config.toml | 3 +- supabase/package.json | 2 +- yarn.lock | 18 +++---- 9 files changed, 177 insertions(+), 30 deletions(-) create mode 100644 .github/actions/deploy/action.yml create mode 100644 .github/actions/extract-branch/action.yml create mode 100644 .github/actions/supabase-deploy/action.yml create mode 100644 .github/workflows/deploy-staging.yml diff --git a/.github/actions/deploy/action.yml b/.github/actions/deploy/action.yml new file mode 100644 index 000000000..3441b6925 --- /dev/null +++ b/.github/actions/deploy/action.yml @@ -0,0 +1,62 @@ +name: Deploy +description: "Deploy the project to Vercel and Supabase." +inputs: + vercel-token: + description: "The Vercel token to use for deployment." + required: true + vercel-org-id: + description: "The Vercel organization ID to use for deployment." + required: true + vercel-project-id: + description: "The Vercel project ID to use for deployment." + required: true + production: + description: "Whether to deploy to the production environment." + required: false + default: "false" + supabase-project-id: + description: "The Supabase project ID to use for deployment." + required: true + supabase-access-token: + description: "The Supabase access token to use for deployment." + required: true + supabase-db-password: + description: "The Supabase database password to use for deployment." + required: true +runs: + using: "composite" + steps: + - uses: actions/checkout@v4 + with: + submodules: recursive + - name: Setup Environment + uses: ./.github/actions/setup-env + with: + yarn-install: false + env: + YARN_ENABLE_HARDENED_MODE: "0" + - name: Supabase Deploy + id: deploy + uses: ./.github/actions/supabase-deploy + with: + supabase-project-id: ${{ inputs.supabase-project-id }} + env: + SUPABASE_ACCESS_TOKEN: ${{ inputs.supabase-access-token }} + SUPABASE_DB_PASSWORD: ${{ inputs.supabase-db-password }} + - name: Extract Branch + id: extract-branch + uses: ./.github/actions/extract-branch + - name: Public Hostname + shell: bash + id: public-hostname + run: echo "::set-output name=public-hostname::${{ steps.extract-branch.outputs.branch }}" + - name: Vercel Deploy + uses: ./.github/actions/vercel-deploy + with: + vercel-token: ${{ inputs.vercel-token }} + public-hostname: ${{ steps.extract-branch.outputs.public-hostname }} + production: ${{ inputs.production }} + env: + VERCEL_ORG_ID: ${{ inputs.vercel-org-id }} + VERCEL_PROJECT_ID: ${{ inputs.vercel-project-id }} + YARN_ENABLE_HARDENED_MODE: "0" diff --git a/.github/actions/extract-branch/action.yml b/.github/actions/extract-branch/action.yml new file mode 100644 index 000000000..8774a7381 --- /dev/null +++ b/.github/actions/extract-branch/action.yml @@ -0,0 +1,21 @@ +name: "Extract Branch Name" +description: "Extract the branch name from the GitHub event payload and set it as an output cleaned for use in Vercel." +outputs: + branch: + description: "The cleaned branch name." + value: ${{ steps.extract.outputs.branch }} +runs: + using: "composite" + steps: + - name: Extract Branch Name + id: extract + shell: bash + run: | + branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} + branch="${branch//\//-}" # Replace / with - + branch="${branch//_/-}" # Replace _ with - + branch="${branch,,}" # Convert to lowercase + branch="${branch//[^a-z0-9-]/}" # Remove any character that is not a-z, 0-9, or - + branch="${branch%-}" # Remove trailing hyphen, if any + branch="${branch#-}" # Remove leading hyphen, if any + echo "branch=${branch}" >> $GITHUB_OUTPUT diff --git a/.github/actions/supabase-deploy/action.yml b/.github/actions/supabase-deploy/action.yml new file mode 100644 index 000000000..b008dacaa --- /dev/null +++ b/.github/actions/supabase-deploy/action.yml @@ -0,0 +1,37 @@ +name: Supabase Deploy Migratinos +description: "Deploy the project to Supabase. Run migrations against the database." +inputs: + supabase-project-id: + description: "The Supabase project ID to use for deployment." + required: true + supabase-access-token: + description: "The Supabase access token to use for deployment." + required: true + supabase-db-password: + description: "The Supabase database password to use for deployment." + required: true +runs: + using: "composite" + steps: + - name: Mask Supabase Access Token + shell: bash + run: echo "::add-mask::${{ inputs.supabase-access-token }}" + - name: Mask Supabase Database Password + shell: bash + run: echo "::add-mask::${{ inputs.supabase-db-password }}" + - name: Mask Supabase Project ID + shell: bash + run: echo "::add-mask::${{ inputs.supabase-project-id }}" + - uses: supabase/setup-cli@v1 + with: + version: latest + - shell: bash + run: supabase link --project-ref ${{ inputs.supabase-project-id }} + env: + SUPABASE_ACCESS_TOKEN: ${{ inputs.supabase-access-token }} + SUPABASE_DB_PASSWORD: ${{ inputs.supabase-db-password }} + - shell: bash + run: supabase db push + env: + SUPABASE_ACCESS_TOKEN: ${{ inputs.supabase-access-token }} + SUPABASE_DB_PASSWORD: ${{ inputs.supabase-db-password }} diff --git a/.github/actions/vercel-deploy/action.yml b/.github/actions/vercel-deploy/action.yml index bf57bcad7..644481733 100644 --- a/.github/actions/vercel-deploy/action.yml +++ b/.github/actions/vercel-deploy/action.yml @@ -8,6 +8,10 @@ inputs: description: "The public hostname alias to use for the deployment." required: false default: "" + production: + description: "Whether to deploy to the production environment." + required: false + default: "false" outputs: deployment-url: description: "The URL of the deployment." @@ -31,7 +35,11 @@ runs: id: deploy shell: bash run: | - bunx vercel --token=${{ inputs.vercel-token }} deploy --prebuilt > deployment-url.txt + if [[ ${{ inputs.production }} == "true" ]]; then + bunx vercel --token=${{ inputs.vercel-token }} deploy --prebuilt --prod > deployment-url.txt + else + bunx vercel --token=${{ inputs.vercel-token }} deploy --prebuilt > deployment-url.txt + fi echo "deployment_url=$(cat deployment-url.txt)" >> $GITHUB_OUTPUT echo ::notice::Deployment URL: $(cat deployment-url.txt) - name: Set Vercel Branch Alias diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f0b9aae45..593a46030 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,8 +94,8 @@ jobs: # @todo create supabase branch https://supabase.com/docs/reference/cli/supabase-branches-update vercel-deploy-preview: - # skip if on dev since it will be deployed with another workflow - if: github.ref != 'refs/heads/main' + # skip if on dev and main since it will be deployed with another workflow + if: github.ref != 'refs/heads/main' && github.ref != 'refs/heads/dev' runs-on: ubuntu-latest needs: [cache-deps] @@ -117,24 +117,17 @@ jobs: env: YARN_ENABLE_HARDENED_MODE: 0 - name: Extract branch name - id: extract_branch - shell: bash - run: | - branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} - branch="${branch//\//-}" # Replace / with - - branch="${branch//_/-}" # Replace _ with - - branch="${branch,,}" # Convert to lowercase - branch="${branch//[^a-z0-9-]/}" # Remove any character that is not a-z, 0-9, or - - branch="${branch%-}" # Remove trailing hyphen, if any - branch="${branch#-}" # Remove leading hyphen, if any - echo "branch=${branch}" >> $GITHUB_OUTPUT - echo "public_hostname=sendapp-${branch}-0xsend.vercel.app" >> $GITHUB_OUTPUT + id: extract-branch + uses: ./.github/actions/extract-branch + - name: Set Public Hostname + id: public-hostname + run: echo "public-hostname=sendapp-${steps.extract-branch.outputs.branch}-0xsend.vercel.app" >> $GITHUB_OUTPUT - name: Vercel Deploy - id: deploy + id: vercel-deploy uses: ./.github/actions/vercel-deploy with: vercel-token: ${{ secrets.VERCEL_TOKEN }} - public-hostname: ${{ steps.extract_branch.outputs.public_hostname }} + public-hostname: ${{ steps.public-hostname.outputs.public-hostname }} env: VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} @@ -142,5 +135,5 @@ jobs: with: message-id: vercel-preview-url message: | - Vercel Unique URL: [${{ steps.deploy.outputs.deployment-url }}](${{ steps.deploy.outputs.deployment-url }}) - Vercel Preview URL: [${{ steps.extract_branch.outputs.public_hostname }}](https://${{ steps.extract_branch.outputs.public_hostname }}/) + Vercel Unique URL: [${{ steps.vercel-deploy.outputs.deployment-url }}](${{ steps.vercel-deploy.outputs.deployment-url }}) + Vercel Preview URL: [${{ steps.public-hostname.outputs.public-hostname }}](https://${{ steps.public-hostname.outputs.public-hostname }}/) diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml new file mode 100644 index 000000000..cafc94bf0 --- /dev/null +++ b/.github/workflows/deploy-staging.yml @@ -0,0 +1,25 @@ +name: Deploy Staging + +on: + workflow_dispatch: + push: + branches: + - dev + +concurrency: + group: ${{ github.workflow }} + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Deploy + uses: ./.github/actions/deploy + with: + vercel-token: ${{ secrets.VERCEL_TOKEN }} + vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }} + vercel-org-id: ${{ secrets.VERCEL_ORG_ID }} + production: false + supabase-project-id: ${{ secrets.STAGING_SUPABASE_PROJECT_ID }} + supabase-access-token: ${{ secrets.SUPABASE_ACCESS_TOKEN }} + supabase-db-password: ${{ secrets.STAGING_SUPABASE_DB_PASSWORD }} diff --git a/supabase/config.toml b/supabase/config.toml index 1e52ce1e8..aa9107d52 100644 --- a/supabase/config.toml +++ b/supabase/config.toml @@ -3,8 +3,9 @@ project_id = "send" [api] +enabled = true port = 54321 -schemas = ["public", "storage"] +schemas = ["public", "storage", "graphql_public"] extra_search_path = ["public", "extensions"] max_rows = 100 diff --git a/supabase/package.json b/supabase/package.json index 64c25db84..c7f5dcadd 100644 --- a/supabase/package.json +++ b/supabase/package.json @@ -24,7 +24,7 @@ }, "devDependencies": { "dotenv-cli": "^6.0.0", - "supabase": "^1.99.0", + "supabase": "1.145.4", "type-fest": "^4.3.1" } } diff --git a/yarn.lock b/yarn.lock index 228f7a7ba..71b26e896 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5631,7 +5631,7 @@ __metadata: resolution: "@my/supabase@workspace:supabase" dependencies: dotenv-cli: "npm:^6.0.0" - supabase: "npm:^1.99.0" + supabase: "npm:1.145.4" type-fest: "npm:^4.3.1" languageName: unknown linkType: soft @@ -12564,7 +12564,7 @@ __metadata: languageName: node linkType: hard -"bin-links@npm:^4.0.1": +"bin-links@npm:^4.0.3": version: 4.0.3 resolution: "bin-links@npm:4.0.3" dependencies: @@ -23556,7 +23556,7 @@ __metadata: languageName: node linkType: hard -"node-fetch@npm:^3.2.10, node-fetch@npm:^3.3.2": +"node-fetch@npm:^3.3.2": version: 3.3.2 resolution: "node-fetch@npm:3.3.2" dependencies: @@ -28751,17 +28751,17 @@ __metadata: languageName: node linkType: hard -"supabase@npm:^1.99.0": - version: 1.111.2 - resolution: "supabase@npm:1.111.2" +"supabase@npm:1.145.4": + version: 1.145.4 + resolution: "supabase@npm:1.145.4" dependencies: - bin-links: "npm:^4.0.1" + bin-links: "npm:^4.0.3" https-proxy-agent: "npm:^7.0.2" - node-fetch: "npm:^3.2.10" + node-fetch: "npm:^3.3.2" tar: "npm:6.2.0" bin: supabase: bin/supabase - checksum: 850766f5fd1fbe3dea9131a55d577ac998fb1cccdee28eeb0d478d786a96a5faad4d2e124afe4e82986a99b29d8bf214cf6eea7c2dee4d3fa87c02e13d2ed048 + checksum: 8b7d65ec1b84ebdd1053c925a444ed2d694aa1696ba8121c1779b8a964133990688e5aa27a481f192377db0f847e635581206dfa071b2f8e3f5e6bdbe5ee1d59 languageName: node linkType: hard From 170810a0a522fd9ac90b2f07fe50c0e934786118 Mon Sep 17 00:00:00 2001 From: Big Boss Date: Sun, 25 Feb 2024 20:29:30 -0600 Subject: [PATCH 003/177] fix it --- .github/actions/deploy/action.yml | 3 --- .github/workflows/ci.yml | 8 +++++++- .github/workflows/deploy-staging.yml | 7 ++++--- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/actions/deploy/action.yml b/.github/actions/deploy/action.yml index 3441b6925..43925f61e 100644 --- a/.github/actions/deploy/action.yml +++ b/.github/actions/deploy/action.yml @@ -26,9 +26,6 @@ inputs: runs: using: "composite" steps: - - uses: actions/checkout@v4 - with: - submodules: recursive - name: Setup Environment uses: ./.github/actions/setup-env with: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 593a46030..59074eac6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,7 +92,6 @@ jobs: path: packages/playwright/playwright-report/ retention-days: 30 - # @todo create supabase branch https://supabase.com/docs/reference/cli/supabase-branches-update vercel-deploy-preview: # skip if on dev and main since it will be deployed with another workflow if: github.ref != 'refs/heads/main' && github.ref != 'refs/heads/dev' @@ -137,3 +136,10 @@ jobs: message: | Vercel Unique URL: [${{ steps.vercel-deploy.outputs.deployment-url }}](${{ steps.vercel-deploy.outputs.deployment-url }}) Vercel Preview URL: [${{ steps.public-hostname.outputs.public-hostname }}](https://${{ steps.public-hostname.outputs.public-hostname }}/) + + deploy-staging: + if: github.ref == 'refs/heads/dev' + runs-on: ubuntu-latest + needs: [cache-deps] + steps: + - uses: ./.github/workflows/deploy-staging.yml diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml index cafc94bf0..eff6e0d8e 100644 --- a/.github/workflows/deploy-staging.yml +++ b/.github/workflows/deploy-staging.yml @@ -2,9 +2,7 @@ name: Deploy Staging on: workflow_dispatch: - push: - branches: - - dev + workflow_call: concurrency: group: ${{ github.workflow }} @@ -13,6 +11,9 @@ jobs: deploy: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v4 + with: + submodules: recursive - name: Deploy uses: ./.github/actions/deploy with: From c492df5ceaf4a6b6cd5dec7d91957e1907f4ec35 Mon Sep 17 00:00:00 2001 From: Big Boss Date: Sun, 25 Feb 2024 20:51:52 -0600 Subject: [PATCH 004/177] checkout deploy-staging --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59074eac6..94ffdbcb9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -142,4 +142,7 @@ jobs: runs-on: ubuntu-latest needs: [cache-deps] steps: + - uses: actions/checkout@v4 + with: + submodules: recursive - uses: ./.github/workflows/deploy-staging.yml From b7e57f0cb3c2f40a6925fc92cbb18e19df0404a5 Mon Sep 17 00:00:00 2001 From: Big Boss Date: Sun, 25 Feb 2024 20:56:14 -0600 Subject: [PATCH 005/177] fix deploy preview --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94ffdbcb9..d10147a83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -120,7 +120,7 @@ jobs: uses: ./.github/actions/extract-branch - name: Set Public Hostname id: public-hostname - run: echo "public-hostname=sendapp-${steps.extract-branch.outputs.branch}-0xsend.vercel.app" >> $GITHUB_OUTPUT + run: echo "public-hostname=sendapp-${{steps.extract-branch.outputs.branch}}-0xsend.vercel.app" >> $GITHUB_OUTPUT - name: Vercel Deploy id: vercel-deploy uses: ./.github/actions/vercel-deploy From 4369715ad0df29b55544c382c72155617de2f480 Mon Sep 17 00:00:00 2001 From: Big Boss Date: Sun, 25 Feb 2024 21:05:33 -0600 Subject: [PATCH 006/177] fix ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d10147a83..72d2fee32 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,7 +94,7 @@ jobs: vercel-deploy-preview: # skip if on dev and main since it will be deployed with another workflow - if: github.ref != 'refs/heads/main' && github.ref != 'refs/heads/dev' + if: ${{ !(contains(github.ref, 'dev') || contains(github.ref, 'main') || contains(github.head_ref, 'dev') || contains(github.head_ref, 'main')) }} runs-on: ubuntu-latest needs: [cache-deps] From 194b134671824ca0c2edb1cfe6c5d796e5d4dac5 Mon Sep 17 00:00:00 2001 From: Big Boss Date: Sun, 25 Feb 2024 21:10:18 -0600 Subject: [PATCH 007/177] fix ci --- .github/workflows/ci.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 72d2fee32..5ad7c40d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,6 +27,8 @@ jobs: SKIP_YARN_POST_INSTALL: 1 ci: + # skip if on dev and main (but not PRS to dev or main) + if: ${{ !(contains(github.ref, 'dev') || contains(github.ref, 'main')) }} runs-on: ubuntu-latest needs: [cache-deps] env: @@ -93,7 +95,7 @@ jobs: retention-days: 30 vercel-deploy-preview: - # skip if on dev and main since it will be deployed with another workflow + # **always** skip if on dev and main since it will be deployed with another workflow if: ${{ !(contains(github.ref, 'dev') || contains(github.ref, 'main') || contains(github.head_ref, 'dev') || contains(github.head_ref, 'main')) }} runs-on: ubuntu-latest needs: [cache-deps] @@ -139,10 +141,5 @@ jobs: deploy-staging: if: github.ref == 'refs/heads/dev' - runs-on: ubuntu-latest needs: [cache-deps] - steps: - - uses: actions/checkout@v4 - with: - submodules: recursive - - uses: ./.github/workflows/deploy-staging.yml + uses: ./.github/workflows/deploy-staging.yml From e1708aae316de5ce8027724c93c0455c07a2186a Mon Sep 17 00:00:00 2001 From: Big Boss Date: Sun, 25 Feb 2024 21:14:39 -0600 Subject: [PATCH 008/177] fix deploy --- .github/workflows/ci.yml | 7 +++++++ .github/workflows/deploy-staging.yml | 19 +++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ad7c40d6..aa386dbf4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -143,3 +143,10 @@ jobs: if: github.ref == 'refs/heads/dev' needs: [cache-deps] uses: ./.github/workflows/deploy-staging.yml + secrets: + VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} + VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} + VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} + SUPABASE_ACCESS_TOKEN: ${{ secrets.SUPABASE_ACCESS_TOKEN }} + STAGING_SUPABASE_PROJECT_ID: ${{ secrets.STAGING_SUPABASE_PROJECT_ID }} + STAGING_SUPABASE_DB_PASSWORD: ${{ secrets.STAGING_SUPABASE_DB_PASSWORD }} diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml index eff6e0d8e..81d68abb8 100644 --- a/.github/workflows/deploy-staging.yml +++ b/.github/workflows/deploy-staging.yml @@ -3,6 +3,25 @@ name: Deploy Staging on: workflow_dispatch: workflow_call: + secrets: + VERCEL_TOKEN: + description: 'Vercel token' + required: true + VERCEL_PROJECT_ID: + description: 'Vercel project id' + required: true + VERCEL_ORG_ID: + description: 'Vercel org id' + required: true + SUPABASE_ACCESS_TOKEN: + description: 'Supabase access token' + required: true + STAGING_SUPABASE_PROJECT_ID: + description: 'Staging Supabase project id' + required: true + STAGING_SUPABASE_DB_PASSWORD: + description: 'Staging Supabase db password' + required: true concurrency: group: ${{ github.workflow }} From 5565266af1fcbdc0e1b99b53132a64fc7102088c Mon Sep 17 00:00:00 2001 From: Big Boss Date: Sun, 25 Feb 2024 21:19:22 -0600 Subject: [PATCH 009/177] deploy it --- .github/actions/deploy/action.yml | 9 ++++----- .github/actions/supabase-deploy/action.yml | 2 +- .github/actions/vercel-deploy/action.yml | 21 +++++++++++++++++++++ 3 files changed, 26 insertions(+), 6 deletions(-) diff --git a/.github/actions/deploy/action.yml b/.github/actions/deploy/action.yml index 43925f61e..aecaf683a 100644 --- a/.github/actions/deploy/action.yml +++ b/.github/actions/deploy/action.yml @@ -37,9 +37,8 @@ runs: uses: ./.github/actions/supabase-deploy with: supabase-project-id: ${{ inputs.supabase-project-id }} - env: - SUPABASE_ACCESS_TOKEN: ${{ inputs.supabase-access-token }} - SUPABASE_DB_PASSWORD: ${{ inputs.supabase-db-password }} + supabase-access-token: ${{ inputs.supabase-access-token }} + supabase-db-password: ${{ inputs.supabase-db-password }} - name: Extract Branch id: extract-branch uses: ./.github/actions/extract-branch @@ -51,9 +50,9 @@ runs: uses: ./.github/actions/vercel-deploy with: vercel-token: ${{ inputs.vercel-token }} + vercel-org-id: ${{ inputs.vercel-org-id }} + vercel-project-id: ${{ inputs.vercel-project-id }} public-hostname: ${{ steps.extract-branch.outputs.public-hostname }} production: ${{ inputs.production }} env: - VERCEL_ORG_ID: ${{ inputs.vercel-org-id }} - VERCEL_PROJECT_ID: ${{ inputs.vercel-project-id }} YARN_ENABLE_HARDENED_MODE: "0" diff --git a/.github/actions/supabase-deploy/action.yml b/.github/actions/supabase-deploy/action.yml index b008dacaa..bb4fbdf59 100644 --- a/.github/actions/supabase-deploy/action.yml +++ b/.github/actions/supabase-deploy/action.yml @@ -1,4 +1,4 @@ -name: Supabase Deploy Migratinos +name: Supabase Deploy Migrations description: "Deploy the project to Supabase. Run migrations against the database." inputs: supabase-project-id: diff --git a/.github/actions/vercel-deploy/action.yml b/.github/actions/vercel-deploy/action.yml index 644481733..91298d749 100644 --- a/.github/actions/vercel-deploy/action.yml +++ b/.github/actions/vercel-deploy/action.yml @@ -4,6 +4,12 @@ inputs: vercel-token: description: "The Vercel token to use for deployment." required: true + vercel-org-id: + description: "The Vercel organization ID to use for deployment." + required: true + vercel-project-id: + description: "The Vercel project ID to use for deployment." + required: true public-hostname: description: "The public hostname alias to use for the deployment." required: false @@ -25,12 +31,21 @@ runs: - name: Switch to Vercel Send team shell: bash run: bunx vercel --token=${{ inputs.vercel-token }} team switch 0xsend + env: + VERCEL_ORG_ID: ${{ inputs.vercel-org-id }} + VERCEL_PROJECT_ID: ${{ inputs.vercel-project-id }} - name: Pull Vercel Environment Information shell: bash run: bunx vercel --token=${{ inputs.vercel-token }} pull --yes --environment=preview + env: + VERCEL_ORG_ID: ${{ inputs.vercel-org-id }} + VERCEL_PROJECT_ID: ${{ inputs.vercel-project-id }} - name: Build Project Artifacts shell: bash run: bunx vercel --token=${{ inputs.vercel-token }} build + env: + VERCEL_ORG_ID: ${{ inputs.vercel-org-id }} + VERCEL_PROJECT_ID: ${{ inputs.vercel-project-id }} - name: Deploy Project Artifacts to Vercel id: deploy shell: bash @@ -42,9 +57,15 @@ runs: fi echo "deployment_url=$(cat deployment-url.txt)" >> $GITHUB_OUTPUT echo ::notice::Deployment URL: $(cat deployment-url.txt) + env: + VERCEL_ORG_ID: ${{ inputs.vercel-org-id }} + VERCEL_PROJECT_ID: ${{ inputs.vercel-project-id }} - name: Set Vercel Branch Alias if: ${{ inputs.public-hostname != '' }} shell: bash run: | bunx vercel --token=${{ inputs.vercel-token }} -S 0xsend alias set ${{ steps.deploy.outputs.deployment_url }} ${{ inputs.public-hostname }} echo ::notice::Vercel Alias URL https://${{ inputs.public-hostname }}/ + env: + VERCEL_ORG_ID: ${{ inputs.vercel-org-id }} + VERCEL_PROJECT_ID: ${{ inputs.vercel-project-id }} From c6c90ede99294b086cbbfc2d7525d1e76c002c59 Mon Sep 17 00:00:00 2001 From: Big Boss Date: Sun, 25 Feb 2024 21:29:09 -0600 Subject: [PATCH 010/177] fix public hostname deploy --- .github/actions/deploy/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/deploy/action.yml b/.github/actions/deploy/action.yml index aecaf683a..8cd944667 100644 --- a/.github/actions/deploy/action.yml +++ b/.github/actions/deploy/action.yml @@ -45,14 +45,14 @@ runs: - name: Public Hostname shell: bash id: public-hostname - run: echo "::set-output name=public-hostname::${{ steps.extract-branch.outputs.branch }}" + run: echo "public-hostname=sendapp-${{steps.extract-branch.outputs.branch}}-0xsend.vercel.app" >> $GITHUB_OUTPUT - name: Vercel Deploy uses: ./.github/actions/vercel-deploy with: vercel-token: ${{ inputs.vercel-token }} vercel-org-id: ${{ inputs.vercel-org-id }} vercel-project-id: ${{ inputs.vercel-project-id }} - public-hostname: ${{ steps.extract-branch.outputs.public-hostname }} + public-hostname: ${{ steps.public-hostname.outputs.public-hostname }} production: ${{ inputs.production }} env: YARN_ENABLE_HARDENED_MODE: "0" From 2622baf23e2c27e51d48359139653986d87c61d7 Mon Sep 17 00:00:00 2001 From: BigBoss Date: Mon, 26 Feb 2024 10:54:03 -0600 Subject: [PATCH 011/177] fix and update CI * do not always wagmi generate, ignore localnet, update supabase types * fix CI.yml logic * fix vercel deploy team scope --- .github/actions/vercel-deploy/action.yml | 16 +- .github/workflows/ci.yml | 4 +- Tiltfile | 2 +- packages/contracts/.gitignore | 2 + .../1/run-latest.json | 61 -------- .../845337/run-latest.json | 70 --------- .../845337/run-latest.json | 141 ------------------ packages/wagmi/package.json | 2 +- supabase/database-generated.types.ts | 132 ++++++++++++++-- 9 files changed, 132 insertions(+), 298 deletions(-) delete mode 100644 packages/contracts/broadcast/CreateSendSnapshot.s.sol/1/run-latest.json delete mode 100644 packages/contracts/broadcast/DeploySendAccountFactory.s.sol/845337/run-latest.json delete mode 100644 packages/contracts/broadcast/DeploySendVerifier.s.sol/845337/run-latest.json diff --git a/.github/actions/vercel-deploy/action.yml b/.github/actions/vercel-deploy/action.yml index 91298d749..b0ad55bbd 100644 --- a/.github/actions/vercel-deploy/action.yml +++ b/.github/actions/vercel-deploy/action.yml @@ -10,6 +10,10 @@ inputs: vercel-project-id: description: "The Vercel project ID to use for deployment." required: true + vercel-scope: + description: "The Vercel scope to use for deployment." + required: false + default: "0xsend" public-hostname: description: "The public hostname alias to use for the deployment." required: false @@ -30,19 +34,19 @@ runs: run: echo "::add-mask::${{ inputs.vercel-token }}" - name: Switch to Vercel Send team shell: bash - run: bunx vercel --token=${{ inputs.vercel-token }} team switch 0xsend + run: bunx vercel --token=${{ inputs.vercel-token }} team switch ${{ inputs.vercel-scope }} env: VERCEL_ORG_ID: ${{ inputs.vercel-org-id }} VERCEL_PROJECT_ID: ${{ inputs.vercel-project-id }} - name: Pull Vercel Environment Information shell: bash - run: bunx vercel --token=${{ inputs.vercel-token }} pull --yes --environment=preview + run: bunx vercel --token=${{ inputs.vercel-token }} -S ${{ inputs.vercel-scope }} pull --yes --environment=preview env: VERCEL_ORG_ID: ${{ inputs.vercel-org-id }} VERCEL_PROJECT_ID: ${{ inputs.vercel-project-id }} - name: Build Project Artifacts shell: bash - run: bunx vercel --token=${{ inputs.vercel-token }} build + run: bunx vercel --token=${{ inputs.vercel-token }} -S ${{ inputs.vercel-scope }} build env: VERCEL_ORG_ID: ${{ inputs.vercel-org-id }} VERCEL_PROJECT_ID: ${{ inputs.vercel-project-id }} @@ -51,9 +55,9 @@ runs: shell: bash run: | if [[ ${{ inputs.production }} == "true" ]]; then - bunx vercel --token=${{ inputs.vercel-token }} deploy --prebuilt --prod > deployment-url.txt + bunx vercel --token=${{ inputs.vercel-token }} -S ${{ inputs.vercel-scope }} deploy --prebuilt --prod > deployment-url.txt else - bunx vercel --token=${{ inputs.vercel-token }} deploy --prebuilt > deployment-url.txt + bunx vercel --token=${{ inputs.vercel-token }} -S ${{ inputs.vercel-scope }} deploy --prebuilt > deployment-url.txt fi echo "deployment_url=$(cat deployment-url.txt)" >> $GITHUB_OUTPUT echo ::notice::Deployment URL: $(cat deployment-url.txt) @@ -64,7 +68,7 @@ runs: if: ${{ inputs.public-hostname != '' }} shell: bash run: | - bunx vercel --token=${{ inputs.vercel-token }} -S 0xsend alias set ${{ steps.deploy.outputs.deployment_url }} ${{ inputs.public-hostname }} + bunx vercel --token=${{ inputs.vercel-token }} -S ${{ inputs.vercel-scope }} alias set ${{ steps.deploy.outputs.deployment_url }} ${{ inputs.public-hostname }} echo ::notice::Vercel Alias URL https://${{ inputs.public-hostname }}/ env: VERCEL_ORG_ID: ${{ inputs.vercel-org-id }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa386dbf4..31efeb595 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: ci: # skip if on dev and main (but not PRS to dev or main) - if: ${{ !(contains(github.ref, 'dev') || contains(github.ref, 'main')) }} + if: ${{ github.ref != 'refs/head/dev' && github.ref != 'refs/head/main' }} runs-on: ubuntu-latest needs: [cache-deps] env: @@ -96,7 +96,7 @@ jobs: vercel-deploy-preview: # **always** skip if on dev and main since it will be deployed with another workflow - if: ${{ !(contains(github.ref, 'dev') || contains(github.ref, 'main') || contains(github.head_ref, 'dev') || contains(github.head_ref, 'main')) }} + if: ${{ github.ref != 'refs/head/dev' && github.ref != 'refs/head/main' && github.head_ref != 'refs/head/dev' && github.head_ref != 'refs/head/main' }} runs-on: ubuntu-latest needs: [cache-deps] diff --git a/Tiltfile b/Tiltfile index 873913828..6fd11346a 100644 --- a/Tiltfile +++ b/Tiltfile @@ -70,7 +70,7 @@ local_resource( local_resource( "wagmi:generate", - "yarn wagmi build", + "yarn wagmi generate", allow_parallel = True, labels = labels, resource_deps = [ diff --git a/packages/contracts/.gitignore b/packages/contracts/.gitignore index e47c09bfd..869b26734 100644 --- a/packages/contracts/.gitignore +++ b/packages/contracts/.gitignore @@ -3,6 +3,8 @@ cache/ out/ !/broadcast /broadcast/*/31337/ +/broadcast/*/845337/ /broadcast/**/dry-run/ +/broadcast/CreateSendSnapshot.s.sol/ /broadcast/**/run-*.json !/broadcast/**/run-latest.json diff --git a/packages/contracts/broadcast/CreateSendSnapshot.s.sol/1/run-latest.json b/packages/contracts/broadcast/CreateSendSnapshot.s.sol/1/run-latest.json deleted file mode 100644 index 59d4c30a5..000000000 --- a/packages/contracts/broadcast/CreateSendSnapshot.s.sol/1/run-latest.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "transactions": [ - { - "hash": "0x8dcc4fd59276c0f41837739b2e9ec03f7880eb9fa605d25adebc3d1e41c378d1", - "transactionType": "CALL", - "contractName": null, - "contractAddress": "0x3f14920c99BEB920Afa163031c4e47a3e03B3e4A", - "function": "createSnapshot()", - "arguments": [], - "transaction": { - "type": "0x02", - "from": "0x647eb43401e13e995d89cf26cd87e68890ee3f89", - "to": "0x3f14920c99beb920afa163031c4e47a3e03b3e4a", - "gas": "0xa271", - "value": "0x0", - "data": "0x1504d8f0", - "nonce": "0x6", - "accessList": [] - }, - "additionalContracts": [], - "isFixedGasLimit": false - } - ], - "receipts": [ - { - "transactionHash": "0x8dcc4fd59276c0f41837739b2e9ec03f7880eb9fa605d25adebc3d1e41c378d1", - "transactionIndex": "0xb", - "blockHash": "0xdf0c67e1d089f542cf34ee42433b23f45d2a03c5f4f46ce7db628e2687350b8f", - "blockNumber": "0x1240191", - "from": "0x647eb43401e13e995D89Cf26cD87e68890EE3f89", - "to": "0x3f14920c99BEB920Afa163031c4e47a3e03B3e4A", - "cumulativeGasUsed": "0xd3471", - "gasUsed": "0x759c", - "contractAddress": null, - "logs": [ - { - "address": "0x3f14920c99BEB920Afa163031c4e47a3e03B3e4A", - "topics": ["0x8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb67"], - "data": "0x0000000000000000000000000000000000000000000000000000000000000003", - "blockHash": "0xdf0c67e1d089f542cf34ee42433b23f45d2a03c5f4f46ce7db628e2687350b8f", - "blockNumber": "0x1240191", - "transactionHash": "0x8dcc4fd59276c0f41837739b2e9ec03f7880eb9fa605d25adebc3d1e41c378d1", - "transactionIndex": "0xb", - "logIndex": "0x19", - "removed": false - } - ], - "status": "0x1", - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000010000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "type": "0x2", - "effectiveGasPrice": "0x83bdc6f75" - } - ], - "libraries": [], - "pending": [], - "returns": {}, - "timestamp": 1706830769, - "chain": 1, - "multi": false, - "commit": "ade58c6" -} diff --git a/packages/contracts/broadcast/DeploySendAccountFactory.s.sol/845337/run-latest.json b/packages/contracts/broadcast/DeploySendAccountFactory.s.sol/845337/run-latest.json deleted file mode 100644 index d50b57dd5..000000000 --- a/packages/contracts/broadcast/DeploySendAccountFactory.s.sol/845337/run-latest.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "transactions": [ - { - "hash": "0xc8fefbbdfad6931dd4d885c307075541be32fb7022184b2e87d32ac7773c5250", - "transactionType": "CREATE2", - "contractName": "DaimoAccountFactory", - "contractAddress": "0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0", - "function": null, - "arguments": [ - "0x0000000071727De22E5E9d8BAf0edAc6f37da032", - "0xdAAb03239f5CC5b3452837E557295F790D9ab319" - ], - "transaction": { - "type": "0x02", - "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "to": "0x4e59b44847b379578588920ca78fbf26c0b4956c", - "gas": "0x3c1267", - "value": "0x0", - "data": "0x000000000000000000000000000000000000000000000000000000000000000060e060405234801561001057600080fd5b506040516134ae3803806134ae83398101604081905261002f916100bf565b6001600160a01b0380831660a052811660c052604051829082906100529061009a565b6001600160a01b03928316815291166020820152604001604051809103906000f080158015610085573d6000803e3d6000fd5b506001600160a01b0316608052506100f99050565b61263980610e7583390190565b6001600160a01b03811681146100bc57600080fd5b50565b600080604083850312156100d257600080fd5b82516100dd816100a7565b60208401519092506100ee816100a7565b809150509250929050565b60805160a05160c051610d3a61013b600039600060f001526000818161012601526101cd015260008181607a0152818161025c01526103850152610d3a6000f3fe608060405260043610620000615760003560e01c80632b7ac3f311620000485780632b7ac3f314620000dc578063b0d691fe1462000112578063cca14965146200014857600080fd5b806311464fbe14620000665780632a0c114d14620000c5575b600080fd5b3480156200007357600080fd5b506200009c7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b6200009c620000d636600462000574565b6200016d565b348015620000e957600080fd5b506200009c7f000000000000000000000000000000000000000000000000000000000000000081565b3480156200011f57600080fd5b506200009c7f000000000000000000000000000000000000000000000000000000000000000081565b3480156200015557600080fd5b506200009c6200016736600462000574565b62000353565b6000806200017f878787878762000353565b905034156200022e576040517fb760faf900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063b760faf99034906024016000604051808303818588803b1580156200021357600080fd5b505af115801562000228573d6000803e3d6000fd5b50505050505b73ffffffffffffffffffffffffffffffffffffffff81163b801562000256575090506200034a565b8360001b7f00000000000000000000000000000000000000000000000000000000000000008989898960405160240162000294949392919062000694565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fc73ba52600000000000000000000000000000000000000000000000000000000179052516200031690620004e8565b620003239291906200084a565b8190604051809103906000f590508015801562000344573d6000803e3d6000fd5b50925050505b95945050505050565b60006200049e8260001b604051806020016200036f90620004e8565b6020820181038252601f19601f820116604052507f000000000000000000000000000000000000000000000000000000000000000089898989604051602401620003bd949392919062000694565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152918152602080830180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fc73ba52600000000000000000000000000000000000000000000000000000000179052905162000444939291016200084a565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815290829052620004829291602001620008ba565b60405160208183030381529060405280519060200120620004a8565b9695505050505050565b6000620004b7838330620004be565b9392505050565b6000604051836040820152846020820152828152600b8101905060ff815360559020949350505050565b61041780620008ee83390190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008083601f8401126200053857600080fd5b50813567ffffffffffffffff8111156200055157600080fd5b6020830191508360208260051b85010111156200056d57600080fd5b9250929050565b600080600080600060a086880312156200058d57600080fd5b853560ff811681146200059f57600080fd5b94506020603f87018813620005b357600080fd5b6040516040810167ffffffffffffffff8282108183111715620005da57620005da620004f6565b8160405282915060608a018b811115620005f357600080fd5b60208b015b81811015620006115780358452928501928501620005f8565b508398508035945050808411156200062857600080fd5b505050620006398882890162000525565b96999598509660800135949350505050565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b60006080820160ff8716835260208084018760005b6002811015620006c857815183529183019190830190600101620006a9565b5050506060608060608601528286845260a08601905060a08760051b87010193508760005b8881101562000814577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6088870301835281357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa18b36030181126200075057600080fd5b8a01803573ffffffffffffffffffffffffffffffffffffffff81168082146200077857600080fd5b8852508086013586880152604080820135368390037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1018112620007bb57600080fd5b90910186810191903567ffffffffffffffff811115620007da57600080fd5b803603831315620007ea57600080fd5b86828a0152620007fe878a0182856200064b565b98505050928501925090840190600101620006ed565b50939a9950505050505050505050565b60005b838110156200084157818101518382015260200162000827565b50506000910152565b73ffffffffffffffffffffffffffffffffffffffff8316815260406020820152600082518060408401526200088781606085016020870162000824565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016060019392505050565b60008351620008ce81846020880162000824565b835190830190620008e481836020880162000824565b0194935050505056fe608060405260405161041738038061041783398101604081905261002291610268565b61002c8282610033565b5050610352565b61003c82610092565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561008657610081828261010e565b505050565b61008e610185565b5050565b806001600160a01b03163b6000036100cd57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b03168460405161012b9190610336565b600060405180830381855af49150503d8060008114610166576040519150601f19603f3d011682016040523d82523d6000602084013e61016b565b606091505b50909250905061017c8583836101a6565b95945050505050565b34156101a45760405163b398979f60e01b815260040160405180910390fd5b565b6060826101bb576101b682610205565b6101fe565b81511580156101d257506001600160a01b0384163b155b156101fb57604051639996b31560e01b81526001600160a01b03851660048201526024016100c4565b50805b9392505050565b8051156102155780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b634e487b7160e01b600052604160045260246000fd5b60005b8381101561025f578181015183820152602001610247565b50506000910152565b6000806040838503121561027b57600080fd5b82516001600160a01b038116811461029257600080fd5b60208401519092506001600160401b03808211156102af57600080fd5b818501915085601f8301126102c357600080fd5b8151818111156102d5576102d561022e565b604051601f8201601f19908116603f011681019083821181831017156102fd576102fd61022e565b8160405282815288602084870101111561031657600080fd5b610327836020830160208801610244565b80955050505050509250929050565b60008251610348818460208701610244565b9190910192915050565b60b7806103606000396000f3fe6080604052600a600c565b005b60186014601a565b605e565b565b600060597f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b905090565b3660008037600080366000845af43d6000803e808015607c573d6000f35b3d6000fdfea2646970667358221220aa51a5c8306bbae41fc40c01dd863eedfa89f6ee08a78f81a42bdf33defd382c64736f6c63430008170033a2646970667358221220eb3b71bac8237fa121d489e76c88442a3a737348eaf624054001f781e62fa85c64736f6c6343000817003361010060405230608052601460e0523480156200001b57600080fd5b5060405162002639380380620026398339810160408190526200003e916200012d565b6001600160a01b0380831660a052811660c0526200005b62000063565b50506200016c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000b45760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001145780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6001600160a01b03811681146200011457600080fd5b600080604083850312156200014157600080fd5b82516200014e8162000117565b6020840151909250620001618162000117565b809150509250929050565b60805160a05160c05160e051612462620001d76000396000818161035501526109da01526000818161019901526110a3015260008181610301015281816104730152818161052c0152610cf501526000818161146801528181611491015261171001526124626000f3fe6080604052600436106100f75760003560e01c80639875b4db1161008a578063bafa710811610059578063bafa710814610343578063c73ba52614610377578063c90e3c5b14610397578063e97efb97146103b757600080fd5b80639875b4db1461026d578063ad3cb1cc14610299578063b0d691fe146102ef578063b3033ef21461032357600080fd5b80634f1ef286116100c65780634f1ef2861461020257806352d1902d14610215578063595f20d61461022a57806388b257091461024a57600080fd5b80631626ba7e1461010357806319822f7c146101595780632b7ac3f31461018757806334fcd5be146101e057600080fd5b366100fe57005b600080fd5b34801561010f57600080fd5b5061012361011e366004611ac4565b6103d5565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020015b60405180910390f35b34801561016557600080fd5b50610179610174366004611b40565b610459565b604051908152602001610150565b34801561019357600080fd5b506101bb7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610150565b3480156101ec57600080fd5b506102006101fb366004611be0565b610514565b005b610200610210366004611d4e565b610694565b34801561022157600080fd5b506101796106b3565b34801561023657600080fd5b50610179610245366004611dad565b6106e2565b34801561025657600080fd5b5061025f610707565b604051610150929190611dd7565b34801561027957600080fd5b506000546102879060ff1681565b60405160ff9091168152602001610150565b3480156102a557600080fd5b506102e26040518060400160405280600581526020017f352e302e3000000000000000000000000000000000000000000000000000000081525081565b6040516101509190611ee8565b3480156102fb57600080fd5b506101bb7f000000000000000000000000000000000000000000000000000000000000000081565b34801561032f57600080fd5b5061020061033e366004611efb565b610888565b34801561034f57600080fd5b506102877f000000000000000000000000000000000000000000000000000000000000000081565b34801561038357600080fd5b50610200610392366004611f8d565b610b02565b3480156103a357600080fd5b506102006103b2366004611ff3565b610df8565b3480156103c357600080fd5b506102006103d236600461200e565b50565b6000610403846040516020016103ed91815260200190565b604051602081830303815290604052848461102f565b1561042f57507f1626ba7e00000000000000000000000000000000000000000000000000000000610452565b507fffffffff000000000000000000000000000000000000000000000000000000005b9392505050565b60003373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146104ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6f6e6c7920656e74727920706f696e740000000000000000000000000000000060448201526064015b60405180910390fd5b6105098484611141565b90506104528261135c565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146105b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6f6e6c7920656e74727920706f696e740000000000000000000000000000000060448201526064016104f6565b60005b8181101561068f576106878383838181106105d3576105d36120ca565b90506020028101906105e591906120f9565b6105f3906020810190612137565b848484818110610605576106056120ca565b905060200281019061061791906120f9565b6020013585858581811061062d5761062d6120ca565b905060200281019061063f91906120f9565b61064d906040810190612152565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506113d392505050565b6001016105b6565b505050565b61069c611450565b6106a582611556565b6106af82826115bf565b5050565b60006106bd6116f8565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b600160205281600052604060002081600281106106fe57600080fd5b01549150829050565b600054606090819060ff1667ffffffffffffffff81111561072a5761072a611c4b565b60405190808252806020026020018201604052801561076357816020015b610750611a25565b8152602001906001900390816107485790505b5060005490925060ff1667ffffffffffffffff81111561078557610785611c4b565b6040519080825280602002602001820160405280156107ae578160200160208202803683370190505b5090506000805b61010081101561086e5760ff81166000908152600160205260409020548190156108655760ff8116600090815260016020526040908190208151808301928390529160029082845b8154815260200190600101908083116107fd575050505050858481518110610827576108276120ca565b602002602001018190525080848481518110610845576108456120ca565b60ff9092166020928302919091019091015282610861816121e6565b9350505b506001016107b5565b5060005460ff1681146108835761088361221e565b509091565b3330146108f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6f6e6c792073656c66000000000000000000000000000000000000000000000060448201526064016104f6565b60ff82166000908152600160205260409020541561096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6b657920616c726561647920657869737473000000000000000000000000000060448201526064016104f6565b80516109d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f6e6577206b65792063616e6e6f7420626520300000000000000000000000000060448201526064016104f6565b60005460ff7f00000000000000000000000000000000000000000000000000000000000000008116911610610a64576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6d6178206b65797320726561636865640000000000000000000000000000000060448201526064016104f6565b60ff82166000908152600160205260409020610a8290826002611a43565b506000805460ff169080610a958361224d565b91906101000a81548160ff021916908360ff160217905550503073ffffffffffffffffffffffffffffffffffffffff167f1d84cb7fa5da6303adc54870a915cbf91d2cf642fcc5ce470b79b774672018768383604051610af692919061226c565b60405180910390a25050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff16600081158015610b4d5750825b905060008267ffffffffffffffff166001148015610b6a5750303b155b905081158015610b78575080155b15610baf576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b84547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001660011785558315610c105784547fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff16680100000000000000001785555b60ff89166000908152600160205260409020610c2e90896002611a81565b50600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011781555b86811015610cda57610cd2888883818110610c7857610c786120ca565b9050602002810190610c8a91906120f9565b610c98906020810190612137565b898984818110610caa57610caa6120ca565b9050602002810190610cbc91906120f9565b602001358a8a8581811061062d5761062d6120ca565b600101610c5b565b5060405173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016907f9b44a2c7f9f0b5aa4e7da60d8a2325796c57f93a45559d66515743ffbd8a610390600090a23073ffffffffffffffffffffffffffffffffffffffff167f1d84cb7fa5da6303adc54870a915cbf91d2cf642fcc5ce470b79b774672018768a8a604051610d849291906122a7565b60405180910390a28315610ded5784547fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b333014610e61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6f6e6c792073656c66000000000000000000000000000000000000000000000060448201526064016104f6565b60ff8116600090815260016020526040902054610eda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6b657920646f6573206e6f74206578697374000000000000000000000000000060448201526064016104f6565b600054600160ff90911611610f4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f63616e6e6f742072656d6f7665206f6e6c79207369676e696e67206b6579000060448201526064016104f6565b60ff81166000908152600160205260408082208151808301928390529160029082845b815481526020019060010190808311610f6e5750506040805180820182526000808252602080830182905260ff8a1682526001905291909120949550610fbb949350915060029050611a43565b506000805460ff169080610fce836122c0565b91906101000a81548160ff021916908360ff160217905550503073ffffffffffffffffffffffffffffffffffffffff167fb1c618be842f3c0e753cfc3569dd3eafd446296dbe6db8af1d8cc92c7d0ba0538383604051610af692919061226c565b6000600182101561104257506000610452565b600083836000818110611057576110576120ca565b919091013560f81c600081815260016020819052604091829020805491015491517fdcae042c0000000000000000000000000000000000000000000000000000000081529294509250907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063dcae042c906110f5908a908a908a90889088906004016122fb565b602060405180830381865afa158015611112573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611136919061236d565b979650505050505050565b604080516060818101835260008083526020830181905292820183905290369083906000611173610100890189612152565b905090508060000361118d57600195505050505050611356565b600061119d6101008a018a612152565b60008181106111ae576111ae6120ca565b919091013560f81c91505060018190036112d35760078210156111da5760019650505050505050611356565b60006111ea6101008b018b612152565b6111f99160079160019161238f565b611202916123b9565b60d01c90506112156101008b018b612152565b61122391600790829061238f565b6040517fff0000000000000000000000000000000000000000000000000000000000000060f886901b1660208201527fffffffffffff000000000000000000000000000000000000000000000000000060d085901b166021820152602781018c90529197509550604701604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291815265ffffffffffff9092169185019190915295506112e2565b60019650505050505050611356565b6112ed86868661102f565b1561134b5761133e83600060d0826020015165ffffffffffff16901b60a0836040015165ffffffffffff16901b836000015173ffffffffffffffffffffffffffffffffffffffff1617179050919050565b9650505050505050611356565b600196505050505050505b92915050565b80156103d25760405160009033907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90849084818181858888f193505050503d80600081146113c7576040519150601f19603f3d011682016040523d82523d6000602084013e6113cc565b606091505b5050505050565b6000808473ffffffffffffffffffffffffffffffffffffffff1684846040516113fc9190612401565b60006040518083038185875af1925050503d8060008114611439576040519150601f19603f3d011682016040523d82523d6000602084013e61143e565b606091505b5091509150816113cc57805160208201fd5b3073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016148061151d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166115047f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614155b15611554576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b3330146103d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6f6e6c792073656c66000000000000000000000000000000000000000000000060448201526064016104f6565b8173ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611644575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261164191810190612413565b60015b611692576040517f4c9c8ce300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831660048201526024016104f6565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc81146116ee576040517faa1d49a4000000000000000000000000000000000000000000000000000000008152600481018290526024016104f6565b61068f8383611767565b3073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614611554576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611770826117ca565b60405173ffffffffffffffffffffffffffffffffffffffff8316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156117c25761068f8282611899565b6106af61191c565b8073ffffffffffffffffffffffffffffffffffffffff163b600003611833576040517f4c9c8ce300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff821660048201526024016104f6565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60606000808473ffffffffffffffffffffffffffffffffffffffff16846040516118c39190612401565b600060405180830381855af49150503d80600081146118fe576040519150601f19603f3d011682016040523d82523d6000602084013e611903565b606091505b5091509150611913858383611954565b95945050505050565b3415611554576040517fb398979f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60608261196957611964826119e3565b610452565b815115801561198d575073ffffffffffffffffffffffffffffffffffffffff84163b155b156119dc576040517f9996b31500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff851660048201526024016104f6565b5080610452565b8051156119f35780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405180604001604052806002906020820280368337509192915050565b8260028101928215611a71579160200282015b82811115611a71578251825591602001919060010190611a56565b50611a7d929150611aaf565b5090565b8260028101928215611a71579160200282015b82811115611a71578235825591602001919060010190611a94565b5b80821115611a7d5760008155600101611ab0565b600080600060408486031215611ad957600080fd5b83359250602084013567ffffffffffffffff80821115611af857600080fd5b818601915086601f830112611b0c57600080fd5b813581811115611b1b57600080fd5b876020828501011115611b2d57600080fd5b6020830194508093505050509250925092565b600080600060608486031215611b5557600080fd5b833567ffffffffffffffff811115611b6c57600080fd5b84016101208187031215611b7f57600080fd5b95602085013595506040909401359392505050565b60008083601f840112611ba657600080fd5b50813567ffffffffffffffff811115611bbe57600080fd5b6020830191508360208260051b8501011115611bd957600080fd5b9250929050565b60008060208385031215611bf357600080fd5b823567ffffffffffffffff811115611c0a57600080fd5b611c1685828601611b94565b90969095509350505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611c4657600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405160c0810167ffffffffffffffff81118282101715611c9d57611c9d611c4b565b60405290565b600082601f830112611cb457600080fd5b813567ffffffffffffffff80821115611ccf57611ccf611c4b565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715611d1557611d15611c4b565b81604052838152866020858801011115611d2e57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215611d6157600080fd5b611d6a83611c22565b9150602083013567ffffffffffffffff811115611d8657600080fd5b611d9285828601611ca3565b9150509250929050565b803560ff81168114611c4657600080fd5b60008060408385031215611dc057600080fd5b611dc983611d9c565b946020939093013593505050565b60408082528351828201819052600091906020906060850190828801855b82811015611e335781518460005b6002811015611e2057825182529187019190870190600101611e03565b5050509285019290840190600101611df5565b50505084810382860152855180825290820192508582019060005b81811015611e6d57825160ff1685529383019391830191600101611e4e565b5092979650505050505050565b60005b83811015611e95578181015183820152602001611e7d565b50506000910152565b60008151808452611eb6816020860160208601611e7a565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006104526020830184611e9e565b60008060608385031215611f0e57600080fd5b611f1783611d9c565b9150602084603f850112611f2a57600080fd5b6040516040810181811067ffffffffffffffff82111715611f4d57611f4d611c4b565b604052806060860187811115611f6257600080fd5b602087015b81811015611f7e5780358352918401918401611f67565b50505080925050509250929050565b60008060008060808587031215611fa357600080fd5b611fac85611d9c565b93506060850186811115611fbf57600080fd5b6020860193503567ffffffffffffffff811115611fdb57600080fd5b611fe787828801611b94565b95989497509550505050565b60006020828403121561200557600080fd5b61045282611d9c565b60006020828403121561202057600080fd5b813567ffffffffffffffff8082111561203857600080fd5b9083019060c0828603121561204c57600080fd5b612054611c7a565b82358281111561206357600080fd5b61206f87828601611ca3565b82525060208301358281111561208457600080fd5b61209087828601611ca3565b60208301525060408301356040820152606083013560608201526080830135608082015260a083013560a082015280935050505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa183360301811261212d57600080fd5b9190910192915050565b60006020828403121561214957600080fd5b61045282611c22565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261218757600080fd5b83018035915067ffffffffffffffff8211156121a257600080fd5b602001915036819003821315611bd957600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612217576122176121b7565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b600060ff821660ff8103612263576122636121b7565b60010192915050565b60ff831681526060810160208083018460005b600281101561229c5781518352918301919083019060010161227f565b505050509392505050565b60ff831681526060810160408360208401379392505050565b600060ff8216806122d3576122d36121b7565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0192915050565b60808152600061230e6080830188611e9e565b82810360208401528581528587602083013760006020878301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8801168201019150508360408301528260608301529695505050505050565b60006020828403121561237f57600080fd5b8151801515811461045257600080fd5b6000808585111561239f57600080fd5b838611156123ac57600080fd5b5050820193919092039150565b7fffffffffffff000000000000000000000000000000000000000000000000000081358181169160068510156123f95780818660060360031b1b83161692505b505092915050565b6000825161212d818460208701611e7a565b60006020828403121561242557600080fd5b505191905056fea264697066735822122014c40ddac011b61bea93373f40e889fa84eb78c7f51961e9b8bf1daf9fc5881264736f6c634300081700330000000000000000000000000000000071727de22e5e9d8baf0edac6f37da032000000000000000000000000daab03239f5cc5b3452837e557295f790d9ab319", - "nonce": "0x10", - "accessList": [] - }, - "additionalContracts": [ - { - "transactionType": "CREATE", - "address": "0xeAF864Fb577F48c196396927F0055f205a679a8A", - "initCode": "0x61010060405230608052601460e0523480156200001b57600080fd5b5060405162002639380380620026398339810160408190526200003e916200012d565b6001600160a01b0380831660a052811660c0526200005b62000063565b50506200016c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000b45760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001145780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6001600160a01b03811681146200011457600080fd5b600080604083850312156200014157600080fd5b82516200014e8162000117565b6020840151909250620001618162000117565b809150509250929050565b60805160a05160c05160e051612462620001d76000396000818161035501526109da01526000818161019901526110a3015260008181610301015281816104730152818161052c0152610cf501526000818161146801528181611491015261171001526124626000f3fe6080604052600436106100f75760003560e01c80639875b4db1161008a578063bafa710811610059578063bafa710814610343578063c73ba52614610377578063c90e3c5b14610397578063e97efb97146103b757600080fd5b80639875b4db1461026d578063ad3cb1cc14610299578063b0d691fe146102ef578063b3033ef21461032357600080fd5b80634f1ef286116100c65780634f1ef2861461020257806352d1902d14610215578063595f20d61461022a57806388b257091461024a57600080fd5b80631626ba7e1461010357806319822f7c146101595780632b7ac3f31461018757806334fcd5be146101e057600080fd5b366100fe57005b600080fd5b34801561010f57600080fd5b5061012361011e366004611ac4565b6103d5565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020015b60405180910390f35b34801561016557600080fd5b50610179610174366004611b40565b610459565b604051908152602001610150565b34801561019357600080fd5b506101bb7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610150565b3480156101ec57600080fd5b506102006101fb366004611be0565b610514565b005b610200610210366004611d4e565b610694565b34801561022157600080fd5b506101796106b3565b34801561023657600080fd5b50610179610245366004611dad565b6106e2565b34801561025657600080fd5b5061025f610707565b604051610150929190611dd7565b34801561027957600080fd5b506000546102879060ff1681565b60405160ff9091168152602001610150565b3480156102a557600080fd5b506102e26040518060400160405280600581526020017f352e302e3000000000000000000000000000000000000000000000000000000081525081565b6040516101509190611ee8565b3480156102fb57600080fd5b506101bb7f000000000000000000000000000000000000000000000000000000000000000081565b34801561032f57600080fd5b5061020061033e366004611efb565b610888565b34801561034f57600080fd5b506102877f000000000000000000000000000000000000000000000000000000000000000081565b34801561038357600080fd5b50610200610392366004611f8d565b610b02565b3480156103a357600080fd5b506102006103b2366004611ff3565b610df8565b3480156103c357600080fd5b506102006103d236600461200e565b50565b6000610403846040516020016103ed91815260200190565b604051602081830303815290604052848461102f565b1561042f57507f1626ba7e00000000000000000000000000000000000000000000000000000000610452565b507fffffffff000000000000000000000000000000000000000000000000000000005b9392505050565b60003373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146104ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6f6e6c7920656e74727920706f696e740000000000000000000000000000000060448201526064015b60405180910390fd5b6105098484611141565b90506104528261135c565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146105b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6f6e6c7920656e74727920706f696e740000000000000000000000000000000060448201526064016104f6565b60005b8181101561068f576106878383838181106105d3576105d36120ca565b90506020028101906105e591906120f9565b6105f3906020810190612137565b848484818110610605576106056120ca565b905060200281019061061791906120f9565b6020013585858581811061062d5761062d6120ca565b905060200281019061063f91906120f9565b61064d906040810190612152565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506113d392505050565b6001016105b6565b505050565b61069c611450565b6106a582611556565b6106af82826115bf565b5050565b60006106bd6116f8565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b600160205281600052604060002081600281106106fe57600080fd5b01549150829050565b600054606090819060ff1667ffffffffffffffff81111561072a5761072a611c4b565b60405190808252806020026020018201604052801561076357816020015b610750611a25565b8152602001906001900390816107485790505b5060005490925060ff1667ffffffffffffffff81111561078557610785611c4b565b6040519080825280602002602001820160405280156107ae578160200160208202803683370190505b5090506000805b61010081101561086e5760ff81166000908152600160205260409020548190156108655760ff8116600090815260016020526040908190208151808301928390529160029082845b8154815260200190600101908083116107fd575050505050858481518110610827576108276120ca565b602002602001018190525080848481518110610845576108456120ca565b60ff9092166020928302919091019091015282610861816121e6565b9350505b506001016107b5565b5060005460ff1681146108835761088361221e565b509091565b3330146108f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6f6e6c792073656c66000000000000000000000000000000000000000000000060448201526064016104f6565b60ff82166000908152600160205260409020541561096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6b657920616c726561647920657869737473000000000000000000000000000060448201526064016104f6565b80516109d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f6e6577206b65792063616e6e6f7420626520300000000000000000000000000060448201526064016104f6565b60005460ff7f00000000000000000000000000000000000000000000000000000000000000008116911610610a64576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6d6178206b65797320726561636865640000000000000000000000000000000060448201526064016104f6565b60ff82166000908152600160205260409020610a8290826002611a43565b506000805460ff169080610a958361224d565b91906101000a81548160ff021916908360ff160217905550503073ffffffffffffffffffffffffffffffffffffffff167f1d84cb7fa5da6303adc54870a915cbf91d2cf642fcc5ce470b79b774672018768383604051610af692919061226c565b60405180910390a25050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff16600081158015610b4d5750825b905060008267ffffffffffffffff166001148015610b6a5750303b155b905081158015610b78575080155b15610baf576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b84547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001660011785558315610c105784547fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff16680100000000000000001785555b60ff89166000908152600160205260409020610c2e90896002611a81565b50600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011781555b86811015610cda57610cd2888883818110610c7857610c786120ca565b9050602002810190610c8a91906120f9565b610c98906020810190612137565b898984818110610caa57610caa6120ca565b9050602002810190610cbc91906120f9565b602001358a8a8581811061062d5761062d6120ca565b600101610c5b565b5060405173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016907f9b44a2c7f9f0b5aa4e7da60d8a2325796c57f93a45559d66515743ffbd8a610390600090a23073ffffffffffffffffffffffffffffffffffffffff167f1d84cb7fa5da6303adc54870a915cbf91d2cf642fcc5ce470b79b774672018768a8a604051610d849291906122a7565b60405180910390a28315610ded5784547fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b333014610e61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6f6e6c792073656c66000000000000000000000000000000000000000000000060448201526064016104f6565b60ff8116600090815260016020526040902054610eda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6b657920646f6573206e6f74206578697374000000000000000000000000000060448201526064016104f6565b600054600160ff90911611610f4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f63616e6e6f742072656d6f7665206f6e6c79207369676e696e67206b6579000060448201526064016104f6565b60ff81166000908152600160205260408082208151808301928390529160029082845b815481526020019060010190808311610f6e5750506040805180820182526000808252602080830182905260ff8a1682526001905291909120949550610fbb949350915060029050611a43565b506000805460ff169080610fce836122c0565b91906101000a81548160ff021916908360ff160217905550503073ffffffffffffffffffffffffffffffffffffffff167fb1c618be842f3c0e753cfc3569dd3eafd446296dbe6db8af1d8cc92c7d0ba0538383604051610af692919061226c565b6000600182101561104257506000610452565b600083836000818110611057576110576120ca565b919091013560f81c600081815260016020819052604091829020805491015491517fdcae042c0000000000000000000000000000000000000000000000000000000081529294509250907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063dcae042c906110f5908a908a908a90889088906004016122fb565b602060405180830381865afa158015611112573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611136919061236d565b979650505050505050565b604080516060818101835260008083526020830181905292820183905290369083906000611173610100890189612152565b905090508060000361118d57600195505050505050611356565b600061119d6101008a018a612152565b60008181106111ae576111ae6120ca565b919091013560f81c91505060018190036112d35760078210156111da5760019650505050505050611356565b60006111ea6101008b018b612152565b6111f99160079160019161238f565b611202916123b9565b60d01c90506112156101008b018b612152565b61122391600790829061238f565b6040517fff0000000000000000000000000000000000000000000000000000000000000060f886901b1660208201527fffffffffffff000000000000000000000000000000000000000000000000000060d085901b166021820152602781018c90529197509550604701604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291815265ffffffffffff9092169185019190915295506112e2565b60019650505050505050611356565b6112ed86868661102f565b1561134b5761133e83600060d0826020015165ffffffffffff16901b60a0836040015165ffffffffffff16901b836000015173ffffffffffffffffffffffffffffffffffffffff1617179050919050565b9650505050505050611356565b600196505050505050505b92915050565b80156103d25760405160009033907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90849084818181858888f193505050503d80600081146113c7576040519150601f19603f3d011682016040523d82523d6000602084013e6113cc565b606091505b5050505050565b6000808473ffffffffffffffffffffffffffffffffffffffff1684846040516113fc9190612401565b60006040518083038185875af1925050503d8060008114611439576040519150601f19603f3d011682016040523d82523d6000602084013e61143e565b606091505b5091509150816113cc57805160208201fd5b3073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016148061151d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166115047f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614155b15611554576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b3330146103d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6f6e6c792073656c66000000000000000000000000000000000000000000000060448201526064016104f6565b8173ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611644575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261164191810190612413565b60015b611692576040517f4c9c8ce300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831660048201526024016104f6565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc81146116ee576040517faa1d49a4000000000000000000000000000000000000000000000000000000008152600481018290526024016104f6565b61068f8383611767565b3073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614611554576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611770826117ca565b60405173ffffffffffffffffffffffffffffffffffffffff8316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156117c25761068f8282611899565b6106af61191c565b8073ffffffffffffffffffffffffffffffffffffffff163b600003611833576040517f4c9c8ce300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff821660048201526024016104f6565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60606000808473ffffffffffffffffffffffffffffffffffffffff16846040516118c39190612401565b600060405180830381855af49150503d80600081146118fe576040519150601f19603f3d011682016040523d82523d6000602084013e611903565b606091505b5091509150611913858383611954565b95945050505050565b3415611554576040517fb398979f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60608261196957611964826119e3565b610452565b815115801561198d575073ffffffffffffffffffffffffffffffffffffffff84163b155b156119dc576040517f9996b31500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff851660048201526024016104f6565b5080610452565b8051156119f35780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405180604001604052806002906020820280368337509192915050565b8260028101928215611a71579160200282015b82811115611a71578251825591602001919060010190611a56565b50611a7d929150611aaf565b5090565b8260028101928215611a71579160200282015b82811115611a71578235825591602001919060010190611a94565b5b80821115611a7d5760008155600101611ab0565b600080600060408486031215611ad957600080fd5b83359250602084013567ffffffffffffffff80821115611af857600080fd5b818601915086601f830112611b0c57600080fd5b813581811115611b1b57600080fd5b876020828501011115611b2d57600080fd5b6020830194508093505050509250925092565b600080600060608486031215611b5557600080fd5b833567ffffffffffffffff811115611b6c57600080fd5b84016101208187031215611b7f57600080fd5b95602085013595506040909401359392505050565b60008083601f840112611ba657600080fd5b50813567ffffffffffffffff811115611bbe57600080fd5b6020830191508360208260051b8501011115611bd957600080fd5b9250929050565b60008060208385031215611bf357600080fd5b823567ffffffffffffffff811115611c0a57600080fd5b611c1685828601611b94565b90969095509350505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611c4657600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405160c0810167ffffffffffffffff81118282101715611c9d57611c9d611c4b565b60405290565b600082601f830112611cb457600080fd5b813567ffffffffffffffff80821115611ccf57611ccf611c4b565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715611d1557611d15611c4b565b81604052838152866020858801011115611d2e57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215611d6157600080fd5b611d6a83611c22565b9150602083013567ffffffffffffffff811115611d8657600080fd5b611d9285828601611ca3565b9150509250929050565b803560ff81168114611c4657600080fd5b60008060408385031215611dc057600080fd5b611dc983611d9c565b946020939093013593505050565b60408082528351828201819052600091906020906060850190828801855b82811015611e335781518460005b6002811015611e2057825182529187019190870190600101611e03565b5050509285019290840190600101611df5565b50505084810382860152855180825290820192508582019060005b81811015611e6d57825160ff1685529383019391830191600101611e4e565b5092979650505050505050565b60005b83811015611e95578181015183820152602001611e7d565b50506000910152565b60008151808452611eb6816020860160208601611e7a565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006104526020830184611e9e565b60008060608385031215611f0e57600080fd5b611f1783611d9c565b9150602084603f850112611f2a57600080fd5b6040516040810181811067ffffffffffffffff82111715611f4d57611f4d611c4b565b604052806060860187811115611f6257600080fd5b602087015b81811015611f7e5780358352918401918401611f67565b50505080925050509250929050565b60008060008060808587031215611fa357600080fd5b611fac85611d9c565b93506060850186811115611fbf57600080fd5b6020860193503567ffffffffffffffff811115611fdb57600080fd5b611fe787828801611b94565b95989497509550505050565b60006020828403121561200557600080fd5b61045282611d9c565b60006020828403121561202057600080fd5b813567ffffffffffffffff8082111561203857600080fd5b9083019060c0828603121561204c57600080fd5b612054611c7a565b82358281111561206357600080fd5b61206f87828601611ca3565b82525060208301358281111561208457600080fd5b61209087828601611ca3565b60208301525060408301356040820152606083013560608201526080830135608082015260a083013560a082015280935050505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa183360301811261212d57600080fd5b9190910192915050565b60006020828403121561214957600080fd5b61045282611c22565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261218757600080fd5b83018035915067ffffffffffffffff8211156121a257600080fd5b602001915036819003821315611bd957600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612217576122176121b7565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b600060ff821660ff8103612263576122636121b7565b60010192915050565b60ff831681526060810160208083018460005b600281101561229c5781518352918301919083019060010161227f565b505050509392505050565b60ff831681526060810160408360208401379392505050565b600060ff8216806122d3576122d36121b7565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0192915050565b60808152600061230e6080830188611e9e565b82810360208401528581528587602083013760006020878301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8801168201019150508360408301528260608301529695505050505050565b60006020828403121561237f57600080fd5b8151801515811461045257600080fd5b6000808585111561239f57600080fd5b838611156123ac57600080fd5b5050820193919092039150565b7fffffffffffff000000000000000000000000000000000000000000000000000081358181169160068510156123f95780818660060360031b1b83161692505b505092915050565b6000825161212d818460208701611e7a565b60006020828403121561242557600080fd5b505191905056fea264697066735822122014c40ddac011b61bea93373f40e889fa84eb78c7f51961e9b8bf1daf9fc5881264736f6c634300081700330000000000000000000000000000000071727de22e5e9d8baf0edac6f37da032000000000000000000000000daab03239f5cc5b3452837e557295f790d9ab319" - } - ], - "isFixedGasLimit": false - } - ], - "receipts": [ - { - "transactionHash": "0xc8fefbbdfad6931dd4d885c307075541be32fb7022184b2e87d32ac7773c5250", - "transactionIndex": "0x0", - "blockHash": "0x7676f7c659013dab4f66eb461c3b9b49ce1d94d74d7a1622ba0f98b0e85e5a78", - "blockNumber": "0xa7ef01", - "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "to": "0x4e59b44847b379578588920cA78FbF26c0B4956C", - "cumulativeGasUsed": "0x2b8368", - "gasUsed": "0x2b8368", - "contractAddress": null, - "logs": [ - { - "address": "0xeAF864Fb577F48c196396927F0055f205a679a8A", - "topics": ["0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2"], - "data": "0x000000000000000000000000000000000000000000000000ffffffffffffffff", - "blockHash": "0x7676f7c659013dab4f66eb461c3b9b49ce1d94d74d7a1622ba0f98b0e85e5a78", - "blockNumber": "0xa7ef01", - "transactionHash": "0xc8fefbbdfad6931dd4d885c307075541be32fb7022184b2e87d32ac7773c5250", - "transactionIndex": "0x0", - "logIndex": "0x0", - "removed": false - } - ], - "status": "0x1", - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000080000000000200000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "type": "0x2", - "effectiveGasPrice": "0xb2d05e9e" - } - ], - "libraries": [], - "pending": [], - "returns": {}, - "timestamp": 1708838903, - "chain": 845337, - "multi": false, - "commit": "fa4b507" -} diff --git a/packages/contracts/broadcast/DeploySendVerifier.s.sol/845337/run-latest.json b/packages/contracts/broadcast/DeploySendVerifier.s.sol/845337/run-latest.json deleted file mode 100644 index 1eedcbed3..000000000 --- a/packages/contracts/broadcast/DeploySendVerifier.s.sol/845337/run-latest.json +++ /dev/null @@ -1,141 +0,0 @@ -{ - "transactions": [ - { - "hash": "0x7f8fdb9db213e4c157d1d6721cc715143f55644864e85305a10fd0e9acabafba", - "transactionType": "CREATE2", - "contractName": "DaimoVerifier", - "contractAddress": "0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F", - "function": null, - "arguments": null, - "transaction": { - "type": "0x02", - "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "to": "0x4e59b44847b379578588920ca78fbf26c0b4956c", - "gas": "0x21785c", - "value": "0x0", - "data": "0x000000000000000000000000000000000000000000000000000000000000000060a06040523060805234801561001457600080fd5b5061001d610022565b6100d4565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100725760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146100d15780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b608051611b7b6100fd6000396000818161061c0152818161064501526108660152611b7b6000f3fe6080604052600436106100b15760003560e01c8063715018a611610069578063ad3cb1cc1161004e578063ad3cb1cc146101cc578063dcae042c14610222578063f2fde38b1461025257600080fd5b8063715018a61461016d5780638da5cb5b1461018257600080fd5b80634f1ef2861161009a5780634f1ef286146100f857806352d1902d1461010b5780635c60da1b1461013357600080fd5b806319ab453c146100b65780633659cfe6146100d8575b600080fd5b3480156100c257600080fd5b506100d66100d13660046115d0565b610272565b005b3480156100e457600080fd5b506100d66100f33660046115d0565b6103f2565b6100d66101063660046116ee565b61040e565b34801561011757600080fd5b5061012061042d565b6040519081526020015b60405180910390f35b34801561013f57600080fd5b5061014861045c565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161012a565b34801561017957600080fd5b506100d66104a1565b34801561018e57600080fd5b507f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c1993005473ffffffffffffffffffffffffffffffffffffffff16610148565b3480156101d857600080fd5b506102156040518060400160405280600581526020017f352e302e3000000000000000000000000000000000000000000000000000000081525081565b60405161012a9190611760565b34801561022e57600080fd5b5061024261023d3660046117b1565b6104b5565b604051901515815260200161012a565b34801561025e57600080fd5b506100d661026d3660046115d0565b61050c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff166000811580156102bd5750825b905060008267ffffffffffffffff1660011480156102da5750303b155b9050811580156102e8575080155b1561031f576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b84547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000016600117855583156103805784547fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff16680100000000000000001785555b6103898661056e565b83156103ea5784547fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b61040b816040518060200160405280600081525061040e565b50565b610416610604565b61041f82610708565b6104298282610710565b5050565b600061043761084e565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b600061049c7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b905090565b6104a96108bd565b6104b3600061056e565b565b6000806104c58560018189611857565b8101906104d29190611881565b90506104ff878260000151600084602001518560400151866060015187608001518860a001518c8c61094b565b9150505b95945050505050565b6105146108bd565b73ffffffffffffffffffffffffffffffffffffffff8116610569576040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600060048201526024015b60405180910390fd5b61040b815b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080547fffffffffffffffffffffffff0000000000000000000000000000000000000000811673ffffffffffffffffffffffffffffffffffffffff848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b3073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614806106d157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166106b87f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614155b156104b3576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61040b6108bd565b8173ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015610795575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526107929181019061193d565b60015b6107e3576040517f4c9c8ce300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83166004820152602401610560565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc811461083f576040517faa1d49a400000000000000000000000000000000000000000000000000000000815260048101829052602401610560565b6108498383610b4b565b505050565b3073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146104b3576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336108fc7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c1993005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146104b3576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610560565b600060258a51108061099d575061099b8a60208151811061096e5761096e611956565b01602001517fff00000000000000000000000000000000000000000000000000000000000000168a610bae565b155b156109aa57506000610b3d565b60408051808201909152601581527f2274797065223a22776562617574686e2e67657422000000000000000000000060208201526109e9818a89610ca1565b6109f7576000915050610b3d565b6000610a028d610d82565b9050600081604051602001610a179190611985565b6040516020818303038152906040529050610a33818c8c610ca1565b610a435760009350505050610b3d565b600060028c604051610a5591906119f1565b602060405180830381855afa158015610a72573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610a95919061193d565b9050600060028f83604051602001610aae929190611a0d565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815290829052610ae6916119f1565b602060405180830381855afa158015610b03573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610b26919061193d565b9050610b35818b8b8b8b6110c8565b955050505050505b9a9950505050505050505050565b610b5482611111565b60405173ffffffffffffffffffffffffffffffffffffffff8316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115610ba65761084982826111e0565b61042961125a565b60007f010000000000000000000000000000000000000000000000000000000000000083811614610be157506000610c9b565b818015610c1057507f040000000000000000000000000000000000000000000000000000000000000083811614155b15610c1d57506000610c9b565b7f080000000000000000000000000000000000000000000000000000000000000083811614610c97577ff0000000000000000000000000000000000000000000000000000000000000007f1000000000000000000000000000000000000000000000000000000000000000841601610c9757506000610c9b565b5060015b92915050565b825182516000918591859190845b82811015610d715781610cc28289611a5e565b10610cd557600095505050505050610d7b565b83610ce08289611a5e565b81518110610cf057610cf0611956565b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916858281518110610d2f57610d2f611956565b01602001517fff000000000000000000000000000000000000000000000000000000000000001614610d6957600095505050505050610d7b565b600101610caf565b5060019450505050505b9392505050565b60606000610d8f83611292565b90506000819050600060028251118015610e0e57508160028351610db39190611a71565b81518110610dc357610dc3611956565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f3d00000000000000000000000000000000000000000000000000000000000000145b15610e1b57506002610e9a565b60018251118015610e9157508160018351610e369190611a71565b81518110610e4657610e46611956565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f3d00000000000000000000000000000000000000000000000000000000000000145b15610e9a575060015b6000818351610ea99190611a71565b905060008167ffffffffffffffff811115610ec657610ec66115eb565b6040519080825280601f01601f191660200182016040528015610ef0576020820181803683370190505b50905060005b828110156110bd57848181518110610f1057610f10611956565b01602001517fff00000000000000000000000000000000000000000000000000000000000000167f2b0000000000000000000000000000000000000000000000000000000000000003610fc4577f2d00000000000000000000000000000000000000000000000000000000000000828281518110610f9057610f90611956565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506110b5565b848181518110610fd657610fd6611956565b01602001517fff00000000000000000000000000000000000000000000000000000000000000167f2f0000000000000000000000000000000000000000000000000000000000000003611056577f5f00000000000000000000000000000000000000000000000000000000000000828281518110610f9057610f90611956565b84818151811061106857611068611956565b602001015160f81c60f81b82828151811061108557611085611956565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505b600101610ef6565b509695505050505050565b60007f7fffffff800000007fffffffffffffffde737d56d38bcf4279dce5617e3192a88411156110fa57506000610503565b61110786868686866113e5565b9695505050505050565b8073ffffffffffffffffffffffffffffffffffffffff163b60000361117a576040517f4c9c8ce300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82166004820152602401610560565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60606000808473ffffffffffffffffffffffffffffffffffffffff168460405161120a91906119f1565b600060405180830381855af49150503d8060008114611245576040519150601f19603f3d011682016040523d82523d6000602084013e61124a565b606091505b50915091506105038583836114d6565b34156104b3576040517fb398979f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606081516000036112b157505060408051602081019091526000815290565b6000604051806060016040528060408152602001611b0660409139905060006003845160026112e09190611a5e565b6112ea9190611a84565b6112f5906004611abf565b67ffffffffffffffff81111561130d5761130d6115eb565b6040519080825280601f01601f191660200182016040528015611337576020820181803683370190505b509050600182016020820185865187015b808210156113a3576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250611348565b50506003865106600181146113bf57600281146113d2576113da565b603d6001830353603d60028303536113da565b603d60018303535b509195945050505050565b6040805160208101879052908101859052606081018490526080810183905260a08101829052600090819060c001604051602081830303815290604052905060008073c2b78104907f722dabac4c69f826a522b2754de473ffffffffffffffffffffffffffffffffffffffff168360405161146091906119f1565b600060405180830381855afa9150503d806000811461149b576040519150601f19603f3d011682016040523d82523d6000602084013e6114a0565b606091505b5091509150816114b2576114b2611ad6565b808060200190518101906114c6919061193d565b6001149998505050505050505050565b6060826114eb576114e682611565565b610d7b565b815115801561150f575073ffffffffffffffffffffffffffffffffffffffff84163b155b1561155e576040517f9996b31500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602401610560565b5080610d7b565b8051156115755780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b803573ffffffffffffffffffffffffffffffffffffffff811681146115cb57600080fd5b919050565b6000602082840312156115e257600080fd5b610d7b826115a7565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405160c0810167ffffffffffffffff8111828210171561163d5761163d6115eb565b60405290565b600082601f83011261165457600080fd5b813567ffffffffffffffff8082111561166f5761166f6115eb565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156116b5576116b56115eb565b816040528381528660208588010111156116ce57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806040838503121561170157600080fd5b61170a836115a7565b9150602083013567ffffffffffffffff81111561172657600080fd5b61173285828601611643565b9150509250929050565b60005b8381101561175757818101518382015260200161173f565b50506000910152565b602081526000825180602084015261177f81604085016020870161173c565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6000806000806000608086880312156117c957600080fd5b853567ffffffffffffffff808211156117e157600080fd5b6117ed89838a01611643565b9650602088013591508082111561180357600080fd5b818801915088601f83011261181757600080fd5b81358181111561182657600080fd5b89602082850101111561183857600080fd5b9699602092909201985095966040810135965060600135945092505050565b6000808585111561186757600080fd5b8386111561187457600080fd5b5050820193919092039150565b60006020828403121561189357600080fd5b813567ffffffffffffffff808211156118ab57600080fd5b9083019060c082860312156118bf57600080fd5b6118c761161a565b8235828111156118d657600080fd5b6118e287828601611643565b8252506020830135828111156118f757600080fd5b61190387828601611643565b60208301525060408301356040820152606083013560608201526080830135608082015260a083013560a082015280935050505092915050565b60006020828403121561194f57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f226368616c6c656e6765223a22000000000000000000000000000000000000008152600082516119bd81600d85016020870161173c565b7f2200000000000000000000000000000000000000000000000000000000000000600d939091019283015250600e01919050565b60008251611a0381846020870161173c565b9190910192915050565b60008351611a1f81846020880161173c565b9190910191825250602001919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610c9b57610c9b611a2f565b81810381811115610c9b57610c9b611a2f565b600082611aba577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8082028115828204841417610c9b57610c9b611a2f565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220255203f860219edee4fa4c992b3263ee4688484c8a4ed7d60da7a485e4fb59e664736f6c63430008170033", - "nonce": "0xe", - "accessList": [] - }, - "additionalContracts": [], - "isFixedGasLimit": false - }, - { - "hash": "0x50ad5f2dad7a765c7d593b6f3c5ffee6d16e6ac92e3e4ce20559dfa2440d4bda", - "transactionType": "CREATE2", - "contractName": "DaimoVerifierProxy", - "contractAddress": "0xdAAb03239f5CC5b3452837E557295F790D9ab319", - "function": null, - "arguments": [ - "0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F", - "0x19ab453c000000000000000000000000647eb43401e13e995d89cf26cd87e68890ee3f89" - ], - "transaction": { - "type": "0x02", - "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "to": "0x4e59b44847b379578588920ca78fbf26c0b4956c", - "gas": "0x3ded2", - "value": "0x0", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000608060405234801561001057600080fd5b5060405161042838038061042883398101604081905261002f91610279565b818161003b8282610044565b50505050610363565b61004d826100a3565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561009757610092828261011f565b505050565b61009f610196565b5050565b806001600160a01b03163b6000036100de57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b03168460405161013c9190610347565b600060405180830381855af49150503d8060008114610177576040519150601f19603f3d011682016040523d82523d6000602084013e61017c565b606091505b50909250905061018d8583836101b7565b95945050505050565b34156101b55760405163b398979f60e01b815260040160405180910390fd5b565b6060826101cc576101c782610216565b61020f565b81511580156101e357506001600160a01b0384163b155b1561020c57604051639996b31560e01b81526001600160a01b03851660048201526024016100d5565b50805b9392505050565b8051156102265780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b634e487b7160e01b600052604160045260246000fd5b60005b83811015610270578181015183820152602001610258565b50506000910152565b6000806040838503121561028c57600080fd5b82516001600160a01b03811681146102a357600080fd5b60208401519092506001600160401b03808211156102c057600080fd5b818501915085601f8301126102d457600080fd5b8151818111156102e6576102e661023f565b604051601f8201601f19908116603f0116810190838211818310171561030e5761030e61023f565b8160405282815288602084870101111561032757600080fd5b610338836020830160208801610255565b80955050505050509250929050565b60008251610359818460208701610255565b9190910192915050565b60b7806103716000396000f3fe6080604052600a600c565b005b60186014601a565b605e565b565b600060597f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b905090565b3660008037600080366000845af43d6000803e808015607c573d6000f35b3d6000fdfea2646970667358221220e5ecbb32f425bcb580d9711da6fc1c48585e7a2fde036f2522a4c79bede8890d64736f6c634300081700330000000000000000000000004feea13233e0ceb7b5f872afbdda57f463bfd88f0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002419ab453c000000000000000000000000647eb43401e13e995d89cf26cd87e68890ee3f8900000000000000000000000000000000000000000000000000000000", - "nonce": "0xf", - "accessList": [] - }, - "additionalContracts": [], - "isFixedGasLimit": false - } - ], - "receipts": [ - { - "transactionHash": "0x7f8fdb9db213e4c157d1d6721cc715143f55644864e85305a10fd0e9acabafba", - "transactionIndex": "0x0", - "blockHash": "0xedc97ec5eca7cf91587f6f9f398dce894332eb3eb7dc8a3d87d8f56ee74ee678", - "blockNumber": "0xa7eeff", - "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "to": "0x4e59b44847b379578588920cA78FbF26c0B4956C", - "cumulativeGasUsed": "0x183d1f", - "gasUsed": "0x183d1f", - "contractAddress": null, - "logs": [ - { - "address": "0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F", - "topics": ["0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2"], - "data": "0x000000000000000000000000000000000000000000000000ffffffffffffffff", - "blockHash": "0xedc97ec5eca7cf91587f6f9f398dce894332eb3eb7dc8a3d87d8f56ee74ee678", - "blockNumber": "0xa7eeff", - "transactionHash": "0x7f8fdb9db213e4c157d1d6721cc715143f55644864e85305a10fd0e9acabafba", - "transactionIndex": "0x0", - "logIndex": "0x0", - "removed": false - } - ], - "status": "0x1", - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "type": "0x2", - "effectiveGasPrice": "0xb2d05eca" - }, - { - "transactionHash": "0x50ad5f2dad7a765c7d593b6f3c5ffee6d16e6ac92e3e4ce20559dfa2440d4bda", - "transactionIndex": "0x0", - "blockHash": "0x181667bc73ca0e8f1dca4e6a738712b0892a55546cfdc9ae2d2c2b930bfba07d", - "blockNumber": "0xa7ef00", - "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "to": "0x4e59b44847b379578588920cA78FbF26c0B4956C", - "cumulativeGasUsed": "0x2cda5", - "gasUsed": "0x2cda5", - "contractAddress": null, - "logs": [ - { - "address": "0xdAAb03239f5CC5b3452837E557295F790D9ab319", - "topics": [ - "0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b", - "0x0000000000000000000000004feea13233e0ceb7b5f872afbdda57f463bfd88f" - ], - "data": "0x", - "blockHash": "0x181667bc73ca0e8f1dca4e6a738712b0892a55546cfdc9ae2d2c2b930bfba07d", - "blockNumber": "0xa7ef00", - "transactionHash": "0x50ad5f2dad7a765c7d593b6f3c5ffee6d16e6ac92e3e4ce20559dfa2440d4bda", - "transactionIndex": "0x0", - "logIndex": "0x0", - "removed": false - }, - { - "address": "0xdAAb03239f5CC5b3452837E557295F790D9ab319", - "topics": [ - "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", - "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000647eb43401e13e995d89cf26cd87e68890ee3f89" - ], - "data": "0x", - "blockHash": "0x181667bc73ca0e8f1dca4e6a738712b0892a55546cfdc9ae2d2c2b930bfba07d", - "blockNumber": "0xa7ef00", - "transactionHash": "0x50ad5f2dad7a765c7d593b6f3c5ffee6d16e6ac92e3e4ce20559dfa2440d4bda", - "transactionIndex": "0x0", - "logIndex": "0x1", - "removed": false - }, - { - "address": "0xdAAb03239f5CC5b3452837E557295F790D9ab319", - "topics": ["0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2"], - "data": "0x0000000000000000000000000000000000000000000000000000000000000001", - "blockHash": "0x181667bc73ca0e8f1dca4e6a738712b0892a55546cfdc9ae2d2c2b930bfba07d", - "blockNumber": "0xa7ef00", - "transactionHash": "0x50ad5f2dad7a765c7d593b6f3c5ffee6d16e6ac92e3e4ce20559dfa2440d4bda", - "transactionIndex": "0x0", - "logIndex": "0x2", - "removed": false - } - ], - "status": "0x1", - "logsBloom": "0x00000000000000000000000000000008400000020000000000800000000000000000000000000000200000000000000000000000000000000000000000000000000000008000000000000000000002000001000000000000000000000000000000000000060000000000000000000800000000000000000000000000000000400000000000000000000800000000000000000000000080000000000000000000000000000000000000000000000000000000000000000020001000000000000000000024000000000000000000000000000000000004000000000000000020000000000000000000000000000000000000000000008000000000000000000000", - "type": "0x2", - "effectiveGasPrice": "0xb2d05eb4" - } - ], - "libraries": [], - "pending": [], - "returns": {}, - "timestamp": 1708838901, - "chain": 845337, - "multi": false, - "commit": "fa4b507" -} diff --git a/packages/wagmi/package.json b/packages/wagmi/package.json index 44a53f06d..4a62e4250 100644 --- a/packages/wagmi/package.json +++ b/packages/wagmi/package.json @@ -20,7 +20,7 @@ "src" ], "scripts": { - "build": "wagmi generate" + "generate": "wagmi generate" }, "devDependencies": { "@safe-global/safe-deployments": "^1.26.0", diff --git a/supabase/database-generated.types.ts b/supabase/database-generated.types.ts index f300c43ff..c66ba1437 100644 --- a/supabase/database-generated.types.ts +++ b/supabase/database-generated.types.ts @@ -6,7 +6,7 @@ export type Json = | { [key: string]: Json | undefined } | Json[] -export interface Database { +export type Database = { public: { Tables: { chain_addresses: { @@ -29,9 +29,10 @@ export interface Database { { foreignKeyName: "chain_addresses_user_id_fkey" columns: ["user_id"] + isOneToOne: false referencedRelation: "users" referencedColumns: ["id"] - } + }, ] } distribution_shares: { @@ -78,15 +79,17 @@ export interface Database { { foreignKeyName: "distribution_shares_distribution_id_fkey" columns: ["distribution_id"] + isOneToOne: false referencedRelation: "distributions" referencedColumns: ["id"] }, { foreignKeyName: "distribution_shares_user_id_fkey" columns: ["user_id"] + isOneToOne: false referencedRelation: "users" referencedColumns: ["id"] - } + }, ] } distribution_verification_values: { @@ -118,9 +121,10 @@ export interface Database { { foreignKeyName: "distribution_verification_values_distribution_id_fkey" columns: ["distribution_id"] + isOneToOne: false referencedRelation: "distributions" referencedColumns: ["id"] - } + }, ] } distribution_verifications: { @@ -152,15 +156,17 @@ export interface Database { { foreignKeyName: "distribution_verifications_distribution_id_fkey" columns: ["distribution_id"] + isOneToOne: false referencedRelation: "distributions" referencedColumns: ["id"] }, { foreignKeyName: "distribution_verifications_user_id_fkey" columns: ["user_id"] + isOneToOne: false referencedRelation: "users" referencedColumns: ["id"] - } + }, ] } distributions: { @@ -246,9 +252,10 @@ export interface Database { { foreignKeyName: "profiles_id_fkey" columns: ["id"] + isOneToOne: true referencedRelation: "users" referencedColumns: ["id"] - } + }, ] } receipts: { @@ -271,9 +278,10 @@ export interface Database { { foreignKeyName: "receipts_user_id_fkey" columns: ["user_id"] + isOneToOne: false referencedRelation: "users" referencedColumns: ["id"] - } + }, ] } referrals: { @@ -299,21 +307,24 @@ export interface Database { { foreignKeyName: "referrals_referred_id_fkey" columns: ["referred_id"] + isOneToOne: false referencedRelation: "profiles" referencedColumns: ["id"] }, { foreignKeyName: "referrals_referrer_id_fkey" columns: ["referrer_id"] + isOneToOne: false referencedRelation: "profiles" referencedColumns: ["id"] }, { foreignKeyName: "referrals_tag_fkey" columns: ["tag"] + isOneToOne: false referencedRelation: "tags" referencedColumns: ["name"] - } + }, ] } send_account_credentials: { @@ -339,15 +350,17 @@ export interface Database { { foreignKeyName: "account_credentials_account_id_fkey" columns: ["account_id"] + isOneToOne: false referencedRelation: "send_accounts" referencedColumns: ["id"] }, { foreignKeyName: "account_credentials_credential_id_fkey" columns: ["credential_id"] + isOneToOne: false referencedRelation: "webauthn_credentials" referencedColumns: ["id"] - } + }, ] } send_accounts: { @@ -385,9 +398,10 @@ export interface Database { { foreignKeyName: "send_accounts_user_id_fkey" columns: ["user_id"] + isOneToOne: false referencedRelation: "users" referencedColumns: ["id"] - } + }, ] } send_transfer_logs: { @@ -443,15 +457,17 @@ export interface Database { { foreignKeyName: "tag_receipts_hash_fkey" columns: ["hash"] + isOneToOne: false referencedRelation: "receipts" referencedColumns: ["hash"] }, { foreignKeyName: "tag_receipts_tag_name_fkey" columns: ["tag_name"] + isOneToOne: false referencedRelation: "tags" referencedColumns: ["name"] - } + }, ] } tag_reservations: { @@ -495,9 +511,10 @@ export interface Database { { foreignKeyName: "tags_user_id_fkey" columns: ["user_id"] + isOneToOne: false referencedRelation: "users" referencedColumns: ["id"] - } + }, ] } webauthn_credentials: { @@ -547,9 +564,10 @@ export interface Database { { foreignKeyName: "webauthn_credentials_user_id_fkey" columns: ["user_id"] + isOneToOne: false referencedRelation: "users" referencedColumns: ["id"] - } + }, ] } } @@ -565,15 +583,17 @@ export interface Database { { foreignKeyName: "distribution_verifications_distribution_id_fkey" columns: ["distribution_id"] + isOneToOne: false referencedRelation: "distributions" referencedColumns: ["id"] }, { foreignKeyName: "distribution_verifications_user_id_fkey" columns: ["user_id"] + isOneToOne: false referencedRelation: "users" referencedColumns: ["id"] - } + }, ] } } @@ -581,13 +601,13 @@ export interface Database { citext: | { Args: { - "": string + "": boolean } Returns: string } | { Args: { - "": boolean + "": string } Returns: string } @@ -717,3 +737,83 @@ export interface Database { } } +export type Tables< + PublicTableNameOrOptions extends + | keyof (Database["public"]["Tables"] & Database["public"]["Views"]) + | { schema: keyof Database }, + TableName extends PublicTableNameOrOptions extends { schema: keyof Database } + ? keyof (Database[PublicTableNameOrOptions["schema"]]["Tables"] & + Database[PublicTableNameOrOptions["schema"]]["Views"]) + : never = never, +> = PublicTableNameOrOptions extends { schema: keyof Database } + ? (Database[PublicTableNameOrOptions["schema"]]["Tables"] & + Database[PublicTableNameOrOptions["schema"]]["Views"])[TableName] extends { + Row: infer R + } + ? R + : never + : PublicTableNameOrOptions extends keyof (Database["public"]["Tables"] & + Database["public"]["Views"]) + ? (Database["public"]["Tables"] & + Database["public"]["Views"])[PublicTableNameOrOptions] extends { + Row: infer R + } + ? R + : never + : never + +export type TablesInsert< + PublicTableNameOrOptions extends + | keyof Database["public"]["Tables"] + | { schema: keyof Database }, + TableName extends PublicTableNameOrOptions extends { schema: keyof Database } + ? keyof Database[PublicTableNameOrOptions["schema"]]["Tables"] + : never = never, +> = PublicTableNameOrOptions extends { schema: keyof Database } + ? Database[PublicTableNameOrOptions["schema"]]["Tables"][TableName] extends { + Insert: infer I + } + ? I + : never + : PublicTableNameOrOptions extends keyof Database["public"]["Tables"] + ? Database["public"]["Tables"][PublicTableNameOrOptions] extends { + Insert: infer I + } + ? I + : never + : never + +export type TablesUpdate< + PublicTableNameOrOptions extends + | keyof Database["public"]["Tables"] + | { schema: keyof Database }, + TableName extends PublicTableNameOrOptions extends { schema: keyof Database } + ? keyof Database[PublicTableNameOrOptions["schema"]]["Tables"] + : never = never, +> = PublicTableNameOrOptions extends { schema: keyof Database } + ? Database[PublicTableNameOrOptions["schema"]]["Tables"][TableName] extends { + Update: infer U + } + ? U + : never + : PublicTableNameOrOptions extends keyof Database["public"]["Tables"] + ? Database["public"]["Tables"][PublicTableNameOrOptions] extends { + Update: infer U + } + ? U + : never + : never + +export type Enums< + PublicEnumNameOrOptions extends + | keyof Database["public"]["Enums"] + | { schema: keyof Database }, + EnumName extends PublicEnumNameOrOptions extends { schema: keyof Database } + ? keyof Database[PublicEnumNameOrOptions["schema"]]["Enums"] + : never = never, +> = PublicEnumNameOrOptions extends { schema: keyof Database } + ? Database[PublicEnumNameOrOptions["schema"]]["Enums"][EnumName] + : PublicEnumNameOrOptions extends keyof Database["public"]["Enums"] + ? Database["public"]["Enums"][PublicEnumNameOrOptions] + : never + From b22ef5b2e801890cd9e69ee5f3f231f41819b170 Mon Sep 17 00:00:00 2001 From: BigBoss Date: Mon, 26 Feb 2024 11:29:14 -0600 Subject: [PATCH 012/177] more ci fixes (#135) * show github refs in CI * add a wagmi check * fix ci deploy preview if logic --- .github/workflows/ci.yml | 8 +++++--- packages/wagmi/wagmi.config.ts | 3 +++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31efeb595..f745189ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,10 +25,12 @@ jobs: env: YARN_ENABLE_HARDENED_MODE: 0 SKIP_YARN_POST_INSTALL: 1 + - name: Show github refs + run: | + echo github.ref=${{ github.ref }} + echo github.head_ref=${{ github.head_ref }} ci: - # skip if on dev and main (but not PRS to dev or main) - if: ${{ github.ref != 'refs/head/dev' && github.ref != 'refs/head/main' }} runs-on: ubuntu-latest needs: [cache-deps] env: @@ -96,7 +98,7 @@ jobs: vercel-deploy-preview: # **always** skip if on dev and main since it will be deployed with another workflow - if: ${{ github.ref != 'refs/head/dev' && github.ref != 'refs/head/main' && github.head_ref != 'refs/head/dev' && github.head_ref != 'refs/head/main' }} + if: ${{ github.ref != 'refs/head/dev' && github.ref != 'refs/head/main' && github.head_ref != 'dev' && github.head_ref != 'main' }} runs-on: ubuntu-latest needs: [cache-deps] diff --git a/packages/wagmi/wagmi.config.ts b/packages/wagmi/wagmi.config.ts index 6c95266f5..f6a897aa0 100644 --- a/packages/wagmi/wagmi.config.ts +++ b/packages/wagmi/wagmi.config.ts @@ -8,6 +8,9 @@ import { localhost, baseLocal } from './src/chains' import { iEntryPointAbi } from './src' const broadcasts = await globby([`${process.cwd()}/../contracts/broadcast/**/run-latest.json`]) + +if (!broadcasts.length) throw new Error('No broadcasts found.') + const deployments = await broadcasts.reduce(async (accP, file) => { const acc = await accP const data = await import(file, { From 5cfe5cdfc8af3ec46bec2e3f5439b71b05a8b5ef Mon Sep 17 00:00:00 2001 From: BigBoss Date: Mon, 26 Feb 2024 11:32:42 -0600 Subject: [PATCH 013/177] fix typo (#136) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f745189ae..ef1339674 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,7 +98,7 @@ jobs: vercel-deploy-preview: # **always** skip if on dev and main since it will be deployed with another workflow - if: ${{ github.ref != 'refs/head/dev' && github.ref != 'refs/head/main' && github.head_ref != 'dev' && github.head_ref != 'main' }} + if: ${{ github.ref != 'refs/heads/dev' && github.ref != 'refs/heads/main' && github.head_ref != 'dev' && github.head_ref != 'main' }} runs-on: ubuntu-latest needs: [cache-deps] From 602a22994d3114ccc33dfd1b8c30c2a17d21bb28 Mon Sep 17 00:00:00 2001 From: LeO <101268960+0xLe0x@users.noreply.github.com> Date: Tue, 27 Feb 2024 16:10:57 -0500 Subject: [PATCH 014/177] Dashboard Screen Clean up (#117) * basic dashboard screen refactor * refactor Header * refactor footer * fix lint error * update snapshots * update snapshots * remove footer tab border radius * replace coin icons, fix layout * set footer top border * fix screen dark/light theme * fix useThemeSettings bug, update snapshots * update tamagui.css * refactor icons * native footer & layout * add funds todo toast * remove send btn * fix svg prop name warnings * fix ui build error * move main-layout to @my/ui * adjust footer icon colors * update snapshot * fix ci error * fix ci error * move mainlayout to app/components * move mainlayout to app/components * use useBalance for showing dashboard balance * update snapshot * remove barrel exports * index.ts to index.native.tsx * useSendAccountBalances * remove useSendAccountBalances prop * update snapshots and jest test * update snapshots * fix ci error * add home header for web * fix merge conflict * fix totalBalance, refactor Dashboard & SideBar * fully responsive layout, sidebar, header, dashboard * fix responsive issue * update snapshots * sendAddresses to sendTokenAddress * fix sidebar style * add eth balance * remove HomeSideBarWrapper import --- apps/next/pages/index.tsx | 8 +- apps/next/public/tamagui.css | 2 +- packages/app/components/HomeHeader.native.tsx | 209 + packages/app/components/HomeHeader.tsx | 212 +- .../app/components/icons/IconActivity.tsx | 20 +- .../app/components/icons/IconArrowRight.tsx | 25 + packages/app/components/icons/IconDeposit.tsx | 12 +- .../app/components/icons/IconEthereum.tsx | 37 +- .../app/components/icons/IconHamburger.tsx | 19 +- packages/app/components/icons/IconHome.tsx | 33 +- packages/app/components/icons/IconQr.tsx | 56 +- packages/app/components/icons/IconReceive.tsx | 4 +- packages/app/components/icons/IconSLogo.tsx | 5 +- packages/app/components/icons/IconSend.tsx | 21 +- .../app/components/icons/IconSendLogo.tsx | 1 - .../app/components/icons/IconSendTile.tsx | 4 +- packages/app/components/icons/IconUSDC.tsx | 20 +- packages/app/components/icons/index.tsx | 1 + packages/app/components/layout/MainLayout.tsx | 60 + .../layout/footer/components/SendButton.tsx | 28 - .../app/components/layout/footer/index.tsx | 79 +- .../app/components/layout/index.native.tsx | 2 + packages/app/components/layout/index.tsx | 64 - .../app/components/sidebar/HomeSideBar.tsx | 87 +- .../app/components/sidebar/SideBarNavLink.tsx | 45 +- packages/app/features/home/TokenDetails.tsx | 31 + .../home/__snapshots__/screen.test.tsx.snap | 3631 ++++------------- packages/app/features/home/layout.web.tsx | 7 +- packages/app/features/home/screen.test.tsx | 27 + packages/app/features/home/screen.tsx | 438 +- .../__snapshots__/screen.test.tsx.snap | 2 - .../components/modal/send-confirm-modal.tsx | 3 +- .../components/modal/send-request-modal.tsx | 5 +- .../features/send/screens/send/send-it.tsx | 3 +- .../app/features/send/screens/send/send.tsx | 2 +- packages/app/utils/useSendAccountBalances.ts | 36 + packages/ui/src/components/Container.tsx | 6 +- packages/ui/src/themes/colors.ts | 2 +- 38 files changed, 1420 insertions(+), 3827 deletions(-) create mode 100644 packages/app/components/HomeHeader.native.tsx create mode 100644 packages/app/components/icons/IconArrowRight.tsx create mode 100644 packages/app/components/layout/MainLayout.tsx delete mode 100644 packages/app/components/layout/footer/components/SendButton.tsx create mode 100644 packages/app/components/layout/index.native.tsx delete mode 100644 packages/app/components/layout/index.tsx create mode 100644 packages/app/features/home/TokenDetails.tsx create mode 100644 packages/app/utils/useSendAccountBalances.ts diff --git a/apps/next/pages/index.tsx b/apps/next/pages/index.tsx index 30c1b6c5b..db4b7b1ab 100644 --- a/apps/next/pages/index.tsx +++ b/apps/next/pages/index.tsx @@ -1,5 +1,5 @@ -import { HomeSideBarWrapper } from 'app/components/sidebar/HomeSideBar' import { HomeScreen } from 'app/features/home/screen' +import { HomeLayout } from 'app/features/home/layout.web' import { GetServerSidePropsContext } from 'next' import Head from 'next/head' import { userProtectedGetSSP } from 'utils/userProtected' @@ -11,9 +11,7 @@ export const Page: NextPageWithLayout = () => { Home - - - + ) } @@ -35,4 +33,6 @@ function setReferralCodeCookie(context: GetServerSidePropsContext) { } } +Page.getLayout = (children) => {children} + export default Page diff --git a/apps/next/public/tamagui.css b/apps/next/public/tamagui.css index 22a961608..cee3fdadf 100644 --- a/apps/next/public/tamagui.css +++ b/apps/next/public/tamagui.css @@ -1,7 +1,7 @@ ._ovs-contain {overscroll-behavior:contain;} .is_Text .is_Text {display:inline-flex;} ._dsp_contents {display:contents;} -:root {--color-1:hsl(206, 100%, 99.2%);--color-2:hsl(210, 100%, 98.0%);--color-3:hsl(209, 100%, 96.5%);--color-4:hsl(210, 98.8%, 94.0%);--color-5:hsl(209, 95.0%, 90.1%);--color-6:hsl(209, 81.2%, 84.5%);--color-7:hsl(208, 77.5%, 76.9%);--color-8:hsl(206, 81.9%, 65.3%);--color-9:hsl(206, 100%, 50.0%);--color-10:hsl(208, 100%, 47.3%);--color-11:hsl(211, 100%, 43.2%);--color-12:hsl(211, 100%, 15.0%);--color-13:hsl(0, 0%, 99.0%);--color-14:hsl(0, 0%, 97.3%);--color-15:hsl(0, 0%, 95.1%);--color-16:hsl(0, 0%, 93.0%);--color-17:hsl(0, 0%, 90.9%);--color-18:hsl(0, 0%, 88.7%);--color-19:hsl(0, 0%, 85.8%);--color-20:hsl(0, 0%, 78.0%);--color-21:hsl(0, 0%, 56.1%);--color-22:hsl(0, 0%, 52.3%);--color-23:hsl(0, 0%, 43.5%);--color-24:hsl(0, 0%, 9.0%);--color-25:hsl(136, 50.0%, 98.9%);--color-26:hsl(138, 62.5%, 96.9%);--color-27:hsl(139, 55.2%, 94.5%);--color-28:hsl(140, 48.7%, 91.0%);--color-29:hsl(141, 43.7%, 86.0%);--color-30:hsl(143, 40.3%, 79.0%);--color-31:hsl(146, 38.5%, 69.0%);--color-32:hsl(151, 40.2%, 54.1%);--color-33:hsl(151, 55.0%, 41.5%);--color-34:hsl(152, 57.5%, 37.6%);--color-35:hsl(153, 67.0%, 28.5%);--color-36:hsl(155, 40.0%, 14.0%);--color-37:hsl(24, 70.0%, 99.0%);--color-38:hsl(24, 83.3%, 97.6%);--color-39:hsl(24, 100%, 95.3%);--color-40:hsl(25, 100%, 92.2%);--color-41:hsl(25, 100%, 88.2%);--color-42:hsl(25, 100%, 82.8%);--color-43:hsl(24, 100%, 75.3%);--color-44:hsl(24, 94.5%, 64.3%);--color-45:hsl(24, 94.0%, 50.0%);--color-46:hsl(24, 100%, 46.5%);--color-47:hsl(24, 100%, 37.0%);--color-48:hsl(15, 60.0%, 17.0%);--color-49:hsl(322, 100%, 99.4%);--color-50:hsl(323, 100%, 98.4%);--color-51:hsl(323, 86.3%, 96.5%);--color-52:hsl(323, 78.7%, 94.2%);--color-53:hsl(323, 72.2%, 91.1%);--color-54:hsl(323, 66.3%, 86.6%);--color-55:hsl(323, 62.0%, 80.1%);--color-56:hsl(323, 60.3%, 72.4%);--color-57:hsl(322, 65.0%, 54.5%);--color-58:hsl(322, 63.9%, 50.7%);--color-59:hsl(322, 75.0%, 46.0%);--color-60:hsl(320, 70.0%, 13.5%);--color-61:hsl(280, 65.0%, 99.4%);--color-62:hsl(276, 100%, 99.0%);--color-63:hsl(276, 83.1%, 97.0%);--color-64:hsl(275, 76.4%, 94.7%);--color-65:hsl(275, 70.8%, 91.8%);--color-66:hsl(274, 65.4%, 87.8%);--color-67:hsl(273, 61.0%, 81.7%);--color-68:hsl(272, 60.0%, 73.5%);--color-69:hsl(272, 51.0%, 54.0%);--color-70:hsl(272, 46.8%, 50.3%);--color-71:hsl(272, 50.0%, 45.8%);--color-72:hsl(272, 66.0%, 16.0%);--color-73:hsl(359, 100%, 99.4%);--color-74:hsl(359, 100%, 98.6%);--color-75:hsl(360, 100%, 96.8%);--color-76:hsl(360, 97.9%, 94.8%);--color-77:hsl(360, 90.2%, 91.9%);--color-78:hsl(360, 81.7%, 87.8%);--color-79:hsl(359, 74.2%, 81.7%);--color-80:hsl(359, 69.5%, 74.3%);--color-81:hsl(358, 75.0%, 59.0%);--color-82:hsl(358, 69.4%, 55.2%);--color-83:hsl(358, 65.0%, 48.7%);--color-84:hsl(354, 50.0%, 14.6%);--color-85:hsl(60, 54.0%, 98.5%);--color-86:hsl(52, 100%, 95.5%);--color-87:hsl(55, 100%, 90.9%);--color-88:hsl(54, 100%, 86.6%);--color-89:hsl(52, 97.9%, 82.0%);--color-90:hsl(50, 89.4%, 76.1%);--color-91:hsl(47, 80.4%, 68.0%);--color-92:hsl(48, 100%, 46.1%);--color-93:hsl(53, 92.0%, 50.0%);--color-94:hsl(50, 100%, 48.5%);--color-95:hsl(42, 100%, 29.0%);--color-96:hsl(40, 55.0%, 13.5%);--color-97:hsl(50, 20.0%, 99.1%);--color-98:hsl(47, 52.9%, 96.7%);--color-99:hsl(46, 38.2%, 93.7%);--color-100:hsl(44, 32.7%, 90.1%);--color-101:hsl(43, 29.9%, 85.7%);--color-102:hsl(41, 28.3%, 79.8%);--color-103:hsl(39, 27.6%, 71.9%);--color-104:hsl(36, 27.2%, 61.8%);--color-105:hsl(36, 20.0%, 49.5%);--color-106:hsl(36, 19.8%, 45.7%);--color-107:hsl(36, 20.0%, 39.0%);--color-108:hsl(36, 16.0%, 20.0%);--color-109:hsla(125, 96%, 40%, 0.5);--color-110:hsla(125, 96%, 40%, 0.75);--color-111:hsla(125, 96%, 40%, 1);--color-112:hsla(125, 96%, 42%, 1);--color-113:hsla(125, 96%, 45%, 1);--color-114:hsla(125, 96%, 47%, 1);--color-115:hsla(125, 96%, 50%, 1);--color-116:hsla(125, 96%, 52%, 1);--color-117:hsla(125, 96%, 55%, 1);--color-118:hsla(125, 96%, 57%, 1);--color-119:hsla(125, 96%, 59%, 1);--color-120:hsla(125, 96%, 62%, 1);--color-121:hsl(212, 35.0%, 9.2%);--color-122:hsl(216, 50.0%, 11.8%);--color-123:hsl(214, 59.4%, 15.3%);--color-124:hsl(214, 65.8%, 17.9%);--color-125:hsl(213, 71.2%, 20.2%);--color-126:hsl(212, 77.4%, 23.1%);--color-127:hsl(211, 85.1%, 27.4%);--color-128:hsl(211, 89.7%, 34.1%);--color-129:hsl(206, 100%, 50.0%);--color-130:hsl(209, 100%, 60.6%);--color-131:hsl(210, 100%, 66.1%);--color-132:hsl(206, 98.0%, 95.8%);--color-133:hsl(0, 0%, 8.5%);--color-134:hsl(0, 0%, 11.0%);--color-135:hsl(0, 0%, 13.6%);--color-136:hsl(0, 0%, 15.8%);--color-137:hsl(0, 0%, 17.9%);--color-138:hsl(0, 0%, 20.5%);--color-139:hsl(0, 0%, 24.3%);--color-140:hsl(0, 0%, 31.2%);--color-141:hsl(0, 0%, 43.9%);--color-142:hsl(0, 0%, 49.4%);--color-143:hsl(0, 0%, 62.8%);--color-144:hsl(0, 0%, 93.0%);--color-145:hsl(146, 30.0%, 7.4%);--color-146:hsl(155, 44.2%, 8.4%);--color-147:hsl(155, 46.7%, 10.9%);--color-148:hsl(154, 48.4%, 12.9%);--color-149:hsl(154, 49.7%, 14.9%);--color-150:hsl(154, 50.9%, 17.6%);--color-151:hsl(153, 51.8%, 21.8%);--color-152:hsl(151, 51.7%, 28.4%);--color-153:hsl(151, 55.0%, 41.5%);--color-154:hsl(151, 49.3%, 46.5%);--color-155:hsl(151, 50.0%, 53.2%);--color-156:hsl(137, 72.0%, 94.0%);--color-157:hsl(30, 70.0%, 7.2%);--color-158:hsl(28, 100%, 8.4%);--color-159:hsl(26, 91.1%, 11.6%);--color-160:hsl(25, 88.3%, 14.1%);--color-161:hsl(24, 87.6%, 16.6%);--color-162:hsl(24, 88.6%, 19.8%);--color-163:hsl(24, 92.4%, 24.0%);--color-164:hsl(25, 100%, 29.0%);--color-165:hsl(24, 94.0%, 50.0%);--color-166:hsl(24, 100%, 58.5%);--color-167:hsl(24, 100%, 62.2%);--color-168:hsl(24, 97.0%, 93.2%);--color-169:hsl(318, 25.0%, 9.6%);--color-170:hsl(319, 32.2%, 11.6%);--color-171:hsl(319, 41.0%, 16.0%);--color-172:hsl(320, 45.4%, 18.7%);--color-173:hsl(320, 49.0%, 21.1%);--color-174:hsl(321, 53.6%, 24.4%);--color-175:hsl(321, 61.1%, 29.7%);--color-176:hsl(322, 74.9%, 37.5%);--color-177:hsl(322, 65.0%, 54.5%);--color-178:hsl(323, 72.8%, 59.2%);--color-179:hsl(325, 90.0%, 66.4%);--color-180:hsl(322, 90.0%, 95.8%);--color-181:hsl(284, 20.0%, 9.6%);--color-182:hsl(283, 30.0%, 11.8%);--color-183:hsl(281, 37.5%, 16.5%);--color-184:hsl(280, 41.2%, 20.0%);--color-185:hsl(279, 43.8%, 23.3%);--color-186:hsl(277, 46.4%, 27.5%);--color-187:hsl(275, 49.3%, 34.6%);--color-188:hsl(272, 52.1%, 45.9%);--color-189:hsl(272, 51.0%, 54.0%);--color-190:hsl(273, 57.3%, 59.1%);--color-191:hsl(275, 80.0%, 71.0%);--color-192:hsl(279, 75.0%, 95.7%);--color-193:hsl(353, 23.0%, 9.8%);--color-194:hsl(357, 34.4%, 12.0%);--color-195:hsl(356, 43.4%, 16.4%);--color-196:hsl(356, 47.6%, 19.2%);--color-197:hsl(356, 51.1%, 21.9%);--color-198:hsl(356, 55.2%, 25.9%);--color-199:hsl(357, 60.2%, 31.8%);--color-200:hsl(358, 65.0%, 40.4%);--color-201:hsl(358, 75.0%, 59.0%);--color-202:hsl(358, 85.3%, 64.0%);--color-203:hsl(358, 100%, 69.5%);--color-204:hsl(351, 89.0%, 96.0%);--color-205:hsl(45, 100%, 5.5%);--color-206:hsl(46, 100%, 6.7%);--color-207:hsl(45, 100%, 8.7%);--color-208:hsl(45, 100%, 10.4%);--color-209:hsl(47, 100%, 12.1%);--color-210:hsl(49, 100%, 14.3%);--color-211:hsl(49, 90.3%, 18.4%);--color-212:hsl(50, 100%, 22.0%);--color-213:hsl(53, 92.0%, 50.0%);--color-214:hsl(54, 100%, 68.0%);--color-215:hsl(48, 100%, 47.0%);--color-216:hsl(53, 100%, 91.0%);--color-217:hsl(44, 9.0%, 8.3%);--color-218:hsl(43, 14.3%, 9.6%);--color-219:hsl(42, 15.5%, 13.0%);--color-220:hsl(41, 16.4%, 15.6%);--color-221:hsl(41, 16.9%, 17.8%);--color-222:hsl(40, 17.6%, 20.8%);--color-223:hsl(38, 18.5%, 26.4%);--color-224:hsl(36, 19.6%, 35.1%);--color-225:hsl(36, 20.0%, 49.5%);--color-226:hsl(36, 22.3%, 54.5%);--color-227:hsl(35, 30.0%, 64.0%);--color-228:hsl(49, 52.0%, 93.8%);--color-229:hsla(125, 96%, 40%, 0.5);--color-230:hsla(125, 96%, 40%, 0.75);--color-231:hsla(125, 96%, 40%, 1);--color-232:hsla(125, 96%, 42%, 1);--color-233:hsla(125, 96%, 45%, 1);--color-234:hsla(125, 96%, 47%, 1);--color-235:hsla(125, 96%, 50%, 1);--color-236:hsla(125, 96%, 52%, 1);--color-237:hsla(125, 96%, 55%, 1);--color-238:hsla(125, 96%, 57%, 1);--color-239:hsla(125, 96%, 59%, 1);--color-240:hsla(125, 96%, 62%, 1);--color-241:#40FB50;--color-242:#FFFFFF;--color-243:#000000;--color-244:#F5F6FC;--color-245:#E8ECFB;--color-246:#D2D9EE;--color-247:#B8C0DC;--color-248:#A6AFCA;--color-249:#98A1C0;--color-250:#888FAB;--color-251:#7780A0;--color-252:#6B7594;--color-253:#5D6785;--color-254:#505A78;--color-255:#404A67;--color-256:#333D59;--color-257:#293249;--color-258:#1B2236;--color-259:#131A2A;--color-260:#0E1524;--color-261:#0D111C;--color-262:#FFF2F7;--color-263:#FFD9E4;--color-264:#FBA4C0;--color-265:#FF6FA3;--color-266:#FB118E;--color-267:#C41A69;--color-268:#8C0F49;--color-269:#55072A;--color-270:#39061B;--color-271:#2B000B;--color-272:#F51A70;--color-273:#FEF0EE;--color-274:#FED5CF;--color-275:#FEA79B;--color-276:#FD766B;--color-277:#FA2B39;--color-278:#C4292F;--color-279:#891E20;--color-280:#530F0F;--color-281:#380A03;--color-282:#240800;--color-283:#F14544;--color-284:#FEF8C4;--color-285:#F0E49A;--color-286:#DBBC19;--color-287:#BB9F13;--color-288:#A08116;--color-289:#866311;--color-290:#5D4204;--color-291:#3E2B04;--color-292:#231902;--color-293:#180F02;--color-294:#FAF40A;--color-295:#FFF5E8;--color-296:#F8DEB6;--color-297:#EEB317;--color-298:#DB900B;--color-299:#B17900;--color-300:#905C10;--color-301:#643F07;--color-302:#3F2208;--color-303:#29160F;--color-304:#161007;--color-305:#FEB239;--color-306:#EDFDF0;--color-307:#BFEECA;--color-308:#76D191;--color-309:#40B66B;--color-310:#209853;--color-311:#0B783E;--color-312:#0C522A;--color-313:#053117;--color-314:#091F10;--color-315:#09130B;--color-316:#5CFE9D;--color-317:#F3F5FE;--color-318:#DEE1FF;--color-319:#ADBCFF;--color-320:#869EFF;--color-321:#4C82FB;--color-322:#1267D6;--color-323:#1D4294;--color-324:#09265E;--color-325:#0B193F;--color-326:#040E34;--color-327:#587BFF;--color-328:#F2FEDB;--color-329:#D3EBA3;--color-330:#9BCD46;--color-331:#7BB10C;--color-332:#649205;--color-333:#527318;--color-334:#344F00;--color-335:#233401;--color-336:#171D00;--color-337:#0E1300;--color-338:#B1F13C;--color-339:#FEEDE5;--color-340:#FCD9C8;--color-341:#FBAA7F;--color-342:#F67E3E;--color-343:#DC5B14;--color-344:#AF460A;--color-345:#76330F;--color-346:#4D220B;--color-347:#2A1505;--color-348:#1C0E03;--color-349:#FF6F1E;--color-350:#FFF1FE;--color-351:#FAD8F8;--color-352:#F5A1F5;--color-353:#F06DF3;--color-354:#DC39E3;--color-355:#AF2EB4;--color-356:#7A1C7D;--color-357:#550D56;--color-358:#330733;--color-359:#250225;--color-360:#FC72FF;--color-361:#F1EFFE;--color-362:#E2DEFD;--color-363:#BDB8FA;--color-364:#9D99F5;--color-365:#7A7BEB;--color-366:#515EDC;--color-367:#343F9E;--color-368:#232969;--color-369:#121643;--color-370:#0E0D30;--color-371:#5065FD;--color-372:#D6F5FE;--color-373:#B0EDFE;--color-374:#63CDE8;--color-375:#2FB0CC;--color-376:#2092AB;--color-377:#117489;--color-378:#014F5F;--color-379:#003540;--color-380:#011E26;--color-381:#011418;--color-382:#36DBFF;--color-383:#F1FCEF;--color-384:#DAE6D8;--color-385:#B8C3B7;--color-386:#9AA498;--color-387:#7E887D;--color-388:#646B62;--color-389:#434942;--color-390:#2C302C;--color-391:#181B18;--color-392:#0F120E;--color-393:#7E887D;--color-394:#393939;--color-395:#e6e6e6;--color-396:#FA2B39;--color-397:#a26af3;--color-398:#28A0F0;--color-399:#2151F5;--color-400:#F0B90B;--color-401:#FB36D0;--color-402:#9f7750;--color-403:#C3B29E;--color-404:#1D1D20;--color-405:#86AE80;--radius-1:0px;--radius-2:3px;--radius-3:5px;--radius-4:7px;--radius-5:9px;--radius-6:10px;--radius-7:16px;--radius-8:19px;--radius-9:22px;--radius-10:26px;--radius-11:34px;--radius-12:42px;--radius-13:50px;--radius-14:16px;--zIndex-1:0;--zIndex-2:100;--zIndex-3:200;--zIndex-4:300;--zIndex-5:400;--zIndex-6:500;--space-1:0px;--space-6:2px;--space-8:7px;--space-10:13px;--space-12:18px;--space-15:24px;--space-16:32px;--space-17:39px;--space-18:46px;--space-19:53px;--space-20:60px;--space-21:74px;--space-22:88px;--space-23:102px;--space-24:116px;--space-25:130px;--space-26:144px;--space-27:144px;--space-28:158px;--space-29:172px;--space-30:186px;--space-31:249px;--space-32:284px;--space-2:0.5px;--space-3:1px;--space-4:1.5px;--space-5:5px;--space-7:4px;--space-9:10px;--space-11:16px;--space-13:18px;--space-14:21px;--space-33:-0.5px;--space-34:-1px;--space-35:-1.5px;--space-36:-5px;--space-37:-2px;--space-38:-4px;--space-39:-7px;--space-40:-10px;--space-41:-13px;--space-42:-16px;--space-43:-18px;--space-44:-18px;--space-45:-21px;--space-46:-24px;--space-47:-32px;--space-48:-39px;--space-49:-46px;--space-50:-53px;--space-51:-60px;--space-52:-74px;--space-53:-88px;--space-54:-102px;--space-55:-116px;--space-56:-130px;--space-57:-144px;--space-58:-144px;--space-59:-158px;--space-60:-172px;--space-61:-186px;--space-62:-249px;--space-63:-284px;--size-1:0px;--size-6:20px;--size-8:28px;--size-10:36px;--size-12:44px;--size-15:52px;--size-16:64px;--size-17:74px;--size-18:84px;--size-19:94px;--size-20:104px;--size-21:124px;--size-22:144px;--size-23:164px;--size-24:184px;--size-25:204px;--size-26:224px;--size-27:224px;--size-28:244px;--size-29:264px;--size-30:284px;--size-31:374px;--size-32:424px;--size-2:2px;--size-3:4px;--size-4:8px;--size-5:16px;--size-7:24px;--size-9:32px;--size-11:40px;--size-13:44px;--size-14:48px} +:root {--color-1:hsl(206, 100%, 99.2%);--color-2:hsl(210, 100%, 98.0%);--color-3:hsl(209, 100%, 96.5%);--color-4:hsl(210, 98.8%, 94.0%);--color-5:hsl(209, 95.0%, 90.1%);--color-6:hsl(209, 81.2%, 84.5%);--color-7:hsl(208, 77.5%, 76.9%);--color-8:hsl(206, 81.9%, 65.3%);--color-9:hsl(206, 100%, 50.0%);--color-10:hsl(208, 100%, 47.3%);--color-11:hsl(211, 100%, 43.2%);--color-12:hsl(211, 100%, 15.0%);--color-13:hsl(0, 0%, 99.0%);--color-14:hsl(0, 0%, 97.3%);--color-15:hsl(0, 0%, 95.1%);--color-16:hsl(0, 0%, 93.0%);--color-17:hsl(0, 0%, 90.9%);--color-18:hsl(0, 0%, 88.7%);--color-19:hsl(0, 0%, 85.8%);--color-20:hsl(0, 0%, 78.0%);--color-21:hsl(0, 0%, 56.1%);--color-22:hsl(0, 0%, 52.3%);--color-23:hsl(0, 0%, 43.5%);--color-24:hsl(0, 0%, 9.0%);--color-25:hsl(136, 50.0%, 98.9%);--color-26:hsl(138, 62.5%, 96.9%);--color-27:hsl(139, 55.2%, 94.5%);--color-28:hsl(140, 48.7%, 91.0%);--color-29:hsl(141, 43.7%, 86.0%);--color-30:hsl(143, 40.3%, 79.0%);--color-31:hsl(146, 38.5%, 69.0%);--color-32:hsl(151, 40.2%, 54.1%);--color-33:hsl(151, 55.0%, 41.5%);--color-34:hsl(152, 57.5%, 37.6%);--color-35:hsl(153, 67.0%, 28.5%);--color-36:hsl(155, 40.0%, 14.0%);--color-37:hsl(24, 70.0%, 99.0%);--color-38:hsl(24, 83.3%, 97.6%);--color-39:hsl(24, 100%, 95.3%);--color-40:hsl(25, 100%, 92.2%);--color-41:hsl(25, 100%, 88.2%);--color-42:hsl(25, 100%, 82.8%);--color-43:hsl(24, 100%, 75.3%);--color-44:hsl(24, 94.5%, 64.3%);--color-45:hsl(24, 94.0%, 50.0%);--color-46:hsl(24, 100%, 46.5%);--color-47:hsl(24, 100%, 37.0%);--color-48:hsl(15, 60.0%, 17.0%);--color-49:hsl(322, 100%, 99.4%);--color-50:hsl(323, 100%, 98.4%);--color-51:hsl(323, 86.3%, 96.5%);--color-52:hsl(323, 78.7%, 94.2%);--color-53:hsl(323, 72.2%, 91.1%);--color-54:hsl(323, 66.3%, 86.6%);--color-55:hsl(323, 62.0%, 80.1%);--color-56:hsl(323, 60.3%, 72.4%);--color-57:hsl(322, 65.0%, 54.5%);--color-58:hsl(322, 63.9%, 50.7%);--color-59:hsl(322, 75.0%, 46.0%);--color-60:hsl(320, 70.0%, 13.5%);--color-61:hsl(280, 65.0%, 99.4%);--color-62:hsl(276, 100%, 99.0%);--color-63:hsl(276, 83.1%, 97.0%);--color-64:hsl(275, 76.4%, 94.7%);--color-65:hsl(275, 70.8%, 91.8%);--color-66:hsl(274, 65.4%, 87.8%);--color-67:hsl(273, 61.0%, 81.7%);--color-68:hsl(272, 60.0%, 73.5%);--color-69:hsl(272, 51.0%, 54.0%);--color-70:hsl(272, 46.8%, 50.3%);--color-71:hsl(272, 50.0%, 45.8%);--color-72:hsl(272, 66.0%, 16.0%);--color-73:hsl(359, 100%, 99.4%);--color-74:hsl(359, 100%, 98.6%);--color-75:hsl(360, 100%, 96.8%);--color-76:hsl(360, 97.9%, 94.8%);--color-77:hsl(360, 90.2%, 91.9%);--color-78:hsl(360, 81.7%, 87.8%);--color-79:hsl(359, 74.2%, 81.7%);--color-80:hsl(359, 69.5%, 74.3%);--color-81:hsl(358, 75.0%, 59.0%);--color-82:hsl(358, 69.4%, 55.2%);--color-83:hsl(358, 65.0%, 48.7%);--color-84:hsl(354, 50.0%, 14.6%);--color-85:hsl(60, 54.0%, 98.5%);--color-86:hsl(52, 100%, 95.5%);--color-87:hsl(55, 100%, 90.9%);--color-88:hsl(54, 100%, 86.6%);--color-89:hsl(52, 97.9%, 82.0%);--color-90:hsl(50, 89.4%, 76.1%);--color-91:hsl(47, 80.4%, 68.0%);--color-92:hsl(48, 100%, 46.1%);--color-93:hsl(53, 92.0%, 50.0%);--color-94:hsl(50, 100%, 48.5%);--color-95:hsl(42, 100%, 29.0%);--color-96:hsl(40, 55.0%, 13.5%);--color-97:hsl(50, 20.0%, 99.1%);--color-98:hsl(47, 52.9%, 96.7%);--color-99:hsl(46, 38.2%, 93.7%);--color-100:hsl(44, 32.7%, 90.1%);--color-101:hsl(43, 29.9%, 85.7%);--color-102:hsl(41, 28.3%, 79.8%);--color-103:hsl(39, 27.6%, 71.9%);--color-104:hsl(36, 27.2%, 61.8%);--color-105:hsl(36, 20.0%, 49.5%);--color-106:hsl(36, 19.8%, 45.7%);--color-107:hsl(36, 20.0%, 39.0%);--color-108:hsl(36, 16.0%, 20.0%);--color-109:hsla(125, 96%, 40%, 0.5);--color-110:hsla(125, 96%, 40%, 0.75);--color-111:hsla(125, 96%, 40%, 1);--color-112:hsla(125, 96%, 42%, 1);--color-113:hsla(125, 96%, 45%, 1);--color-114:hsla(125, 96%, 47%, 1);--color-115:hsla(125, 96%, 50%, 1);--color-116:hsla(125, 96%, 52%, 1);--color-117:hsla(125, 96%, 55%, 1);--color-118:hsla(125, 96%, 57%, 1);--color-119:hsla(125, 96%, 59%, 1);--color-120:hsla(125, 96%, 62%, 1);--color-121:hsl(212, 35.0%, 9.2%);--color-122:hsl(216, 50.0%, 11.8%);--color-123:hsl(214, 59.4%, 15.3%);--color-124:hsl(214, 65.8%, 17.9%);--color-125:hsl(213, 71.2%, 20.2%);--color-126:hsl(212, 77.4%, 23.1%);--color-127:hsl(211, 85.1%, 27.4%);--color-128:hsl(211, 89.7%, 34.1%);--color-129:hsl(206, 100%, 50.0%);--color-130:hsl(209, 100%, 60.6%);--color-131:hsl(210, 100%, 66.1%);--color-132:hsl(206, 98.0%, 95.8%);--color-133:hsl(0, 0%, 8.5%);--color-134:hsl(0, 0%, 11.0%);--color-135:hsl(0, 0%, 13.6%);--color-136:hsl(0, 0%, 15.8%);--color-137:hsl(0, 0%, 17.9%);--color-138:hsl(0, 0%, 20.5%);--color-139:hsl(0, 0%, 24.3%);--color-140:hsl(0, 0%, 31.2%);--color-141:hsl(0, 0%, 43.9%);--color-142:hsl(0, 0%, 49.4%);--color-143:hsl(0, 0%, 62.8%);--color-144:hsl(0, 0%, 93.0%);--color-145:hsl(146, 30.0%, 7.4%);--color-146:hsl(155, 44.2%, 8.4%);--color-147:hsl(155, 46.7%, 10.9%);--color-148:hsl(154, 48.4%, 12.9%);--color-149:hsl(154, 49.7%, 14.9%);--color-150:hsl(154, 50.9%, 17.6%);--color-151:hsl(153, 51.8%, 21.8%);--color-152:hsl(151, 51.7%, 28.4%);--color-153:hsl(151, 55.0%, 41.5%);--color-154:hsl(151, 49.3%, 46.5%);--color-155:hsl(151, 50.0%, 53.2%);--color-156:hsl(137, 72.0%, 94.0%);--color-157:hsl(30, 70.0%, 7.2%);--color-158:hsl(28, 100%, 8.4%);--color-159:hsl(26, 91.1%, 11.6%);--color-160:hsl(25, 88.3%, 14.1%);--color-161:hsl(24, 87.6%, 16.6%);--color-162:hsl(24, 88.6%, 19.8%);--color-163:hsl(24, 92.4%, 24.0%);--color-164:hsl(25, 100%, 29.0%);--color-165:hsl(24, 94.0%, 50.0%);--color-166:hsl(24, 100%, 58.5%);--color-167:hsl(24, 100%, 62.2%);--color-168:hsl(24, 97.0%, 93.2%);--color-169:hsl(318, 25.0%, 9.6%);--color-170:hsl(319, 32.2%, 11.6%);--color-171:hsl(319, 41.0%, 16.0%);--color-172:hsl(320, 45.4%, 18.7%);--color-173:hsl(320, 49.0%, 21.1%);--color-174:hsl(321, 53.6%, 24.4%);--color-175:hsl(321, 61.1%, 29.7%);--color-176:hsl(322, 74.9%, 37.5%);--color-177:hsl(322, 65.0%, 54.5%);--color-178:hsl(323, 72.8%, 59.2%);--color-179:hsl(325, 90.0%, 66.4%);--color-180:hsl(322, 90.0%, 95.8%);--color-181:hsl(284, 20.0%, 9.6%);--color-182:hsl(283, 30.0%, 11.8%);--color-183:hsl(281, 37.5%, 16.5%);--color-184:hsl(280, 41.2%, 20.0%);--color-185:hsl(279, 43.8%, 23.3%);--color-186:hsl(277, 46.4%, 27.5%);--color-187:hsl(275, 49.3%, 34.6%);--color-188:hsl(272, 52.1%, 45.9%);--color-189:hsl(272, 51.0%, 54.0%);--color-190:hsl(273, 57.3%, 59.1%);--color-191:hsl(275, 80.0%, 71.0%);--color-192:hsl(279, 75.0%, 95.7%);--color-193:hsl(353, 23.0%, 9.8%);--color-194:hsl(357, 34.4%, 12.0%);--color-195:hsl(356, 43.4%, 16.4%);--color-196:hsl(356, 47.6%, 19.2%);--color-197:hsl(356, 51.1%, 21.9%);--color-198:hsl(356, 55.2%, 25.9%);--color-199:hsl(357, 60.2%, 31.8%);--color-200:hsl(358, 65.0%, 40.4%);--color-201:hsl(358, 75.0%, 59.0%);--color-202:hsl(358, 85.3%, 64.0%);--color-203:hsl(358, 100%, 69.5%);--color-204:hsl(351, 89.0%, 96.0%);--color-205:hsl(45, 100%, 5.5%);--color-206:hsl(46, 100%, 6.7%);--color-207:hsl(45, 100%, 8.7%);--color-208:hsl(45, 100%, 10.4%);--color-209:hsl(47, 100%, 12.1%);--color-210:hsl(49, 100%, 14.3%);--color-211:hsl(49, 90.3%, 18.4%);--color-212:hsl(50, 100%, 22.0%);--color-213:hsl(53, 92.0%, 50.0%);--color-214:hsl(54, 100%, 68.0%);--color-215:hsl(48, 100%, 47.0%);--color-216:hsl(53, 100%, 91.0%);--color-217:hsl(44, 9.0%, 8.3%);--color-218:hsl(43, 14.3%, 9.6%);--color-219:hsl(42, 15.5%, 13.0%);--color-220:hsl(41, 16.4%, 15.6%);--color-221:hsl(41, 16.9%, 17.8%);--color-222:hsl(40, 17.6%, 20.8%);--color-223:hsl(38, 18.5%, 26.4%);--color-224:hsl(36, 19.6%, 35.1%);--color-225:hsl(36, 20.0%, 49.5%);--color-226:hsl(36, 22.3%, 54.5%);--color-227:hsl(35, 30.0%, 64.0%);--color-228:hsl(49, 52.0%, 93.8%);--color-229:hsla(125, 96%, 40%, 0.5);--color-230:hsla(125, 96%, 40%, 0.75);--color-231:hsla(125, 96%, 40%, 1);--color-232:hsla(125, 96%, 42%, 1);--color-233:hsla(125, 96%, 45%, 1);--color-234:hsla(125, 96%, 47%, 1);--color-235:hsla(125, 96%, 50%, 1);--color-236:hsla(125, 96%, 52%, 1);--color-237:hsla(125, 96%, 55%, 1);--color-238:hsla(125, 96%, 57%, 1);--color-239:hsla(125, 96%, 59%, 1);--color-240:hsla(125, 96%, 62%, 1);--color-241:#40FB50;--color-242:#FFFFFF;--color-243:#122023;--color-244:#F5F6FC;--color-245:#E8ECFB;--color-246:#D2D9EE;--color-247:#B8C0DC;--color-248:#A6AFCA;--color-249:#98A1C0;--color-250:#888FAB;--color-251:#7780A0;--color-252:#6B7594;--color-253:#5D6785;--color-254:#505A78;--color-255:#404A67;--color-256:#333D59;--color-257:#293249;--color-258:#1B2236;--color-259:#131A2A;--color-260:#0E1524;--color-261:#0D111C;--color-262:#FFF2F7;--color-263:#FFD9E4;--color-264:#FBA4C0;--color-265:#FF6FA3;--color-266:#FB118E;--color-267:#C41A69;--color-268:#8C0F49;--color-269:#55072A;--color-270:#39061B;--color-271:#2B000B;--color-272:#F51A70;--color-273:#FEF0EE;--color-274:#FED5CF;--color-275:#FEA79B;--color-276:#FD766B;--color-277:#FA2B39;--color-278:#C4292F;--color-279:#891E20;--color-280:#530F0F;--color-281:#380A03;--color-282:#240800;--color-283:#F14544;--color-284:#FEF8C4;--color-285:#F0E49A;--color-286:#DBBC19;--color-287:#BB9F13;--color-288:#A08116;--color-289:#866311;--color-290:#5D4204;--color-291:#3E2B04;--color-292:#231902;--color-293:#180F02;--color-294:#FAF40A;--color-295:#FFF5E8;--color-296:#F8DEB6;--color-297:#EEB317;--color-298:#DB900B;--color-299:#B17900;--color-300:#905C10;--color-301:#643F07;--color-302:#3F2208;--color-303:#29160F;--color-304:#161007;--color-305:#FEB239;--color-306:#EDFDF0;--color-307:#BFEECA;--color-308:#76D191;--color-309:#40B66B;--color-310:#209853;--color-311:#0B783E;--color-312:#0C522A;--color-313:#053117;--color-314:#091F10;--color-315:#09130B;--color-316:#5CFE9D;--color-317:#F3F5FE;--color-318:#DEE1FF;--color-319:#ADBCFF;--color-320:#869EFF;--color-321:#4C82FB;--color-322:#1267D6;--color-323:#1D4294;--color-324:#09265E;--color-325:#0B193F;--color-326:#040E34;--color-327:#587BFF;--color-328:#F2FEDB;--color-329:#D3EBA3;--color-330:#9BCD46;--color-331:#7BB10C;--color-332:#649205;--color-333:#527318;--color-334:#344F00;--color-335:#233401;--color-336:#171D00;--color-337:#0E1300;--color-338:#B1F13C;--color-339:#FEEDE5;--color-340:#FCD9C8;--color-341:#FBAA7F;--color-342:#F67E3E;--color-343:#DC5B14;--color-344:#AF460A;--color-345:#76330F;--color-346:#4D220B;--color-347:#2A1505;--color-348:#1C0E03;--color-349:#FF6F1E;--color-350:#FFF1FE;--color-351:#FAD8F8;--color-352:#F5A1F5;--color-353:#F06DF3;--color-354:#DC39E3;--color-355:#AF2EB4;--color-356:#7A1C7D;--color-357:#550D56;--color-358:#330733;--color-359:#250225;--color-360:#FC72FF;--color-361:#F1EFFE;--color-362:#E2DEFD;--color-363:#BDB8FA;--color-364:#9D99F5;--color-365:#7A7BEB;--color-366:#515EDC;--color-367:#343F9E;--color-368:#232969;--color-369:#121643;--color-370:#0E0D30;--color-371:#5065FD;--color-372:#D6F5FE;--color-373:#B0EDFE;--color-374:#63CDE8;--color-375:#2FB0CC;--color-376:#2092AB;--color-377:#117489;--color-378:#014F5F;--color-379:#003540;--color-380:#011E26;--color-381:#011418;--color-382:#36DBFF;--color-383:#F1FCEF;--color-384:#DAE6D8;--color-385:#B8C3B7;--color-386:#9AA498;--color-387:#7E887D;--color-388:#646B62;--color-389:#434942;--color-390:#2C302C;--color-391:#181B18;--color-392:#0F120E;--color-393:#7E887D;--color-394:#393939;--color-395:#e6e6e6;--color-396:#FA2B39;--color-397:#a26af3;--color-398:#28A0F0;--color-399:#2151F5;--color-400:#F0B90B;--color-401:#FB36D0;--color-402:#9f7750;--color-403:#C3B29E;--color-404:#1D1D20;--color-405:#86AE80;--radius-1:0px;--radius-2:3px;--radius-3:5px;--radius-4:7px;--radius-5:9px;--radius-6:10px;--radius-7:16px;--radius-8:19px;--radius-9:22px;--radius-10:26px;--radius-11:34px;--radius-12:42px;--radius-13:50px;--radius-14:16px;--zIndex-1:0;--zIndex-2:100;--zIndex-3:200;--zIndex-4:300;--zIndex-5:400;--zIndex-6:500;--space-1:0px;--space-6:2px;--space-8:7px;--space-10:13px;--space-12:18px;--space-15:24px;--space-16:32px;--space-17:39px;--space-18:46px;--space-19:53px;--space-20:60px;--space-21:74px;--space-22:88px;--space-23:102px;--space-24:116px;--space-25:130px;--space-26:144px;--space-27:144px;--space-28:158px;--space-29:172px;--space-30:186px;--space-31:249px;--space-32:284px;--space-2:0.5px;--space-3:1px;--space-4:1.5px;--space-5:5px;--space-7:4px;--space-9:10px;--space-11:16px;--space-13:18px;--space-14:21px;--space-33:-0.5px;--space-34:-1px;--space-35:-1.5px;--space-36:-5px;--space-37:-2px;--space-38:-4px;--space-39:-7px;--space-40:-10px;--space-41:-13px;--space-42:-16px;--space-43:-18px;--space-44:-18px;--space-45:-21px;--space-46:-24px;--space-47:-32px;--space-48:-39px;--space-49:-46px;--space-50:-53px;--space-51:-60px;--space-52:-74px;--space-53:-88px;--space-54:-102px;--space-55:-116px;--space-56:-130px;--space-57:-144px;--space-58:-144px;--space-59:-158px;--space-60:-172px;--space-61:-186px;--space-62:-249px;--space-63:-284px;--size-1:0px;--size-6:20px;--size-8:28px;--size-10:36px;--size-12:44px;--size-15:52px;--size-16:64px;--size-17:74px;--size-18:84px;--size-19:94px;--size-20:104px;--size-21:124px;--size-22:144px;--size-23:164px;--size-24:184px;--size-25:204px;--size-26:224px;--size-27:224px;--size-28:244px;--size-29:264px;--size-30:284px;--size-31:374px;--size-32:424px;--size-2:2px;--size-3:4px;--size-4:8px;--size-5:16px;--size-7:24px;--size-9:32px;--size-11:40px;--size-13:44px;--size-14:48px} :root .font_heading, :root .t_lang-heading-default .font_heading {--f-fa:Inter, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;--f-li-1:21px;--f-li-2:22px;--f-li-3:23px;--f-li-4:24px;--f-li-5:26px;--f-li-6:25px;--f-li-7:30px;--f-li-8:33px;--f-li-9:40px;--f-li-10:56px;--f-li-11:65px;--f-li-12:72px;--f-li-13:82px;--f-li-14:102px;--f-li-15:111px;--f-li-16:144px;--f-li-17:24px;--f-we-1:400;--f-we-2:400;--f-we-3:400;--f-we-4:400;--f-we-5:400;--f-we-6:400;--f-we-7:700;--f-we-8:700;--f-we-9:700;--f-we-10:700;--f-we-11:700;--f-we-12:700;--f-we-13:700;--f-we-14:700;--f-we-15:700;--f-we-16:700;--f-we-17:700;--f-21-1:2px;--f-21-2:2px;--f-21-3:2px;--f-21-4:2px;--f-21-5:2px;--f-21-6:1px;--f-21-7:0px;--f-21-8:-1px;--f-21-9:-2px;--f-21-10:-3px;--f-21-11:-3px;--f-21-12:-4px;--f-21-13:-4px;--f-21-14:-5px;--f-21-15:-6px;--f-21-16:-6px;--f-21-17:-6px;--f-si-1:11px;--f-si-2:12px;--f-si-3:13px;--f-si-4:14px;--f-si-5:16px;--f-si-6:15px;--f-si-7:20px;--f-si-8:23px;--f-si-9:30px;--f-si-10:46px;--f-si-11:55px;--f-si-12:62px;--f-si-13:72px;--f-si-14:92px;--f-si-15:101px;--f-si-16:134px;--f-si-17:14px;--f-tr-1:uppercase;--f-tr-2:uppercase;--f-tr-3:uppercase;--f-tr-4:uppercase;--f-tr-5:uppercase;--f-tr-6:uppercase;--f-tr-7:none;--f-tr-8:none;--f-tr-9:none;--f-tr-10:none;--f-tr-11:none;--f-tr-12:none;--f-tr-13:none;--f-tr-14:none;--f-tr-15:none;--f-tr-16:none;--f-tr-17:none} :root .font_body, :root .t_lang-body-default .font_body {--f-fa:Inter, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;--f-li-1:23px;--f-li-2:24px;--f-li-3:25px;--f-li-4:27px;--f-li-5:30px;--f-li-6:32px;--f-li-7:34px;--f-li-8:38px;--f-li-9:46px;--f-li-10:66px;--f-li-11:77px;--f-li-12:85px;--f-li-13:97px;--f-li-14:121px;--f-li-15:148px;--f-li-16:172px;--f-li-17:27px;--f-we-1:300;--f-we-2:300;--f-we-3:300;--f-we-4:300;--f-we-5:300;--f-we-6:300;--f-we-7:300;--f-we-8:300;--f-we-9:300;--f-we-10:300;--f-we-11:300;--f-we-12:300;--f-we-13:300;--f-we-14:300;--f-we-15:300;--f-we-16:300;--f-we-17:300;--f-21-1:0px;--f-21-2:0px;--f-21-3:0px;--f-21-4:0px;--f-21-5:0px;--f-21-6:0px;--f-21-7:0px;--f-21-8:0px;--f-21-9:0px;--f-21-10:0px;--f-21-11:0px;--f-21-12:0px;--f-21-13:0px;--f-21-14:0px;--f-21-15:0px;--f-21-16:0px;--f-21-17:0px;--f-si-1:12px;--f-si-2:13px;--f-si-3:14px;--f-si-4:15px;--f-si-5:18px;--f-si-6:20px;--f-si-7:22px;--f-si-8:25px;--f-si-9:33px;--f-si-10:51px;--f-si-11:61px;--f-si-12:68px;--f-si-13:79px;--f-si-14:101px;--f-si-15:125px;--f-si-16:147px;--f-si-17:15px} :root.t_dark, :root.t_dark .t_light .t_dark, :root.t_light .t_dark, :root.t_light .t_dark .t_light .t_dark {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:hsla(112, 22%, 100%, 1);--color025:hsla(0, 0%, 100%, 0.75);--color05:hsla(0, 0%, 100%, 0.5);--color075:hsla(0, 0%, 100%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 15%, 1);--backgroundPress:hsla(191, 32%, 19%, 1);--backgroundFocus:hsla(191, 32%, 24%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 24%, 1);--borderColorHover:hsla(191, 32%, 28%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 28%, 1);--color1:hsla(191, 32%, 10%, 1);--color2:hsla(191, 32%, 15%, 1);--color3:hsla(191, 32%, 19%, 1);--color4:hsla(191, 32%, 24%, 1);--color5:hsla(191, 32%, 28%, 1);--color6:hsla(191, 32%, 32%, 1);--color7:hsla(191, 32%, 37%, 1);--color8:hsla(191, 32%, 41%, 1);--color9:hsla(191, 32%, 46%, 1);--color10:hsla(191, 32%, 50%, 1);--color11:hsla(112, 22%, 59%, 1);--color12:hsla(112, 22%, 100%, 1);} diff --git a/packages/app/components/HomeHeader.native.tsx b/packages/app/components/HomeHeader.native.tsx new file mode 100644 index 000000000..5025d2198 --- /dev/null +++ b/packages/app/components/HomeHeader.native.tsx @@ -0,0 +1,209 @@ +import { + Anchor, + Button, + H1, + Header, + Link, + Text, + View, + XStack, + YStack, + useToastController, +} from '@my/ui' +import { useNav } from 'app/routers/params' +import { useUserReferralsCount } from 'app/utils/useUserReferralsCount' +import { getReferralHref } from 'app/utils/getReferralLink' +import { useUser } from 'app/utils/useUser' +import { useAccount, useConnect, useDisconnect } from 'wagmi' +import { IconClose, IconCopy, IconGear, IconHamburger, IconStar } from 'app/components/icons' +import { usePathname } from 'app/utils/usePathname' + +// TODO: this should probably named HomeTopNav +export function HomeHeader({ children }: { children: string }) { + const [nav, setNavParam] = useNav() + const handleHomeBottomSheet = () => { + setNavParam(nav ? undefined : 'home', { webBehavior: 'replace' }) + } + + return ( +
+ +

{children}

+ + + + + + + +
+ ) +} + +function ReferralCodeCard() { + const user = useUser() + const toast = useToastController() + const referralHref = getReferralHref(user?.profile?.referral_code ?? '') + + if (!user?.profile?.referral_code) { + return null + } + + return ( + + + + + Referral Link + + + send.it/{user?.profile?.referral_code} + + + + + + ) + } + return ( + + {address} + - - ) - } - return ( - - {address} - - - - ) : ( + + + + + + + Why Passkey? + + + + + + Why Passkey? + - - )} + ) } function SendAccountCongratulations() { - const toast = useToastController() const { data: sendAccts } = useSendAccounts() const sendAcct = sendAccts?.[0] - return (

Congratulations on opening your first Send Account!

@@ -272,41 +247,6 @@ function SendAccountCongratulations() { - - {__DEV__ && !!sendAcct && ( - - - - ⭐️ Secret Shop ⭐️ - Available on Localnet/Testnet only. - - - - - - )}
) From a3f2106eb924333fa5db2a615287cec96d266715 Mon Sep 17 00:00:00 2001 From: youngkidwarrior Date: Sat, 17 Feb 2024 01:35:36 -0800 Subject: [PATCH 017/177] Move Onboarding and SignIn pages under Auth path --- apps/next/pages/auth/onboarding.tsx | 42 +++++++++++++ apps/next/pages/{ => auth}/sign-in.tsx | 23 +++---- apps/next/pages/onboarding.tsx | 18 ------ apps/next/utils/getRemoteAssets.ts | 7 +++ apps/next/utils/userOnboarded.ts | 2 +- apps/next/utils/userProtected.ts | 2 +- .../app/components/sidebar/AuthSideBar.tsx | 41 +++++++++++++ .../app/components/sidebar/SignInSideBar.tsx | 26 -------- .../app/features/auth/AuthCarouselContext.tsx | 1 + packages/app/features/auth/layout.web.tsx | 21 +++---- .../{ => auth}/onboarding/DotLineBorder.tsx | 0 .../__snapshots__/screen.test.tsx.snap | 0 .../{ => auth}/onboarding/index.test.ts | 0 .../{ => auth}/onboarding/screen.test.tsx | 0 .../features/{ => auth}/onboarding/screen.tsx | 60 +++++++++++++------ .../screen.tsx} | 2 +- .../auth/{ => sign-in}/sign-in-form.tsx | 4 +- packages/app/features/unknown/screen.tsx | 2 +- .../app/provider/auth/AuthProvider.native.tsx | 2 +- .../tests/fixtures/send-accounts/page.ts | 6 +- .../playwright/tests/sign-in.anon.spec.ts | 8 +-- 21 files changed, 168 insertions(+), 99 deletions(-) create mode 100644 apps/next/pages/auth/onboarding.tsx rename apps/next/pages/{ => auth}/sign-in.tsx (61%) delete mode 100644 apps/next/pages/onboarding.tsx create mode 100644 apps/next/utils/getRemoteAssets.ts create mode 100644 packages/app/components/sidebar/AuthSideBar.tsx delete mode 100644 packages/app/components/sidebar/SignInSideBar.tsx rename packages/app/features/{ => auth}/onboarding/DotLineBorder.tsx (100%) rename packages/app/features/{ => auth}/onboarding/__snapshots__/screen.test.tsx.snap (100%) rename packages/app/features/{ => auth}/onboarding/index.test.ts (100%) rename packages/app/features/{ => auth}/onboarding/screen.test.tsx (100%) rename packages/app/features/{ => auth}/onboarding/screen.tsx (83%) rename packages/app/features/auth/{sign-in-screen.tsx => sign-in/screen.tsx} (98%) rename packages/app/features/auth/{ => sign-in}/sign-in-form.tsx (96%) diff --git a/apps/next/pages/auth/onboarding.tsx b/apps/next/pages/auth/onboarding.tsx new file mode 100644 index 000000000..dbecc6d25 --- /dev/null +++ b/apps/next/pages/auth/onboarding.tsx @@ -0,0 +1,42 @@ +import { OnboardingScreen } from 'app/features/auth/onboarding/screen' +import Head from 'next/head' +import { userProtectedGetSSP } from 'utils/userProtected' +import { NextPageWithLayout } from '../_app' +import { AuthLayout } from 'app/features/auth/layout.web' +import { useContext, useEffect } from 'react' +import { AuthCarouselContext } from 'app/features/auth/AuthCarouselContext' +import { getRemoteAssets } from 'utils/getRemoteAssets' +import { InferGetServerSidePropsType } from 'next' + +export const Page: NextPageWithLayout> = ({ + images, +}) => { + const { carouselImages, setCarouselImages } = useContext(AuthCarouselContext) + + useEffect(() => { + if (carouselImages.length === 0) setCarouselImages(images) + }, [setCarouselImages, carouselImages, images]) + + return ( + <> + + Send | Onboarding + + + + ) +} + +export const getServerSideProps = userProtectedGetSSP(async () => { + const paths = [ + 'app_images/auth_image_1.jpg?raw=true', + 'app_images/auth_image_2.jpg?raw=true', + 'app_images/auth_image_3.jpg?raw=true', + ] + const images = await getRemoteAssets(paths) + return { props: { images } } +}) + +Page.getLayout = (children) => {children} + +export default Page diff --git a/apps/next/pages/sign-in.tsx b/apps/next/pages/auth/sign-in.tsx similarity index 61% rename from apps/next/pages/sign-in.tsx rename to apps/next/pages/auth/sign-in.tsx index 051de5300..afa771968 100644 --- a/apps/next/pages/sign-in.tsx +++ b/apps/next/pages/auth/sign-in.tsx @@ -1,10 +1,10 @@ -import { SignInScreen } from 'app/features/auth/sign-in-screen' +import { SignInScreen } from 'app/features/auth/sign-in/screen' import Head from 'next/head' import { guestOnlyGetSSP } from 'utils/guestOnly' -import { NextPageWithLayout } from './_app' +import { NextPageWithLayout } from '../_app' import { AuthLayout } from 'app/features/auth/layout.web' -import { getPlaiceholderImage } from 'app/utils/getPlaiceholderImage' import { InferGetServerSidePropsType } from 'next' +import { getRemoteAssets } from 'utils/getRemoteAssets' import { useContext, useEffect } from 'react' import { AuthCarouselContext } from 'app/features/auth/AuthCarouselContext' @@ -33,18 +33,13 @@ export const Page: NextPageWithLayout { - const remoteImagePath = 'https://github.com/0xsend/assets/blob/main/app_images' - const remoteImageQueryParams = '?raw=true' - const images = [ - await getPlaiceholderImage(`${remoteImagePath}/auth_image_1.jpg${remoteImageQueryParams}`), - await getPlaiceholderImage(`${remoteImagePath}/auth_image_2.jpg${remoteImageQueryParams}`), - await getPlaiceholderImage(`${remoteImagePath}/auth_image_3.jpg${remoteImageQueryParams}`), + const paths = [ + 'app_images/auth_image_1.jpg?raw=true', + 'app_images/auth_image_2.jpg?raw=true', + 'app_images/auth_image_3.jpg?raw=true', ] - return { - props: { - images, - }, - } + const images = await getRemoteAssets(paths) + return { props: { images } } }) Page.getLayout = (children) => {children} diff --git a/apps/next/pages/onboarding.tsx b/apps/next/pages/onboarding.tsx deleted file mode 100644 index accd7dc40..000000000 --- a/apps/next/pages/onboarding.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import { OnboardingScreen } from 'app/features/onboarding/screen' -import Head from 'next/head' -import { userProtectedGetSSP } from 'utils/userProtected' -import { NextPageWithLayout } from './_app' - -export const Page: NextPageWithLayout = () => { - return ( - <> - - Send | Onboarding - - - - ) -} - -export const getServerSideProps = userProtectedGetSSP() -export default Page diff --git a/apps/next/utils/getRemoteAssets.ts b/apps/next/utils/getRemoteAssets.ts new file mode 100644 index 000000000..b95c25ea7 --- /dev/null +++ b/apps/next/utils/getRemoteAssets.ts @@ -0,0 +1,7 @@ +import { getPlaiceholderImage } from 'app/utils/getPlaiceholderImage' + +export async function getRemoteAssets(paths: string[] = []) { + const remoteImageUrl = 'https://github.com/0xsend/assets/blob/main/' + const imagePromises = paths.map((path) => getPlaiceholderImage(remoteImageUrl + path)) + return await Promise.all(imagePromises) +} diff --git a/apps/next/utils/userOnboarded.ts b/apps/next/utils/userOnboarded.ts index 97472ffef..5d21770bd 100644 --- a/apps/next/utils/userOnboarded.ts +++ b/apps/next/utils/userOnboarded.ts @@ -34,7 +34,7 @@ export async function userOnboarded< log('no send accounts') return { redirect: { - destination: '/onboarding', // @todo add query param to redirect back to page after onboarding + destination: '/auth/onboarding', // @todo add query param to redirect back to page after onboarding permanent: false, }, } diff --git a/apps/next/utils/userProtected.ts b/apps/next/utils/userProtected.ts index e05dfc77a..58d172f5f 100644 --- a/apps/next/utils/userProtected.ts +++ b/apps/next/utils/userProtected.ts @@ -37,7 +37,7 @@ export function userProtectedGetSSP< log('no session') return { redirect: { - destination: '/sign-in', // @todo add query param to redirect back to page after sign in + destination: '/auth/sign-in', // @todo add query param to redirect back to page after sign in permanent: false, }, } diff --git a/packages/app/components/sidebar/AuthSideBar.tsx b/packages/app/components/sidebar/AuthSideBar.tsx new file mode 100644 index 000000000..a98483847 --- /dev/null +++ b/packages/app/components/sidebar/AuthSideBar.tsx @@ -0,0 +1,41 @@ +import { SideBar, SideBarWrapper, Stack, Theme, YStack, YStackProps, useMedia } from '@my/ui' +import { IconSendLogo } from 'app/components/icons' +import { SignInForm } from 'app/features/auth/sign-in/sign-in-form' +import { usePathname } from 'app/utils/usePathname' +import { useSendAccounts } from 'app/utils/send-accounts' +import { CreateSendAccount, SendAccountCongratulations } from 'app/features/auth/onboarding/screen' + +const AuthSideBar = ({ ...props }: YStackProps) => { + const pathName = usePathname() + const { + data: sendAccts, + // error: sendAcctsError, + // isLoading: sendAcctsIsLoading, + } = useSendAccounts() + return ( + + + + + + + + {pathName.includes('/auth/sign-in') ? ( + + ) : pathName.includes('auth/onboarding') && sendAccts?.length === 0 ? ( + + ) : ( + + )} + + + ) +} + +export const AuthSideBarWrapper = ({ children }: { children?: React.ReactNode }) => { + const media = useMedia() + if (media.gtMd) { + return }>{children} + } + return children +} diff --git a/packages/app/components/sidebar/SignInSideBar.tsx b/packages/app/components/sidebar/SignInSideBar.tsx deleted file mode 100644 index 3a4bb2211..000000000 --- a/packages/app/components/sidebar/SignInSideBar.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import { SideBar, SideBarWrapper, Stack, Theme, YStack, YStackProps, useMedia } from '@my/ui' -import { IconSendLogo } from 'app/components/icons' -import { SignInForm } from 'app/features/auth/sign-in-form' - -const SignInSideBar = ({ ...props }: YStackProps) => ( - - - - - - - - - - -) - -export const SignInSideBarWrapper = ({ children }: { children?: React.ReactNode }) => { - const media = useMedia() - if (media.gtMd) { - return ( - }>{children} - ) - } - return children -} diff --git a/packages/app/features/auth/AuthCarouselContext.tsx b/packages/app/features/auth/AuthCarouselContext.tsx index ca7bbd8c9..88fec5222 100644 --- a/packages/app/features/auth/AuthCarouselContext.tsx +++ b/packages/app/features/auth/AuthCarouselContext.tsx @@ -2,6 +2,7 @@ import { type GetPlaiceholderImage } from 'app/utils/getPlaiceholderImage' import { Dispatch, SetStateAction, createContext, useContext } from 'react' export type CarouselImage = { src: string; height: number; width: number; base64?: string } + export interface AuthCarouselContext { carouselImages: GetPlaiceholderImage[] setCarouselImages: Dispatch> diff --git a/packages/app/features/auth/layout.web.tsx b/packages/app/features/auth/layout.web.tsx index 752e6e784..f34f7f30f 100644 --- a/packages/app/features/auth/layout.web.tsx +++ b/packages/app/features/auth/layout.web.tsx @@ -1,6 +1,5 @@ -import { ScrollView, YStack } from '@my/ui' - -import { SignInSideBarWrapper } from 'app/components/sidebar/SignInSideBar' +import { Container, ScrollView, YStack } from '@my/ui' +import { AuthSideBarWrapper } from 'app/components/sidebar/AuthSideBar' import { useMemo, useState } from 'react' import { AuthCarouselContext } from './AuthCarouselContext' import { SolitoImage } from 'solito/image' @@ -17,7 +16,7 @@ export function AuthLayout({ children }: { children: React.ReactNode; header?: s - + {carouselImage && ( )} - - - {children} - - - + + + + {children} + + + + ), [carouselImage, carouselImages, carouselProgress, children] diff --git a/packages/app/features/onboarding/DotLineBorder.tsx b/packages/app/features/auth/onboarding/DotLineBorder.tsx similarity index 100% rename from packages/app/features/onboarding/DotLineBorder.tsx rename to packages/app/features/auth/onboarding/DotLineBorder.tsx diff --git a/packages/app/features/onboarding/__snapshots__/screen.test.tsx.snap b/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap similarity index 100% rename from packages/app/features/onboarding/__snapshots__/screen.test.tsx.snap rename to packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap diff --git a/packages/app/features/onboarding/index.test.ts b/packages/app/features/auth/onboarding/index.test.ts similarity index 100% rename from packages/app/features/onboarding/index.test.ts rename to packages/app/features/auth/onboarding/index.test.ts diff --git a/packages/app/features/onboarding/screen.test.tsx b/packages/app/features/auth/onboarding/screen.test.tsx similarity index 100% rename from packages/app/features/onboarding/screen.test.tsx rename to packages/app/features/auth/onboarding/screen.test.tsx diff --git a/packages/app/features/onboarding/screen.tsx b/packages/app/features/auth/onboarding/screen.tsx similarity index 83% rename from packages/app/features/onboarding/screen.tsx rename to packages/app/features/auth/onboarding/screen.tsx index b18c5e6c2..8f656136a 100644 --- a/packages/app/features/onboarding/screen.tsx +++ b/packages/app/features/auth/onboarding/screen.tsx @@ -23,6 +23,7 @@ import { Anchor, H3, H1, + useToastController, } from '@my/ui' import { base16, base64 } from '@scure/base' import { assert } from 'app/utils/assert' @@ -51,13 +52,15 @@ export function OnboardingScreen() { // isLoading: sendAcctsIsLoading, } = useSendAccounts() + if (media.gtMd) return null + return ( - + {sendAccts?.length === 0 ? ( <> @@ -94,7 +97,7 @@ export function OnboardingScreen() { /** * Create a send account but not onchain, yet. */ -function CreateSendAccount() { +export function CreateSendAccount() { // REMOTE / SUPABASE STATE const supabase = useSupabase() const { user } = useUser() @@ -152,20 +155,6 @@ function CreateSendAccount() { throw error } - if (__DEV__) { - console.log('Funding sending address', senderAddress) - await testClient.setBalance({ - address: senderAddress, - value: parseEther('1'), - }) - await setERC20Balance({ - client: testClient, - address: senderAddress, - tokenAddress: usdcAddress[baseMainnetClient.chain.id], - value: BigInt(100e6), - }) - } - await sendAcctsRefetch() // await createAccountUsingEOA(_publicKey) @@ -232,9 +221,11 @@ function CreateSendAccount() { ) } -function SendAccountCongratulations() { +export function SendAccountCongratulations() { + const toast = useToastController() const { data: sendAccts } = useSendAccounts() const sendAcct = sendAccts?.[0] + return (

Congratulations on opening your first Send Account!

@@ -247,6 +238,41 @@ function SendAccountCongratulations() { + + {__DEV__ && !!sendAcct && ( + + + + ⭐️ Secret Shop ⭐️ + Available on Localnet/Testnet only. + + + + + + )}
) diff --git a/packages/app/features/auth/sign-in-screen.tsx b/packages/app/features/auth/sign-in/screen.tsx similarity index 98% rename from packages/app/features/auth/sign-in-screen.tsx rename to packages/app/features/auth/sign-in/screen.tsx index 40f0b22bd..df6d8b777 100644 --- a/packages/app/features/auth/sign-in-screen.tsx +++ b/packages/app/features/auth/sign-in/screen.tsx @@ -14,7 +14,7 @@ import { IconSendLogo } from 'app/components/icons' import { useContext, useEffect, useState } from 'react' import { SignInForm } from './sign-in-form' import { AnimationLayout } from 'app/components/layout/animation-layout' -import { AuthCarouselContext } from './AuthCarouselContext' +import { AuthCarouselContext } from 'app/features/auth/AuthCarouselContext' const screens = ['screen1', 'screen2', 'screen3', 'onboarding'] as const diff --git a/packages/app/features/auth/sign-in-form.tsx b/packages/app/features/auth/sign-in/sign-in-form.tsx similarity index 96% rename from packages/app/features/auth/sign-in-form.tsx rename to packages/app/features/auth/sign-in/sign-in-form.tsx index 8b998df3d..8b0d44a41 100644 --- a/packages/app/features/auth/sign-in-form.tsx +++ b/packages/app/features/auth/sign-in/sign-in-form.tsx @@ -3,7 +3,7 @@ import { SchemaForm, formFields } from 'app/utils/SchemaForm' import { FormProvider, useForm } from 'react-hook-form' import { api } from 'app/utils/api' import { useRouter } from 'solito/router' -import { VerifyCode } from './components/VerifyCode' +import { VerifyCode } from 'app/features/auth/components/VerifyCode' import { z } from 'zod' const SignInSchema = z.object({ @@ -85,7 +85,7 @@ export const SignInForm = () => { )} > {(fields) => ( - +

WELCOME TO SEND diff --git a/packages/app/features/unknown/screen.tsx b/packages/app/features/unknown/screen.tsx index 4031e4d8e..394216b23 100644 --- a/packages/app/features/unknown/screen.tsx +++ b/packages/app/features/unknown/screen.tsx @@ -7,7 +7,7 @@ export function UnknownScreen() {

Not found.

Send, Instant Payments.

- +
diff --git a/packages/app/provider/auth/AuthProvider.native.tsx b/packages/app/provider/auth/AuthProvider.native.tsx index d363117d0..6bda6d2d4 100644 --- a/packages/app/provider/auth/AuthProvider.native.tsx +++ b/packages/app/provider/auth/AuthProvider.native.tsx @@ -73,7 +73,7 @@ export function useProtectedRoute(user: User | null) { !inAuthGroup ) { // Redirect to the sign-in page. - replaceRoute('/onboarding') + replaceRoute('/auth/onboarding') } else if (user && inAuthGroup) { // Redirect away from the sign-in page. replaceRoute('/') diff --git a/packages/playwright/tests/fixtures/send-accounts/page.ts b/packages/playwright/tests/fixtures/send-accounts/page.ts index af3eff925..598dc4ce1 100644 --- a/packages/playwright/tests/fixtures/send-accounts/page.ts +++ b/packages/playwright/tests/fixtures/send-accounts/page.ts @@ -7,15 +7,15 @@ export class OnboardingPage { async completeOnboarding(expect: Expect) { await this.page.goto('/') - expect(this.page).toHaveURL('/onboarding') // no send accounts redirects to onboarding page + expect(this.page).toHaveURL('/auth/onboarding') // no send accounts redirects to onboarding page // choose a random account name const acctName = this.accountName await this.page.getByRole('textbox', { name: 'Passkey name' }).fill(acctName) await expect(this.page.getByLabel('Passkey name')).toHaveValue(acctName) - await this.page.getByRole('button', { name: 'Create' }).click() + await this.page.getByRole('button', { name: 'Create Passkey' }).click() // @todo add a check for the success message - await this.page.getByRole('button', { name: 'Create' }).waitFor({ state: 'detached' }) + await this.page.getByRole('button', { name: 'Create Passkey' }).waitFor({ state: 'detached' }) } } diff --git a/packages/playwright/tests/sign-in.anon.spec.ts b/packages/playwright/tests/sign-in.anon.spec.ts index 2a131bbd3..6bd67fb07 100644 --- a/packages/playwright/tests/sign-in.anon.spec.ts +++ b/packages/playwright/tests/sign-in.anon.spec.ts @@ -19,14 +19,14 @@ test('can login', async ({ page, pg }) => { const phone = `${Math.floor(Math.random() * 1e9)}` // naive but go to home page to see if user is logged in await page.goto('/') - await expect(page).toHaveURL('/sign-in') + await expect(page).toHaveURL('/auth/sign-in') await page.getByLabel('Phone number').fill(phone) try { await page.getByRole('button', { name: 'SEND IT!' }).click() await page.getByLabel('One-time Password').fill('123456') await page.getByRole('button', { name: 'Verify' }).click() await page.waitForLoadState() - await expect(page).toHaveURL('/onboarding') + await expect(page).toHaveURL('/auth/onboarding') } finally { await pg.query('DELETE FROM auth.users WHERE phone = $1', [phone]) } @@ -44,7 +44,7 @@ test('country code is selected based on geoip', async ({ page, context, pg }) => const ipPromise = page.waitForRequest('https://ipapi.co/json/') await page.goto('/') - await expect(page).toHaveURL('/sign-in') + await expect(page).toHaveURL('/auth/sign-in') await ipPromise await expect(page.getByText(`${country.flag} +${country.dialCode}`)).toBeVisible() @@ -64,7 +64,7 @@ test('country code is selected based on geoip', async ({ page, context, pg }) => await page.getByLabel('One-time Password').fill('123456') await page.getByRole('button', { name: 'Verify' }).click() await page.waitForLoadState() - await expect(page).toHaveURL('/onboarding') + await expect(page).toHaveURL('/auth/onboarding') } finally { await pg.query('DELETE FROM auth.users WHERE phone = $1', [phone]) } From 5efb0ded2ba17b37e58433710e816fc1959219c4 Mon Sep 17 00:00:00 2001 From: youngkidwarrior Date: Sat, 17 Feb 2024 01:49:56 -0800 Subject: [PATCH 018/177] Style SignIn and Onboarding after moving under auth path --- .../components/layout/animation-layout.tsx | 9 +- .../app/components/sidebar/AuthSideBar.tsx | 5 +- .../app/features/auth/components/Carousel.tsx | 84 +++++++ .../features/auth/components/VerifyCode.tsx | 16 +- packages/app/features/auth/layout.web.tsx | 6 +- .../__snapshots__/screen.test.tsx.snap | 2 - .../auth/onboarding/onboarding-form.tsx | 139 +++++++++++ .../app/features/auth/onboarding/screen.tsx | 181 ++------------ packages/app/features/auth/sign-in/screen.tsx | 236 +++++++----------- .../features/auth/sign-in/sign-in-form.tsx | 15 +- .../playwright/tests/sign-in.anon.spec.ts | 8 +- 11 files changed, 362 insertions(+), 339 deletions(-) create mode 100644 packages/app/features/auth/components/Carousel.tsx create mode 100644 packages/app/features/auth/onboarding/onboarding-form.tsx diff --git a/packages/app/components/layout/animation-layout.tsx b/packages/app/components/layout/animation-layout.tsx index 10093dfc7..a1b49abf7 100644 --- a/packages/app/components/layout/animation-layout.tsx +++ b/packages/app/components/layout/animation-layout.tsx @@ -14,13 +14,18 @@ const YStackEnterable = styled(YStack, { } as const, }) -export const AnimationLayout = ({ children, currentKey, direction }: AnimationLayoutProps) => { +export const AnimationLayout = ({ + children, + currentKey, + direction, + fullscreen = true, +}: AnimationLayoutProps & { fullscreen?: boolean }) => { const enterVariant = direction === 1 || direction === 0 ? 'isRight' : 'isLeft' const exitVariant = direction === 1 ? 'isLeft' : 'isRight' return ( - + {children} diff --git a/packages/app/components/sidebar/AuthSideBar.tsx b/packages/app/components/sidebar/AuthSideBar.tsx index a98483847..4bebafa72 100644 --- a/packages/app/components/sidebar/AuthSideBar.tsx +++ b/packages/app/components/sidebar/AuthSideBar.tsx @@ -1,9 +1,10 @@ import { SideBar, SideBarWrapper, Stack, Theme, YStack, YStackProps, useMedia } from '@my/ui' import { IconSendLogo } from 'app/components/icons' import { SignInForm } from 'app/features/auth/sign-in/sign-in-form' +import { OnboardingForm } from 'app/features/auth/onboarding/onboarding-form' import { usePathname } from 'app/utils/usePathname' import { useSendAccounts } from 'app/utils/send-accounts' -import { CreateSendAccount, SendAccountCongratulations } from 'app/features/auth/onboarding/screen' +import { SendAccountCongratulations } from 'app/features/auth/onboarding/screen' const AuthSideBar = ({ ...props }: YStackProps) => { const pathName = usePathname() @@ -23,7 +24,7 @@ const AuthSideBar = ({ ...props }: YStackProps) => { {pathName.includes('/auth/sign-in') ? ( ) : pathName.includes('auth/onboarding') && sendAccts?.length === 0 ? ( - + ) : ( )} diff --git a/packages/app/features/auth/components/Carousel.tsx b/packages/app/features/auth/components/Carousel.tsx new file mode 100644 index 000000000..bd97eff0e --- /dev/null +++ b/packages/app/features/auth/components/Carousel.tsx @@ -0,0 +1,84 @@ +import { useContext, useEffect, useState } from 'react' +import { AuthCarouselContext } from '../AuthCarouselContext' +import { H1, Paragraph, Progress, Stack, XStack, useMedia } from '@my/ui' + +const carouselItems = [ + { + title: 'LIKE CASH', + description: 'SEND AND RECEIVE MONEY GLOBALLY IN SECONDS', + }, + { + title: 'ALL YOURS', + description: 'ONLY YOU HAVE ACCESS TO YOUR FUNDS', + }, + { + title: 'SECURE', + description: 'PRIVACY FIRST WITH VERFIED SIGN-IN AND TRANSFERS', + }, +] as const + +const CarouselProgress = () => { + const { carouselProgress, setCarouselProgress } = useContext(AuthCarouselContext) + const [progressWidth, setProgressWidth] = useState(0) + + useEffect(() => { + const progressWidthInterval = setInterval(() => { + setProgressWidth((progressWidth) => { + return progressWidth >= 100 ? 0 : progressWidth + 1 + }) + if (progressWidth >= 100) { + setCarouselProgress((progress) => (progress + 1) % carouselItems?.length) + } + }, 50) + + return () => { + clearInterval(progressWidthInterval) + } + }, [setCarouselProgress, progressWidth]) + + return ( + + {carouselItems?.map(({ title }, i) => { + return ( + + + + ) + })} + + ) +} +export const Carousel = () => { + const { carouselProgress } = useContext(AuthCarouselContext) + const { gtMd } = useMedia() + + const item = carouselItems?.at(carouselProgress) + + return ( + <> + +

+ {item?.title} +

+ + {item?.description} + +
+ {gtMd && } + + ) +} diff --git a/packages/app/features/auth/components/VerifyCode.tsx b/packages/app/features/auth/components/VerifyCode.tsx index 42370ace3..f63f07ee8 100644 --- a/packages/app/features/auth/components/VerifyCode.tsx +++ b/packages/app/features/auth/components/VerifyCode.tsx @@ -2,9 +2,7 @@ import { ButtonText, FormWrapper, H1, - H2, H3, - H4, Paragraph, SubmitButton, Theme, @@ -71,17 +69,23 @@ export const VerifyCode = ({ phone, onSuccess, type = 'sms' }: VerifyCodeProps) }, }} renderAfter={({ submit }) => ( - - submit()} br="$3" bc={'$accent9Light'} w={'$12'}> + + submit()} br="$3" bc={'$accent9Light'} $sm={{ w: '100%' }}> - {'Verify Account'} + {'VERIFY ACCOUNT'} )} > {(fields) => ( - +

VERIFY ACCOUNT diff --git a/packages/app/features/auth/layout.web.tsx b/packages/app/features/auth/layout.web.tsx index f34f7f30f..f8d459fb8 100644 --- a/packages/app/features/auth/layout.web.tsx +++ b/packages/app/features/auth/layout.web.tsx @@ -27,11 +27,9 @@ export function AuthLayout({ children }: { children: React.ReactNode; header?: s alt="sign-in-carousel" /> )} - + - - {children} - + {children} diff --git a/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap b/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap index 146f73a6e..e75f72f06 100644 --- a/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap +++ b/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap @@ -8,8 +8,6 @@ exports[`OnboardingScreen 1`] = ` "height": "100%", "justifyContent": "flex-start", "paddingBottom": 39, - "paddingLeft": 39, - "paddingRight": 39, "paddingTop": 39, "width": "100%", } diff --git a/packages/app/features/auth/onboarding/onboarding-form.tsx b/packages/app/features/auth/onboarding/onboarding-form.tsx new file mode 100644 index 000000000..0738ac915 --- /dev/null +++ b/packages/app/features/auth/onboarding/onboarding-form.tsx @@ -0,0 +1,139 @@ +import { createPasskey } from '@daimo/expo-passkeys' +import { base16, base64 } from '@scure/base' +import { assert } from 'app/utils/assert' +import { base64ToBase16 } from 'app/utils/base64ToBase16' +import { COSEECDHAtoXY, parseCreateResponse } from 'app/utils/passkeys' +import { useSupabase } from 'app/utils/supabase/useSupabase' +import { useUser } from 'app/utils/useUser' +import { daimoAccountFactory, encodeCreateAccountData, entrypoint } from 'app/utils/userop' +import { baseMainnetClient } from '@my/wagmi' +import * as Device from 'expo-device' +import { concat } from 'viem' +import { useState } from 'react' +import { getSenderAddress } from 'permissionless' +import { Input, Label, Anchor, YStack, Theme, XStack, Button } from '@my/ui' +import { useSendAccounts } from 'app/utils/send-accounts' + +/** + * Create a send account but not onchain, yet. + */ +export const OnboardingForm = () => { + // REMOTE / SUPABASE STATE + const supabase = useSupabase() + const { user } = useUser() + const { refetch: refetchSendAccounts } = useSendAccounts() + + // PASSKEY / ACCOUNT CREATION STATE + const deviceName = Device.deviceName + ? Device.deviceName + : `My ${Device.modelName ?? 'Send Account'}` + const [accountName, setAccountName] = useState(deviceName) // TODO: use expo-device to get device name + + // TODO: split creating the on-device and remote creation to introduce retries in-case of failures + async function createAccount() { + assert(!!user?.id, 'No user id') + + const keySlot = 0 + const passkeyName = `${user.id}.${keySlot}` // 64 bytes max + const [rawCred, authData] = await createPasskey({ + domain: window.location.hostname, + challengeB64: base64.encode(Buffer.from('foobar')), // TODO: generate a random challenge from the server + passkeyName, + passkeyDisplayTitle: `Send App: ${accountName}`, + }).then((r) => [r, parseCreateResponse(r)] as const) + + // store the init code in the database to avoid having to recompute it in case user drops off + // and does not finish onboarding flow + const _publicKey = COSEECDHAtoXY(authData.COSEPublicKey) + const factory = daimoAccountFactory.address + const factoryData = encodeCreateAccountData(_publicKey) + const initCode = concat([factory, factoryData]) + const senderAddress = await getSenderAddress(baseMainnetClient, { + factory, + factoryData, + entryPoint: entrypoint.address, + }) + const { error } = await supabase.rpc('create_send_account', { + send_account: { + address: senderAddress, + chain_id: baseMainnetClient.chain.id, + init_code: `\\x${initCode.slice(2)}`, + }, + webauthn_credential: { + name: passkeyName, + display_name: accountName, + raw_credential_id: `\\x${base64ToBase16(rawCred.credentialIDB64)}`, + public_key: `\\x${base16.encode(authData.COSEPublicKey)}`, + sign_count: 0, + attestation_object: `\\x${base64ToBase16(rawCred.rawAttestationObjectB64)}`, + key_type: 'ES256', + }, + key_slot: keySlot, + }) + + if (error) { + throw error + } + await refetchSendAccounts() + } + + return ( + // TODO: turn into a form + + + + + + + + Why Passkey? + + + + + + Why Passkey? + + + + + + + ) +} diff --git a/packages/app/features/auth/onboarding/screen.tsx b/packages/app/features/auth/onboarding/screen.tsx index 8f656136a..66f018e91 100644 --- a/packages/app/features/auth/onboarding/screen.tsx +++ b/packages/app/features/auth/onboarding/screen.tsx @@ -9,40 +9,26 @@ */ import { createPasskey } from '@daimo/expo-passkeys' import { - Button, - Footer, - Input, - Label, Paragraph, Stack, YStack, - Link, XStack, Theme, useMedia, - Anchor, H3, H1, useToastController, + Button, } from '@my/ui' -import { base16, base64 } from '@scure/base' -import { assert } from 'app/utils/assert' -import { base64ToBase16 } from 'app/utils/base64ToBase16' -import { COSEECDHAtoXY, parseCreateResponse } from 'app/utils/passkeys' -import { useSupabase } from 'app/utils/supabase/useSupabase' import { useSendAccounts } from 'app/utils/send-accounts' -import { useUser } from 'app/utils/useUser' -import { daimoAccountFactory, encodeCreateAccountData, entrypoint } from 'app/utils/userop' -import { baseMainnetClient, usdcAddress } from '@my/wagmi' -import * as Device from 'expo-device' -import { concat, parseEther } from 'viem' -import { IconSendLogo, IconTelegramLogo, IconXLogo, IconCopy } from 'app/components/icons' -import { telegram as telegramSocial, twitter as twitterSocial } from 'app/data/socialLinks' -import { useState } from 'react' -import { getSenderAddress } from 'permissionless' +import { IconSendLogo, IconCopy } from 'app/components/icons' import { shorten } from 'app/utils/strings' +import { OnboardingForm } from './onboarding-form' +import { Carousel } from '../components/Carousel' import { testClient } from 'app/utils/userop' +import { parseEther } from 'viem' import { setERC20Balance } from 'app/utils/useSetErc20Balance' +import { baseMainnetClient, usdcAddress } from '@my/wagmi' export function OnboardingScreen() { const media = useMedia() @@ -52,15 +38,22 @@ export function OnboardingScreen() { // isLoading: sendAcctsIsLoading, } = useSendAccounts() - if (media.gtMd) return null + if (media.gtMd) + return ( + + + + + + ) return ( - + - + {sendAccts?.length === 0 ? ( <> @@ -71,152 +64,12 @@ export function OnboardingScreen() {

Start by creating a Passkey below. Send uses passkeys to secure your account.

- + ) : ( )}
- {media.gtMd && ( -
- - Connect With Us - -
- )} -
- ) -} - -/** - * Create a send account but not onchain, yet. - */ -export function CreateSendAccount() { - // REMOTE / SUPABASE STATE - const supabase = useSupabase() - const { user } = useUser() - const { refetch: sendAcctsRefetch } = useSendAccounts() - - // PASSKEY / ACCOUNT CREATION STATE - const deviceName = Device.deviceName - ? Device.deviceName - : `My ${Device.modelName ?? 'Send Account'}` - const [accountName, setAccountName] = useState(deviceName) // TODO: use expo-device to get device name - - // TODO: split creating the on-device and remote creation to introduce retries in-case of failures - async function createAccount() { - assert(!!user?.id, 'No user id') - - const keySlot = 0 - const passkeyName = `${user.id}.${keySlot}` // 64 bytes max - const [rawCred, authData] = await createPasskey({ - domain: window.location.hostname, - challengeB64: base64.encode(Buffer.from('foobar')), // TODO: generate a random challenge from the server - passkeyName, - passkeyDisplayTitle: `Send App: ${accountName}`, - }).then((r) => [r, parseCreateResponse(r)] as const) - - // store the init code in the database to avoid having to recompute it in case user drops off - // and does not finish onboarding flow - const _publicKey = COSEECDHAtoXY(authData.COSEPublicKey) - const factory = daimoAccountFactory.address - const factoryData = encodeCreateAccountData(_publicKey) - const initCode = concat([factory, factoryData]) - const senderAddress = await getSenderAddress(baseMainnetClient, { - factory, - factoryData, - entryPoint: entrypoint.address, - }) - const { error } = await supabase.rpc('create_send_account', { - send_account: { - address: senderAddress, - chain_id: baseMainnetClient.chain.id, - init_code: `\\x${initCode.slice(2)}`, - }, - webauthn_credential: { - name: passkeyName, - display_name: accountName, - raw_credential_id: `\\x${base64ToBase16(rawCred.credentialIDB64)}`, - public_key: `\\x${base16.encode(authData.COSEPublicKey)}`, - sign_count: 0, - attestation_object: `\\x${base64ToBase16(rawCred.rawAttestationObjectB64)}`, - key_type: 'ES256', - }, - key_slot: keySlot, - }) - - if (error) { - throw error - } - - await sendAcctsRefetch() - - // await createAccountUsingEOA(_publicKey) - } - - return ( - // TODO: turn into a form - - - - - - - - Why Passkey? - - - - - - Why Passkey? - - - - - ) } diff --git a/packages/app/features/auth/sign-in/screen.tsx b/packages/app/features/auth/sign-in/screen.tsx index df6d8b777..90a7d44bf 100644 --- a/packages/app/features/auth/sign-in/screen.tsx +++ b/packages/app/features/auth/sign-in/screen.tsx @@ -1,177 +1,113 @@ -import { - Stack, - YStack, - Button, - ButtonText, - XStack, - H1, - Progress, - useMedia, - Paragraph, -} from '@my/ui' +import { Stack, YStack, Button, ButtonText, XStack, useMedia, Theme } from '@my/ui' import { IconSendLogo } from 'app/components/icons' - import { useContext, useEffect, useState } from 'react' -import { SignInForm } from './sign-in-form' +import { SignInForm } from 'app/features/auth/sign-in/sign-in-form' import { AnimationLayout } from 'app/components/layout/animation-layout' import { AuthCarouselContext } from 'app/features/auth/AuthCarouselContext' - -const screens = ['screen1', 'screen2', 'screen3', 'onboarding'] as const +import { Carousel } from 'app/features/auth/components/Carousel' export const SignInScreen = () => { - const { carouselProgress } = useContext(AuthCarouselContext) - - const getSignInPage = (page: (typeof screens)[number] | undefined) => { - switch (true) { - case page === 'screen1' || page === 'screen2' || page === 'screen3': - return - case page === 'onboarding': - return - default: - return - } - } + const media = useMedia() return ( - + - - {getSignInPage(screens[carouselProgress])} - + {media.gtMd ? ( + + + + ) : ( + + )} ) } -const ContinueButton = () => { - const { setCarouselProgress } = useContext(AuthCarouselContext) - return ( - - - - ) -} +const screens = ['screen1', 'screen2', 'screen3', 'form'] as const -const SignInButtons = () => { +const SignInScreensMobile = () => { + const [signInProgress, setSignInProgress] = useState(0) const { setCarouselProgress } = useContext(AuthCarouselContext) - return ( - - - - - ) -} - -const carouselItems = [ - { - title: 'LIKE CASH', - description: 'SEND AND RECEIVE MONEY GLOBALLY IN SECONDS', - }, - { - title: 'ALL YOURS', - description: 'ONLY YOU HAVE ACCESS TO YOUR FUNDS', - }, - { - title: 'SECURE', - description: 'PRIVACY FIRST WITH VERFIED SIGN-IN AND TRANSFERS', - }, -] - -const CarouselProgress = () => { - const { carouselProgress, setCarouselProgress } = useContext(AuthCarouselContext) - const [progressWidth, setProgressWidth] = useState(0) useEffect(() => { - const progressWidthInterval = setInterval(() => { - setProgressWidth((progressWidth) => { - return progressWidth >= 100 ? 0 : progressWidth + 1 - }) - if (progressWidth >= 100) { - setCarouselProgress((progress) => (progress + 1) % carouselItems.length) - } - }, 50) + setCarouselProgress(0) + }, [setCarouselProgress]) + + const nextScreen = () => { + setSignInProgress((progress) => { + setCarouselProgress(progress + 1) + return progress + 1 + }) + } - return () => { - clearInterval(progressWidthInterval) + const getSignInButtons = (page: (typeof screens)[number] | undefined) => { + switch (true) { + case page === 'screen1' || page === 'screen2': + return + case page === 'screen3': + return + case page === 'form': + return null + default: + return } - }, [setCarouselProgress, progressWidth]) + } return ( - - {carouselItems.map(({ title }, i) => { - return ( - - - - ) - })} - + <> + + {screens[signInProgress] === 'form' ? ( + + + + ) : ( + + )} + + + {screens[signInProgress] === 'form' ? ( + + ) : ( + <> + + + + {getSignInButtons(screens[signInProgress])} + + )} + + ) } -const SignInCarousel = () => { - const { carouselProgress } = useContext(AuthCarouselContext) - const { gtMd } = useMedia() +const ContinueButton = ({ nextScreen }: { nextScreen: () => void }) => ( + + + +) - const item = carouselItems.at(carouselProgress) - - return ( - - -

- {item?.title} -

- - {item?.description} - -
- {gtMd ? ( - - ) : carouselProgress < carouselItems.length - 1 ? ( - - ) : ( - - )} -
- ) -} +const SignInButtons = ({ nextScreen }: { nextScreen: () => void }) => ( + + + + +) diff --git a/packages/app/features/auth/sign-in/sign-in-form.tsx b/packages/app/features/auth/sign-in/sign-in-form.tsx index 8b0d44a41..62732c1fd 100644 --- a/packages/app/features/auth/sign-in/sign-in-form.tsx +++ b/packages/app/features/auth/sign-in/sign-in-form.tsx @@ -69,23 +69,28 @@ export const SignInForm = () => { }, }} renderAfter={({ submit }) => ( - + submit()} br="$3" bc={'$accent9Light'} - w={'$12'} - $sm={{ dsp: form.getValues().phone?.length > 0 ? 'flex' : 'none' }} + $sm={{ w: '100%' }} > - {'/SEND IT!'} + {'/SEND IT'} )} > {(fields) => ( - +

WELCOME TO SEND diff --git a/packages/playwright/tests/sign-in.anon.spec.ts b/packages/playwright/tests/sign-in.anon.spec.ts index 6bd67fb07..21734ce62 100644 --- a/packages/playwright/tests/sign-in.anon.spec.ts +++ b/packages/playwright/tests/sign-in.anon.spec.ts @@ -22,9 +22,9 @@ test('can login', async ({ page, pg }) => { await expect(page).toHaveURL('/auth/sign-in') await page.getByLabel('Phone number').fill(phone) try { - await page.getByRole('button', { name: 'SEND IT!' }).click() + await page.getByRole('button', { name: '/SEND IT' }).click() await page.getByLabel('One-time Password').fill('123456') - await page.getByRole('button', { name: 'Verify' }).click() + await page.getByRole('button', { name: 'VERIFY ACCOUNT' }).click() await page.waitForLoadState() await expect(page).toHaveURL('/auth/onboarding') } finally { @@ -60,9 +60,9 @@ test('country code is selected based on geoip', async ({ page, context, pg }) => }) }) try { - await page.getByRole('button', { name: 'SEND IT!' }).click() + await page.getByRole('button', { name: '/SEND IT' }).click() await page.getByLabel('One-time Password').fill('123456') - await page.getByRole('button', { name: 'Verify' }).click() + await page.getByRole('button', { name: 'VERIFY ACCOUNT' }).click() await page.waitForLoadState() await expect(page).toHaveURL('/auth/onboarding') } finally { From 8cca595a76231692907b6ddb4b2682fcb70b1a36 Mon Sep 17 00:00:00 2001 From: youngkidwarrior Date: Mon, 19 Feb 2024 16:33:19 -0800 Subject: [PATCH 019/177] LinearGradient fo background images & logo colors --- .../app/features/auth/components/Carousel.tsx | 2 +- packages/app/features/auth/layout.web.tsx | 57 ++++++++++++++----- .../__snapshots__/screen.test.tsx.snap | 6 +- .../app/features/auth/onboarding/screen.tsx | 4 +- packages/app/features/auth/sign-in/screen.tsx | 12 ++-- packages/ui/src/index.tsx | 1 + 6 files changed, 60 insertions(+), 22 deletions(-) diff --git a/packages/app/features/auth/components/Carousel.tsx b/packages/app/features/auth/components/Carousel.tsx index bd97eff0e..c870063de 100644 --- a/packages/app/features/auth/components/Carousel.tsx +++ b/packages/app/features/auth/components/Carousel.tsx @@ -13,7 +13,7 @@ const carouselItems = [ }, { title: 'SECURE', - description: 'PRIVACY FIRST WITH VERFIED SIGN-IN AND TRANSFERS', + description: 'PRIVACY FIRST WITH VERIFIED SIGN-IN AND TRANSFERS', }, ] as const diff --git a/packages/app/features/auth/layout.web.tsx b/packages/app/features/auth/layout.web.tsx index f8d459fb8..2c8ecacae 100644 --- a/packages/app/features/auth/layout.web.tsx +++ b/packages/app/features/auth/layout.web.tsx @@ -1,11 +1,22 @@ -import { Container, ScrollView, YStack } from '@my/ui' +import { Container, YStack, LinearGradient, useMedia } from '@my/ui' import { AuthSideBarWrapper } from 'app/components/sidebar/AuthSideBar' import { useMemo, useState } from 'react' import { AuthCarouselContext } from './AuthCarouselContext' import { SolitoImage } from 'solito/image' import { type GetPlaiceholderImage } from 'app/utils/getPlaiceholderImage' +import { usePathname } from 'app/utils/usePathname' +import { AnimationLayout } from '../../components/layout/animation-layout' + +export function AuthLayout({ + children, +}: { + children: React.ReactNode + header?: string +}) { + const media = useMedia() + const pathname = usePathname() + const isMobileOnboarding = media.sm && pathname.includes('/auth/onboarding') -export function AuthLayout({ children }: { children: React.ReactNode; header?: string }) { const [carouselImages, setCarouselImages] = useState([]) const [carouselProgress, setCarouselProgress] = useState(0) @@ -14,19 +25,39 @@ export function AuthLayout({ children }: { children: React.ReactNode; header?: s return useMemo( () => ( - {carouselImage && ( - + {carouselImage && !isMobileOnboarding && ( + + + + )} + {children} @@ -35,6 +66,6 @@ export function AuthLayout({ children }: { children: React.ReactNode; header?: s ), - [carouselImage, carouselImages, carouselProgress, children] + [carouselImage, carouselImages, carouselProgress, children, media.gtMd, isMobileOnboarding] ) } diff --git a/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap b/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap index e75f72f06..0f1954dde 100644 --- a/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap +++ b/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap @@ -24,7 +24,7 @@ exports[`OnboardingScreen 1`] = ` align="xMidYMid" bbHeight="28" bbWidth="77" - color="#FFFFFF" + color="hsla(191, 32%, 99%, 1)" focusable={false} height={28} meetOrSlice={0} @@ -38,7 +38,7 @@ exports[`OnboardingScreen 1`] = ` "borderWidth": 0, }, { - "color": "#FFFFFF", + "color": "hsla(191, 32%, 99%, 1)", }, { "flex": 0, @@ -47,7 +47,7 @@ exports[`OnboardingScreen 1`] = ` }, ] } - tintColor="#FFFFFF" + tintColor="hsla(191, 32%, 99%, 1)" vbHeight={48} vbWidth={132} width={77} diff --git a/packages/app/features/auth/onboarding/screen.tsx b/packages/app/features/auth/onboarding/screen.tsx index 66f018e91..8eabf3652 100644 --- a/packages/app/features/auth/onboarding/screen.tsx +++ b/packages/app/features/auth/onboarding/screen.tsx @@ -50,7 +50,9 @@ export function OnboardingScreen() { return ( - + + + diff --git a/packages/app/features/auth/sign-in/screen.tsx b/packages/app/features/auth/sign-in/screen.tsx index 90a7d44bf..f4698900b 100644 --- a/packages/app/features/auth/sign-in/screen.tsx +++ b/packages/app/features/auth/sign-in/screen.tsx @@ -11,9 +11,6 @@ export const SignInScreen = () => { return ( - - - {media.gtMd ? ( @@ -88,7 +85,14 @@ const SignInScreensMobile = () => { const ContinueButton = ({ nextScreen }: { nextScreen: () => void }) => ( - diff --git a/packages/ui/src/index.tsx b/packages/ui/src/index.tsx index 1f1d200ce..3cd2d4354 100644 --- a/packages/ui/src/index.tsx +++ b/packages/ui/src/index.tsx @@ -1,4 +1,5 @@ export * from '@tamagui/toast' +export * from '@tamagui/linear-gradient' export * from 'tamagui' export * from './components' export { config } from './tamagui.config' From 6b6bce350de7a6e528d6409898f0c44b1c53fb11 Mon Sep 17 00:00:00 2001 From: youngkidwarrior Date: Mon, 19 Feb 2024 21:17:43 -0800 Subject: [PATCH 020/177] Make Onboarding Form an actual form --- .../app/components/sidebar/AuthSideBar.tsx | 2 + .../app/features/auth/components/Carousel.tsx | 16 +- .../features/auth/components/VerifyCode.tsx | 7 +- packages/app/features/auth/layout.web.tsx | 14 +- .../auth/onboarding/onboarding-form.tsx | 172 ++++++++++++------ .../app/features/auth/onboarding/screen.tsx | 29 +-- packages/app/features/auth/sign-in/screen.tsx | 6 +- .../features/auth/sign-in/sign-in-form.tsx | 13 +- .../tests/fixtures/send-accounts/page.ts | 4 +- 9 files changed, 161 insertions(+), 102 deletions(-) diff --git a/packages/app/components/sidebar/AuthSideBar.tsx b/packages/app/components/sidebar/AuthSideBar.tsx index 4bebafa72..797afebb6 100644 --- a/packages/app/components/sidebar/AuthSideBar.tsx +++ b/packages/app/components/sidebar/AuthSideBar.tsx @@ -8,11 +8,13 @@ import { SendAccountCongratulations } from 'app/features/auth/onboarding/screen' const AuthSideBar = ({ ...props }: YStackProps) => { const pathName = usePathname() + // @todo handle loading and error states const { data: sendAccts, // error: sendAcctsError, // isLoading: sendAcctsIsLoading, } = useSendAccounts() + return ( diff --git a/packages/app/features/auth/components/Carousel.tsx b/packages/app/features/auth/components/Carousel.tsx index c870063de..da5afdcec 100644 --- a/packages/app/features/auth/components/Carousel.tsx +++ b/packages/app/features/auth/components/Carousel.tsx @@ -5,18 +5,24 @@ import { H1, Paragraph, Progress, Stack, XStack, useMedia } from '@my/ui' const carouselItems = [ { title: 'LIKE CASH', - description: 'SEND AND RECEIVE MONEY GLOBALLY IN SECONDS', + description: 'Send and receive money globally in seconds', }, { title: 'ALL YOURS', - description: 'ONLY YOU HAVE ACCESS TO YOUR FUNDS', + description: 'Only you have access to your funds', }, { title: 'SECURE', - description: 'PRIVACY FIRST WITH VERIFIED SIGN-IN AND TRANSFERS', + description: 'Privacy first with verified sign-in and transfers', }, ] as const +export const carouselImagePositions = [ + { bottom: '0%', left: '75%' }, + { bottom: '0%', left: '35%' }, + { bottom: '0%', left: '50%' }, +] as const + const CarouselProgress = () => { const { carouselProgress, setCarouselProgress } = useContext(AuthCarouselContext) const [progressWidth, setProgressWidth] = useState(0) @@ -64,9 +70,7 @@ export const Carousel = () => { return ( <> -

- {item?.title} -

+

{item?.title}

( @@ -44,6 +46,7 @@ export function AuthLayout({ blurDataURL={carouselImage.base64} src={carouselImage.img.src} fill={true} + contentPosition={media.gtMd ? undefined : mobileImagePosition} style={{ objectFit: 'cover' }} alt="sign-in-carousel" /> @@ -51,7 +54,6 @@ export function AuthLayout({ pos="absolute" w="100%" h="100%" - opacity={0.8} locations={media.gtMd ? [0.5, 1] : [0, 0.5, 1]} colors={media.gtMd ? ['transparent', 'black'] : ['$black', 'transparent', '$black']} /> @@ -66,6 +68,14 @@ export function AuthLayout({ ), - [carouselImage, carouselImages, carouselProgress, children, media.gtMd, isMobileOnboarding] + [ + carouselImage, + carouselImages, + carouselProgress, + children, + media.gtMd, + isMobileOnboarding, + mobileImagePosition, + ] ) } diff --git a/packages/app/features/auth/onboarding/onboarding-form.tsx b/packages/app/features/auth/onboarding/onboarding-form.tsx index 0738ac915..da3024ee3 100644 --- a/packages/app/features/auth/onboarding/onboarding-form.tsx +++ b/packages/app/features/auth/onboarding/onboarding-form.tsx @@ -9,11 +9,17 @@ import { daimoAccountFactory, encodeCreateAccountData, entrypoint } from 'app/ut import { baseMainnetClient } from '@my/wagmi' import * as Device from 'expo-device' import { concat } from 'viem' -import { useState } from 'react' import { getSenderAddress } from 'permissionless' -import { Input, Label, Anchor, YStack, Theme, XStack, Button } from '@my/ui' +import { Anchor, YStack, Theme, XStack, SubmitButton, ButtonText, H1, Paragraph } from '@my/ui' +import { SchemaForm, formFields } from 'app/utils/SchemaForm' +import { z } from 'zod' +import { useForm, FormProvider } from 'react-hook-form' import { useSendAccounts } from 'app/utils/send-accounts' +const OnboardingSchema = z.object({ + accountName: formFields.text, +}) + /** * Create a send account but not onchain, yet. */ @@ -21,16 +27,16 @@ export const OnboardingForm = () => { // REMOTE / SUPABASE STATE const supabase = useSupabase() const { user } = useUser() + const form = useForm>() const { refetch: refetchSendAccounts } = useSendAccounts() // PASSKEY / ACCOUNT CREATION STATE const deviceName = Device.deviceName ? Device.deviceName : `My ${Device.modelName ?? 'Send Account'}` - const [accountName, setAccountName] = useState(deviceName) // TODO: use expo-device to get device name // TODO: split creating the on-device and remote creation to introduce retries in-case of failures - async function createAccount() { + async function createAccount({ accountName }: z.infer) { assert(!!user?.id, 'No user id') const keySlot = 0 @@ -78,62 +84,110 @@ export const OnboardingForm = () => { } return ( - // TODO: turn into a form - - - - - - - - Why Passkey? - - - - - - Why Passkey? - - - - - - + + Why Passkey? + + + + + CREATE PASSKEY + + + + + )} + > + {(fields) => ( + + +

+ SETUP PASSKEY +

+
+ + Start by creating a Passkey below. Send uses passkeys to secure your account + + + + + Passkey Name + + + + {Object.values(fields)} + + Why Passkey? + + + +
+ )} + + ) } diff --git a/packages/app/features/auth/onboarding/screen.tsx b/packages/app/features/auth/onboarding/screen.tsx index 8eabf3652..569f620cd 100644 --- a/packages/app/features/auth/onboarding/screen.tsx +++ b/packages/app/features/auth/onboarding/screen.tsx @@ -7,7 +7,6 @@ * - Generate a deterministic address from the public key * - Ask the user to deposit funds */ -import { createPasskey } from '@daimo/expo-passkeys' import { Paragraph, Stack, @@ -16,7 +15,6 @@ import { Theme, useMedia, H3, - H1, useToastController, Button, } from '@my/ui' @@ -32,11 +30,7 @@ import { baseMainnetClient, usdcAddress } from '@my/wagmi' export function OnboardingScreen() { const media = useMedia() - const { - data: sendAccts, - // error: sendAcctsError, - // isLoading: sendAcctsIsLoading, - } = useSendAccounts() + const { data: sendAccts } = useSendAccounts() if (media.gtMd) return ( @@ -48,34 +42,19 @@ export function OnboardingScreen() { ) return ( - - + + - {sendAccts?.length === 0 ? ( - <> - -

- SETUP PASSKEY -

-
-

- Start by creating a Passkey below. Send uses passkeys to secure your account. -

- - - ) : ( - - )} + {sendAccts?.length === 0 ? : }
) } - export function SendAccountCongratulations() { const toast = useToastController() const { data: sendAccts } = useSendAccounts() diff --git a/packages/app/features/auth/sign-in/screen.tsx b/packages/app/features/auth/sign-in/screen.tsx index f4698900b..a639c4663 100644 --- a/packages/app/features/auth/sign-in/screen.tsx +++ b/packages/app/features/auth/sign-in/screen.tsx @@ -10,7 +10,7 @@ export const SignInScreen = () => { const media = useMedia() return ( - + {media.gtMd ? ( @@ -99,9 +99,9 @@ const ContinueButton = ({ nextScreen }: { nextScreen: () => void }) => ( ) const SignInButtons = ({ nextScreen }: { nextScreen: () => void }) => ( - +

-

- Sign up or Sign in with your phone number -

+ + Sign in with your phone number + diff --git a/packages/playwright/tests/fixtures/send-accounts/page.ts b/packages/playwright/tests/fixtures/send-accounts/page.ts index 598dc4ce1..5eac78990 100644 --- a/packages/playwright/tests/fixtures/send-accounts/page.ts +++ b/packages/playwright/tests/fixtures/send-accounts/page.ts @@ -11,8 +11,8 @@ export class OnboardingPage { // choose a random account name const acctName = this.accountName - await this.page.getByRole('textbox', { name: 'Passkey name' }).fill(acctName) - await expect(this.page.getByLabel('Passkey name')).toHaveValue(acctName) + await this.page.getByRole('textbox', { name: 'Account name' }).fill(acctName) + await expect(this.page.getByLabel('Account name')).toHaveValue(acctName) await this.page.getByRole('button', { name: 'Create Passkey' }).click() // @todo add a check for the success message From dbddd2edc76c5bfb3749b420f44b16c85d1581ae Mon Sep 17 00:00:00 2001 From: youngkidwarrior Date: Sun, 25 Feb 2024 16:29:59 -0800 Subject: [PATCH 021/177] Replace Inter Font with DM Sans and DM Sans Mono --- apps/next/pages/_app.tsx | 8 +- apps/next/public/tamagui.css | 12351 ++++++++++++++++++- packages/app/package.json | 3 +- packages/ui/src/components/NativeToast.tsx | 2 +- packages/ui/src/config/fonts.ts | 121 +- packages/ui/src/tamagui.config.ts | 3 +- yarn.lock | 17 +- 7 files changed, 11938 insertions(+), 567 deletions(-) diff --git a/apps/next/pages/_app.tsx b/apps/next/pages/_app.tsx index 8384e174c..74817a923 100644 --- a/apps/next/pages/_app.tsx +++ b/apps/next/pages/_app.tsx @@ -1,7 +1,11 @@ import '../public/reset.css' -import '@tamagui/font-inter/css/400.css' -import '@tamagui/font-inter/css/700.css' +import '@fontsource/dm-sans/400.css' +import '@fontsource/dm-sans/900.css' +import '@fontsource/dm-mono/300.css' +import '@fontsource/dm-mono/400.css' +import '@fontsource/dm-mono/500.css' + import 'raf/polyfill' import { ColorScheme, NextThemeProvider, useRootTheme } from '@tamagui/next-theme' diff --git a/apps/next/public/tamagui.css b/apps/next/public/tamagui.css index cee3fdadf..93db58bef 100644 --- a/apps/next/public/tamagui.css +++ b/apps/next/public/tamagui.css @@ -1,526 +1,11827 @@ -._ovs-contain {overscroll-behavior:contain;} -.is_Text .is_Text {display:inline-flex;} -._dsp_contents {display:contents;} -:root {--color-1:hsl(206, 100%, 99.2%);--color-2:hsl(210, 100%, 98.0%);--color-3:hsl(209, 100%, 96.5%);--color-4:hsl(210, 98.8%, 94.0%);--color-5:hsl(209, 95.0%, 90.1%);--color-6:hsl(209, 81.2%, 84.5%);--color-7:hsl(208, 77.5%, 76.9%);--color-8:hsl(206, 81.9%, 65.3%);--color-9:hsl(206, 100%, 50.0%);--color-10:hsl(208, 100%, 47.3%);--color-11:hsl(211, 100%, 43.2%);--color-12:hsl(211, 100%, 15.0%);--color-13:hsl(0, 0%, 99.0%);--color-14:hsl(0, 0%, 97.3%);--color-15:hsl(0, 0%, 95.1%);--color-16:hsl(0, 0%, 93.0%);--color-17:hsl(0, 0%, 90.9%);--color-18:hsl(0, 0%, 88.7%);--color-19:hsl(0, 0%, 85.8%);--color-20:hsl(0, 0%, 78.0%);--color-21:hsl(0, 0%, 56.1%);--color-22:hsl(0, 0%, 52.3%);--color-23:hsl(0, 0%, 43.5%);--color-24:hsl(0, 0%, 9.0%);--color-25:hsl(136, 50.0%, 98.9%);--color-26:hsl(138, 62.5%, 96.9%);--color-27:hsl(139, 55.2%, 94.5%);--color-28:hsl(140, 48.7%, 91.0%);--color-29:hsl(141, 43.7%, 86.0%);--color-30:hsl(143, 40.3%, 79.0%);--color-31:hsl(146, 38.5%, 69.0%);--color-32:hsl(151, 40.2%, 54.1%);--color-33:hsl(151, 55.0%, 41.5%);--color-34:hsl(152, 57.5%, 37.6%);--color-35:hsl(153, 67.0%, 28.5%);--color-36:hsl(155, 40.0%, 14.0%);--color-37:hsl(24, 70.0%, 99.0%);--color-38:hsl(24, 83.3%, 97.6%);--color-39:hsl(24, 100%, 95.3%);--color-40:hsl(25, 100%, 92.2%);--color-41:hsl(25, 100%, 88.2%);--color-42:hsl(25, 100%, 82.8%);--color-43:hsl(24, 100%, 75.3%);--color-44:hsl(24, 94.5%, 64.3%);--color-45:hsl(24, 94.0%, 50.0%);--color-46:hsl(24, 100%, 46.5%);--color-47:hsl(24, 100%, 37.0%);--color-48:hsl(15, 60.0%, 17.0%);--color-49:hsl(322, 100%, 99.4%);--color-50:hsl(323, 100%, 98.4%);--color-51:hsl(323, 86.3%, 96.5%);--color-52:hsl(323, 78.7%, 94.2%);--color-53:hsl(323, 72.2%, 91.1%);--color-54:hsl(323, 66.3%, 86.6%);--color-55:hsl(323, 62.0%, 80.1%);--color-56:hsl(323, 60.3%, 72.4%);--color-57:hsl(322, 65.0%, 54.5%);--color-58:hsl(322, 63.9%, 50.7%);--color-59:hsl(322, 75.0%, 46.0%);--color-60:hsl(320, 70.0%, 13.5%);--color-61:hsl(280, 65.0%, 99.4%);--color-62:hsl(276, 100%, 99.0%);--color-63:hsl(276, 83.1%, 97.0%);--color-64:hsl(275, 76.4%, 94.7%);--color-65:hsl(275, 70.8%, 91.8%);--color-66:hsl(274, 65.4%, 87.8%);--color-67:hsl(273, 61.0%, 81.7%);--color-68:hsl(272, 60.0%, 73.5%);--color-69:hsl(272, 51.0%, 54.0%);--color-70:hsl(272, 46.8%, 50.3%);--color-71:hsl(272, 50.0%, 45.8%);--color-72:hsl(272, 66.0%, 16.0%);--color-73:hsl(359, 100%, 99.4%);--color-74:hsl(359, 100%, 98.6%);--color-75:hsl(360, 100%, 96.8%);--color-76:hsl(360, 97.9%, 94.8%);--color-77:hsl(360, 90.2%, 91.9%);--color-78:hsl(360, 81.7%, 87.8%);--color-79:hsl(359, 74.2%, 81.7%);--color-80:hsl(359, 69.5%, 74.3%);--color-81:hsl(358, 75.0%, 59.0%);--color-82:hsl(358, 69.4%, 55.2%);--color-83:hsl(358, 65.0%, 48.7%);--color-84:hsl(354, 50.0%, 14.6%);--color-85:hsl(60, 54.0%, 98.5%);--color-86:hsl(52, 100%, 95.5%);--color-87:hsl(55, 100%, 90.9%);--color-88:hsl(54, 100%, 86.6%);--color-89:hsl(52, 97.9%, 82.0%);--color-90:hsl(50, 89.4%, 76.1%);--color-91:hsl(47, 80.4%, 68.0%);--color-92:hsl(48, 100%, 46.1%);--color-93:hsl(53, 92.0%, 50.0%);--color-94:hsl(50, 100%, 48.5%);--color-95:hsl(42, 100%, 29.0%);--color-96:hsl(40, 55.0%, 13.5%);--color-97:hsl(50, 20.0%, 99.1%);--color-98:hsl(47, 52.9%, 96.7%);--color-99:hsl(46, 38.2%, 93.7%);--color-100:hsl(44, 32.7%, 90.1%);--color-101:hsl(43, 29.9%, 85.7%);--color-102:hsl(41, 28.3%, 79.8%);--color-103:hsl(39, 27.6%, 71.9%);--color-104:hsl(36, 27.2%, 61.8%);--color-105:hsl(36, 20.0%, 49.5%);--color-106:hsl(36, 19.8%, 45.7%);--color-107:hsl(36, 20.0%, 39.0%);--color-108:hsl(36, 16.0%, 20.0%);--color-109:hsla(125, 96%, 40%, 0.5);--color-110:hsla(125, 96%, 40%, 0.75);--color-111:hsla(125, 96%, 40%, 1);--color-112:hsla(125, 96%, 42%, 1);--color-113:hsla(125, 96%, 45%, 1);--color-114:hsla(125, 96%, 47%, 1);--color-115:hsla(125, 96%, 50%, 1);--color-116:hsla(125, 96%, 52%, 1);--color-117:hsla(125, 96%, 55%, 1);--color-118:hsla(125, 96%, 57%, 1);--color-119:hsla(125, 96%, 59%, 1);--color-120:hsla(125, 96%, 62%, 1);--color-121:hsl(212, 35.0%, 9.2%);--color-122:hsl(216, 50.0%, 11.8%);--color-123:hsl(214, 59.4%, 15.3%);--color-124:hsl(214, 65.8%, 17.9%);--color-125:hsl(213, 71.2%, 20.2%);--color-126:hsl(212, 77.4%, 23.1%);--color-127:hsl(211, 85.1%, 27.4%);--color-128:hsl(211, 89.7%, 34.1%);--color-129:hsl(206, 100%, 50.0%);--color-130:hsl(209, 100%, 60.6%);--color-131:hsl(210, 100%, 66.1%);--color-132:hsl(206, 98.0%, 95.8%);--color-133:hsl(0, 0%, 8.5%);--color-134:hsl(0, 0%, 11.0%);--color-135:hsl(0, 0%, 13.6%);--color-136:hsl(0, 0%, 15.8%);--color-137:hsl(0, 0%, 17.9%);--color-138:hsl(0, 0%, 20.5%);--color-139:hsl(0, 0%, 24.3%);--color-140:hsl(0, 0%, 31.2%);--color-141:hsl(0, 0%, 43.9%);--color-142:hsl(0, 0%, 49.4%);--color-143:hsl(0, 0%, 62.8%);--color-144:hsl(0, 0%, 93.0%);--color-145:hsl(146, 30.0%, 7.4%);--color-146:hsl(155, 44.2%, 8.4%);--color-147:hsl(155, 46.7%, 10.9%);--color-148:hsl(154, 48.4%, 12.9%);--color-149:hsl(154, 49.7%, 14.9%);--color-150:hsl(154, 50.9%, 17.6%);--color-151:hsl(153, 51.8%, 21.8%);--color-152:hsl(151, 51.7%, 28.4%);--color-153:hsl(151, 55.0%, 41.5%);--color-154:hsl(151, 49.3%, 46.5%);--color-155:hsl(151, 50.0%, 53.2%);--color-156:hsl(137, 72.0%, 94.0%);--color-157:hsl(30, 70.0%, 7.2%);--color-158:hsl(28, 100%, 8.4%);--color-159:hsl(26, 91.1%, 11.6%);--color-160:hsl(25, 88.3%, 14.1%);--color-161:hsl(24, 87.6%, 16.6%);--color-162:hsl(24, 88.6%, 19.8%);--color-163:hsl(24, 92.4%, 24.0%);--color-164:hsl(25, 100%, 29.0%);--color-165:hsl(24, 94.0%, 50.0%);--color-166:hsl(24, 100%, 58.5%);--color-167:hsl(24, 100%, 62.2%);--color-168:hsl(24, 97.0%, 93.2%);--color-169:hsl(318, 25.0%, 9.6%);--color-170:hsl(319, 32.2%, 11.6%);--color-171:hsl(319, 41.0%, 16.0%);--color-172:hsl(320, 45.4%, 18.7%);--color-173:hsl(320, 49.0%, 21.1%);--color-174:hsl(321, 53.6%, 24.4%);--color-175:hsl(321, 61.1%, 29.7%);--color-176:hsl(322, 74.9%, 37.5%);--color-177:hsl(322, 65.0%, 54.5%);--color-178:hsl(323, 72.8%, 59.2%);--color-179:hsl(325, 90.0%, 66.4%);--color-180:hsl(322, 90.0%, 95.8%);--color-181:hsl(284, 20.0%, 9.6%);--color-182:hsl(283, 30.0%, 11.8%);--color-183:hsl(281, 37.5%, 16.5%);--color-184:hsl(280, 41.2%, 20.0%);--color-185:hsl(279, 43.8%, 23.3%);--color-186:hsl(277, 46.4%, 27.5%);--color-187:hsl(275, 49.3%, 34.6%);--color-188:hsl(272, 52.1%, 45.9%);--color-189:hsl(272, 51.0%, 54.0%);--color-190:hsl(273, 57.3%, 59.1%);--color-191:hsl(275, 80.0%, 71.0%);--color-192:hsl(279, 75.0%, 95.7%);--color-193:hsl(353, 23.0%, 9.8%);--color-194:hsl(357, 34.4%, 12.0%);--color-195:hsl(356, 43.4%, 16.4%);--color-196:hsl(356, 47.6%, 19.2%);--color-197:hsl(356, 51.1%, 21.9%);--color-198:hsl(356, 55.2%, 25.9%);--color-199:hsl(357, 60.2%, 31.8%);--color-200:hsl(358, 65.0%, 40.4%);--color-201:hsl(358, 75.0%, 59.0%);--color-202:hsl(358, 85.3%, 64.0%);--color-203:hsl(358, 100%, 69.5%);--color-204:hsl(351, 89.0%, 96.0%);--color-205:hsl(45, 100%, 5.5%);--color-206:hsl(46, 100%, 6.7%);--color-207:hsl(45, 100%, 8.7%);--color-208:hsl(45, 100%, 10.4%);--color-209:hsl(47, 100%, 12.1%);--color-210:hsl(49, 100%, 14.3%);--color-211:hsl(49, 90.3%, 18.4%);--color-212:hsl(50, 100%, 22.0%);--color-213:hsl(53, 92.0%, 50.0%);--color-214:hsl(54, 100%, 68.0%);--color-215:hsl(48, 100%, 47.0%);--color-216:hsl(53, 100%, 91.0%);--color-217:hsl(44, 9.0%, 8.3%);--color-218:hsl(43, 14.3%, 9.6%);--color-219:hsl(42, 15.5%, 13.0%);--color-220:hsl(41, 16.4%, 15.6%);--color-221:hsl(41, 16.9%, 17.8%);--color-222:hsl(40, 17.6%, 20.8%);--color-223:hsl(38, 18.5%, 26.4%);--color-224:hsl(36, 19.6%, 35.1%);--color-225:hsl(36, 20.0%, 49.5%);--color-226:hsl(36, 22.3%, 54.5%);--color-227:hsl(35, 30.0%, 64.0%);--color-228:hsl(49, 52.0%, 93.8%);--color-229:hsla(125, 96%, 40%, 0.5);--color-230:hsla(125, 96%, 40%, 0.75);--color-231:hsla(125, 96%, 40%, 1);--color-232:hsla(125, 96%, 42%, 1);--color-233:hsla(125, 96%, 45%, 1);--color-234:hsla(125, 96%, 47%, 1);--color-235:hsla(125, 96%, 50%, 1);--color-236:hsla(125, 96%, 52%, 1);--color-237:hsla(125, 96%, 55%, 1);--color-238:hsla(125, 96%, 57%, 1);--color-239:hsla(125, 96%, 59%, 1);--color-240:hsla(125, 96%, 62%, 1);--color-241:#40FB50;--color-242:#FFFFFF;--color-243:#122023;--color-244:#F5F6FC;--color-245:#E8ECFB;--color-246:#D2D9EE;--color-247:#B8C0DC;--color-248:#A6AFCA;--color-249:#98A1C0;--color-250:#888FAB;--color-251:#7780A0;--color-252:#6B7594;--color-253:#5D6785;--color-254:#505A78;--color-255:#404A67;--color-256:#333D59;--color-257:#293249;--color-258:#1B2236;--color-259:#131A2A;--color-260:#0E1524;--color-261:#0D111C;--color-262:#FFF2F7;--color-263:#FFD9E4;--color-264:#FBA4C0;--color-265:#FF6FA3;--color-266:#FB118E;--color-267:#C41A69;--color-268:#8C0F49;--color-269:#55072A;--color-270:#39061B;--color-271:#2B000B;--color-272:#F51A70;--color-273:#FEF0EE;--color-274:#FED5CF;--color-275:#FEA79B;--color-276:#FD766B;--color-277:#FA2B39;--color-278:#C4292F;--color-279:#891E20;--color-280:#530F0F;--color-281:#380A03;--color-282:#240800;--color-283:#F14544;--color-284:#FEF8C4;--color-285:#F0E49A;--color-286:#DBBC19;--color-287:#BB9F13;--color-288:#A08116;--color-289:#866311;--color-290:#5D4204;--color-291:#3E2B04;--color-292:#231902;--color-293:#180F02;--color-294:#FAF40A;--color-295:#FFF5E8;--color-296:#F8DEB6;--color-297:#EEB317;--color-298:#DB900B;--color-299:#B17900;--color-300:#905C10;--color-301:#643F07;--color-302:#3F2208;--color-303:#29160F;--color-304:#161007;--color-305:#FEB239;--color-306:#EDFDF0;--color-307:#BFEECA;--color-308:#76D191;--color-309:#40B66B;--color-310:#209853;--color-311:#0B783E;--color-312:#0C522A;--color-313:#053117;--color-314:#091F10;--color-315:#09130B;--color-316:#5CFE9D;--color-317:#F3F5FE;--color-318:#DEE1FF;--color-319:#ADBCFF;--color-320:#869EFF;--color-321:#4C82FB;--color-322:#1267D6;--color-323:#1D4294;--color-324:#09265E;--color-325:#0B193F;--color-326:#040E34;--color-327:#587BFF;--color-328:#F2FEDB;--color-329:#D3EBA3;--color-330:#9BCD46;--color-331:#7BB10C;--color-332:#649205;--color-333:#527318;--color-334:#344F00;--color-335:#233401;--color-336:#171D00;--color-337:#0E1300;--color-338:#B1F13C;--color-339:#FEEDE5;--color-340:#FCD9C8;--color-341:#FBAA7F;--color-342:#F67E3E;--color-343:#DC5B14;--color-344:#AF460A;--color-345:#76330F;--color-346:#4D220B;--color-347:#2A1505;--color-348:#1C0E03;--color-349:#FF6F1E;--color-350:#FFF1FE;--color-351:#FAD8F8;--color-352:#F5A1F5;--color-353:#F06DF3;--color-354:#DC39E3;--color-355:#AF2EB4;--color-356:#7A1C7D;--color-357:#550D56;--color-358:#330733;--color-359:#250225;--color-360:#FC72FF;--color-361:#F1EFFE;--color-362:#E2DEFD;--color-363:#BDB8FA;--color-364:#9D99F5;--color-365:#7A7BEB;--color-366:#515EDC;--color-367:#343F9E;--color-368:#232969;--color-369:#121643;--color-370:#0E0D30;--color-371:#5065FD;--color-372:#D6F5FE;--color-373:#B0EDFE;--color-374:#63CDE8;--color-375:#2FB0CC;--color-376:#2092AB;--color-377:#117489;--color-378:#014F5F;--color-379:#003540;--color-380:#011E26;--color-381:#011418;--color-382:#36DBFF;--color-383:#F1FCEF;--color-384:#DAE6D8;--color-385:#B8C3B7;--color-386:#9AA498;--color-387:#7E887D;--color-388:#646B62;--color-389:#434942;--color-390:#2C302C;--color-391:#181B18;--color-392:#0F120E;--color-393:#7E887D;--color-394:#393939;--color-395:#e6e6e6;--color-396:#FA2B39;--color-397:#a26af3;--color-398:#28A0F0;--color-399:#2151F5;--color-400:#F0B90B;--color-401:#FB36D0;--color-402:#9f7750;--color-403:#C3B29E;--color-404:#1D1D20;--color-405:#86AE80;--radius-1:0px;--radius-2:3px;--radius-3:5px;--radius-4:7px;--radius-5:9px;--radius-6:10px;--radius-7:16px;--radius-8:19px;--radius-9:22px;--radius-10:26px;--radius-11:34px;--radius-12:42px;--radius-13:50px;--radius-14:16px;--zIndex-1:0;--zIndex-2:100;--zIndex-3:200;--zIndex-4:300;--zIndex-5:400;--zIndex-6:500;--space-1:0px;--space-6:2px;--space-8:7px;--space-10:13px;--space-12:18px;--space-15:24px;--space-16:32px;--space-17:39px;--space-18:46px;--space-19:53px;--space-20:60px;--space-21:74px;--space-22:88px;--space-23:102px;--space-24:116px;--space-25:130px;--space-26:144px;--space-27:144px;--space-28:158px;--space-29:172px;--space-30:186px;--space-31:249px;--space-32:284px;--space-2:0.5px;--space-3:1px;--space-4:1.5px;--space-5:5px;--space-7:4px;--space-9:10px;--space-11:16px;--space-13:18px;--space-14:21px;--space-33:-0.5px;--space-34:-1px;--space-35:-1.5px;--space-36:-5px;--space-37:-2px;--space-38:-4px;--space-39:-7px;--space-40:-10px;--space-41:-13px;--space-42:-16px;--space-43:-18px;--space-44:-18px;--space-45:-21px;--space-46:-24px;--space-47:-32px;--space-48:-39px;--space-49:-46px;--space-50:-53px;--space-51:-60px;--space-52:-74px;--space-53:-88px;--space-54:-102px;--space-55:-116px;--space-56:-130px;--space-57:-144px;--space-58:-144px;--space-59:-158px;--space-60:-172px;--space-61:-186px;--space-62:-249px;--space-63:-284px;--size-1:0px;--size-6:20px;--size-8:28px;--size-10:36px;--size-12:44px;--size-15:52px;--size-16:64px;--size-17:74px;--size-18:84px;--size-19:94px;--size-20:104px;--size-21:124px;--size-22:144px;--size-23:164px;--size-24:184px;--size-25:204px;--size-26:224px;--size-27:224px;--size-28:244px;--size-29:264px;--size-30:284px;--size-31:374px;--size-32:424px;--size-2:2px;--size-3:4px;--size-4:8px;--size-5:16px;--size-7:24px;--size-9:32px;--size-11:40px;--size-13:44px;--size-14:48px} -:root .font_heading, :root .t_lang-heading-default .font_heading {--f-fa:Inter, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;--f-li-1:21px;--f-li-2:22px;--f-li-3:23px;--f-li-4:24px;--f-li-5:26px;--f-li-6:25px;--f-li-7:30px;--f-li-8:33px;--f-li-9:40px;--f-li-10:56px;--f-li-11:65px;--f-li-12:72px;--f-li-13:82px;--f-li-14:102px;--f-li-15:111px;--f-li-16:144px;--f-li-17:24px;--f-we-1:400;--f-we-2:400;--f-we-3:400;--f-we-4:400;--f-we-5:400;--f-we-6:400;--f-we-7:700;--f-we-8:700;--f-we-9:700;--f-we-10:700;--f-we-11:700;--f-we-12:700;--f-we-13:700;--f-we-14:700;--f-we-15:700;--f-we-16:700;--f-we-17:700;--f-21-1:2px;--f-21-2:2px;--f-21-3:2px;--f-21-4:2px;--f-21-5:2px;--f-21-6:1px;--f-21-7:0px;--f-21-8:-1px;--f-21-9:-2px;--f-21-10:-3px;--f-21-11:-3px;--f-21-12:-4px;--f-21-13:-4px;--f-21-14:-5px;--f-21-15:-6px;--f-21-16:-6px;--f-21-17:-6px;--f-si-1:11px;--f-si-2:12px;--f-si-3:13px;--f-si-4:14px;--f-si-5:16px;--f-si-6:15px;--f-si-7:20px;--f-si-8:23px;--f-si-9:30px;--f-si-10:46px;--f-si-11:55px;--f-si-12:62px;--f-si-13:72px;--f-si-14:92px;--f-si-15:101px;--f-si-16:134px;--f-si-17:14px;--f-tr-1:uppercase;--f-tr-2:uppercase;--f-tr-3:uppercase;--f-tr-4:uppercase;--f-tr-5:uppercase;--f-tr-6:uppercase;--f-tr-7:none;--f-tr-8:none;--f-tr-9:none;--f-tr-10:none;--f-tr-11:none;--f-tr-12:none;--f-tr-13:none;--f-tr-14:none;--f-tr-15:none;--f-tr-16:none;--f-tr-17:none} -:root .font_body, :root .t_lang-body-default .font_body {--f-fa:Inter, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;--f-li-1:23px;--f-li-2:24px;--f-li-3:25px;--f-li-4:27px;--f-li-5:30px;--f-li-6:32px;--f-li-7:34px;--f-li-8:38px;--f-li-9:46px;--f-li-10:66px;--f-li-11:77px;--f-li-12:85px;--f-li-13:97px;--f-li-14:121px;--f-li-15:148px;--f-li-16:172px;--f-li-17:27px;--f-we-1:300;--f-we-2:300;--f-we-3:300;--f-we-4:300;--f-we-5:300;--f-we-6:300;--f-we-7:300;--f-we-8:300;--f-we-9:300;--f-we-10:300;--f-we-11:300;--f-we-12:300;--f-we-13:300;--f-we-14:300;--f-we-15:300;--f-we-16:300;--f-we-17:300;--f-21-1:0px;--f-21-2:0px;--f-21-3:0px;--f-21-4:0px;--f-21-5:0px;--f-21-6:0px;--f-21-7:0px;--f-21-8:0px;--f-21-9:0px;--f-21-10:0px;--f-21-11:0px;--f-21-12:0px;--f-21-13:0px;--f-21-14:0px;--f-21-15:0px;--f-21-16:0px;--f-21-17:0px;--f-si-1:12px;--f-si-2:13px;--f-si-3:14px;--f-si-4:15px;--f-si-5:18px;--f-si-6:20px;--f-si-7:22px;--f-si-8:25px;--f-si-9:33px;--f-si-10:51px;--f-si-11:61px;--f-si-12:68px;--f-si-13:79px;--f-si-14:101px;--f-si-15:125px;--f-si-16:147px;--f-si-17:15px} -:root.t_dark, :root.t_dark .t_light .t_dark, :root.t_light .t_dark, :root.t_light .t_dark .t_light .t_dark {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:hsla(112, 22%, 100%, 1);--color025:hsla(0, 0%, 100%, 0.75);--color05:hsla(0, 0%, 100%, 0.5);--color075:hsla(0, 0%, 100%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 15%, 1);--backgroundPress:hsla(191, 32%, 19%, 1);--backgroundFocus:hsla(191, 32%, 24%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 24%, 1);--borderColorHover:hsla(191, 32%, 28%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 28%, 1);--color1:hsla(191, 32%, 10%, 1);--color2:hsla(191, 32%, 15%, 1);--color3:hsla(191, 32%, 19%, 1);--color4:hsla(191, 32%, 24%, 1);--color5:hsla(191, 32%, 28%, 1);--color6:hsla(191, 32%, 32%, 1);--color7:hsla(191, 32%, 37%, 1);--color8:hsla(191, 32%, 41%, 1);--color9:hsla(191, 32%, 46%, 1);--color10:hsla(191, 32%, 50%, 1);--color11:hsla(112, 22%, 59%, 1);--color12:hsla(112, 22%, 100%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - :root, .t_light .t_dark {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:hsla(112, 22%, 100%, 1);--color025:hsla(0, 0%, 100%, 0.75);--color05:hsla(0, 0%, 100%, 0.5);--color075:hsla(0, 0%, 100%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 15%, 1);--backgroundPress:hsla(191, 32%, 19%, 1);--backgroundFocus:hsla(191, 32%, 24%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 24%, 1);--borderColorHover:hsla(191, 32%, 28%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 28%, 1);--color1:hsla(191, 32%, 10%, 1);--color2:hsla(191, 32%, 15%, 1);--color3:hsla(191, 32%, 19%, 1);--color4:hsla(191, 32%, 24%, 1);--color5:hsla(191, 32%, 28%, 1);--color6:hsla(191, 32%, 32%, 1);--color7:hsla(191, 32%, 37%, 1);--color8:hsla(191, 32%, 41%, 1);--color9:hsla(191, 32%, 46%, 1);--color10:hsla(191, 32%, 50%, 1);--color11:hsla(112, 22%, 59%, 1);--color12:hsla(112, 22%, 100%, 1);} - } -:root.t_dark .t_Button, :root.t_dark .t_light .t_dark .t_Button, :root.t_dark .t_light .t_dark .t_SliderTrack, :root.t_dark .t_light .t_dark .t_Switch, :root.t_dark .t_light .t_dark .t_TooltipContent, :root.t_dark .t_SliderTrack, :root.t_dark .t_Switch, :root.t_dark .t_TooltipContent, :root.t_light .t_dark .t_Button, :root.t_light .t_dark .t_light .t_dark .t_Button, :root.t_light .t_dark .t_light .t_dark .t_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_Switch, :root.t_light .t_dark .t_light .t_dark .t_TooltipContent, :root.t_light .t_dark .t_SliderTrack, :root.t_light .t_dark .t_Switch, :root.t_light .t_dark .t_TooltipContent {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_Button, .t_light .t_dark .t_Button, .t_light .t_dark .t_SliderTrack, .t_light .t_dark .t_Switch, .t_light .t_dark .t_TooltipContent, .t_SliderTrack, .t_Switch, .t_TooltipContent {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} - } -:root.t_dark .t_Card, :root.t_dark .t_DrawerFrame, :root.t_dark .t_light .t_dark .t_Card, :root.t_dark .t_light .t_dark .t_DrawerFrame, :root.t_dark .t_light .t_dark .t_Progress, :root.t_dark .t_light .t_dark .t_TooltipArrow, :root.t_dark .t_Progress, :root.t_dark .t_TooltipArrow, :root.t_light .t_dark .t_Card, :root.t_light .t_dark .t_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_Card, :root.t_light .t_dark .t_light .t_dark .t_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_Progress, :root.t_light .t_dark .t_light .t_dark .t_TooltipArrow, :root.t_light .t_dark .t_Progress, :root.t_light .t_dark .t_TooltipArrow {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_Card, .t_DrawerFrame, .t_light .t_dark .t_Card, .t_light .t_dark .t_DrawerFrame, .t_light .t_dark .t_Progress, .t_light .t_dark .t_TooltipArrow, .t_Progress, .t_TooltipArrow {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} - } -:root.t_dark .t_Checkbox, :root.t_dark .t_Input, :root.t_dark .t_light .t_dark .t_Checkbox, :root.t_dark .t_light .t_dark .t_Input, :root.t_dark .t_light .t_dark .t_RadioGroupItem, :root.t_dark .t_light .t_dark .t_TextArea, :root.t_dark .t_RadioGroupItem, :root.t_dark .t_TextArea, :root.t_light .t_dark .t_Checkbox, :root.t_light .t_dark .t_Input, :root.t_light .t_dark .t_light .t_dark .t_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_Input, :root.t_light .t_dark .t_light .t_dark .t_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_TextArea, :root.t_light .t_dark .t_RadioGroupItem, :root.t_light .t_dark .t_TextArea {--accentBackground:hsla(191, 33%, 10%, 0);--accentColor:hsla(191, 33%, 10%, 0);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:hsla(112, 22%, 100%, 1);--color025:hsla(0, 0%, 100%, 0.75);--color05:hsla(0, 0%, 100%, 0.5);--color075:hsla(0, 0%, 100%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 15%, 1);--backgroundPress:hsla(191, 32%, 19%, 1);--backgroundFocus:hsla(191, 32%, 24%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_Checkbox, .t_Input, .t_light .t_dark .t_Checkbox, .t_light .t_dark .t_Input, .t_light .t_dark .t_RadioGroupItem, .t_light .t_dark .t_TextArea, .t_RadioGroupItem, .t_TextArea {--accentBackground:hsla(191, 33%, 10%, 0);--accentColor:hsla(191, 33%, 10%, 0);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:hsla(112, 22%, 100%, 1);--color025:hsla(0, 0%, 100%, 0.75);--color05:hsla(0, 0%, 100%, 0.5);--color075:hsla(0, 0%, 100%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 15%, 1);--backgroundPress:hsla(191, 32%, 19%, 1);--backgroundFocus:hsla(191, 32%, 24%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} - } -:root.t_dark .t_accent_DialogOverlay, :root.t_dark .t_accent_ModalOverlay, :root.t_dark .t_accent_SheetOverlay, :root.t_dark .t_active_accent_DialogOverlay, :root.t_dark .t_active_accent_ModalOverlay, :root.t_dark .t_active_accent_SheetOverlay, :root.t_dark .t_active_DialogOverlay, :root.t_dark .t_active_ModalOverlay, :root.t_dark .t_active_SheetOverlay, :root.t_dark .t_alt1_accent_DialogOverlay, :root.t_dark .t_alt1_accent_ModalOverlay, :root.t_dark .t_alt1_accent_SheetOverlay, :root.t_dark .t_alt1_DialogOverlay, :root.t_dark .t_alt1_ModalOverlay, :root.t_dark .t_alt1_SheetOverlay, :root.t_dark .t_alt2_accent_DialogOverlay, :root.t_dark .t_alt2_accent_ModalOverlay, :root.t_dark .t_alt2_accent_SheetOverlay, :root.t_dark .t_alt2_DialogOverlay, :root.t_dark .t_alt2_ModalOverlay, :root.t_dark .t_alt2_SheetOverlay, :root.t_dark .t_DialogOverlay, :root.t_dark .t_dim_accent_DialogOverlay, :root.t_dark .t_dim_accent_ModalOverlay, :root.t_dark .t_dim_accent_SheetOverlay, :root.t_dark .t_dim_DialogOverlay, :root.t_dark .t_dim_ModalOverlay, :root.t_dark .t_dim_SheetOverlay, :root.t_dark .t_disabled_accent_DialogOverlay, :root.t_dark .t_disabled_accent_ModalOverlay, :root.t_dark .t_disabled_accent_SheetOverlay, :root.t_dark .t_disabled_DialogOverlay, :root.t_dark .t_disabled_ModalOverlay, :root.t_dark .t_disabled_SheetOverlay, :root.t_dark .t_error_accent_DialogOverlay, :root.t_dark .t_error_accent_ModalOverlay, :root.t_dark .t_error_accent_SheetOverlay, :root.t_dark .t_error_DialogOverlay, :root.t_dark .t_error_ModalOverlay, :root.t_dark .t_error_SheetOverlay, :root.t_dark .t_light .t_dark .t_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_active_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_active_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_active_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_active_DialogOverlay, :root.t_dark .t_light .t_dark .t_active_ModalOverlay, :root.t_dark .t_light .t_dark .t_active_SheetOverlay, :root.t_dark .t_light .t_dark .t_alt1_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_alt1_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_alt1_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_alt1_DialogOverlay, :root.t_dark .t_light .t_dark .t_alt1_ModalOverlay, :root.t_dark .t_light .t_dark .t_alt1_SheetOverlay, :root.t_dark .t_light .t_dark .t_alt2_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_alt2_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_alt2_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_alt2_DialogOverlay, :root.t_dark .t_light .t_dark .t_alt2_ModalOverlay, :root.t_dark .t_light .t_dark .t_alt2_SheetOverlay, :root.t_dark .t_light .t_dark .t_DialogOverlay, :root.t_dark .t_light .t_dark .t_dim_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_dim_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_dim_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_dim_DialogOverlay, :root.t_dark .t_light .t_dark .t_dim_ModalOverlay, :root.t_dark .t_light .t_dark .t_dim_SheetOverlay, :root.t_dark .t_light .t_dark .t_disabled_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_disabled_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_disabled_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_disabled_DialogOverlay, :root.t_dark .t_light .t_dark .t_disabled_ModalOverlay, :root.t_dark .t_light .t_dark .t_disabled_SheetOverlay, :root.t_dark .t_light .t_dark .t_error_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_error_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_error_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_error_DialogOverlay, :root.t_dark .t_light .t_dark .t_error_ModalOverlay, :root.t_dark .t_light .t_dark .t_error_SheetOverlay, :root.t_dark .t_light .t_dark .t_ModalOverlay, :root.t_dark .t_light .t_dark .t_red_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_red_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_red_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_red_DialogOverlay, :root.t_dark .t_light .t_dark .t_red_ModalOverlay, :root.t_dark .t_light .t_dark .t_red_SheetOverlay, :root.t_dark .t_light .t_dark .t_SheetOverlay, :root.t_dark .t_light .t_dark .t_success_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_success_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_success_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_success_DialogOverlay, :root.t_dark .t_light .t_dark .t_success_ModalOverlay, :root.t_dark .t_light .t_dark .t_success_SheetOverlay, :root.t_dark .t_light .t_dark .t_warning_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_warning_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_warning_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_warning_DialogOverlay, :root.t_dark .t_light .t_dark .t_warning_ModalOverlay, :root.t_dark .t_light .t_dark .t_warning_SheetOverlay, :root.t_dark .t_ModalOverlay, :root.t_dark .t_red_accent_DialogOverlay, :root.t_dark .t_red_accent_ModalOverlay, :root.t_dark .t_red_accent_SheetOverlay, :root.t_dark .t_red_DialogOverlay, :root.t_dark .t_red_ModalOverlay, :root.t_dark .t_red_SheetOverlay, :root.t_dark .t_SheetOverlay, :root.t_dark .t_success_accent_DialogOverlay, :root.t_dark .t_success_accent_ModalOverlay, :root.t_dark .t_success_accent_SheetOverlay, :root.t_dark .t_success_DialogOverlay, :root.t_dark .t_success_ModalOverlay, :root.t_dark .t_success_SheetOverlay, :root.t_dark .t_warning_accent_DialogOverlay, :root.t_dark .t_warning_accent_ModalOverlay, :root.t_dark .t_warning_accent_SheetOverlay, :root.t_dark .t_warning_DialogOverlay, :root.t_dark .t_warning_ModalOverlay, :root.t_dark .t_warning_SheetOverlay, :root.t_light .t_dark .t_accent_DialogOverlay, :root.t_light .t_dark .t_accent_ModalOverlay, :root.t_light .t_dark .t_accent_SheetOverlay, :root.t_light .t_dark .t_active_accent_DialogOverlay, :root.t_light .t_dark .t_active_accent_ModalOverlay, :root.t_light .t_dark .t_active_accent_SheetOverlay, :root.t_light .t_dark .t_active_DialogOverlay, :root.t_light .t_dark .t_active_ModalOverlay, :root.t_light .t_dark .t_active_SheetOverlay, :root.t_light .t_dark .t_alt1_accent_DialogOverlay, :root.t_light .t_dark .t_alt1_accent_ModalOverlay, :root.t_light .t_dark .t_alt1_accent_SheetOverlay, :root.t_light .t_dark .t_alt1_DialogOverlay, :root.t_light .t_dark .t_alt1_ModalOverlay, :root.t_light .t_dark .t_alt1_SheetOverlay, :root.t_light .t_dark .t_alt2_accent_DialogOverlay, :root.t_light .t_dark .t_alt2_accent_ModalOverlay, :root.t_light .t_dark .t_alt2_accent_SheetOverlay, :root.t_light .t_dark .t_alt2_DialogOverlay, :root.t_light .t_dark .t_alt2_ModalOverlay, :root.t_light .t_dark .t_alt2_SheetOverlay, :root.t_light .t_dark .t_DialogOverlay, :root.t_light .t_dark .t_dim_accent_DialogOverlay, :root.t_light .t_dark .t_dim_accent_ModalOverlay, :root.t_light .t_dark .t_dim_accent_SheetOverlay, :root.t_light .t_dark .t_dim_DialogOverlay, :root.t_light .t_dark .t_dim_ModalOverlay, :root.t_light .t_dark .t_dim_SheetOverlay, :root.t_light .t_dark .t_disabled_accent_DialogOverlay, :root.t_light .t_dark .t_disabled_accent_ModalOverlay, :root.t_light .t_dark .t_disabled_accent_SheetOverlay, :root.t_light .t_dark .t_disabled_DialogOverlay, :root.t_light .t_dark .t_disabled_ModalOverlay, :root.t_light .t_dark .t_disabled_SheetOverlay, :root.t_light .t_dark .t_error_accent_DialogOverlay, :root.t_light .t_dark .t_error_accent_ModalOverlay, :root.t_light .t_dark .t_error_accent_SheetOverlay, :root.t_light .t_dark .t_error_DialogOverlay, :root.t_light .t_dark .t_error_ModalOverlay, :root.t_light .t_dark .t_error_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_active_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_active_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_active_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_active_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_active_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_active_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt1_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt1_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt1_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt2_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt2_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt2_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_dim_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_dim_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_dim_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_disabled_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_disabled_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_disabled_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_error_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_error_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_error_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_error_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_error_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_error_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_red_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_red_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_red_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_red_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_red_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_red_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_success_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_success_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_success_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_success_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_success_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_success_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_warning_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_warning_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_warning_SheetOverlay, :root.t_light .t_dark .t_ModalOverlay, :root.t_light .t_dark .t_red_accent_DialogOverlay, :root.t_light .t_dark .t_red_accent_ModalOverlay, :root.t_light .t_dark .t_red_accent_SheetOverlay, :root.t_light .t_dark .t_red_DialogOverlay, :root.t_light .t_dark .t_red_ModalOverlay, :root.t_light .t_dark .t_red_SheetOverlay, :root.t_light .t_dark .t_SheetOverlay, :root.t_light .t_dark .t_success_accent_DialogOverlay, :root.t_light .t_dark .t_success_accent_ModalOverlay, :root.t_light .t_dark .t_success_accent_SheetOverlay, :root.t_light .t_dark .t_success_DialogOverlay, :root.t_light .t_dark .t_success_ModalOverlay, :root.t_light .t_dark .t_success_SheetOverlay, :root.t_light .t_dark .t_warning_accent_DialogOverlay, :root.t_light .t_dark .t_warning_accent_ModalOverlay, :root.t_light .t_dark .t_warning_accent_SheetOverlay, :root.t_light .t_dark .t_warning_DialogOverlay, :root.t_light .t_dark .t_warning_ModalOverlay, :root.t_light .t_dark .t_warning_SheetOverlay {--background:rgba(0,0,0,0.9);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);} - .t_accent_DialogOverlay, .t_accent_ModalOverlay, .t_accent_SheetOverlay, .t_active_accent_DialogOverlay, .t_active_accent_ModalOverlay, .t_active_accent_SheetOverlay, .t_active_DialogOverlay, .t_active_ModalOverlay, .t_active_SheetOverlay, .t_alt1_accent_DialogOverlay, .t_alt1_accent_ModalOverlay, .t_alt1_accent_SheetOverlay, .t_alt1_DialogOverlay, .t_alt1_ModalOverlay, .t_alt1_SheetOverlay, .t_alt2_accent_DialogOverlay, .t_alt2_accent_ModalOverlay, .t_alt2_accent_SheetOverlay, .t_alt2_DialogOverlay, .t_alt2_ModalOverlay, .t_alt2_SheetOverlay, .t_DialogOverlay, .t_dim_accent_DialogOverlay, .t_dim_accent_ModalOverlay, .t_dim_accent_SheetOverlay, .t_dim_DialogOverlay, .t_dim_ModalOverlay, .t_dim_SheetOverlay, .t_disabled_accent_DialogOverlay, .t_disabled_accent_ModalOverlay, .t_disabled_accent_SheetOverlay, .t_disabled_DialogOverlay, .t_disabled_ModalOverlay, .t_disabled_SheetOverlay, .t_error_accent_DialogOverlay, .t_error_accent_ModalOverlay, .t_error_accent_SheetOverlay, .t_error_DialogOverlay, .t_error_ModalOverlay, .t_error_SheetOverlay, .t_light .t_dark .t_accent_DialogOverlay, .t_light .t_dark .t_accent_ModalOverlay, .t_light .t_dark .t_accent_SheetOverlay, .t_light .t_dark .t_active_accent_DialogOverlay, .t_light .t_dark .t_active_accent_ModalOverlay, .t_light .t_dark .t_active_accent_SheetOverlay, .t_light .t_dark .t_active_DialogOverlay, .t_light .t_dark .t_active_ModalOverlay, .t_light .t_dark .t_active_SheetOverlay, .t_light .t_dark .t_alt1_accent_DialogOverlay, .t_light .t_dark .t_alt1_accent_ModalOverlay, .t_light .t_dark .t_alt1_accent_SheetOverlay, .t_light .t_dark .t_alt1_DialogOverlay, .t_light .t_dark .t_alt1_ModalOverlay, .t_light .t_dark .t_alt1_SheetOverlay, .t_light .t_dark .t_alt2_accent_DialogOverlay, .t_light .t_dark .t_alt2_accent_ModalOverlay, .t_light .t_dark .t_alt2_accent_SheetOverlay, .t_light .t_dark .t_alt2_DialogOverlay, .t_light .t_dark .t_alt2_ModalOverlay, .t_light .t_dark .t_alt2_SheetOverlay, .t_light .t_dark .t_DialogOverlay, .t_light .t_dark .t_dim_accent_DialogOverlay, .t_light .t_dark .t_dim_accent_ModalOverlay, .t_light .t_dark .t_dim_accent_SheetOverlay, .t_light .t_dark .t_dim_DialogOverlay, .t_light .t_dark .t_dim_ModalOverlay, .t_light .t_dark .t_dim_SheetOverlay, .t_light .t_dark .t_disabled_accent_DialogOverlay, .t_light .t_dark .t_disabled_accent_ModalOverlay, .t_light .t_dark .t_disabled_accent_SheetOverlay, .t_light .t_dark .t_disabled_DialogOverlay, .t_light .t_dark .t_disabled_ModalOverlay, .t_light .t_dark .t_disabled_SheetOverlay, .t_light .t_dark .t_error_accent_DialogOverlay, .t_light .t_dark .t_error_accent_ModalOverlay, .t_light .t_dark .t_error_accent_SheetOverlay, .t_light .t_dark .t_error_DialogOverlay, .t_light .t_dark .t_error_ModalOverlay, .t_light .t_dark .t_error_SheetOverlay, .t_light .t_dark .t_ModalOverlay, .t_light .t_dark .t_red_accent_DialogOverlay, .t_light .t_dark .t_red_accent_ModalOverlay, .t_light .t_dark .t_red_accent_SheetOverlay, .t_light .t_dark .t_red_DialogOverlay, .t_light .t_dark .t_red_ModalOverlay, .t_light .t_dark .t_red_SheetOverlay, .t_light .t_dark .t_SheetOverlay, .t_light .t_dark .t_success_accent_DialogOverlay, .t_light .t_dark .t_success_accent_ModalOverlay, .t_light .t_dark .t_success_accent_SheetOverlay, .t_light .t_dark .t_success_DialogOverlay, .t_light .t_dark .t_success_ModalOverlay, .t_light .t_dark .t_success_SheetOverlay, .t_light .t_dark .t_warning_accent_DialogOverlay, .t_light .t_dark .t_warning_accent_ModalOverlay, .t_light .t_dark .t_warning_accent_SheetOverlay, .t_light .t_dark .t_warning_DialogOverlay, .t_light .t_dark .t_warning_ModalOverlay, .t_light .t_dark .t_warning_SheetOverlay, .t_ModalOverlay, .t_red_accent_DialogOverlay, .t_red_accent_ModalOverlay, .t_red_accent_SheetOverlay, .t_red_DialogOverlay, .t_red_ModalOverlay, .t_red_SheetOverlay, .t_SheetOverlay, .t_success_accent_DialogOverlay, .t_success_accent_ModalOverlay, .t_success_accent_SheetOverlay, .t_success_DialogOverlay, .t_success_ModalOverlay, .t_success_SheetOverlay, .t_warning_accent_DialogOverlay, .t_warning_accent_ModalOverlay, .t_warning_accent_SheetOverlay, .t_warning_DialogOverlay, .t_warning_ModalOverlay, .t_warning_SheetOverlay {--background:rgba(0,0,0,0.9);} - } -:root.t_dark .t_light .t_dark .t_ProgressIndicator, :root.t_dark .t_light .t_dark .t_SliderThumb, :root.t_dark .t_light .t_dark .t_SwitchThumb, :root.t_dark .t_light .t_dark .t_Tooltip, :root.t_dark .t_ProgressIndicator, :root.t_dark .t_SliderThumb, :root.t_dark .t_SwitchThumb, :root.t_dark .t_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_Tooltip, :root.t_light .t_dark .t_ProgressIndicator, :root.t_light .t_dark .t_SliderThumb, :root.t_light .t_dark .t_SwitchThumb, :root.t_light .t_dark .t_Tooltip {--accentBackground:hsla(191, 33%, 10%, 0);--accentColor:hsla(191, 33%, 10%, 0);--background0:hsla(0, 0%, 100%, 0.25);--background025:hsla(0, 0%, 100%, 0.5);--background05:hsla(0, 0%, 100%, 0.75);--background075:hsla(112, 22%, 100%, 1);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:hsla(112, 22%, 100%, 1);--backgroundHover:hsla(112, 22%, 59%, 1);--backgroundPress:hsla(191, 32%, 50%, 1);--backgroundFocus:hsla(191, 32%, 46%, 1);--color:hsla(191, 32%, 15%, 1);--colorHover:hsla(191, 32%, 19%, 1);--colorPress:hsla(191, 32%, 15%, 1);--colorFocus:hsla(191, 32%, 19%, 1);--placeholderColor:hsla(191, 32%, 19%, 1);--borderColor:hsla(191, 32%, 46%, 1);--borderColorHover:hsla(191, 32%, 41%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 41%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_light .t_dark .t_ProgressIndicator, .t_light .t_dark .t_SliderThumb, .t_light .t_dark .t_SwitchThumb, .t_light .t_dark .t_Tooltip, .t_ProgressIndicator, .t_SliderThumb, .t_SwitchThumb, .t_Tooltip {--accentBackground:hsla(191, 33%, 10%, 0);--accentColor:hsla(191, 33%, 10%, 0);--background0:hsla(0, 0%, 100%, 0.25);--background025:hsla(0, 0%, 100%, 0.5);--background05:hsla(0, 0%, 100%, 0.75);--background075:hsla(112, 22%, 100%, 1);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:hsla(112, 22%, 100%, 1);--backgroundHover:hsla(112, 22%, 59%, 1);--backgroundPress:hsla(191, 32%, 50%, 1);--backgroundFocus:hsla(191, 32%, 46%, 1);--color:hsla(191, 32%, 15%, 1);--colorHover:hsla(191, 32%, 19%, 1);--colorPress:hsla(191, 32%, 15%, 1);--colorFocus:hsla(191, 32%, 19%, 1);--placeholderColor:hsla(191, 32%, 19%, 1);--borderColor:hsla(191, 32%, 46%, 1);--borderColorHover:hsla(191, 32%, 41%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 41%, 1);} - } -:root.t_dark .t_light .t_dark .t_SliderTrackActive, :root.t_dark .t_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_SliderTrackActive, :root.t_light .t_dark .t_SliderTrackActive {--accentBackground:hsla(191, 33%, 10%, 0);--accentColor:hsla(191, 33%, 10%, 0);--background0:hsla(0, 0%, 100%, 0.75);--background025:hsla(112, 22%, 100%, 1);--background05:hsla(112, 22%, 59%, 1);--background075:hsla(191, 32%, 50%, 1);--color0:hsla(191, 32%, 19%, 1);--color025:hsla(191, 32%, 15%, 1);--color05:hsla(191, 32%, 10%, 1);--color075:hsla(191, 33%, 10%, 0.75);--background:hsla(191, 32%, 50%, 1);--backgroundHover:hsla(191, 32%, 46%, 1);--backgroundPress:hsla(191, 32%, 41%, 1);--backgroundFocus:hsla(191, 32%, 37%, 1);--color:hsla(191, 32%, 15%, 1);--colorHover:hsla(191, 32%, 19%, 1);--colorPress:hsla(191, 32%, 15%, 1);--colorFocus:hsla(191, 32%, 19%, 1);--placeholderColor:hsla(191, 32%, 28%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 28%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_light .t_dark .t_SliderTrackActive, .t_SliderTrackActive {--accentBackground:hsla(191, 33%, 10%, 0);--accentColor:hsla(191, 33%, 10%, 0);--background0:hsla(0, 0%, 100%, 0.75);--background025:hsla(112, 22%, 100%, 1);--background05:hsla(112, 22%, 59%, 1);--background075:hsla(191, 32%, 50%, 1);--color0:hsla(191, 32%, 19%, 1);--color025:hsla(191, 32%, 15%, 1);--color05:hsla(191, 32%, 10%, 1);--color075:hsla(191, 33%, 10%, 0.75);--background:hsla(191, 32%, 50%, 1);--backgroundHover:hsla(191, 32%, 46%, 1);--backgroundPress:hsla(191, 32%, 41%, 1);--backgroundFocus:hsla(191, 32%, 37%, 1);--color:hsla(191, 32%, 15%, 1);--colorHover:hsla(191, 32%, 19%, 1);--colorPress:hsla(191, 32%, 15%, 1);--colorFocus:hsla(191, 32%, 19%, 1);--placeholderColor:hsla(191, 32%, 28%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 28%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} - } -:root.t_dark .t_accent, :root.t_dark .t_active_accent, :root.t_dark .t_alt1_accent, :root.t_dark .t_alt2_accent, :root.t_dark .t_dim_accent, :root.t_dark .t_disabled_accent, :root.t_dark .t_error_accent, :root.t_dark .t_light .t_dark .t_accent, :root.t_dark .t_light .t_dark .t_active_accent, :root.t_dark .t_light .t_dark .t_alt1_accent, :root.t_dark .t_light .t_dark .t_alt2_accent, :root.t_dark .t_light .t_dark .t_dim_accent, :root.t_dark .t_light .t_dark .t_disabled_accent, :root.t_dark .t_light .t_dark .t_error_accent, :root.t_dark .t_light .t_dark .t_red_accent, :root.t_dark .t_light .t_dark .t_success_accent, :root.t_dark .t_light .t_dark .t_warning_accent, :root.t_dark .t_red_accent, :root.t_dark .t_success_accent, :root.t_dark .t_warning_accent, :root.t_light .t_dark .t_accent, :root.t_light .t_dark .t_active_accent, :root.t_light .t_dark .t_alt1_accent, :root.t_light .t_dark .t_alt2_accent, :root.t_light .t_dark .t_dim_accent, :root.t_light .t_dark .t_disabled_accent, :root.t_light .t_dark .t_error_accent, :root.t_light .t_dark .t_light .t_dark .t_accent, :root.t_light .t_dark .t_light .t_dark .t_active_accent, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent, :root.t_light .t_dark .t_light .t_dark .t_dim_accent, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent, :root.t_light .t_dark .t_light .t_dark .t_error_accent, :root.t_light .t_dark .t_light .t_dark .t_red_accent, :root.t_light .t_dark .t_light .t_dark .t_success_accent, :root.t_light .t_dark .t_light .t_dark .t_warning_accent, :root.t_light .t_dark .t_red_accent, :root.t_light .t_dark .t_success_accent, :root.t_light .t_dark .t_warning_accent {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-231);--backgroundHover:var(--color-232);--backgroundPress:var(--color-233);--backgroundFocus:var(--color-234);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-234);--borderColorHover:var(--color-235);--borderColorFocus:var(--color-236);--borderColorPress:var(--color-235);--color1:var(--color-231);--color2:var(--color-232);--color3:var(--color-233);--color4:var(--color-234);--color5:var(--color-235);--color6:var(--color-236);--color7:var(--color-237);--color8:var(--color-238);--color9:var(--color-239);--color10:var(--color-240);--color11:hsla(191, 32%, 10%, 1);--color12:hsla(191, 32%, 10%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_accent, .t_active_accent, .t_alt1_accent, .t_alt2_accent, .t_dim_accent, .t_disabled_accent, .t_error_accent, .t_light .t_dark .t_accent, .t_light .t_dark .t_active_accent, .t_light .t_dark .t_alt1_accent, .t_light .t_dark .t_alt2_accent, .t_light .t_dark .t_dim_accent, .t_light .t_dark .t_disabled_accent, .t_light .t_dark .t_error_accent, .t_light .t_dark .t_red_accent, .t_light .t_dark .t_success_accent, .t_light .t_dark .t_warning_accent, .t_red_accent, .t_success_accent, .t_warning_accent {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-231);--backgroundHover:var(--color-232);--backgroundPress:var(--color-233);--backgroundFocus:var(--color-234);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-234);--borderColorHover:var(--color-235);--borderColorFocus:var(--color-236);--borderColorPress:var(--color-235);--color1:var(--color-231);--color2:var(--color-232);--color3:var(--color-233);--color4:var(--color-234);--color5:var(--color-235);--color6:var(--color-236);--color7:var(--color-237);--color8:var(--color-238);--color9:var(--color-239);--color10:var(--color-240);--color11:hsla(191, 32%, 10%, 1);--color12:hsla(191, 32%, 10%, 1);} - } -:root.t_dark .t_accent_Button, :root.t_dark .t_accent_Switch, :root.t_dark .t_light .t_dark .t_accent_Button, :root.t_dark .t_light .t_dark .t_accent_Switch, :root.t_light .t_dark .t_accent_Button, :root.t_light .t_dark .t_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_accent_Switch {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-234);--backgroundHover:var(--color-235);--backgroundPress:var(--color-236);--backgroundFocus:var(--color-237);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-237);--borderColorHover:var(--color-238);--borderColorFocus:var(--color-239);--borderColorPress:var(--color-238);--color1:var(--color-231);--color2:var(--color-232);--color3:var(--color-233);--color4:var(--color-234);--color5:var(--color-235);--color6:var(--color-236);--color7:var(--color-237);--color8:var(--color-238);--color9:var(--color-239);--color10:var(--color-240);--color11:hsla(191, 32%, 10%, 1);--color12:hsla(191, 32%, 10%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_accent_Button, .t_accent_Switch, .t_light .t_dark .t_accent_Button, .t_light .t_dark .t_accent_Switch {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-234);--backgroundHover:var(--color-235);--backgroundPress:var(--color-236);--backgroundFocus:var(--color-237);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-237);--borderColorHover:var(--color-238);--borderColorFocus:var(--color-239);--borderColorPress:var(--color-238);--color1:var(--color-231);--color2:var(--color-232);--color3:var(--color-233);--color4:var(--color-234);--color5:var(--color-235);--color6:var(--color-236);--color7:var(--color-237);--color8:var(--color-238);--color9:var(--color-239);--color10:var(--color-240);--color11:hsla(191, 32%, 10%, 1);--color12:hsla(191, 32%, 10%, 1);} - } -:root.t_dark .t_accent_Card, :root.t_dark .t_accent_DrawerFrame, :root.t_dark .t_accent_Progress, :root.t_dark .t_accent_TooltipArrow, :root.t_dark .t_active_accent_Card, :root.t_dark .t_active_accent_DrawerFrame, :root.t_dark .t_active_accent_Progress, :root.t_dark .t_active_accent_TooltipArrow, :root.t_dark .t_alt1_accent_Card, :root.t_dark .t_alt1_accent_DrawerFrame, :root.t_dark .t_alt1_accent_Progress, :root.t_dark .t_alt1_accent_TooltipArrow, :root.t_dark .t_alt2_accent_Card, :root.t_dark .t_alt2_accent_DrawerFrame, :root.t_dark .t_alt2_accent_Progress, :root.t_dark .t_alt2_accent_TooltipArrow, :root.t_dark .t_dim_accent_Card, :root.t_dark .t_dim_accent_DrawerFrame, :root.t_dark .t_dim_accent_Progress, :root.t_dark .t_dim_accent_TooltipArrow, :root.t_dark .t_disabled_accent_Card, :root.t_dark .t_disabled_accent_DrawerFrame, :root.t_dark .t_disabled_accent_Progress, :root.t_dark .t_disabled_accent_TooltipArrow, :root.t_dark .t_error_accent_Card, :root.t_dark .t_error_accent_DrawerFrame, :root.t_dark .t_error_accent_Progress, :root.t_dark .t_error_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_accent_Card, :root.t_dark .t_light .t_dark .t_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_accent_Progress, :root.t_dark .t_light .t_dark .t_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_active_accent_Card, :root.t_dark .t_light .t_dark .t_active_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_active_accent_Progress, :root.t_dark .t_light .t_dark .t_active_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_alt1_accent_Card, :root.t_dark .t_light .t_dark .t_alt1_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_alt1_accent_Progress, :root.t_dark .t_light .t_dark .t_alt1_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_alt2_accent_Card, :root.t_dark .t_light .t_dark .t_alt2_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_alt2_accent_Progress, :root.t_dark .t_light .t_dark .t_alt2_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_dim_accent_Card, :root.t_dark .t_light .t_dark .t_dim_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_dim_accent_Progress, :root.t_dark .t_light .t_dark .t_dim_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_disabled_accent_Card, :root.t_dark .t_light .t_dark .t_disabled_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_disabled_accent_Progress, :root.t_dark .t_light .t_dark .t_disabled_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_error_accent_Card, :root.t_dark .t_light .t_dark .t_error_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_error_accent_Progress, :root.t_dark .t_light .t_dark .t_error_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_red_accent_Card, :root.t_dark .t_light .t_dark .t_red_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_red_accent_Progress, :root.t_dark .t_light .t_dark .t_red_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_success_accent_Card, :root.t_dark .t_light .t_dark .t_success_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_success_accent_Progress, :root.t_dark .t_light .t_dark .t_success_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_warning_accent_Card, :root.t_dark .t_light .t_dark .t_warning_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_warning_accent_Progress, :root.t_dark .t_light .t_dark .t_warning_accent_TooltipArrow, :root.t_dark .t_red_accent_Card, :root.t_dark .t_red_accent_DrawerFrame, :root.t_dark .t_red_accent_Progress, :root.t_dark .t_red_accent_TooltipArrow, :root.t_dark .t_success_accent_Card, :root.t_dark .t_success_accent_DrawerFrame, :root.t_dark .t_success_accent_Progress, :root.t_dark .t_success_accent_TooltipArrow, :root.t_dark .t_warning_accent_Card, :root.t_dark .t_warning_accent_DrawerFrame, :root.t_dark .t_warning_accent_Progress, :root.t_dark .t_warning_accent_TooltipArrow, :root.t_light .t_dark .t_accent_Card, :root.t_light .t_dark .t_accent_DrawerFrame, :root.t_light .t_dark .t_accent_Progress, :root.t_light .t_dark .t_accent_TooltipArrow, :root.t_light .t_dark .t_active_accent_Card, :root.t_light .t_dark .t_active_accent_DrawerFrame, :root.t_light .t_dark .t_active_accent_Progress, :root.t_light .t_dark .t_active_accent_TooltipArrow, :root.t_light .t_dark .t_alt1_accent_Card, :root.t_light .t_dark .t_alt1_accent_DrawerFrame, :root.t_light .t_dark .t_alt1_accent_Progress, :root.t_light .t_dark .t_alt1_accent_TooltipArrow, :root.t_light .t_dark .t_alt2_accent_Card, :root.t_light .t_dark .t_alt2_accent_DrawerFrame, :root.t_light .t_dark .t_alt2_accent_Progress, :root.t_light .t_dark .t_alt2_accent_TooltipArrow, :root.t_light .t_dark .t_dim_accent_Card, :root.t_light .t_dark .t_dim_accent_DrawerFrame, :root.t_light .t_dark .t_dim_accent_Progress, :root.t_light .t_dark .t_dim_accent_TooltipArrow, :root.t_light .t_dark .t_disabled_accent_Card, :root.t_light .t_dark .t_disabled_accent_DrawerFrame, :root.t_light .t_dark .t_disabled_accent_Progress, :root.t_light .t_dark .t_disabled_accent_TooltipArrow, :root.t_light .t_dark .t_error_accent_Card, :root.t_light .t_dark .t_error_accent_DrawerFrame, :root.t_light .t_dark .t_error_accent_Progress, :root.t_light .t_dark .t_error_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_active_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_active_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_active_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_active_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_error_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_error_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_error_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_error_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_red_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_red_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_red_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_red_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_success_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_success_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_success_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_success_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_TooltipArrow, :root.t_light .t_dark .t_red_accent_Card, :root.t_light .t_dark .t_red_accent_DrawerFrame, :root.t_light .t_dark .t_red_accent_Progress, :root.t_light .t_dark .t_red_accent_TooltipArrow, :root.t_light .t_dark .t_success_accent_Card, :root.t_light .t_dark .t_success_accent_DrawerFrame, :root.t_light .t_dark .t_success_accent_Progress, :root.t_light .t_dark .t_success_accent_TooltipArrow, :root.t_light .t_dark .t_warning_accent_Card, :root.t_light .t_dark .t_warning_accent_DrawerFrame, :root.t_light .t_dark .t_warning_accent_Progress, :root.t_light .t_dark .t_warning_accent_TooltipArrow {--background0:var(--color-229);--background025:var(--color-230);--background05:var(--color-231);--background075:var(--color-232);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 33%, 10%, 0.75);--color075:hsla(191, 33%, 10%, 0.5);--background:var(--color-232);--backgroundHover:var(--color-233);--backgroundPress:var(--color-234);--backgroundFocus:var(--color-235);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-239);--borderColor:var(--color-235);--borderColorHover:var(--color-236);--borderColorFocus:var(--color-237);--borderColorPress:var(--color-236);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_accent_Card, .t_accent_DrawerFrame, .t_accent_Progress, .t_accent_TooltipArrow, .t_active_accent_Card, .t_active_accent_DrawerFrame, .t_active_accent_Progress, .t_active_accent_TooltipArrow, .t_alt1_accent_Card, .t_alt1_accent_DrawerFrame, .t_alt1_accent_Progress, .t_alt1_accent_TooltipArrow, .t_alt2_accent_Card, .t_alt2_accent_DrawerFrame, .t_alt2_accent_Progress, .t_alt2_accent_TooltipArrow, .t_dim_accent_Card, .t_dim_accent_DrawerFrame, .t_dim_accent_Progress, .t_dim_accent_TooltipArrow, .t_disabled_accent_Card, .t_disabled_accent_DrawerFrame, .t_disabled_accent_Progress, .t_disabled_accent_TooltipArrow, .t_error_accent_Card, .t_error_accent_DrawerFrame, .t_error_accent_Progress, .t_error_accent_TooltipArrow, .t_light .t_dark .t_accent_Card, .t_light .t_dark .t_accent_DrawerFrame, .t_light .t_dark .t_accent_Progress, .t_light .t_dark .t_accent_TooltipArrow, .t_light .t_dark .t_active_accent_Card, .t_light .t_dark .t_active_accent_DrawerFrame, .t_light .t_dark .t_active_accent_Progress, .t_light .t_dark .t_active_accent_TooltipArrow, .t_light .t_dark .t_alt1_accent_Card, .t_light .t_dark .t_alt1_accent_DrawerFrame, .t_light .t_dark .t_alt1_accent_Progress, .t_light .t_dark .t_alt1_accent_TooltipArrow, .t_light .t_dark .t_alt2_accent_Card, .t_light .t_dark .t_alt2_accent_DrawerFrame, .t_light .t_dark .t_alt2_accent_Progress, .t_light .t_dark .t_alt2_accent_TooltipArrow, .t_light .t_dark .t_dim_accent_Card, .t_light .t_dark .t_dim_accent_DrawerFrame, .t_light .t_dark .t_dim_accent_Progress, .t_light .t_dark .t_dim_accent_TooltipArrow, .t_light .t_dark .t_disabled_accent_Card, .t_light .t_dark .t_disabled_accent_DrawerFrame, .t_light .t_dark .t_disabled_accent_Progress, .t_light .t_dark .t_disabled_accent_TooltipArrow, .t_light .t_dark .t_error_accent_Card, .t_light .t_dark .t_error_accent_DrawerFrame, .t_light .t_dark .t_error_accent_Progress, .t_light .t_dark .t_error_accent_TooltipArrow, .t_light .t_dark .t_red_accent_Card, .t_light .t_dark .t_red_accent_DrawerFrame, .t_light .t_dark .t_red_accent_Progress, .t_light .t_dark .t_red_accent_TooltipArrow, .t_light .t_dark .t_success_accent_Card, .t_light .t_dark .t_success_accent_DrawerFrame, .t_light .t_dark .t_success_accent_Progress, .t_light .t_dark .t_success_accent_TooltipArrow, .t_light .t_dark .t_warning_accent_Card, .t_light .t_dark .t_warning_accent_DrawerFrame, .t_light .t_dark .t_warning_accent_Progress, .t_light .t_dark .t_warning_accent_TooltipArrow, .t_red_accent_Card, .t_red_accent_DrawerFrame, .t_red_accent_Progress, .t_red_accent_TooltipArrow, .t_success_accent_Card, .t_success_accent_DrawerFrame, .t_success_accent_Progress, .t_success_accent_TooltipArrow, .t_warning_accent_Card, .t_warning_accent_DrawerFrame, .t_warning_accent_Progress, .t_warning_accent_TooltipArrow {--background0:var(--color-229);--background025:var(--color-230);--background05:var(--color-231);--background075:var(--color-232);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 33%, 10%, 0.75);--color075:hsla(191, 33%, 10%, 0.5);--background:var(--color-232);--backgroundHover:var(--color-233);--backgroundPress:var(--color-234);--backgroundFocus:var(--color-235);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-239);--borderColor:var(--color-235);--borderColorHover:var(--color-236);--borderColorFocus:var(--color-237);--borderColorPress:var(--color-236);} - } -:root.t_dark .t_accent_Checkbox, :root.t_dark .t_accent_Input, :root.t_dark .t_accent_RadioGroupItem, :root.t_dark .t_accent_TextArea, :root.t_dark .t_active_accent_Checkbox, :root.t_dark .t_active_accent_Input, :root.t_dark .t_active_accent_RadioGroupItem, :root.t_dark .t_active_accent_TextArea, :root.t_dark .t_alt1_accent_Checkbox, :root.t_dark .t_alt1_accent_Input, :root.t_dark .t_alt1_accent_RadioGroupItem, :root.t_dark .t_alt1_accent_TextArea, :root.t_dark .t_alt2_accent_Checkbox, :root.t_dark .t_alt2_accent_Input, :root.t_dark .t_alt2_accent_RadioGroupItem, :root.t_dark .t_alt2_accent_TextArea, :root.t_dark .t_dim_accent_Checkbox, :root.t_dark .t_dim_accent_Input, :root.t_dark .t_dim_accent_RadioGroupItem, :root.t_dark .t_dim_accent_TextArea, :root.t_dark .t_disabled_accent_Checkbox, :root.t_dark .t_disabled_accent_Input, :root.t_dark .t_disabled_accent_RadioGroupItem, :root.t_dark .t_disabled_accent_TextArea, :root.t_dark .t_error_accent_Checkbox, :root.t_dark .t_error_accent_Input, :root.t_dark .t_error_accent_RadioGroupItem, :root.t_dark .t_error_accent_TextArea, :root.t_dark .t_light .t_dark .t_accent_Checkbox, :root.t_dark .t_light .t_dark .t_accent_Input, :root.t_dark .t_light .t_dark .t_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_accent_TextArea, :root.t_dark .t_light .t_dark .t_active_accent_Checkbox, :root.t_dark .t_light .t_dark .t_active_accent_Input, :root.t_dark .t_light .t_dark .t_active_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_active_accent_TextArea, :root.t_dark .t_light .t_dark .t_alt1_accent_Checkbox, :root.t_dark .t_light .t_dark .t_alt1_accent_Input, :root.t_dark .t_light .t_dark .t_alt1_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_alt1_accent_TextArea, :root.t_dark .t_light .t_dark .t_alt2_accent_Checkbox, :root.t_dark .t_light .t_dark .t_alt2_accent_Input, :root.t_dark .t_light .t_dark .t_alt2_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_alt2_accent_TextArea, :root.t_dark .t_light .t_dark .t_dim_accent_Checkbox, :root.t_dark .t_light .t_dark .t_dim_accent_Input, :root.t_dark .t_light .t_dark .t_dim_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_dim_accent_TextArea, :root.t_dark .t_light .t_dark .t_disabled_accent_Checkbox, :root.t_dark .t_light .t_dark .t_disabled_accent_Input, :root.t_dark .t_light .t_dark .t_disabled_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_disabled_accent_TextArea, :root.t_dark .t_light .t_dark .t_error_accent_Checkbox, :root.t_dark .t_light .t_dark .t_error_accent_Input, :root.t_dark .t_light .t_dark .t_error_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_error_accent_TextArea, :root.t_dark .t_light .t_dark .t_red_accent_Checkbox, :root.t_dark .t_light .t_dark .t_red_accent_Input, :root.t_dark .t_light .t_dark .t_red_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_red_accent_TextArea, :root.t_dark .t_light .t_dark .t_success_accent_Checkbox, :root.t_dark .t_light .t_dark .t_success_accent_Input, :root.t_dark .t_light .t_dark .t_success_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_success_accent_TextArea, :root.t_dark .t_light .t_dark .t_warning_accent_Checkbox, :root.t_dark .t_light .t_dark .t_warning_accent_Input, :root.t_dark .t_light .t_dark .t_warning_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_warning_accent_TextArea, :root.t_dark .t_red_accent_Checkbox, :root.t_dark .t_red_accent_Input, :root.t_dark .t_red_accent_RadioGroupItem, :root.t_dark .t_red_accent_TextArea, :root.t_dark .t_success_accent_Checkbox, :root.t_dark .t_success_accent_Input, :root.t_dark .t_success_accent_RadioGroupItem, :root.t_dark .t_success_accent_TextArea, :root.t_dark .t_warning_accent_Checkbox, :root.t_dark .t_warning_accent_Input, :root.t_dark .t_warning_accent_RadioGroupItem, :root.t_dark .t_warning_accent_TextArea, :root.t_light .t_dark .t_accent_Checkbox, :root.t_light .t_dark .t_accent_Input, :root.t_light .t_dark .t_accent_RadioGroupItem, :root.t_light .t_dark .t_accent_TextArea, :root.t_light .t_dark .t_active_accent_Checkbox, :root.t_light .t_dark .t_active_accent_Input, :root.t_light .t_dark .t_active_accent_RadioGroupItem, :root.t_light .t_dark .t_active_accent_TextArea, :root.t_light .t_dark .t_alt1_accent_Checkbox, :root.t_light .t_dark .t_alt1_accent_Input, :root.t_light .t_dark .t_alt1_accent_RadioGroupItem, :root.t_light .t_dark .t_alt1_accent_TextArea, :root.t_light .t_dark .t_alt2_accent_Checkbox, :root.t_light .t_dark .t_alt2_accent_Input, :root.t_light .t_dark .t_alt2_accent_RadioGroupItem, :root.t_light .t_dark .t_alt2_accent_TextArea, :root.t_light .t_dark .t_dim_accent_Checkbox, :root.t_light .t_dark .t_dim_accent_Input, :root.t_light .t_dark .t_dim_accent_RadioGroupItem, :root.t_light .t_dark .t_dim_accent_TextArea, :root.t_light .t_dark .t_disabled_accent_Checkbox, :root.t_light .t_dark .t_disabled_accent_Input, :root.t_light .t_dark .t_disabled_accent_RadioGroupItem, :root.t_light .t_dark .t_disabled_accent_TextArea, :root.t_light .t_dark .t_error_accent_Checkbox, :root.t_light .t_dark .t_error_accent_Input, :root.t_light .t_dark .t_error_accent_RadioGroupItem, :root.t_light .t_dark .t_error_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_active_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_active_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_active_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_active_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_error_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_error_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_error_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_error_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_red_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_red_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_red_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_red_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_success_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_success_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_success_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_success_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_TextArea, :root.t_light .t_dark .t_red_accent_Checkbox, :root.t_light .t_dark .t_red_accent_Input, :root.t_light .t_dark .t_red_accent_RadioGroupItem, :root.t_light .t_dark .t_red_accent_TextArea, :root.t_light .t_dark .t_success_accent_Checkbox, :root.t_light .t_dark .t_success_accent_Input, :root.t_light .t_dark .t_success_accent_RadioGroupItem, :root.t_light .t_dark .t_success_accent_TextArea, :root.t_light .t_dark .t_warning_accent_Checkbox, :root.t_light .t_dark .t_warning_accent_Input, :root.t_light .t_dark .t_warning_accent_RadioGroupItem, :root.t_light .t_dark .t_warning_accent_TextArea {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-231);--backgroundHover:var(--color-232);--backgroundPress:var(--color-233);--backgroundFocus:var(--color-234);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-236);--borderColorHover:var(--color-237);--borderColorFocus:var(--color-238);--borderColorPress:var(--color-237);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_accent_Checkbox, .t_accent_Input, .t_accent_RadioGroupItem, .t_accent_TextArea, .t_active_accent_Checkbox, .t_active_accent_Input, .t_active_accent_RadioGroupItem, .t_active_accent_TextArea, .t_alt1_accent_Checkbox, .t_alt1_accent_Input, .t_alt1_accent_RadioGroupItem, .t_alt1_accent_TextArea, .t_alt2_accent_Checkbox, .t_alt2_accent_Input, .t_alt2_accent_RadioGroupItem, .t_alt2_accent_TextArea, .t_dim_accent_Checkbox, .t_dim_accent_Input, .t_dim_accent_RadioGroupItem, .t_dim_accent_TextArea, .t_disabled_accent_Checkbox, .t_disabled_accent_Input, .t_disabled_accent_RadioGroupItem, .t_disabled_accent_TextArea, .t_error_accent_Checkbox, .t_error_accent_Input, .t_error_accent_RadioGroupItem, .t_error_accent_TextArea, .t_light .t_dark .t_accent_Checkbox, .t_light .t_dark .t_accent_Input, .t_light .t_dark .t_accent_RadioGroupItem, .t_light .t_dark .t_accent_TextArea, .t_light .t_dark .t_active_accent_Checkbox, .t_light .t_dark .t_active_accent_Input, .t_light .t_dark .t_active_accent_RadioGroupItem, .t_light .t_dark .t_active_accent_TextArea, .t_light .t_dark .t_alt1_accent_Checkbox, .t_light .t_dark .t_alt1_accent_Input, .t_light .t_dark .t_alt1_accent_RadioGroupItem, .t_light .t_dark .t_alt1_accent_TextArea, .t_light .t_dark .t_alt2_accent_Checkbox, .t_light .t_dark .t_alt2_accent_Input, .t_light .t_dark .t_alt2_accent_RadioGroupItem, .t_light .t_dark .t_alt2_accent_TextArea, .t_light .t_dark .t_dim_accent_Checkbox, .t_light .t_dark .t_dim_accent_Input, .t_light .t_dark .t_dim_accent_RadioGroupItem, .t_light .t_dark .t_dim_accent_TextArea, .t_light .t_dark .t_disabled_accent_Checkbox, .t_light .t_dark .t_disabled_accent_Input, .t_light .t_dark .t_disabled_accent_RadioGroupItem, .t_light .t_dark .t_disabled_accent_TextArea, .t_light .t_dark .t_error_accent_Checkbox, .t_light .t_dark .t_error_accent_Input, .t_light .t_dark .t_error_accent_RadioGroupItem, .t_light .t_dark .t_error_accent_TextArea, .t_light .t_dark .t_red_accent_Checkbox, .t_light .t_dark .t_red_accent_Input, .t_light .t_dark .t_red_accent_RadioGroupItem, .t_light .t_dark .t_red_accent_TextArea, .t_light .t_dark .t_success_accent_Checkbox, .t_light .t_dark .t_success_accent_Input, .t_light .t_dark .t_success_accent_RadioGroupItem, .t_light .t_dark .t_success_accent_TextArea, .t_light .t_dark .t_warning_accent_Checkbox, .t_light .t_dark .t_warning_accent_Input, .t_light .t_dark .t_warning_accent_RadioGroupItem, .t_light .t_dark .t_warning_accent_TextArea, .t_red_accent_Checkbox, .t_red_accent_Input, .t_red_accent_RadioGroupItem, .t_red_accent_TextArea, .t_success_accent_Checkbox, .t_success_accent_Input, .t_success_accent_RadioGroupItem, .t_success_accent_TextArea, .t_warning_accent_Checkbox, .t_warning_accent_Input, .t_warning_accent_RadioGroupItem, .t_warning_accent_TextArea {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-231);--backgroundHover:var(--color-232);--backgroundPress:var(--color-233);--backgroundFocus:var(--color-234);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-236);--borderColorHover:var(--color-237);--borderColorFocus:var(--color-238);--borderColorPress:var(--color-237);} - } -:root.t_dark .t_accent_ProgressIndicator, :root.t_dark .t_accent_SliderThumb, :root.t_dark .t_accent_SwitchThumb, :root.t_dark .t_accent_Tooltip, :root.t_dark .t_active_accent_ProgressIndicator, :root.t_dark .t_active_accent_SliderThumb, :root.t_dark .t_active_accent_SwitchThumb, :root.t_dark .t_active_accent_Tooltip, :root.t_dark .t_alt1_accent_ProgressIndicator, :root.t_dark .t_alt1_accent_SliderThumb, :root.t_dark .t_alt1_accent_SwitchThumb, :root.t_dark .t_alt1_accent_Tooltip, :root.t_dark .t_alt2_accent_ProgressIndicator, :root.t_dark .t_alt2_accent_SliderThumb, :root.t_dark .t_alt2_accent_SwitchThumb, :root.t_dark .t_alt2_accent_Tooltip, :root.t_dark .t_dim_accent_ProgressIndicator, :root.t_dark .t_dim_accent_SliderThumb, :root.t_dark .t_dim_accent_SwitchThumb, :root.t_dark .t_dim_accent_Tooltip, :root.t_dark .t_disabled_accent_ProgressIndicator, :root.t_dark .t_disabled_accent_SliderThumb, :root.t_dark .t_disabled_accent_SwitchThumb, :root.t_dark .t_disabled_accent_Tooltip, :root.t_dark .t_error_accent_ProgressIndicator, :root.t_dark .t_error_accent_SliderThumb, :root.t_dark .t_error_accent_SwitchThumb, :root.t_dark .t_error_accent_Tooltip, :root.t_dark .t_light .t_dark .t_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_accent_Tooltip, :root.t_dark .t_light .t_dark .t_active_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_active_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_active_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_active_accent_Tooltip, :root.t_dark .t_light .t_dark .t_alt1_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_alt1_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_alt1_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_alt1_accent_Tooltip, :root.t_dark .t_light .t_dark .t_alt2_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_alt2_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_alt2_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_alt2_accent_Tooltip, :root.t_dark .t_light .t_dark .t_dim_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_dim_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_dim_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_dim_accent_Tooltip, :root.t_dark .t_light .t_dark .t_disabled_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_disabled_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_disabled_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_disabled_accent_Tooltip, :root.t_dark .t_light .t_dark .t_error_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_error_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_error_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_error_accent_Tooltip, :root.t_dark .t_light .t_dark .t_red_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_red_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_red_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_red_accent_Tooltip, :root.t_dark .t_light .t_dark .t_success_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_success_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_success_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_success_accent_Tooltip, :root.t_dark .t_light .t_dark .t_warning_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_warning_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_warning_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_warning_accent_Tooltip, :root.t_dark .t_red_accent_ProgressIndicator, :root.t_dark .t_red_accent_SliderThumb, :root.t_dark .t_red_accent_SwitchThumb, :root.t_dark .t_red_accent_Tooltip, :root.t_dark .t_success_accent_ProgressIndicator, :root.t_dark .t_success_accent_SliderThumb, :root.t_dark .t_success_accent_SwitchThumb, :root.t_dark .t_success_accent_Tooltip, :root.t_dark .t_warning_accent_ProgressIndicator, :root.t_dark .t_warning_accent_SliderThumb, :root.t_dark .t_warning_accent_SwitchThumb, :root.t_dark .t_warning_accent_Tooltip, :root.t_light .t_dark .t_accent_ProgressIndicator, :root.t_light .t_dark .t_accent_SliderThumb, :root.t_light .t_dark .t_accent_SwitchThumb, :root.t_light .t_dark .t_accent_Tooltip, :root.t_light .t_dark .t_active_accent_ProgressIndicator, :root.t_light .t_dark .t_active_accent_SliderThumb, :root.t_light .t_dark .t_active_accent_SwitchThumb, :root.t_light .t_dark .t_active_accent_Tooltip, :root.t_light .t_dark .t_alt1_accent_ProgressIndicator, :root.t_light .t_dark .t_alt1_accent_SliderThumb, :root.t_light .t_dark .t_alt1_accent_SwitchThumb, :root.t_light .t_dark .t_alt1_accent_Tooltip, :root.t_light .t_dark .t_alt2_accent_ProgressIndicator, :root.t_light .t_dark .t_alt2_accent_SliderThumb, :root.t_light .t_dark .t_alt2_accent_SwitchThumb, :root.t_light .t_dark .t_alt2_accent_Tooltip, :root.t_light .t_dark .t_dim_accent_ProgressIndicator, :root.t_light .t_dark .t_dim_accent_SliderThumb, :root.t_light .t_dark .t_dim_accent_SwitchThumb, :root.t_light .t_dark .t_dim_accent_Tooltip, :root.t_light .t_dark .t_disabled_accent_ProgressIndicator, :root.t_light .t_dark .t_disabled_accent_SliderThumb, :root.t_light .t_dark .t_disabled_accent_SwitchThumb, :root.t_light .t_dark .t_disabled_accent_Tooltip, :root.t_light .t_dark .t_error_accent_ProgressIndicator, :root.t_light .t_dark .t_error_accent_SliderThumb, :root.t_light .t_dark .t_error_accent_SwitchThumb, :root.t_light .t_dark .t_error_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_active_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_active_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_active_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_active_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_error_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_error_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_error_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_error_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_red_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_red_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_red_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_red_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_success_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_success_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_success_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_success_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_Tooltip, :root.t_light .t_dark .t_red_accent_ProgressIndicator, :root.t_light .t_dark .t_red_accent_SliderThumb, :root.t_light .t_dark .t_red_accent_SwitchThumb, :root.t_light .t_dark .t_red_accent_Tooltip, :root.t_light .t_dark .t_success_accent_ProgressIndicator, :root.t_light .t_dark .t_success_accent_SliderThumb, :root.t_light .t_dark .t_success_accent_SwitchThumb, :root.t_light .t_dark .t_success_accent_Tooltip, :root.t_light .t_dark .t_warning_accent_ProgressIndicator, :root.t_light .t_dark .t_warning_accent_SliderThumb, :root.t_light .t_dark .t_warning_accent_SwitchThumb, :root.t_light .t_dark .t_warning_accent_Tooltip {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:var(--color-231);--color025:var(--color-230);--color05:var(--color-229);--color075:hsla(125, 96%, 40%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 10%, 1);--backgroundPress:var(--color-240);--backgroundFocus:var(--color-239);--color:var(--color-232);--colorHover:var(--color-233);--colorPress:var(--color-232);--colorFocus:var(--color-233);--placeholderColor:var(--color-233);--borderColor:var(--color-239);--borderColorHover:var(--color-238);--borderColorFocus:var(--color-237);--borderColorPress:var(--color-238);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_accent_ProgressIndicator, .t_accent_SliderThumb, .t_accent_SwitchThumb, .t_accent_Tooltip, .t_active_accent_ProgressIndicator, .t_active_accent_SliderThumb, .t_active_accent_SwitchThumb, .t_active_accent_Tooltip, .t_alt1_accent_ProgressIndicator, .t_alt1_accent_SliderThumb, .t_alt1_accent_SwitchThumb, .t_alt1_accent_Tooltip, .t_alt2_accent_ProgressIndicator, .t_alt2_accent_SliderThumb, .t_alt2_accent_SwitchThumb, .t_alt2_accent_Tooltip, .t_dim_accent_ProgressIndicator, .t_dim_accent_SliderThumb, .t_dim_accent_SwitchThumb, .t_dim_accent_Tooltip, .t_disabled_accent_ProgressIndicator, .t_disabled_accent_SliderThumb, .t_disabled_accent_SwitchThumb, .t_disabled_accent_Tooltip, .t_error_accent_ProgressIndicator, .t_error_accent_SliderThumb, .t_error_accent_SwitchThumb, .t_error_accent_Tooltip, .t_light .t_dark .t_accent_ProgressIndicator, .t_light .t_dark .t_accent_SliderThumb, .t_light .t_dark .t_accent_SwitchThumb, .t_light .t_dark .t_accent_Tooltip, .t_light .t_dark .t_active_accent_ProgressIndicator, .t_light .t_dark .t_active_accent_SliderThumb, .t_light .t_dark .t_active_accent_SwitchThumb, .t_light .t_dark .t_active_accent_Tooltip, .t_light .t_dark .t_alt1_accent_ProgressIndicator, .t_light .t_dark .t_alt1_accent_SliderThumb, .t_light .t_dark .t_alt1_accent_SwitchThumb, .t_light .t_dark .t_alt1_accent_Tooltip, .t_light .t_dark .t_alt2_accent_ProgressIndicator, .t_light .t_dark .t_alt2_accent_SliderThumb, .t_light .t_dark .t_alt2_accent_SwitchThumb, .t_light .t_dark .t_alt2_accent_Tooltip, .t_light .t_dark .t_dim_accent_ProgressIndicator, .t_light .t_dark .t_dim_accent_SliderThumb, .t_light .t_dark .t_dim_accent_SwitchThumb, .t_light .t_dark .t_dim_accent_Tooltip, .t_light .t_dark .t_disabled_accent_ProgressIndicator, .t_light .t_dark .t_disabled_accent_SliderThumb, .t_light .t_dark .t_disabled_accent_SwitchThumb, .t_light .t_dark .t_disabled_accent_Tooltip, .t_light .t_dark .t_error_accent_ProgressIndicator, .t_light .t_dark .t_error_accent_SliderThumb, .t_light .t_dark .t_error_accent_SwitchThumb, .t_light .t_dark .t_error_accent_Tooltip, .t_light .t_dark .t_red_accent_ProgressIndicator, .t_light .t_dark .t_red_accent_SliderThumb, .t_light .t_dark .t_red_accent_SwitchThumb, .t_light .t_dark .t_red_accent_Tooltip, .t_light .t_dark .t_success_accent_ProgressIndicator, .t_light .t_dark .t_success_accent_SliderThumb, .t_light .t_dark .t_success_accent_SwitchThumb, .t_light .t_dark .t_success_accent_Tooltip, .t_light .t_dark .t_warning_accent_ProgressIndicator, .t_light .t_dark .t_warning_accent_SliderThumb, .t_light .t_dark .t_warning_accent_SwitchThumb, .t_light .t_dark .t_warning_accent_Tooltip, .t_red_accent_ProgressIndicator, .t_red_accent_SliderThumb, .t_red_accent_SwitchThumb, .t_red_accent_Tooltip, .t_success_accent_ProgressIndicator, .t_success_accent_SliderThumb, .t_success_accent_SwitchThumb, .t_success_accent_Tooltip, .t_warning_accent_ProgressIndicator, .t_warning_accent_SliderThumb, .t_warning_accent_SwitchThumb, .t_warning_accent_Tooltip {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:var(--color-231);--color025:var(--color-230);--color05:var(--color-229);--color075:hsla(125, 96%, 40%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 10%, 1);--backgroundPress:var(--color-240);--backgroundFocus:var(--color-239);--color:var(--color-232);--colorHover:var(--color-233);--colorPress:var(--color-232);--colorFocus:var(--color-233);--placeholderColor:var(--color-233);--borderColor:var(--color-239);--borderColorHover:var(--color-238);--borderColorFocus:var(--color-237);--borderColorPress:var(--color-238);} - } -:root.t_dark .t_accent_SliderTrack, :root.t_dark .t_accent_TooltipContent, :root.t_dark .t_active_accent_Button, :root.t_dark .t_active_accent_SliderTrack, :root.t_dark .t_active_accent_Switch, :root.t_dark .t_active_accent_TooltipContent, :root.t_dark .t_alt1_accent_Button, :root.t_dark .t_alt1_accent_SliderTrack, :root.t_dark .t_alt1_accent_Switch, :root.t_dark .t_alt1_accent_TooltipContent, :root.t_dark .t_alt2_accent_Button, :root.t_dark .t_alt2_accent_SliderTrack, :root.t_dark .t_alt2_accent_Switch, :root.t_dark .t_alt2_accent_TooltipContent, :root.t_dark .t_dim_accent_Button, :root.t_dark .t_dim_accent_SliderTrack, :root.t_dark .t_dim_accent_Switch, :root.t_dark .t_dim_accent_TooltipContent, :root.t_dark .t_disabled_accent_Button, :root.t_dark .t_disabled_accent_SliderTrack, :root.t_dark .t_disabled_accent_Switch, :root.t_dark .t_disabled_accent_TooltipContent, :root.t_dark .t_error_accent_Button, :root.t_dark .t_error_accent_SliderTrack, :root.t_dark .t_error_accent_Switch, :root.t_dark .t_error_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_active_accent_Button, :root.t_dark .t_light .t_dark .t_active_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_active_accent_Switch, :root.t_dark .t_light .t_dark .t_active_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_alt1_accent_Button, :root.t_dark .t_light .t_dark .t_alt1_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_alt1_accent_Switch, :root.t_dark .t_light .t_dark .t_alt1_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_alt2_accent_Button, :root.t_dark .t_light .t_dark .t_alt2_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_alt2_accent_Switch, :root.t_dark .t_light .t_dark .t_alt2_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_dim_accent_Button, :root.t_dark .t_light .t_dark .t_dim_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_dim_accent_Switch, :root.t_dark .t_light .t_dark .t_dim_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_disabled_accent_Button, :root.t_dark .t_light .t_dark .t_disabled_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_disabled_accent_Switch, :root.t_dark .t_light .t_dark .t_disabled_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_error_accent_Button, :root.t_dark .t_light .t_dark .t_error_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_error_accent_Switch, :root.t_dark .t_light .t_dark .t_error_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_red_accent_Button, :root.t_dark .t_light .t_dark .t_red_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_red_accent_Switch, :root.t_dark .t_light .t_dark .t_red_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_success_accent_Button, :root.t_dark .t_light .t_dark .t_success_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_success_accent_Switch, :root.t_dark .t_light .t_dark .t_success_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_warning_accent_Button, :root.t_dark .t_light .t_dark .t_warning_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_warning_accent_Switch, :root.t_dark .t_light .t_dark .t_warning_accent_TooltipContent, :root.t_dark .t_red_accent_Button, :root.t_dark .t_red_accent_SliderTrack, :root.t_dark .t_red_accent_Switch, :root.t_dark .t_red_accent_TooltipContent, :root.t_dark .t_success_accent_Button, :root.t_dark .t_success_accent_SliderTrack, :root.t_dark .t_success_accent_Switch, :root.t_dark .t_success_accent_TooltipContent, :root.t_dark .t_warning_accent_Button, :root.t_dark .t_warning_accent_SliderTrack, :root.t_dark .t_warning_accent_Switch, :root.t_dark .t_warning_accent_TooltipContent, :root.t_light .t_dark .t_accent_SliderTrack, :root.t_light .t_dark .t_accent_TooltipContent, :root.t_light .t_dark .t_active_accent_Button, :root.t_light .t_dark .t_active_accent_SliderTrack, :root.t_light .t_dark .t_active_accent_Switch, :root.t_light .t_dark .t_active_accent_TooltipContent, :root.t_light .t_dark .t_alt1_accent_Button, :root.t_light .t_dark .t_alt1_accent_SliderTrack, :root.t_light .t_dark .t_alt1_accent_Switch, :root.t_light .t_dark .t_alt1_accent_TooltipContent, :root.t_light .t_dark .t_alt2_accent_Button, :root.t_light .t_dark .t_alt2_accent_SliderTrack, :root.t_light .t_dark .t_alt2_accent_Switch, :root.t_light .t_dark .t_alt2_accent_TooltipContent, :root.t_light .t_dark .t_dim_accent_Button, :root.t_light .t_dark .t_dim_accent_SliderTrack, :root.t_light .t_dark .t_dim_accent_Switch, :root.t_light .t_dark .t_dim_accent_TooltipContent, :root.t_light .t_dark .t_disabled_accent_Button, :root.t_light .t_dark .t_disabled_accent_SliderTrack, :root.t_light .t_dark .t_disabled_accent_Switch, :root.t_light .t_dark .t_disabled_accent_TooltipContent, :root.t_light .t_dark .t_error_accent_Button, :root.t_light .t_dark .t_error_accent_SliderTrack, :root.t_light .t_dark .t_error_accent_Switch, :root.t_light .t_dark .t_error_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_active_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_active_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_active_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_active_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_error_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_error_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_error_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_error_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_red_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_red_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_red_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_red_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_success_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_success_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_success_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_success_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_TooltipContent, :root.t_light .t_dark .t_red_accent_Button, :root.t_light .t_dark .t_red_accent_SliderTrack, :root.t_light .t_dark .t_red_accent_Switch, :root.t_light .t_dark .t_red_accent_TooltipContent, :root.t_light .t_dark .t_success_accent_Button, :root.t_light .t_dark .t_success_accent_SliderTrack, :root.t_light .t_dark .t_success_accent_Switch, :root.t_light .t_dark .t_success_accent_TooltipContent, :root.t_light .t_dark .t_warning_accent_Button, :root.t_light .t_dark .t_warning_accent_SliderTrack, :root.t_light .t_dark .t_warning_accent_Switch, :root.t_light .t_dark .t_warning_accent_TooltipContent {--background0:var(--color-230);--background025:var(--color-231);--background05:var(--color-232);--background075:var(--color-233);--color0:var(--color-240);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 32%, 10%, 1);--color075:hsla(191, 33%, 10%, 0.75);--background:var(--color-233);--backgroundHover:var(--color-234);--backgroundPress:var(--color-235);--backgroundFocus:var(--color-236);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-238);--borderColor:var(--color-236);--borderColorHover:var(--color-237);--borderColorFocus:var(--color-238);--borderColorPress:var(--color-237);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_accent_SliderTrack, .t_accent_TooltipContent, .t_active_accent_Button, .t_active_accent_SliderTrack, .t_active_accent_Switch, .t_active_accent_TooltipContent, .t_alt1_accent_Button, .t_alt1_accent_SliderTrack, .t_alt1_accent_Switch, .t_alt1_accent_TooltipContent, .t_alt2_accent_Button, .t_alt2_accent_SliderTrack, .t_alt2_accent_Switch, .t_alt2_accent_TooltipContent, .t_dim_accent_Button, .t_dim_accent_SliderTrack, .t_dim_accent_Switch, .t_dim_accent_TooltipContent, .t_disabled_accent_Button, .t_disabled_accent_SliderTrack, .t_disabled_accent_Switch, .t_disabled_accent_TooltipContent, .t_error_accent_Button, .t_error_accent_SliderTrack, .t_error_accent_Switch, .t_error_accent_TooltipContent, .t_light .t_dark .t_accent_SliderTrack, .t_light .t_dark .t_accent_TooltipContent, .t_light .t_dark .t_active_accent_Button, .t_light .t_dark .t_active_accent_SliderTrack, .t_light .t_dark .t_active_accent_Switch, .t_light .t_dark .t_active_accent_TooltipContent, .t_light .t_dark .t_alt1_accent_Button, .t_light .t_dark .t_alt1_accent_SliderTrack, .t_light .t_dark .t_alt1_accent_Switch, .t_light .t_dark .t_alt1_accent_TooltipContent, .t_light .t_dark .t_alt2_accent_Button, .t_light .t_dark .t_alt2_accent_SliderTrack, .t_light .t_dark .t_alt2_accent_Switch, .t_light .t_dark .t_alt2_accent_TooltipContent, .t_light .t_dark .t_dim_accent_Button, .t_light .t_dark .t_dim_accent_SliderTrack, .t_light .t_dark .t_dim_accent_Switch, .t_light .t_dark .t_dim_accent_TooltipContent, .t_light .t_dark .t_disabled_accent_Button, .t_light .t_dark .t_disabled_accent_SliderTrack, .t_light .t_dark .t_disabled_accent_Switch, .t_light .t_dark .t_disabled_accent_TooltipContent, .t_light .t_dark .t_error_accent_Button, .t_light .t_dark .t_error_accent_SliderTrack, .t_light .t_dark .t_error_accent_Switch, .t_light .t_dark .t_error_accent_TooltipContent, .t_light .t_dark .t_red_accent_Button, .t_light .t_dark .t_red_accent_SliderTrack, .t_light .t_dark .t_red_accent_Switch, .t_light .t_dark .t_red_accent_TooltipContent, .t_light .t_dark .t_success_accent_Button, .t_light .t_dark .t_success_accent_SliderTrack, .t_light .t_dark .t_success_accent_Switch, .t_light .t_dark .t_success_accent_TooltipContent, .t_light .t_dark .t_warning_accent_Button, .t_light .t_dark .t_warning_accent_SliderTrack, .t_light .t_dark .t_warning_accent_Switch, .t_light .t_dark .t_warning_accent_TooltipContent, .t_red_accent_Button, .t_red_accent_SliderTrack, .t_red_accent_Switch, .t_red_accent_TooltipContent, .t_success_accent_Button, .t_success_accent_SliderTrack, .t_success_accent_Switch, .t_success_accent_TooltipContent, .t_warning_accent_Button, .t_warning_accent_SliderTrack, .t_warning_accent_Switch, .t_warning_accent_TooltipContent {--background0:var(--color-230);--background025:var(--color-231);--background05:var(--color-232);--background075:var(--color-233);--color0:var(--color-240);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 32%, 10%, 1);--color075:hsla(191, 33%, 10%, 0.75);--background:var(--color-233);--backgroundHover:var(--color-234);--backgroundPress:var(--color-235);--backgroundFocus:var(--color-236);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-238);--borderColor:var(--color-236);--borderColorHover:var(--color-237);--borderColorFocus:var(--color-238);--borderColorPress:var(--color-237);} - } -:root.t_dark .t_accent_SliderTrackActive, :root.t_dark .t_active_accent_SliderTrackActive, :root.t_dark .t_alt1_accent_SliderTrackActive, :root.t_dark .t_alt2_accent_SliderTrackActive, :root.t_dark .t_dim_accent_SliderTrackActive, :root.t_dark .t_disabled_accent_SliderTrackActive, :root.t_dark .t_error_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_active_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_alt1_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_alt2_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_dim_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_disabled_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_error_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_red_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_success_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_warning_accent_SliderTrackActive, :root.t_dark .t_red_accent_SliderTrackActive, :root.t_dark .t_success_accent_SliderTrackActive, :root.t_dark .t_warning_accent_SliderTrackActive, :root.t_light .t_dark .t_accent_SliderTrackActive, :root.t_light .t_dark .t_active_accent_SliderTrackActive, :root.t_light .t_dark .t_alt1_accent_SliderTrackActive, :root.t_light .t_dark .t_alt2_accent_SliderTrackActive, :root.t_light .t_dark .t_dim_accent_SliderTrackActive, :root.t_light .t_dark .t_disabled_accent_SliderTrackActive, :root.t_light .t_dark .t_error_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_active_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_error_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_red_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_success_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_SliderTrackActive, :root.t_light .t_dark .t_red_accent_SliderTrackActive, :root.t_light .t_dark .t_success_accent_SliderTrackActive, :root.t_light .t_dark .t_warning_accent_SliderTrackActive {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 10%, 1);--background075:var(--color-240);--color0:var(--color-233);--color025:var(--color-232);--color05:var(--color-231);--color075:var(--color-230);--background:var(--color-240);--backgroundHover:var(--color-239);--backgroundPress:var(--color-238);--backgroundFocus:var(--color-237);--color:var(--color-232);--colorHover:var(--color-233);--colorPress:var(--color-232);--colorFocus:var(--color-233);--placeholderColor:var(--color-235);--borderColor:var(--color-237);--borderColorHover:var(--color-236);--borderColorFocus:var(--color-235);--borderColorPress:var(--color-236);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_accent_SliderTrackActive, .t_active_accent_SliderTrackActive, .t_alt1_accent_SliderTrackActive, .t_alt2_accent_SliderTrackActive, .t_dim_accent_SliderTrackActive, .t_disabled_accent_SliderTrackActive, .t_error_accent_SliderTrackActive, .t_light .t_dark .t_accent_SliderTrackActive, .t_light .t_dark .t_active_accent_SliderTrackActive, .t_light .t_dark .t_alt1_accent_SliderTrackActive, .t_light .t_dark .t_alt2_accent_SliderTrackActive, .t_light .t_dark .t_dim_accent_SliderTrackActive, .t_light .t_dark .t_disabled_accent_SliderTrackActive, .t_light .t_dark .t_error_accent_SliderTrackActive, .t_light .t_dark .t_red_accent_SliderTrackActive, .t_light .t_dark .t_success_accent_SliderTrackActive, .t_light .t_dark .t_warning_accent_SliderTrackActive, .t_red_accent_SliderTrackActive, .t_success_accent_SliderTrackActive, .t_warning_accent_SliderTrackActive {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 10%, 1);--background075:var(--color-240);--color0:var(--color-233);--color025:var(--color-232);--color05:var(--color-231);--color075:var(--color-230);--background:var(--color-240);--backgroundHover:var(--color-239);--backgroundPress:var(--color-238);--backgroundFocus:var(--color-237);--color:var(--color-232);--colorHover:var(--color-233);--colorPress:var(--color-232);--colorFocus:var(--color-233);--placeholderColor:var(--color-235);--borderColor:var(--color-237);--borderColorHover:var(--color-236);--borderColorFocus:var(--color-235);--borderColorPress:var(--color-236);} - } -:root.t_dark .t_active, :root.t_dark .t_light .t_dark .t_active, :root.t_light .t_dark .t_active, :root.t_light .t_dark .t_light .t_dark .t_active {--background0:hsla(191, 33%, 10%, 0);--background025:hsla(191, 33%, 10%, 0.25);--background05:hsla(191, 33%, 10%, 0.5);--background075:hsla(191, 33%, 10%, 0.75);--color0:hsla(0, 0%, 100%, 0.75);--color025:hsla(0, 0%, 100%, 0.5);--color05:hsla(0, 0%, 100%, 0.25);--color075:hsla(0, 0%, 100%, 0);--background:hsla(191, 33%, 10%, 0.75);--backgroundHover:hsla(191, 32%, 10%, 1);--backgroundPress:hsla(191, 32%, 15%, 1);--backgroundFocus:hsla(191, 32%, 19%, 1);--colorHover:hsla(112, 22%, 59%, 1);--colorPress:hsla(112, 22%, 100%, 1);--colorFocus:hsla(112, 22%, 59%, 1);--placeholderColor:hsla(112, 22%, 59%, 1);--borderColor:hsla(191, 32%, 19%, 1);--borderColorHover:hsla(191, 32%, 24%, 1);--borderColorFocus:hsla(191, 32%, 28%, 1);--borderColorPress:hsla(191, 32%, 24%, 1);--color1:hsla(191, 33%, 10%, 0.75);--color2:hsla(191, 32%, 10%, 1);--color3:hsla(191, 32%, 15%, 1);--color4:hsla(191, 32%, 19%, 1);--color5:hsla(191, 32%, 24%, 1);--color6:hsla(191, 32%, 28%, 1);--color7:hsla(191, 32%, 32%, 1);--color8:hsla(191, 32%, 37%, 1);--color9:hsla(191, 32%, 41%, 1);--color10:hsla(191, 32%, 46%, 1);--color11:hsla(191, 32%, 50%, 1);--color12:hsla(112, 22%, 59%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);} - .t_active, .t_light .t_dark .t_active {--background0:hsla(191, 33%, 10%, 0);--background025:hsla(191, 33%, 10%, 0.25);--background05:hsla(191, 33%, 10%, 0.5);--background075:hsla(191, 33%, 10%, 0.75);--color0:hsla(0, 0%, 100%, 0.75);--color025:hsla(0, 0%, 100%, 0.5);--color05:hsla(0, 0%, 100%, 0.25);--color075:hsla(0, 0%, 100%, 0);--background:hsla(191, 33%, 10%, 0.75);--backgroundHover:hsla(191, 32%, 10%, 1);--backgroundPress:hsla(191, 32%, 15%, 1);--backgroundFocus:hsla(191, 32%, 19%, 1);--colorHover:hsla(112, 22%, 59%, 1);--colorPress:hsla(112, 22%, 100%, 1);--colorFocus:hsla(112, 22%, 59%, 1);--placeholderColor:hsla(112, 22%, 59%, 1);--borderColor:hsla(191, 32%, 19%, 1);--borderColorHover:hsla(191, 32%, 24%, 1);--borderColorFocus:hsla(191, 32%, 28%, 1);--borderColorPress:hsla(191, 32%, 24%, 1);--color1:hsla(191, 33%, 10%, 0.75);--color2:hsla(191, 32%, 10%, 1);--color3:hsla(191, 32%, 15%, 1);--color4:hsla(191, 32%, 19%, 1);--color5:hsla(191, 32%, 24%, 1);--color6:hsla(191, 32%, 28%, 1);--color7:hsla(191, 32%, 32%, 1);--color8:hsla(191, 32%, 37%, 1);--color9:hsla(191, 32%, 41%, 1);--color10:hsla(191, 32%, 46%, 1);--color11:hsla(191, 32%, 50%, 1);--color12:hsla(112, 22%, 59%, 1);} - } -:root.t_dark .t_active_Button, :root.t_dark .t_active_SliderTrack, :root.t_dark .t_active_Switch, :root.t_dark .t_active_TooltipContent, :root.t_dark .t_light .t_dark .t_active_Button, :root.t_dark .t_light .t_dark .t_active_SliderTrack, :root.t_dark .t_light .t_dark .t_active_Switch, :root.t_dark .t_light .t_dark .t_active_TooltipContent, :root.t_light .t_dark .t_active_Button, :root.t_light .t_dark .t_active_SliderTrack, :root.t_light .t_dark .t_active_Switch, :root.t_light .t_dark .t_active_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_active_Button, :root.t_light .t_dark .t_light .t_dark .t_active_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_active_Switch, :root.t_light .t_dark .t_light .t_dark .t_active_TooltipContent {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--colorHover:hsla(112, 22%, 59%, 1);--colorPress:hsla(112, 22%, 100%, 1);--colorFocus:hsla(112, 22%, 59%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);} - .t_active_Button, .t_active_SliderTrack, .t_active_Switch, .t_active_TooltipContent, .t_light .t_dark .t_active_Button, .t_light .t_dark .t_active_SliderTrack, .t_light .t_dark .t_active_Switch, .t_light .t_dark .t_active_TooltipContent {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--colorHover:hsla(112, 22%, 59%, 1);--colorPress:hsla(112, 22%, 100%, 1);--colorFocus:hsla(112, 22%, 59%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} - } -:root.t_dark .t_active_Card, :root.t_dark .t_active_DrawerFrame, :root.t_dark .t_active_Progress, :root.t_dark .t_active_TooltipArrow, :root.t_dark .t_light .t_dark .t_active_Card, :root.t_dark .t_light .t_dark .t_active_DrawerFrame, :root.t_dark .t_light .t_dark .t_active_Progress, :root.t_dark .t_light .t_dark .t_active_TooltipArrow, :root.t_light .t_dark .t_active_Card, :root.t_light .t_dark .t_active_DrawerFrame, :root.t_light .t_dark .t_active_Progress, :root.t_light .t_dark .t_active_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_active_Card, :root.t_light .t_dark .t_light .t_dark .t_active_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_active_Progress, :root.t_light .t_dark .t_light .t_dark .t_active_TooltipArrow {--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:hsla(112, 22%, 100%, 1);--color025:hsla(0, 0%, 100%, 0.75);--color05:hsla(0, 0%, 100%, 0.5);--color075:hsla(0, 0%, 100%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 15%, 1);--backgroundPress:hsla(191, 32%, 19%, 1);--backgroundFocus:hsla(191, 32%, 24%, 1);--colorHover:hsla(112, 22%, 59%, 1);--colorPress:hsla(112, 22%, 100%, 1);--colorFocus:hsla(112, 22%, 59%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 24%, 1);--borderColorHover:hsla(191, 32%, 28%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 28%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);} - .t_active_Card, .t_active_DrawerFrame, .t_active_Progress, .t_active_TooltipArrow, .t_light .t_dark .t_active_Card, .t_light .t_dark .t_active_DrawerFrame, .t_light .t_dark .t_active_Progress, .t_light .t_dark .t_active_TooltipArrow {--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:hsla(112, 22%, 100%, 1);--color025:hsla(0, 0%, 100%, 0.75);--color05:hsla(0, 0%, 100%, 0.5);--color075:hsla(0, 0%, 100%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 15%, 1);--backgroundPress:hsla(191, 32%, 19%, 1);--backgroundFocus:hsla(191, 32%, 24%, 1);--colorHover:hsla(112, 22%, 59%, 1);--colorPress:hsla(112, 22%, 100%, 1);--colorFocus:hsla(112, 22%, 59%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 24%, 1);--borderColorHover:hsla(191, 32%, 28%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 28%, 1);} - } -:root.t_dark .t_active_Checkbox, :root.t_dark .t_active_Input, :root.t_dark .t_active_RadioGroupItem, :root.t_dark .t_active_TextArea, :root.t_dark .t_light .t_dark .t_active_Checkbox, :root.t_dark .t_light .t_dark .t_active_Input, :root.t_dark .t_light .t_dark .t_active_RadioGroupItem, :root.t_dark .t_light .t_dark .t_active_TextArea, :root.t_light .t_dark .t_active_Checkbox, :root.t_light .t_dark .t_active_Input, :root.t_light .t_dark .t_active_RadioGroupItem, :root.t_light .t_dark .t_active_TextArea, :root.t_light .t_dark .t_light .t_dark .t_active_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_active_Input, :root.t_light .t_dark .t_light .t_dark .t_active_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_active_TextArea {--background0:hsla(191, 33%, 10%, 0);--background025:hsla(191, 33%, 10%, 0.25);--background05:hsla(191, 33%, 10%, 0.5);--background075:hsla(191, 33%, 10%, 0.75);--color0:hsla(0, 0%, 100%, 0.75);--color025:hsla(0, 0%, 100%, 0.5);--color05:hsla(0, 0%, 100%, 0.25);--color075:hsla(0, 0%, 100%, 0);--background:hsla(191, 33%, 10%, 0.75);--backgroundHover:hsla(191, 32%, 10%, 1);--backgroundPress:hsla(191, 32%, 15%, 1);--backgroundFocus:hsla(191, 32%, 19%, 1);--colorHover:hsla(112, 22%, 59%, 1);--colorPress:hsla(112, 22%, 100%, 1);--colorFocus:hsla(112, 22%, 59%, 1);--placeholderColor:hsla(112, 22%, 59%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);} - .t_active_Checkbox, .t_active_Input, .t_active_RadioGroupItem, .t_active_TextArea, .t_light .t_dark .t_active_Checkbox, .t_light .t_dark .t_active_Input, .t_light .t_dark .t_active_RadioGroupItem, .t_light .t_dark .t_active_TextArea {--background0:hsla(191, 33%, 10%, 0);--background025:hsla(191, 33%, 10%, 0.25);--background05:hsla(191, 33%, 10%, 0.5);--background075:hsla(191, 33%, 10%, 0.75);--color0:hsla(0, 0%, 100%, 0.75);--color025:hsla(0, 0%, 100%, 0.5);--color05:hsla(0, 0%, 100%, 0.25);--color075:hsla(0, 0%, 100%, 0);--background:hsla(191, 33%, 10%, 0.75);--backgroundHover:hsla(191, 32%, 10%, 1);--backgroundPress:hsla(191, 32%, 15%, 1);--backgroundFocus:hsla(191, 32%, 19%, 1);--colorHover:hsla(112, 22%, 59%, 1);--colorPress:hsla(112, 22%, 100%, 1);--colorFocus:hsla(112, 22%, 59%, 1);--placeholderColor:hsla(112, 22%, 59%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} - } -:root.t_dark .t_active_ProgressIndicator, :root.t_dark .t_active_SliderThumb, :root.t_dark .t_active_SwitchThumb, :root.t_dark .t_active_Tooltip, :root.t_dark .t_light .t_dark .t_active_ProgressIndicator, :root.t_dark .t_light .t_dark .t_active_SliderThumb, :root.t_dark .t_light .t_dark .t_active_SwitchThumb, :root.t_dark .t_light .t_dark .t_active_Tooltip, :root.t_light .t_dark .t_active_ProgressIndicator, :root.t_light .t_dark .t_active_SliderThumb, :root.t_light .t_dark .t_active_SwitchThumb, :root.t_light .t_dark .t_active_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_active_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_active_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_active_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_active_Tooltip {--background0:hsla(0, 0%, 100%, 0);--background025:hsla(0, 0%, 100%, 0.25);--background05:hsla(0, 0%, 100%, 0.5);--background075:hsla(0, 0%, 100%, 0.75);--color0:hsla(191, 33%, 10%, 0.75);--color025:hsla(191, 33%, 10%, 0.5);--color05:hsla(191, 33%, 10%, 0.25);--color075:hsla(191, 33%, 10%, 0);--background:hsla(0, 0%, 100%, 0.75);--backgroundHover:hsla(112, 22%, 100%, 1);--backgroundPress:hsla(112, 22%, 59%, 1);--backgroundFocus:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 15%, 1);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:hsla(191, 32%, 15%, 1);--placeholderColor:hsla(191, 32%, 15%, 1);--borderColor:hsla(191, 32%, 50%, 1);--borderColorHover:hsla(191, 32%, 46%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 46%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);} - .t_active_ProgressIndicator, .t_active_SliderThumb, .t_active_SwitchThumb, .t_active_Tooltip, .t_light .t_dark .t_active_ProgressIndicator, .t_light .t_dark .t_active_SliderThumb, .t_light .t_dark .t_active_SwitchThumb, .t_light .t_dark .t_active_Tooltip {--background0:hsla(0, 0%, 100%, 0);--background025:hsla(0, 0%, 100%, 0.25);--background05:hsla(0, 0%, 100%, 0.5);--background075:hsla(0, 0%, 100%, 0.75);--color0:hsla(191, 33%, 10%, 0.75);--color025:hsla(191, 33%, 10%, 0.5);--color05:hsla(191, 33%, 10%, 0.25);--color075:hsla(191, 33%, 10%, 0);--background:hsla(0, 0%, 100%, 0.75);--backgroundHover:hsla(112, 22%, 100%, 1);--backgroundPress:hsla(112, 22%, 59%, 1);--backgroundFocus:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 15%, 1);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:hsla(191, 32%, 15%, 1);--placeholderColor:hsla(191, 32%, 15%, 1);--borderColor:hsla(191, 32%, 50%, 1);--borderColorHover:hsla(191, 32%, 46%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 46%, 1);} - } -:root.t_dark .t_active_SliderTrackActive, :root.t_dark .t_light .t_dark .t_active_SliderTrackActive, :root.t_light .t_dark .t_active_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_active_SliderTrackActive {--background0:hsla(0, 0%, 100%, 0.5);--background025:hsla(0, 0%, 100%, 0.75);--background05:hsla(112, 22%, 100%, 1);--background075:hsla(112, 22%, 59%, 1);--color0:hsla(191, 32%, 15%, 1);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 33%, 10%, 0.75);--color075:hsla(191, 33%, 10%, 0.5);--background:hsla(112, 22%, 59%, 1);--backgroundHover:hsla(191, 32%, 50%, 1);--backgroundPress:hsla(191, 32%, 46%, 1);--backgroundFocus:hsla(191, 32%, 41%, 1);--colorHover:hsla(191, 32%, 15%, 1);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:hsla(191, 32%, 15%, 1);--placeholderColor:hsla(191, 32%, 24%, 1);--borderColor:hsla(191, 32%, 41%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);} - .t_active_SliderTrackActive, .t_light .t_dark .t_active_SliderTrackActive {--background0:hsla(0, 0%, 100%, 0.5);--background025:hsla(0, 0%, 100%, 0.75);--background05:hsla(112, 22%, 100%, 1);--background075:hsla(112, 22%, 59%, 1);--color0:hsla(191, 32%, 15%, 1);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 33%, 10%, 0.75);--color075:hsla(191, 33%, 10%, 0.5);--background:hsla(112, 22%, 59%, 1);--backgroundHover:hsla(191, 32%, 50%, 1);--backgroundPress:hsla(191, 32%, 46%, 1);--backgroundFocus:hsla(191, 32%, 41%, 1);--colorHover:hsla(191, 32%, 15%, 1);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:hsla(191, 32%, 15%, 1);--placeholderColor:hsla(191, 32%, 24%, 1);--borderColor:hsla(191, 32%, 41%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} - } -:root.t_dark .t_alt1, :root.t_dark .t_light .t_dark .t_alt1, :root.t_light .t_dark .t_alt1, :root.t_light .t_dark .t_light .t_dark .t_alt1 {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);--color1:hsla(191, 32%, 15%, 1);--color2:hsla(191, 32%, 19%, 1);--color3:hsla(191, 32%, 24%, 1);--color4:hsla(191, 32%, 28%, 1);--color5:hsla(191, 32%, 32%, 1);--color6:hsla(191, 32%, 37%, 1);--color7:hsla(191, 32%, 41%, 1);--color8:hsla(191, 32%, 46%, 1);--color9:hsla(191, 32%, 46%, 1);--color10:hsla(191, 32%, 46%, 1);--color11:hsla(191, 32%, 46%, 1);--color12:hsla(191, 32%, 46%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_alt1, .t_light .t_dark .t_alt1 {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);--color1:hsla(191, 32%, 15%, 1);--color2:hsla(191, 32%, 19%, 1);--color3:hsla(191, 32%, 24%, 1);--color4:hsla(191, 32%, 28%, 1);--color5:hsla(191, 32%, 32%, 1);--color6:hsla(191, 32%, 37%, 1);--color7:hsla(191, 32%, 41%, 1);--color8:hsla(191, 32%, 46%, 1);--color9:hsla(191, 32%, 46%, 1);--color10:hsla(191, 32%, 46%, 1);--color11:hsla(191, 32%, 46%, 1);--color12:hsla(191, 32%, 46%, 1);} - } -:root.t_dark .t_alt1_Button, :root.t_dark .t_alt1_SliderTrack, :root.t_dark .t_alt1_Switch, :root.t_dark .t_alt1_TooltipContent, :root.t_dark .t_dim_Button, :root.t_dark .t_dim_SliderTrack, :root.t_dark .t_dim_Switch, :root.t_dark .t_dim_TooltipContent, :root.t_dark .t_light .t_dark .t_alt1_Button, :root.t_dark .t_light .t_dark .t_alt1_SliderTrack, :root.t_dark .t_light .t_dark .t_alt1_Switch, :root.t_dark .t_light .t_dark .t_alt1_TooltipContent, :root.t_dark .t_light .t_dark .t_dim_Button, :root.t_dark .t_light .t_dark .t_dim_SliderTrack, :root.t_dark .t_light .t_dark .t_dim_Switch, :root.t_dark .t_light .t_dark .t_dim_TooltipContent, :root.t_light .t_dark .t_alt1_Button, :root.t_light .t_dark .t_alt1_SliderTrack, :root.t_light .t_dark .t_alt1_Switch, :root.t_light .t_dark .t_alt1_TooltipContent, :root.t_light .t_dark .t_dim_Button, :root.t_light .t_dark .t_dim_SliderTrack, :root.t_light .t_dark .t_dim_Switch, :root.t_light .t_dark .t_dim_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_alt1_Button, :root.t_light .t_dark .t_light .t_dark .t_alt1_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_alt1_Switch, :root.t_light .t_dark .t_light .t_dark .t_alt1_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_dim_Button, :root.t_light .t_dark .t_light .t_dark .t_dim_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_dim_Switch, :root.t_light .t_dark .t_light .t_dark .t_dim_TooltipContent {--background0:hsla(191, 32%, 10%, 1);--background025:hsla(191, 32%, 15%, 1);--background05:hsla(191, 32%, 19%, 1);--background075:hsla(191, 32%, 24%, 1);--color0:hsla(191, 32%, 46%, 1);--color025:hsla(191, 32%, 50%, 1);--color05:hsla(112, 22%, 59%, 1);--color075:hsla(112, 22%, 100%, 1);--background:hsla(191, 32%, 24%, 1);--backgroundHover:hsla(191, 32%, 28%, 1);--backgroundPress:hsla(191, 32%, 32%, 1);--backgroundFocus:hsla(191, 32%, 37%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 37%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 41%, 1);--borderColorFocus:hsla(191, 32%, 46%, 1);--borderColorPress:hsla(191, 32%, 41%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_alt1_Button, .t_alt1_SliderTrack, .t_alt1_Switch, .t_alt1_TooltipContent, .t_dim_Button, .t_dim_SliderTrack, .t_dim_Switch, .t_dim_TooltipContent, .t_light .t_dark .t_alt1_Button, .t_light .t_dark .t_alt1_SliderTrack, .t_light .t_dark .t_alt1_Switch, .t_light .t_dark .t_alt1_TooltipContent, .t_light .t_dark .t_dim_Button, .t_light .t_dark .t_dim_SliderTrack, .t_light .t_dark .t_dim_Switch, .t_light .t_dark .t_dim_TooltipContent {--background0:hsla(191, 32%, 10%, 1);--background025:hsla(191, 32%, 15%, 1);--background05:hsla(191, 32%, 19%, 1);--background075:hsla(191, 32%, 24%, 1);--color0:hsla(191, 32%, 46%, 1);--color025:hsla(191, 32%, 50%, 1);--color05:hsla(112, 22%, 59%, 1);--color075:hsla(112, 22%, 100%, 1);--background:hsla(191, 32%, 24%, 1);--backgroundHover:hsla(191, 32%, 28%, 1);--backgroundPress:hsla(191, 32%, 32%, 1);--backgroundFocus:hsla(191, 32%, 37%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 37%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 41%, 1);--borderColorFocus:hsla(191, 32%, 46%, 1);--borderColorPress:hsla(191, 32%, 41%, 1);} - } -:root.t_dark .t_alt1_Card, :root.t_dark .t_alt1_DrawerFrame, :root.t_dark .t_alt1_Progress, :root.t_dark .t_alt1_TooltipArrow, :root.t_dark .t_dim_Card, :root.t_dark .t_dim_DrawerFrame, :root.t_dark .t_dim_Progress, :root.t_dark .t_dim_TooltipArrow, :root.t_dark .t_light .t_dark .t_alt1_Card, :root.t_dark .t_light .t_dark .t_alt1_DrawerFrame, :root.t_dark .t_light .t_dark .t_alt1_Progress, :root.t_dark .t_light .t_dark .t_alt1_TooltipArrow, :root.t_dark .t_light .t_dark .t_dim_Card, :root.t_dark .t_light .t_dark .t_dim_DrawerFrame, :root.t_dark .t_light .t_dark .t_dim_Progress, :root.t_dark .t_light .t_dark .t_dim_TooltipArrow, :root.t_light .t_dark .t_alt1_Card, :root.t_light .t_dark .t_alt1_DrawerFrame, :root.t_light .t_dark .t_alt1_Progress, :root.t_light .t_dark .t_alt1_TooltipArrow, :root.t_light .t_dark .t_dim_Card, :root.t_light .t_dark .t_dim_DrawerFrame, :root.t_light .t_dark .t_dim_Progress, :root.t_light .t_dark .t_dim_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_alt1_Card, :root.t_light .t_dark .t_light .t_dark .t_alt1_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_alt1_Progress, :root.t_light .t_dark .t_light .t_dark .t_alt1_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_dim_Card, :root.t_light .t_dark .t_light .t_dark .t_dim_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_dim_Progress, :root.t_light .t_dark .t_light .t_dark .t_dim_TooltipArrow {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_alt1_Card, .t_alt1_DrawerFrame, .t_alt1_Progress, .t_alt1_TooltipArrow, .t_dim_Card, .t_dim_DrawerFrame, .t_dim_Progress, .t_dim_TooltipArrow, .t_light .t_dark .t_alt1_Card, .t_light .t_dark .t_alt1_DrawerFrame, .t_light .t_dark .t_alt1_Progress, .t_light .t_dark .t_alt1_TooltipArrow, .t_light .t_dark .t_dim_Card, .t_light .t_dark .t_dim_DrawerFrame, .t_light .t_dark .t_dim_Progress, .t_light .t_dark .t_dim_TooltipArrow {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} - } -:root.t_dark .t_alt1_Checkbox, :root.t_dark .t_alt1_Input, :root.t_dark .t_alt1_RadioGroupItem, :root.t_dark .t_alt1_TextArea, :root.t_dark .t_dim_Checkbox, :root.t_dark .t_dim_Input, :root.t_dark .t_dim_RadioGroupItem, :root.t_dark .t_dim_TextArea, :root.t_dark .t_light .t_dark .t_alt1_Checkbox, :root.t_dark .t_light .t_dark .t_alt1_Input, :root.t_dark .t_light .t_dark .t_alt1_RadioGroupItem, :root.t_dark .t_light .t_dark .t_alt1_TextArea, :root.t_dark .t_light .t_dark .t_dim_Checkbox, :root.t_dark .t_light .t_dark .t_dim_Input, :root.t_dark .t_light .t_dark .t_dim_RadioGroupItem, :root.t_dark .t_light .t_dark .t_dim_TextArea, :root.t_light .t_dark .t_alt1_Checkbox, :root.t_light .t_dark .t_alt1_Input, :root.t_light .t_dark .t_alt1_RadioGroupItem, :root.t_light .t_dark .t_alt1_TextArea, :root.t_light .t_dark .t_dim_Checkbox, :root.t_light .t_dark .t_dim_Input, :root.t_light .t_dark .t_dim_RadioGroupItem, :root.t_light .t_dark .t_dim_TextArea, :root.t_light .t_dark .t_light .t_dark .t_alt1_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_alt1_Input, :root.t_light .t_dark .t_light .t_dark .t_alt1_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_alt1_TextArea, :root.t_light .t_dark .t_light .t_dark .t_dim_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_dim_Input, :root.t_light .t_dark .t_light .t_dark .t_dim_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_dim_TextArea {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 41%, 1);--borderColorFocus:hsla(191, 32%, 46%, 1);--borderColorPress:hsla(191, 32%, 41%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_alt1_Checkbox, .t_alt1_Input, .t_alt1_RadioGroupItem, .t_alt1_TextArea, .t_dim_Checkbox, .t_dim_Input, .t_dim_RadioGroupItem, .t_dim_TextArea, .t_light .t_dark .t_alt1_Checkbox, .t_light .t_dark .t_alt1_Input, .t_light .t_dark .t_alt1_RadioGroupItem, .t_light .t_dark .t_alt1_TextArea, .t_light .t_dark .t_dim_Checkbox, .t_light .t_dark .t_dim_Input, .t_light .t_dark .t_dim_RadioGroupItem, .t_light .t_dark .t_dim_TextArea {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 41%, 1);--borderColorFocus:hsla(191, 32%, 46%, 1);--borderColorPress:hsla(191, 32%, 41%, 1);} - } -:root.t_dark .t_alt1_ProgressIndicator, :root.t_dark .t_alt1_SliderThumb, :root.t_dark .t_alt1_SwitchThumb, :root.t_dark .t_alt1_Tooltip, :root.t_dark .t_dim_ProgressIndicator, :root.t_dark .t_dim_SliderThumb, :root.t_dark .t_dim_SwitchThumb, :root.t_dark .t_dim_Tooltip, :root.t_dark .t_light .t_dark .t_alt1_ProgressIndicator, :root.t_dark .t_light .t_dark .t_alt1_SliderThumb, :root.t_dark .t_light .t_dark .t_alt1_SwitchThumb, :root.t_dark .t_light .t_dark .t_alt1_Tooltip, :root.t_dark .t_light .t_dark .t_dim_ProgressIndicator, :root.t_dark .t_light .t_dark .t_dim_SliderThumb, :root.t_dark .t_light .t_dark .t_dim_SwitchThumb, :root.t_dark .t_light .t_dark .t_dim_Tooltip, :root.t_light .t_dark .t_alt1_ProgressIndicator, :root.t_light .t_dark .t_alt1_SliderThumb, :root.t_light .t_dark .t_alt1_SwitchThumb, :root.t_light .t_dark .t_alt1_Tooltip, :root.t_light .t_dark .t_dim_ProgressIndicator, :root.t_light .t_dark .t_dim_SliderThumb, :root.t_light .t_dark .t_dim_SwitchThumb, :root.t_light .t_dark .t_dim_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_alt1_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_alt1_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_alt1_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_alt1_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_dim_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_dim_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_dim_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_dim_Tooltip {--background0:hsla(0, 0%, 100%, 0.5);--background025:hsla(0, 0%, 100%, 0.75);--background05:hsla(112, 22%, 100%, 1);--background075:hsla(112, 22%, 59%, 1);--color0:hsla(191, 32%, 15%, 1);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 33%, 10%, 0.75);--color075:hsla(191, 33%, 10%, 0.5);--background:hsla(112, 22%, 59%, 1);--backgroundHover:hsla(191, 32%, 50%, 1);--backgroundPress:hsla(191, 32%, 46%, 1);--backgroundFocus:hsla(191, 32%, 41%, 1);--color:hsla(191, 32%, 19%, 1);--colorHover:hsla(191, 32%, 24%, 1);--colorPress:hsla(191, 32%, 19%, 1);--colorFocus:hsla(191, 32%, 24%, 1);--placeholderColor:hsla(191, 32%, 24%, 1);--borderColor:hsla(191, 32%, 41%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_alt1_ProgressIndicator, .t_alt1_SliderThumb, .t_alt1_SwitchThumb, .t_alt1_Tooltip, .t_dim_ProgressIndicator, .t_dim_SliderThumb, .t_dim_SwitchThumb, .t_dim_Tooltip, .t_light .t_dark .t_alt1_ProgressIndicator, .t_light .t_dark .t_alt1_SliderThumb, .t_light .t_dark .t_alt1_SwitchThumb, .t_light .t_dark .t_alt1_Tooltip, .t_light .t_dark .t_dim_ProgressIndicator, .t_light .t_dark .t_dim_SliderThumb, .t_light .t_dark .t_dim_SwitchThumb, .t_light .t_dark .t_dim_Tooltip {--background0:hsla(0, 0%, 100%, 0.5);--background025:hsla(0, 0%, 100%, 0.75);--background05:hsla(112, 22%, 100%, 1);--background075:hsla(112, 22%, 59%, 1);--color0:hsla(191, 32%, 15%, 1);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 33%, 10%, 0.75);--color075:hsla(191, 33%, 10%, 0.5);--background:hsla(112, 22%, 59%, 1);--backgroundHover:hsla(191, 32%, 50%, 1);--backgroundPress:hsla(191, 32%, 46%, 1);--backgroundFocus:hsla(191, 32%, 41%, 1);--color:hsla(191, 32%, 19%, 1);--colorHover:hsla(191, 32%, 24%, 1);--colorPress:hsla(191, 32%, 19%, 1);--colorFocus:hsla(191, 32%, 24%, 1);--placeholderColor:hsla(191, 32%, 24%, 1);--borderColor:hsla(191, 32%, 41%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} - } -:root.t_dark .t_alt1_SliderTrackActive, :root.t_dark .t_dim_SliderTrackActive, :root.t_dark .t_light .t_dark .t_alt1_SliderTrackActive, :root.t_dark .t_light .t_dark .t_dim_SliderTrackActive, :root.t_light .t_dark .t_alt1_SliderTrackActive, :root.t_light .t_dark .t_dim_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_alt1_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_dim_SliderTrackActive {--background0:hsla(112, 22%, 100%, 1);--background025:hsla(112, 22%, 59%, 1);--background05:hsla(191, 32%, 50%, 1);--background075:hsla(191, 32%, 46%, 1);--color0:hsla(191, 32%, 24%, 1);--color025:hsla(191, 32%, 19%, 1);--color05:hsla(191, 32%, 15%, 1);--color075:hsla(191, 32%, 10%, 1);--background:hsla(191, 32%, 46%, 1);--backgroundHover:hsla(191, 32%, 41%, 1);--backgroundPress:hsla(191, 32%, 37%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 19%, 1);--colorHover:hsla(191, 32%, 24%, 1);--colorPress:hsla(191, 32%, 19%, 1);--colorFocus:hsla(191, 32%, 24%, 1);--placeholderColor:hsla(191, 32%, 32%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 28%, 1);--borderColorFocus:hsla(191, 32%, 24%, 1);--borderColorPress:hsla(191, 32%, 28%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_alt1_SliderTrackActive, .t_dim_SliderTrackActive, .t_light .t_dark .t_alt1_SliderTrackActive, .t_light .t_dark .t_dim_SliderTrackActive {--background0:hsla(112, 22%, 100%, 1);--background025:hsla(112, 22%, 59%, 1);--background05:hsla(191, 32%, 50%, 1);--background075:hsla(191, 32%, 46%, 1);--color0:hsla(191, 32%, 24%, 1);--color025:hsla(191, 32%, 19%, 1);--color05:hsla(191, 32%, 15%, 1);--color075:hsla(191, 32%, 10%, 1);--background:hsla(191, 32%, 46%, 1);--backgroundHover:hsla(191, 32%, 41%, 1);--backgroundPress:hsla(191, 32%, 37%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 19%, 1);--colorHover:hsla(191, 32%, 24%, 1);--colorPress:hsla(191, 32%, 19%, 1);--colorFocus:hsla(191, 32%, 24%, 1);--placeholderColor:hsla(191, 32%, 32%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 28%, 1);--borderColorFocus:hsla(191, 32%, 24%, 1);--borderColorPress:hsla(191, 32%, 28%, 1);} - } -:root.t_dark .t_alt2, :root.t_dark .t_light .t_dark .t_alt2, :root.t_light .t_dark .t_alt2, :root.t_light .t_dark .t_light .t_dark .t_alt2 {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);--color1:hsla(191, 32%, 19%, 1);--color2:hsla(191, 32%, 24%, 1);--color3:hsla(191, 32%, 28%, 1);--color4:hsla(191, 32%, 32%, 1);--color5:hsla(191, 32%, 37%, 1);--color6:hsla(191, 32%, 41%, 1);--color7:hsla(191, 32%, 46%, 1);--color8:hsla(191, 32%, 46%, 1);--color9:hsla(191, 32%, 46%, 1);--color10:hsla(191, 32%, 46%, 1);--color11:hsla(191, 32%, 46%, 1);--color12:hsla(191, 32%, 46%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_alt2, .t_light .t_dark .t_alt2 {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);--color1:hsla(191, 32%, 19%, 1);--color2:hsla(191, 32%, 24%, 1);--color3:hsla(191, 32%, 28%, 1);--color4:hsla(191, 32%, 32%, 1);--color5:hsla(191, 32%, 37%, 1);--color6:hsla(191, 32%, 41%, 1);--color7:hsla(191, 32%, 46%, 1);--color8:hsla(191, 32%, 46%, 1);--color9:hsla(191, 32%, 46%, 1);--color10:hsla(191, 32%, 46%, 1);--color11:hsla(191, 32%, 46%, 1);--color12:hsla(191, 32%, 46%, 1);} - } -:root.t_dark .t_alt2_Button, :root.t_dark .t_alt2_SliderTrack, :root.t_dark .t_alt2_Switch, :root.t_dark .t_alt2_TooltipContent, :root.t_dark .t_disabled_Button, :root.t_dark .t_disabled_SliderTrack, :root.t_dark .t_disabled_Switch, :root.t_dark .t_disabled_TooltipContent, :root.t_dark .t_light .t_dark .t_alt2_Button, :root.t_dark .t_light .t_dark .t_alt2_SliderTrack, :root.t_dark .t_light .t_dark .t_alt2_Switch, :root.t_dark .t_light .t_dark .t_alt2_TooltipContent, :root.t_dark .t_light .t_dark .t_disabled_Button, :root.t_dark .t_light .t_dark .t_disabled_SliderTrack, :root.t_dark .t_light .t_dark .t_disabled_Switch, :root.t_dark .t_light .t_dark .t_disabled_TooltipContent, :root.t_light .t_dark .t_alt2_Button, :root.t_light .t_dark .t_alt2_SliderTrack, :root.t_light .t_dark .t_alt2_Switch, :root.t_light .t_dark .t_alt2_TooltipContent, :root.t_light .t_dark .t_disabled_Button, :root.t_light .t_dark .t_disabled_SliderTrack, :root.t_light .t_dark .t_disabled_Switch, :root.t_light .t_dark .t_disabled_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_alt2_Button, :root.t_light .t_dark .t_light .t_dark .t_alt2_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_alt2_Switch, :root.t_light .t_dark .t_light .t_dark .t_alt2_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_disabled_Button, :root.t_light .t_dark .t_light .t_dark .t_disabled_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_disabled_Switch, :root.t_light .t_dark .t_light .t_dark .t_disabled_TooltipContent {--background0:hsla(191, 32%, 15%, 1);--background025:hsla(191, 32%, 19%, 1);--background05:hsla(191, 32%, 24%, 1);--background075:hsla(191, 32%, 28%, 1);--color0:hsla(191, 32%, 41%, 1);--color025:hsla(191, 32%, 46%, 1);--color05:hsla(191, 32%, 50%, 1);--color075:hsla(112, 22%, 59%, 1);--background:hsla(191, 32%, 28%, 1);--backgroundHover:hsla(191, 32%, 32%, 1);--backgroundPress:hsla(191, 32%, 37%, 1);--backgroundFocus:hsla(191, 32%, 41%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 32%, 1);--borderColor:hsla(191, 32%, 41%, 1);--borderColorHover:hsla(191, 32%, 46%, 1);--borderColorFocus:hsla(191, 32%, 50%, 1);--borderColorPress:hsla(191, 32%, 46%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_alt2_Button, .t_alt2_SliderTrack, .t_alt2_Switch, .t_alt2_TooltipContent, .t_disabled_Button, .t_disabled_SliderTrack, .t_disabled_Switch, .t_disabled_TooltipContent, .t_light .t_dark .t_alt2_Button, .t_light .t_dark .t_alt2_SliderTrack, .t_light .t_dark .t_alt2_Switch, .t_light .t_dark .t_alt2_TooltipContent, .t_light .t_dark .t_disabled_Button, .t_light .t_dark .t_disabled_SliderTrack, .t_light .t_dark .t_disabled_Switch, .t_light .t_dark .t_disabled_TooltipContent {--background0:hsla(191, 32%, 15%, 1);--background025:hsla(191, 32%, 19%, 1);--background05:hsla(191, 32%, 24%, 1);--background075:hsla(191, 32%, 28%, 1);--color0:hsla(191, 32%, 41%, 1);--color025:hsla(191, 32%, 46%, 1);--color05:hsla(191, 32%, 50%, 1);--color075:hsla(112, 22%, 59%, 1);--background:hsla(191, 32%, 28%, 1);--backgroundHover:hsla(191, 32%, 32%, 1);--backgroundPress:hsla(191, 32%, 37%, 1);--backgroundFocus:hsla(191, 32%, 41%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 32%, 1);--borderColor:hsla(191, 32%, 41%, 1);--borderColorHover:hsla(191, 32%, 46%, 1);--borderColorFocus:hsla(191, 32%, 50%, 1);--borderColorPress:hsla(191, 32%, 46%, 1);} - } -:root.t_dark .t_alt2_Card, :root.t_dark .t_alt2_DrawerFrame, :root.t_dark .t_alt2_Progress, :root.t_dark .t_alt2_TooltipArrow, :root.t_dark .t_disabled_Card, :root.t_dark .t_disabled_DrawerFrame, :root.t_dark .t_disabled_Progress, :root.t_dark .t_disabled_TooltipArrow, :root.t_dark .t_light .t_dark .t_alt2_Card, :root.t_dark .t_light .t_dark .t_alt2_DrawerFrame, :root.t_dark .t_light .t_dark .t_alt2_Progress, :root.t_dark .t_light .t_dark .t_alt2_TooltipArrow, :root.t_dark .t_light .t_dark .t_disabled_Card, :root.t_dark .t_light .t_dark .t_disabled_DrawerFrame, :root.t_dark .t_light .t_dark .t_disabled_Progress, :root.t_dark .t_light .t_dark .t_disabled_TooltipArrow, :root.t_light .t_dark .t_alt2_Card, :root.t_light .t_dark .t_alt2_DrawerFrame, :root.t_light .t_dark .t_alt2_Progress, :root.t_light .t_dark .t_alt2_TooltipArrow, :root.t_light .t_dark .t_disabled_Card, :root.t_light .t_dark .t_disabled_DrawerFrame, :root.t_light .t_dark .t_disabled_Progress, :root.t_light .t_dark .t_disabled_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_alt2_Card, :root.t_light .t_dark .t_light .t_dark .t_alt2_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_alt2_Progress, :root.t_light .t_dark .t_light .t_dark .t_alt2_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_disabled_Card, :root.t_light .t_dark .t_light .t_dark .t_disabled_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_disabled_Progress, :root.t_light .t_dark .t_light .t_dark .t_disabled_TooltipArrow {--background0:hsla(191, 32%, 10%, 1);--background025:hsla(191, 32%, 15%, 1);--background05:hsla(191, 32%, 19%, 1);--background075:hsla(191, 32%, 24%, 1);--color0:hsla(191, 32%, 46%, 1);--color025:hsla(191, 32%, 50%, 1);--color05:hsla(112, 22%, 59%, 1);--color075:hsla(112, 22%, 100%, 1);--background:hsla(191, 32%, 24%, 1);--backgroundHover:hsla(191, 32%, 28%, 1);--backgroundPress:hsla(191, 32%, 32%, 1);--backgroundFocus:hsla(191, 32%, 37%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 37%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 41%, 1);--borderColorFocus:hsla(191, 32%, 46%, 1);--borderColorPress:hsla(191, 32%, 41%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_alt2_Card, .t_alt2_DrawerFrame, .t_alt2_Progress, .t_alt2_TooltipArrow, .t_disabled_Card, .t_disabled_DrawerFrame, .t_disabled_Progress, .t_disabled_TooltipArrow, .t_light .t_dark .t_alt2_Card, .t_light .t_dark .t_alt2_DrawerFrame, .t_light .t_dark .t_alt2_Progress, .t_light .t_dark .t_alt2_TooltipArrow, .t_light .t_dark .t_disabled_Card, .t_light .t_dark .t_disabled_DrawerFrame, .t_light .t_dark .t_disabled_Progress, .t_light .t_dark .t_disabled_TooltipArrow {--background0:hsla(191, 32%, 10%, 1);--background025:hsla(191, 32%, 15%, 1);--background05:hsla(191, 32%, 19%, 1);--background075:hsla(191, 32%, 24%, 1);--color0:hsla(191, 32%, 46%, 1);--color025:hsla(191, 32%, 50%, 1);--color05:hsla(112, 22%, 59%, 1);--color075:hsla(112, 22%, 100%, 1);--background:hsla(191, 32%, 24%, 1);--backgroundHover:hsla(191, 32%, 28%, 1);--backgroundPress:hsla(191, 32%, 32%, 1);--backgroundFocus:hsla(191, 32%, 37%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 37%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 41%, 1);--borderColorFocus:hsla(191, 32%, 46%, 1);--borderColorPress:hsla(191, 32%, 41%, 1);} - } -:root.t_dark .t_alt2_Checkbox, :root.t_dark .t_alt2_Input, :root.t_dark .t_alt2_RadioGroupItem, :root.t_dark .t_alt2_TextArea, :root.t_dark .t_disabled_Checkbox, :root.t_dark .t_disabled_Input, :root.t_dark .t_disabled_RadioGroupItem, :root.t_dark .t_disabled_TextArea, :root.t_dark .t_light .t_dark .t_alt2_Checkbox, :root.t_dark .t_light .t_dark .t_alt2_Input, :root.t_dark .t_light .t_dark .t_alt2_RadioGroupItem, :root.t_dark .t_light .t_dark .t_alt2_TextArea, :root.t_dark .t_light .t_dark .t_disabled_Checkbox, :root.t_dark .t_light .t_dark .t_disabled_Input, :root.t_dark .t_light .t_dark .t_disabled_RadioGroupItem, :root.t_dark .t_light .t_dark .t_disabled_TextArea, :root.t_light .t_dark .t_alt2_Checkbox, :root.t_light .t_dark .t_alt2_Input, :root.t_light .t_dark .t_alt2_RadioGroupItem, :root.t_light .t_dark .t_alt2_TextArea, :root.t_light .t_dark .t_disabled_Checkbox, :root.t_light .t_dark .t_disabled_Input, :root.t_light .t_dark .t_disabled_RadioGroupItem, :root.t_light .t_dark .t_disabled_TextArea, :root.t_light .t_dark .t_light .t_dark .t_alt2_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_alt2_Input, :root.t_light .t_dark .t_light .t_dark .t_alt2_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_alt2_TextArea, :root.t_light .t_dark .t_light .t_dark .t_disabled_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_disabled_Input, :root.t_light .t_dark .t_light .t_dark .t_disabled_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_disabled_TextArea {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 41%, 1);--borderColorHover:hsla(191, 32%, 46%, 1);--borderColorFocus:hsla(191, 32%, 50%, 1);--borderColorPress:hsla(191, 32%, 46%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_alt2_Checkbox, .t_alt2_Input, .t_alt2_RadioGroupItem, .t_alt2_TextArea, .t_disabled_Checkbox, .t_disabled_Input, .t_disabled_RadioGroupItem, .t_disabled_TextArea, .t_light .t_dark .t_alt2_Checkbox, .t_light .t_dark .t_alt2_Input, .t_light .t_dark .t_alt2_RadioGroupItem, .t_light .t_dark .t_alt2_TextArea, .t_light .t_dark .t_disabled_Checkbox, .t_light .t_dark .t_disabled_Input, .t_light .t_dark .t_disabled_RadioGroupItem, .t_light .t_dark .t_disabled_TextArea {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 41%, 1);--borderColorHover:hsla(191, 32%, 46%, 1);--borderColorFocus:hsla(191, 32%, 50%, 1);--borderColorPress:hsla(191, 32%, 46%, 1);} - } -:root.t_dark .t_alt2_ProgressIndicator, :root.t_dark .t_alt2_SliderThumb, :root.t_dark .t_alt2_SwitchThumb, :root.t_dark .t_alt2_Tooltip, :root.t_dark .t_disabled_ProgressIndicator, :root.t_dark .t_disabled_SliderThumb, :root.t_dark .t_disabled_SwitchThumb, :root.t_dark .t_disabled_Tooltip, :root.t_dark .t_light .t_dark .t_alt2_ProgressIndicator, :root.t_dark .t_light .t_dark .t_alt2_SliderThumb, :root.t_dark .t_light .t_dark .t_alt2_SwitchThumb, :root.t_dark .t_light .t_dark .t_alt2_Tooltip, :root.t_dark .t_light .t_dark .t_disabled_ProgressIndicator, :root.t_dark .t_light .t_dark .t_disabled_SliderThumb, :root.t_dark .t_light .t_dark .t_disabled_SwitchThumb, :root.t_dark .t_light .t_dark .t_disabled_Tooltip, :root.t_light .t_dark .t_alt2_ProgressIndicator, :root.t_light .t_dark .t_alt2_SliderThumb, :root.t_light .t_dark .t_alt2_SwitchThumb, :root.t_light .t_dark .t_alt2_Tooltip, :root.t_light .t_dark .t_disabled_ProgressIndicator, :root.t_light .t_dark .t_disabled_SliderThumb, :root.t_light .t_dark .t_disabled_SwitchThumb, :root.t_light .t_dark .t_disabled_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_alt2_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_alt2_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_alt2_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_alt2_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_disabled_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_disabled_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_disabled_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_disabled_Tooltip {--background0:hsla(0, 0%, 100%, 0.75);--background025:hsla(112, 22%, 100%, 1);--background05:hsla(112, 22%, 59%, 1);--background075:hsla(191, 32%, 50%, 1);--color0:hsla(191, 32%, 19%, 1);--color025:hsla(191, 32%, 15%, 1);--color05:hsla(191, 32%, 10%, 1);--color075:hsla(191, 33%, 10%, 0.75);--background:hsla(191, 32%, 50%, 1);--backgroundHover:hsla(191, 32%, 46%, 1);--backgroundPress:hsla(191, 32%, 41%, 1);--backgroundFocus:hsla(191, 32%, 37%, 1);--color:hsla(191, 32%, 24%, 1);--colorHover:hsla(191, 32%, 28%, 1);--colorPress:hsla(191, 32%, 24%, 1);--colorFocus:hsla(191, 32%, 28%, 1);--placeholderColor:hsla(191, 32%, 28%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 28%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_alt2_ProgressIndicator, .t_alt2_SliderThumb, .t_alt2_SwitchThumb, .t_alt2_Tooltip, .t_disabled_ProgressIndicator, .t_disabled_SliderThumb, .t_disabled_SwitchThumb, .t_disabled_Tooltip, .t_light .t_dark .t_alt2_ProgressIndicator, .t_light .t_dark .t_alt2_SliderThumb, .t_light .t_dark .t_alt2_SwitchThumb, .t_light .t_dark .t_alt2_Tooltip, .t_light .t_dark .t_disabled_ProgressIndicator, .t_light .t_dark .t_disabled_SliderThumb, .t_light .t_dark .t_disabled_SwitchThumb, .t_light .t_dark .t_disabled_Tooltip {--background0:hsla(0, 0%, 100%, 0.75);--background025:hsla(112, 22%, 100%, 1);--background05:hsla(112, 22%, 59%, 1);--background075:hsla(191, 32%, 50%, 1);--color0:hsla(191, 32%, 19%, 1);--color025:hsla(191, 32%, 15%, 1);--color05:hsla(191, 32%, 10%, 1);--color075:hsla(191, 33%, 10%, 0.75);--background:hsla(191, 32%, 50%, 1);--backgroundHover:hsla(191, 32%, 46%, 1);--backgroundPress:hsla(191, 32%, 41%, 1);--backgroundFocus:hsla(191, 32%, 37%, 1);--color:hsla(191, 32%, 24%, 1);--colorHover:hsla(191, 32%, 28%, 1);--colorPress:hsla(191, 32%, 24%, 1);--colorFocus:hsla(191, 32%, 28%, 1);--placeholderColor:hsla(191, 32%, 28%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 28%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} - } -:root.t_dark .t_alt2_SliderTrackActive, :root.t_dark .t_disabled_SliderTrackActive, :root.t_dark .t_light .t_dark .t_alt2_SliderTrackActive, :root.t_dark .t_light .t_dark .t_disabled_SliderTrackActive, :root.t_light .t_dark .t_alt2_SliderTrackActive, :root.t_light .t_dark .t_disabled_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_alt2_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_disabled_SliderTrackActive {--background0:hsla(112, 22%, 59%, 1);--background025:hsla(191, 32%, 50%, 1);--background05:hsla(191, 32%, 46%, 1);--background075:hsla(191, 32%, 41%, 1);--color0:hsla(191, 32%, 28%, 1);--color025:hsla(191, 32%, 24%, 1);--color05:hsla(191, 32%, 19%, 1);--color075:hsla(191, 32%, 15%, 1);--background:hsla(191, 32%, 41%, 1);--backgroundHover:hsla(191, 32%, 37%, 1);--backgroundPress:hsla(191, 32%, 32%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(191, 32%, 24%, 1);--colorHover:hsla(191, 32%, 28%, 1);--colorPress:hsla(191, 32%, 24%, 1);--colorFocus:hsla(191, 32%, 28%, 1);--placeholderColor:hsla(191, 32%, 37%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 24%, 1);--borderColorFocus:hsla(191, 32%, 19%, 1);--borderColorPress:hsla(191, 32%, 24%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_alt2_SliderTrackActive, .t_disabled_SliderTrackActive, .t_light .t_dark .t_alt2_SliderTrackActive, .t_light .t_dark .t_disabled_SliderTrackActive {--background0:hsla(112, 22%, 59%, 1);--background025:hsla(191, 32%, 50%, 1);--background05:hsla(191, 32%, 46%, 1);--background075:hsla(191, 32%, 41%, 1);--color0:hsla(191, 32%, 28%, 1);--color025:hsla(191, 32%, 24%, 1);--color05:hsla(191, 32%, 19%, 1);--color075:hsla(191, 32%, 15%, 1);--background:hsla(191, 32%, 41%, 1);--backgroundHover:hsla(191, 32%, 37%, 1);--backgroundPress:hsla(191, 32%, 32%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(191, 32%, 24%, 1);--colorHover:hsla(191, 32%, 28%, 1);--colorPress:hsla(191, 32%, 24%, 1);--colorFocus:hsla(191, 32%, 28%, 1);--placeholderColor:hsla(191, 32%, 37%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 24%, 1);--borderColorFocus:hsla(191, 32%, 19%, 1);--borderColorPress:hsla(191, 32%, 24%, 1);} - } -:root.t_dark .t_dim, :root.t_dark .t_light .t_dark .t_dim, :root.t_light .t_dark .t_dim, :root.t_light .t_dark .t_light .t_dark .t_dim {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);--color1:hsla(191, 32%, 15%, 1);--color2:hsla(191, 32%, 19%, 1);--color3:hsla(191, 32%, 24%, 1);--color4:hsla(191, 32%, 28%, 1);--color5:hsla(191, 32%, 32%, 1);--color6:hsla(191, 32%, 37%, 1);--color7:hsla(191, 32%, 41%, 1);--color8:hsla(191, 32%, 46%, 1);--color9:hsla(191, 32%, 50%, 1);--color10:hsla(112, 22%, 59%, 1);--color11:hsla(112, 22%, 100%, 1);--color12:hsla(0, 0%, 100%, 0.75);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_dim, .t_light .t_dark .t_dim {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);--color1:hsla(191, 32%, 15%, 1);--color2:hsla(191, 32%, 19%, 1);--color3:hsla(191, 32%, 24%, 1);--color4:hsla(191, 32%, 28%, 1);--color5:hsla(191, 32%, 32%, 1);--color6:hsla(191, 32%, 37%, 1);--color7:hsla(191, 32%, 41%, 1);--color8:hsla(191, 32%, 46%, 1);--color9:hsla(191, 32%, 50%, 1);--color10:hsla(112, 22%, 59%, 1);--color11:hsla(112, 22%, 100%, 1);--color12:hsla(0, 0%, 100%, 0.75);} - } -:root.t_dark .t_disabled, :root.t_dark .t_light .t_dark .t_disabled, :root.t_light .t_dark .t_disabled, :root.t_light .t_dark .t_light .t_dark .t_disabled {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);--color1:hsla(191, 32%, 19%, 1);--color2:hsla(191, 32%, 24%, 1);--color3:hsla(191, 32%, 28%, 1);--color4:hsla(191, 32%, 32%, 1);--color5:hsla(191, 32%, 37%, 1);--color6:hsla(191, 32%, 41%, 1);--color7:hsla(191, 32%, 46%, 1);--color8:hsla(191, 32%, 50%, 1);--color9:hsla(112, 22%, 59%, 1);--color10:hsla(112, 22%, 100%, 1);--color11:hsla(0, 0%, 100%, 0.75);--color12:hsla(0, 0%, 100%, 0.5);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_disabled, .t_light .t_dark .t_disabled {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);--color1:hsla(191, 32%, 19%, 1);--color2:hsla(191, 32%, 24%, 1);--color3:hsla(191, 32%, 28%, 1);--color4:hsla(191, 32%, 32%, 1);--color5:hsla(191, 32%, 37%, 1);--color6:hsla(191, 32%, 41%, 1);--color7:hsla(191, 32%, 46%, 1);--color8:hsla(191, 32%, 50%, 1);--color9:hsla(112, 22%, 59%, 1);--color10:hsla(112, 22%, 100%, 1);--color11:hsla(0, 0%, 100%, 0.75);--color12:hsla(0, 0%, 100%, 0.5);} - } -:root.t_dark .t_error, :root.t_dark .t_light .t_dark .t_error, :root.t_dark .t_light .t_dark .t_red, :root.t_dark .t_red, :root.t_light .t_dark .t_error, :root.t_light .t_dark .t_light .t_dark .t_error, :root.t_light .t_dark .t_light .t_dark .t_red, :root.t_light .t_dark .t_red {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(0, 69%, 10%, 0.25);--background025:hsla(0, 69%, 10%, 0.5);--background05:hsla(0, 69%, 10%, 0.75);--background075:hsla(0, 70%, 10%, 1);--color0:hsla(0, 70%, 95%, 1);--color025:hsla(0, 69%, 95%, 0.75);--color05:hsla(0, 69%, 95%, 0.5);--color075:hsla(0, 69%, 95%, 0.25);--background:hsla(0, 70%, 10%, 1);--backgroundHover:hsla(0, 70%, 14%, 1);--backgroundPress:hsla(0, 70%, 19%, 1);--backgroundFocus:hsla(0, 70%, 23%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 50%, 1);--borderColor:hsla(0, 70%, 23%, 1);--borderColorHover:hsla(0, 70%, 28%, 1);--borderColorFocus:hsla(0, 70%, 32%, 1);--borderColorPress:hsla(0, 70%, 28%, 1);--color1:hsla(0, 70%, 10%, 1);--color2:hsla(0, 70%, 14%, 1);--color3:hsla(0, 70%, 19%, 1);--color4:hsla(0, 70%, 23%, 1);--color5:hsla(0, 70%, 28%, 1);--color6:hsla(0, 70%, 32%, 1);--color7:hsla(0, 70%, 37%, 1);--color8:hsla(0, 70%, 41%, 1);--color9:hsla(0, 70%, 46%, 1);--color10:hsla(0, 70%, 50%, 1);--color11:hsla(0, 70%, 93%, 1);--color12:hsla(0, 70%, 95%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_error, .t_light .t_dark .t_error, .t_light .t_dark .t_red, .t_red {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(0, 69%, 10%, 0.25);--background025:hsla(0, 69%, 10%, 0.5);--background05:hsla(0, 69%, 10%, 0.75);--background075:hsla(0, 70%, 10%, 1);--color0:hsla(0, 70%, 95%, 1);--color025:hsla(0, 69%, 95%, 0.75);--color05:hsla(0, 69%, 95%, 0.5);--color075:hsla(0, 69%, 95%, 0.25);--background:hsla(0, 70%, 10%, 1);--backgroundHover:hsla(0, 70%, 14%, 1);--backgroundPress:hsla(0, 70%, 19%, 1);--backgroundFocus:hsla(0, 70%, 23%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 50%, 1);--borderColor:hsla(0, 70%, 23%, 1);--borderColorHover:hsla(0, 70%, 28%, 1);--borderColorFocus:hsla(0, 70%, 32%, 1);--borderColorPress:hsla(0, 70%, 28%, 1);--color1:hsla(0, 70%, 10%, 1);--color2:hsla(0, 70%, 14%, 1);--color3:hsla(0, 70%, 19%, 1);--color4:hsla(0, 70%, 23%, 1);--color5:hsla(0, 70%, 28%, 1);--color6:hsla(0, 70%, 32%, 1);--color7:hsla(0, 70%, 37%, 1);--color8:hsla(0, 70%, 41%, 1);--color9:hsla(0, 70%, 46%, 1);--color10:hsla(0, 70%, 50%, 1);--color11:hsla(0, 70%, 93%, 1);--color12:hsla(0, 70%, 95%, 1);} - } -:root.t_dark .t_error_Button, :root.t_dark .t_error_SliderTrack, :root.t_dark .t_error_Switch, :root.t_dark .t_error_TooltipContent, :root.t_dark .t_light .t_dark .t_error_Button, :root.t_dark .t_light .t_dark .t_error_SliderTrack, :root.t_dark .t_light .t_dark .t_error_Switch, :root.t_dark .t_light .t_dark .t_error_TooltipContent, :root.t_dark .t_light .t_dark .t_red_Button, :root.t_dark .t_light .t_dark .t_red_SliderTrack, :root.t_dark .t_light .t_dark .t_red_Switch, :root.t_dark .t_light .t_dark .t_red_TooltipContent, :root.t_dark .t_red_Button, :root.t_dark .t_red_SliderTrack, :root.t_dark .t_red_Switch, :root.t_dark .t_red_TooltipContent, :root.t_light .t_dark .t_error_Button, :root.t_light .t_dark .t_error_SliderTrack, :root.t_light .t_dark .t_error_Switch, :root.t_light .t_dark .t_error_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_error_Button, :root.t_light .t_dark .t_light .t_dark .t_error_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_error_Switch, :root.t_light .t_dark .t_light .t_dark .t_error_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_red_Button, :root.t_light .t_dark .t_light .t_dark .t_red_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_red_Switch, :root.t_light .t_dark .t_light .t_dark .t_red_TooltipContent, :root.t_light .t_dark .t_red_Button, :root.t_light .t_dark .t_red_SliderTrack, :root.t_light .t_dark .t_red_Switch, :root.t_light .t_dark .t_red_TooltipContent {--background0:hsla(0, 69%, 10%, 0.75);--background025:hsla(0, 70%, 10%, 1);--background05:hsla(0, 70%, 14%, 1);--background075:hsla(0, 70%, 19%, 1);--color0:hsla(0, 70%, 50%, 1);--color025:hsla(0, 70%, 93%, 1);--color05:hsla(0, 70%, 95%, 1);--color075:hsla(0, 69%, 95%, 0.75);--background:hsla(0, 70%, 19%, 1);--backgroundHover:hsla(0, 70%, 23%, 1);--backgroundPress:hsla(0, 70%, 28%, 1);--backgroundFocus:hsla(0, 70%, 32%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 41%, 1);--borderColor:hsla(0, 70%, 32%, 1);--borderColorHover:hsla(0, 70%, 37%, 1);--borderColorFocus:hsla(0, 70%, 41%, 1);--borderColorPress:hsla(0, 70%, 37%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_error_Button, .t_error_SliderTrack, .t_error_Switch, .t_error_TooltipContent, .t_light .t_dark .t_error_Button, .t_light .t_dark .t_error_SliderTrack, .t_light .t_dark .t_error_Switch, .t_light .t_dark .t_error_TooltipContent, .t_light .t_dark .t_red_Button, .t_light .t_dark .t_red_SliderTrack, .t_light .t_dark .t_red_Switch, .t_light .t_dark .t_red_TooltipContent, .t_red_Button, .t_red_SliderTrack, .t_red_Switch, .t_red_TooltipContent {--background0:hsla(0, 69%, 10%, 0.75);--background025:hsla(0, 70%, 10%, 1);--background05:hsla(0, 70%, 14%, 1);--background075:hsla(0, 70%, 19%, 1);--color0:hsla(0, 70%, 50%, 1);--color025:hsla(0, 70%, 93%, 1);--color05:hsla(0, 70%, 95%, 1);--color075:hsla(0, 69%, 95%, 0.75);--background:hsla(0, 70%, 19%, 1);--backgroundHover:hsla(0, 70%, 23%, 1);--backgroundPress:hsla(0, 70%, 28%, 1);--backgroundFocus:hsla(0, 70%, 32%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 41%, 1);--borderColor:hsla(0, 70%, 32%, 1);--borderColorHover:hsla(0, 70%, 37%, 1);--borderColorFocus:hsla(0, 70%, 41%, 1);--borderColorPress:hsla(0, 70%, 37%, 1);} - } -:root.t_dark .t_error_Card, :root.t_dark .t_error_DrawerFrame, :root.t_dark .t_error_Progress, :root.t_dark .t_error_TooltipArrow, :root.t_dark .t_light .t_dark .t_error_Card, :root.t_dark .t_light .t_dark .t_error_DrawerFrame, :root.t_dark .t_light .t_dark .t_error_Progress, :root.t_dark .t_light .t_dark .t_error_TooltipArrow, :root.t_dark .t_light .t_dark .t_red_Card, :root.t_dark .t_light .t_dark .t_red_DrawerFrame, :root.t_dark .t_light .t_dark .t_red_Progress, :root.t_dark .t_light .t_dark .t_red_TooltipArrow, :root.t_dark .t_red_Card, :root.t_dark .t_red_DrawerFrame, :root.t_dark .t_red_Progress, :root.t_dark .t_red_TooltipArrow, :root.t_light .t_dark .t_error_Card, :root.t_light .t_dark .t_error_DrawerFrame, :root.t_light .t_dark .t_error_Progress, :root.t_light .t_dark .t_error_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_error_Card, :root.t_light .t_dark .t_light .t_dark .t_error_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_error_Progress, :root.t_light .t_dark .t_light .t_dark .t_error_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_red_Card, :root.t_light .t_dark .t_light .t_dark .t_red_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_red_Progress, :root.t_light .t_dark .t_light .t_dark .t_red_TooltipArrow, :root.t_light .t_dark .t_red_Card, :root.t_light .t_dark .t_red_DrawerFrame, :root.t_light .t_dark .t_red_Progress, :root.t_light .t_dark .t_red_TooltipArrow {--background0:hsla(0, 69%, 10%, 0.5);--background025:hsla(0, 69%, 10%, 0.75);--background05:hsla(0, 70%, 10%, 1);--background075:hsla(0, 70%, 14%, 1);--color0:hsla(0, 70%, 93%, 1);--color025:hsla(0, 70%, 95%, 1);--color05:hsla(0, 69%, 95%, 0.75);--color075:hsla(0, 69%, 95%, 0.5);--background:hsla(0, 70%, 14%, 1);--backgroundHover:hsla(0, 70%, 19%, 1);--backgroundPress:hsla(0, 70%, 23%, 1);--backgroundFocus:hsla(0, 70%, 28%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 46%, 1);--borderColor:hsla(0, 70%, 28%, 1);--borderColorHover:hsla(0, 70%, 32%, 1);--borderColorFocus:hsla(0, 70%, 37%, 1);--borderColorPress:hsla(0, 70%, 32%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_error_Card, .t_error_DrawerFrame, .t_error_Progress, .t_error_TooltipArrow, .t_light .t_dark .t_error_Card, .t_light .t_dark .t_error_DrawerFrame, .t_light .t_dark .t_error_Progress, .t_light .t_dark .t_error_TooltipArrow, .t_light .t_dark .t_red_Card, .t_light .t_dark .t_red_DrawerFrame, .t_light .t_dark .t_red_Progress, .t_light .t_dark .t_red_TooltipArrow, .t_red_Card, .t_red_DrawerFrame, .t_red_Progress, .t_red_TooltipArrow {--background0:hsla(0, 69%, 10%, 0.5);--background025:hsla(0, 69%, 10%, 0.75);--background05:hsla(0, 70%, 10%, 1);--background075:hsla(0, 70%, 14%, 1);--color0:hsla(0, 70%, 93%, 1);--color025:hsla(0, 70%, 95%, 1);--color05:hsla(0, 69%, 95%, 0.75);--color075:hsla(0, 69%, 95%, 0.5);--background:hsla(0, 70%, 14%, 1);--backgroundHover:hsla(0, 70%, 19%, 1);--backgroundPress:hsla(0, 70%, 23%, 1);--backgroundFocus:hsla(0, 70%, 28%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 46%, 1);--borderColor:hsla(0, 70%, 28%, 1);--borderColorHover:hsla(0, 70%, 32%, 1);--borderColorFocus:hsla(0, 70%, 37%, 1);--borderColorPress:hsla(0, 70%, 32%, 1);} - } -:root.t_dark .t_error_Checkbox, :root.t_dark .t_error_Input, :root.t_dark .t_error_RadioGroupItem, :root.t_dark .t_error_TextArea, :root.t_dark .t_light .t_dark .t_error_Checkbox, :root.t_dark .t_light .t_dark .t_error_Input, :root.t_dark .t_light .t_dark .t_error_RadioGroupItem, :root.t_dark .t_light .t_dark .t_error_TextArea, :root.t_dark .t_light .t_dark .t_red_Checkbox, :root.t_dark .t_light .t_dark .t_red_Input, :root.t_dark .t_light .t_dark .t_red_RadioGroupItem, :root.t_dark .t_light .t_dark .t_red_TextArea, :root.t_dark .t_red_Checkbox, :root.t_dark .t_red_Input, :root.t_dark .t_red_RadioGroupItem, :root.t_dark .t_red_TextArea, :root.t_light .t_dark .t_error_Checkbox, :root.t_light .t_dark .t_error_Input, :root.t_light .t_dark .t_error_RadioGroupItem, :root.t_light .t_dark .t_error_TextArea, :root.t_light .t_dark .t_light .t_dark .t_error_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_error_Input, :root.t_light .t_dark .t_light .t_dark .t_error_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_error_TextArea, :root.t_light .t_dark .t_light .t_dark .t_red_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_red_Input, :root.t_light .t_dark .t_light .t_dark .t_red_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_red_TextArea, :root.t_light .t_dark .t_red_Checkbox, :root.t_light .t_dark .t_red_Input, :root.t_light .t_dark .t_red_RadioGroupItem, :root.t_light .t_dark .t_red_TextArea {--accentBackground:hsla(0, 69%, 10%, 0);--accentColor:hsla(0, 69%, 10%, 0);--background0:hsla(0, 69%, 10%, 0.25);--background025:hsla(0, 69%, 10%, 0.5);--background05:hsla(0, 69%, 10%, 0.75);--background075:hsla(0, 70%, 10%, 1);--color0:hsla(0, 70%, 95%, 1);--color025:hsla(0, 69%, 95%, 0.75);--color05:hsla(0, 69%, 95%, 0.5);--color075:hsla(0, 69%, 95%, 0.25);--background:hsla(0, 70%, 10%, 1);--backgroundHover:hsla(0, 70%, 14%, 1);--backgroundPress:hsla(0, 70%, 19%, 1);--backgroundFocus:hsla(0, 70%, 23%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 50%, 1);--borderColor:hsla(0, 70%, 32%, 1);--borderColorHover:hsla(0, 70%, 37%, 1);--borderColorFocus:hsla(0, 70%, 41%, 1);--borderColorPress:hsla(0, 70%, 37%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_error_Checkbox, .t_error_Input, .t_error_RadioGroupItem, .t_error_TextArea, .t_light .t_dark .t_error_Checkbox, .t_light .t_dark .t_error_Input, .t_light .t_dark .t_error_RadioGroupItem, .t_light .t_dark .t_error_TextArea, .t_light .t_dark .t_red_Checkbox, .t_light .t_dark .t_red_Input, .t_light .t_dark .t_red_RadioGroupItem, .t_light .t_dark .t_red_TextArea, .t_red_Checkbox, .t_red_Input, .t_red_RadioGroupItem, .t_red_TextArea {--accentBackground:hsla(0, 69%, 10%, 0);--accentColor:hsla(0, 69%, 10%, 0);--background0:hsla(0, 69%, 10%, 0.25);--background025:hsla(0, 69%, 10%, 0.5);--background05:hsla(0, 69%, 10%, 0.75);--background075:hsla(0, 70%, 10%, 1);--color0:hsla(0, 70%, 95%, 1);--color025:hsla(0, 69%, 95%, 0.75);--color05:hsla(0, 69%, 95%, 0.5);--color075:hsla(0, 69%, 95%, 0.25);--background:hsla(0, 70%, 10%, 1);--backgroundHover:hsla(0, 70%, 14%, 1);--backgroundPress:hsla(0, 70%, 19%, 1);--backgroundFocus:hsla(0, 70%, 23%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 50%, 1);--borderColor:hsla(0, 70%, 32%, 1);--borderColorHover:hsla(0, 70%, 37%, 1);--borderColorFocus:hsla(0, 70%, 41%, 1);--borderColorPress:hsla(0, 70%, 37%, 1);} - } -:root.t_dark .t_error_ProgressIndicator, :root.t_dark .t_error_SliderThumb, :root.t_dark .t_error_SwitchThumb, :root.t_dark .t_error_Tooltip, :root.t_dark .t_light .t_dark .t_error_ProgressIndicator, :root.t_dark .t_light .t_dark .t_error_SliderThumb, :root.t_dark .t_light .t_dark .t_error_SwitchThumb, :root.t_dark .t_light .t_dark .t_error_Tooltip, :root.t_dark .t_light .t_dark .t_red_ProgressIndicator, :root.t_dark .t_light .t_dark .t_red_SliderThumb, :root.t_dark .t_light .t_dark .t_red_SwitchThumb, :root.t_dark .t_light .t_dark .t_red_Tooltip, :root.t_dark .t_red_ProgressIndicator, :root.t_dark .t_red_SliderThumb, :root.t_dark .t_red_SwitchThumb, :root.t_dark .t_red_Tooltip, :root.t_light .t_dark .t_error_ProgressIndicator, :root.t_light .t_dark .t_error_SliderThumb, :root.t_light .t_dark .t_error_SwitchThumb, :root.t_light .t_dark .t_error_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_error_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_error_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_error_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_error_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_red_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_red_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_red_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_red_Tooltip, :root.t_light .t_dark .t_red_ProgressIndicator, :root.t_light .t_dark .t_red_SliderThumb, :root.t_light .t_dark .t_red_SwitchThumb, :root.t_light .t_dark .t_red_Tooltip {--accentBackground:hsla(0, 69%, 10%, 0);--accentColor:hsla(0, 69%, 10%, 0);--background0:hsla(0, 69%, 95%, 0.25);--background025:hsla(0, 69%, 95%, 0.5);--background05:hsla(0, 69%, 95%, 0.75);--background075:hsla(0, 70%, 95%, 1);--color0:hsla(0, 70%, 10%, 1);--color025:hsla(0, 69%, 10%, 0.75);--color05:hsla(0, 69%, 10%, 0.5);--color075:hsla(0, 69%, 10%, 0.25);--background:hsla(0, 70%, 95%, 1);--backgroundHover:hsla(0, 70%, 93%, 1);--backgroundPress:hsla(0, 70%, 50%, 1);--backgroundFocus:hsla(0, 70%, 46%, 1);--color:hsla(0, 70%, 14%, 1);--colorHover:hsla(0, 70%, 19%, 1);--colorPress:hsla(0, 70%, 14%, 1);--colorFocus:hsla(0, 70%, 19%, 1);--placeholderColor:hsla(0, 70%, 19%, 1);--borderColor:hsla(0, 70%, 46%, 1);--borderColorHover:hsla(0, 70%, 41%, 1);--borderColorFocus:hsla(0, 70%, 37%, 1);--borderColorPress:hsla(0, 70%, 41%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_error_ProgressIndicator, .t_error_SliderThumb, .t_error_SwitchThumb, .t_error_Tooltip, .t_light .t_dark .t_error_ProgressIndicator, .t_light .t_dark .t_error_SliderThumb, .t_light .t_dark .t_error_SwitchThumb, .t_light .t_dark .t_error_Tooltip, .t_light .t_dark .t_red_ProgressIndicator, .t_light .t_dark .t_red_SliderThumb, .t_light .t_dark .t_red_SwitchThumb, .t_light .t_dark .t_red_Tooltip, .t_red_ProgressIndicator, .t_red_SliderThumb, .t_red_SwitchThumb, .t_red_Tooltip {--accentBackground:hsla(0, 69%, 10%, 0);--accentColor:hsla(0, 69%, 10%, 0);--background0:hsla(0, 69%, 95%, 0.25);--background025:hsla(0, 69%, 95%, 0.5);--background05:hsla(0, 69%, 95%, 0.75);--background075:hsla(0, 70%, 95%, 1);--color0:hsla(0, 70%, 10%, 1);--color025:hsla(0, 69%, 10%, 0.75);--color05:hsla(0, 69%, 10%, 0.5);--color075:hsla(0, 69%, 10%, 0.25);--background:hsla(0, 70%, 95%, 1);--backgroundHover:hsla(0, 70%, 93%, 1);--backgroundPress:hsla(0, 70%, 50%, 1);--backgroundFocus:hsla(0, 70%, 46%, 1);--color:hsla(0, 70%, 14%, 1);--colorHover:hsla(0, 70%, 19%, 1);--colorPress:hsla(0, 70%, 14%, 1);--colorFocus:hsla(0, 70%, 19%, 1);--placeholderColor:hsla(0, 70%, 19%, 1);--borderColor:hsla(0, 70%, 46%, 1);--borderColorHover:hsla(0, 70%, 41%, 1);--borderColorFocus:hsla(0, 70%, 37%, 1);--borderColorPress:hsla(0, 70%, 41%, 1);} - } -:root.t_dark .t_error_SliderTrackActive, :root.t_dark .t_light .t_dark .t_error_SliderTrackActive, :root.t_dark .t_light .t_dark .t_red_SliderTrackActive, :root.t_dark .t_red_SliderTrackActive, :root.t_light .t_dark .t_error_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_error_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_red_SliderTrackActive, :root.t_light .t_dark .t_red_SliderTrackActive {--accentBackground:hsla(0, 69%, 10%, 0);--accentColor:hsla(0, 69%, 10%, 0);--background0:hsla(0, 69%, 95%, 0.75);--background025:hsla(0, 70%, 95%, 1);--background05:hsla(0, 70%, 93%, 1);--background075:hsla(0, 70%, 50%, 1);--color0:hsla(0, 70%, 19%, 1);--color025:hsla(0, 70%, 14%, 1);--color05:hsla(0, 70%, 10%, 1);--color075:hsla(0, 69%, 10%, 0.75);--background:hsla(0, 70%, 50%, 1);--backgroundHover:hsla(0, 70%, 46%, 1);--backgroundPress:hsla(0, 70%, 41%, 1);--backgroundFocus:hsla(0, 70%, 37%, 1);--color:hsla(0, 70%, 14%, 1);--colorHover:hsla(0, 70%, 19%, 1);--colorPress:hsla(0, 70%, 14%, 1);--colorFocus:hsla(0, 70%, 19%, 1);--placeholderColor:hsla(0, 70%, 28%, 1);--borderColor:hsla(0, 70%, 37%, 1);--borderColorHover:hsla(0, 70%, 32%, 1);--borderColorFocus:hsla(0, 70%, 28%, 1);--borderColorPress:hsla(0, 70%, 32%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_error_SliderTrackActive, .t_light .t_dark .t_error_SliderTrackActive, .t_light .t_dark .t_red_SliderTrackActive, .t_red_SliderTrackActive {--accentBackground:hsla(0, 69%, 10%, 0);--accentColor:hsla(0, 69%, 10%, 0);--background0:hsla(0, 69%, 95%, 0.75);--background025:hsla(0, 70%, 95%, 1);--background05:hsla(0, 70%, 93%, 1);--background075:hsla(0, 70%, 50%, 1);--color0:hsla(0, 70%, 19%, 1);--color025:hsla(0, 70%, 14%, 1);--color05:hsla(0, 70%, 10%, 1);--color075:hsla(0, 69%, 10%, 0.75);--background:hsla(0, 70%, 50%, 1);--backgroundHover:hsla(0, 70%, 46%, 1);--backgroundPress:hsla(0, 70%, 41%, 1);--backgroundFocus:hsla(0, 70%, 37%, 1);--color:hsla(0, 70%, 14%, 1);--colorHover:hsla(0, 70%, 19%, 1);--colorPress:hsla(0, 70%, 14%, 1);--colorFocus:hsla(0, 70%, 19%, 1);--placeholderColor:hsla(0, 70%, 28%, 1);--borderColor:hsla(0, 70%, 37%, 1);--borderColorHover:hsla(0, 70%, 32%, 1);--borderColorFocus:hsla(0, 70%, 28%, 1);--borderColorPress:hsla(0, 70%, 32%, 1);} - } -:root.t_dark .t_light .t_dark .t_success, :root.t_dark .t_success, :root.t_light .t_dark .t_light .t_dark .t_success, :root.t_light .t_dark .t_success {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(153, 69%, 10%, 0.25);--background025:hsla(153, 69%, 10%, 0.5);--background05:hsla(153, 69%, 10%, 0.75);--background075:hsla(153, 70%, 10%, 1);--color0:hsla(153, 70%, 95%, 1);--color025:hsla(153, 69%, 95%, 0.75);--color05:hsla(153, 69%, 95%, 0.5);--color075:hsla(153, 69%, 95%, 0.25);--background:hsla(153, 70%, 10%, 1);--backgroundHover:hsla(153, 70%, 14%, 1);--backgroundPress:hsla(153, 70%, 19%, 1);--backgroundFocus:hsla(153, 70%, 23%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 50%, 1);--borderColor:hsla(153, 70%, 23%, 1);--borderColorHover:hsla(153, 70%, 28%, 1);--borderColorFocus:hsla(153, 70%, 32%, 1);--borderColorPress:hsla(153, 70%, 28%, 1);--color1:hsla(153, 70%, 10%, 1);--color2:hsla(153, 70%, 14%, 1);--color3:hsla(153, 70%, 19%, 1);--color4:hsla(153, 70%, 23%, 1);--color5:hsla(153, 70%, 28%, 1);--color6:hsla(153, 70%, 32%, 1);--color7:hsla(153, 70%, 37%, 1);--color8:hsla(153, 70%, 41%, 1);--color9:hsla(153, 70%, 46%, 1);--color10:hsla(153, 70%, 50%, 1);--color11:hsla(153, 70%, 93%, 1);--color12:hsla(153, 70%, 95%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_light .t_dark .t_success, .t_success {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(153, 69%, 10%, 0.25);--background025:hsla(153, 69%, 10%, 0.5);--background05:hsla(153, 69%, 10%, 0.75);--background075:hsla(153, 70%, 10%, 1);--color0:hsla(153, 70%, 95%, 1);--color025:hsla(153, 69%, 95%, 0.75);--color05:hsla(153, 69%, 95%, 0.5);--color075:hsla(153, 69%, 95%, 0.25);--background:hsla(153, 70%, 10%, 1);--backgroundHover:hsla(153, 70%, 14%, 1);--backgroundPress:hsla(153, 70%, 19%, 1);--backgroundFocus:hsla(153, 70%, 23%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 50%, 1);--borderColor:hsla(153, 70%, 23%, 1);--borderColorHover:hsla(153, 70%, 28%, 1);--borderColorFocus:hsla(153, 70%, 32%, 1);--borderColorPress:hsla(153, 70%, 28%, 1);--color1:hsla(153, 70%, 10%, 1);--color2:hsla(153, 70%, 14%, 1);--color3:hsla(153, 70%, 19%, 1);--color4:hsla(153, 70%, 23%, 1);--color5:hsla(153, 70%, 28%, 1);--color6:hsla(153, 70%, 32%, 1);--color7:hsla(153, 70%, 37%, 1);--color8:hsla(153, 70%, 41%, 1);--color9:hsla(153, 70%, 46%, 1);--color10:hsla(153, 70%, 50%, 1);--color11:hsla(153, 70%, 93%, 1);--color12:hsla(153, 70%, 95%, 1);} - } -:root.t_dark .t_light .t_dark .t_success_Button, :root.t_dark .t_light .t_dark .t_success_SliderTrack, :root.t_dark .t_light .t_dark .t_success_Switch, :root.t_dark .t_light .t_dark .t_success_TooltipContent, :root.t_dark .t_success_Button, :root.t_dark .t_success_SliderTrack, :root.t_dark .t_success_Switch, :root.t_dark .t_success_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_success_Button, :root.t_light .t_dark .t_light .t_dark .t_success_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_success_Switch, :root.t_light .t_dark .t_light .t_dark .t_success_TooltipContent, :root.t_light .t_dark .t_success_Button, :root.t_light .t_dark .t_success_SliderTrack, :root.t_light .t_dark .t_success_Switch, :root.t_light .t_dark .t_success_TooltipContent {--background0:hsla(153, 69%, 10%, 0.75);--background025:hsla(153, 70%, 10%, 1);--background05:hsla(153, 70%, 14%, 1);--background075:hsla(153, 70%, 19%, 1);--color0:hsla(153, 70%, 50%, 1);--color025:hsla(153, 70%, 93%, 1);--color05:hsla(153, 70%, 95%, 1);--color075:hsla(153, 69%, 95%, 0.75);--background:hsla(153, 70%, 19%, 1);--backgroundHover:hsla(153, 70%, 23%, 1);--backgroundPress:hsla(153, 70%, 28%, 1);--backgroundFocus:hsla(153, 70%, 32%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 41%, 1);--borderColor:hsla(153, 70%, 32%, 1);--borderColorHover:hsla(153, 70%, 37%, 1);--borderColorFocus:hsla(153, 70%, 41%, 1);--borderColorPress:hsla(153, 70%, 37%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_light .t_dark .t_success_Button, .t_light .t_dark .t_success_SliderTrack, .t_light .t_dark .t_success_Switch, .t_light .t_dark .t_success_TooltipContent, .t_success_Button, .t_success_SliderTrack, .t_success_Switch, .t_success_TooltipContent {--background0:hsla(153, 69%, 10%, 0.75);--background025:hsla(153, 70%, 10%, 1);--background05:hsla(153, 70%, 14%, 1);--background075:hsla(153, 70%, 19%, 1);--color0:hsla(153, 70%, 50%, 1);--color025:hsla(153, 70%, 93%, 1);--color05:hsla(153, 70%, 95%, 1);--color075:hsla(153, 69%, 95%, 0.75);--background:hsla(153, 70%, 19%, 1);--backgroundHover:hsla(153, 70%, 23%, 1);--backgroundPress:hsla(153, 70%, 28%, 1);--backgroundFocus:hsla(153, 70%, 32%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 41%, 1);--borderColor:hsla(153, 70%, 32%, 1);--borderColorHover:hsla(153, 70%, 37%, 1);--borderColorFocus:hsla(153, 70%, 41%, 1);--borderColorPress:hsla(153, 70%, 37%, 1);} - } -:root.t_dark .t_light .t_dark .t_success_Card, :root.t_dark .t_light .t_dark .t_success_DrawerFrame, :root.t_dark .t_light .t_dark .t_success_Progress, :root.t_dark .t_light .t_dark .t_success_TooltipArrow, :root.t_dark .t_success_Card, :root.t_dark .t_success_DrawerFrame, :root.t_dark .t_success_Progress, :root.t_dark .t_success_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_success_Card, :root.t_light .t_dark .t_light .t_dark .t_success_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_success_Progress, :root.t_light .t_dark .t_light .t_dark .t_success_TooltipArrow, :root.t_light .t_dark .t_success_Card, :root.t_light .t_dark .t_success_DrawerFrame, :root.t_light .t_dark .t_success_Progress, :root.t_light .t_dark .t_success_TooltipArrow {--background0:hsla(153, 69%, 10%, 0.5);--background025:hsla(153, 69%, 10%, 0.75);--background05:hsla(153, 70%, 10%, 1);--background075:hsla(153, 70%, 14%, 1);--color0:hsla(153, 70%, 93%, 1);--color025:hsla(153, 70%, 95%, 1);--color05:hsla(153, 69%, 95%, 0.75);--color075:hsla(153, 69%, 95%, 0.5);--background:hsla(153, 70%, 14%, 1);--backgroundHover:hsla(153, 70%, 19%, 1);--backgroundPress:hsla(153, 70%, 23%, 1);--backgroundFocus:hsla(153, 70%, 28%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 46%, 1);--borderColor:hsla(153, 70%, 28%, 1);--borderColorHover:hsla(153, 70%, 32%, 1);--borderColorFocus:hsla(153, 70%, 37%, 1);--borderColorPress:hsla(153, 70%, 32%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_light .t_dark .t_success_Card, .t_light .t_dark .t_success_DrawerFrame, .t_light .t_dark .t_success_Progress, .t_light .t_dark .t_success_TooltipArrow, .t_success_Card, .t_success_DrawerFrame, .t_success_Progress, .t_success_TooltipArrow {--background0:hsla(153, 69%, 10%, 0.5);--background025:hsla(153, 69%, 10%, 0.75);--background05:hsla(153, 70%, 10%, 1);--background075:hsla(153, 70%, 14%, 1);--color0:hsla(153, 70%, 93%, 1);--color025:hsla(153, 70%, 95%, 1);--color05:hsla(153, 69%, 95%, 0.75);--color075:hsla(153, 69%, 95%, 0.5);--background:hsla(153, 70%, 14%, 1);--backgroundHover:hsla(153, 70%, 19%, 1);--backgroundPress:hsla(153, 70%, 23%, 1);--backgroundFocus:hsla(153, 70%, 28%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 46%, 1);--borderColor:hsla(153, 70%, 28%, 1);--borderColorHover:hsla(153, 70%, 32%, 1);--borderColorFocus:hsla(153, 70%, 37%, 1);--borderColorPress:hsla(153, 70%, 32%, 1);} - } -:root.t_dark .t_light .t_dark .t_success_Checkbox, :root.t_dark .t_light .t_dark .t_success_Input, :root.t_dark .t_light .t_dark .t_success_RadioGroupItem, :root.t_dark .t_light .t_dark .t_success_TextArea, :root.t_dark .t_success_Checkbox, :root.t_dark .t_success_Input, :root.t_dark .t_success_RadioGroupItem, :root.t_dark .t_success_TextArea, :root.t_light .t_dark .t_light .t_dark .t_success_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_success_Input, :root.t_light .t_dark .t_light .t_dark .t_success_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_success_TextArea, :root.t_light .t_dark .t_success_Checkbox, :root.t_light .t_dark .t_success_Input, :root.t_light .t_dark .t_success_RadioGroupItem, :root.t_light .t_dark .t_success_TextArea {--accentBackground:hsla(153, 69%, 10%, 0);--accentColor:hsla(153, 69%, 10%, 0);--background0:hsla(153, 69%, 10%, 0.25);--background025:hsla(153, 69%, 10%, 0.5);--background05:hsla(153, 69%, 10%, 0.75);--background075:hsla(153, 70%, 10%, 1);--color0:hsla(153, 70%, 95%, 1);--color025:hsla(153, 69%, 95%, 0.75);--color05:hsla(153, 69%, 95%, 0.5);--color075:hsla(153, 69%, 95%, 0.25);--background:hsla(153, 70%, 10%, 1);--backgroundHover:hsla(153, 70%, 14%, 1);--backgroundPress:hsla(153, 70%, 19%, 1);--backgroundFocus:hsla(153, 70%, 23%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 50%, 1);--borderColor:hsla(153, 70%, 32%, 1);--borderColorHover:hsla(153, 70%, 37%, 1);--borderColorFocus:hsla(153, 70%, 41%, 1);--borderColorPress:hsla(153, 70%, 37%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_light .t_dark .t_success_Checkbox, .t_light .t_dark .t_success_Input, .t_light .t_dark .t_success_RadioGroupItem, .t_light .t_dark .t_success_TextArea, .t_success_Checkbox, .t_success_Input, .t_success_RadioGroupItem, .t_success_TextArea {--accentBackground:hsla(153, 69%, 10%, 0);--accentColor:hsla(153, 69%, 10%, 0);--background0:hsla(153, 69%, 10%, 0.25);--background025:hsla(153, 69%, 10%, 0.5);--background05:hsla(153, 69%, 10%, 0.75);--background075:hsla(153, 70%, 10%, 1);--color0:hsla(153, 70%, 95%, 1);--color025:hsla(153, 69%, 95%, 0.75);--color05:hsla(153, 69%, 95%, 0.5);--color075:hsla(153, 69%, 95%, 0.25);--background:hsla(153, 70%, 10%, 1);--backgroundHover:hsla(153, 70%, 14%, 1);--backgroundPress:hsla(153, 70%, 19%, 1);--backgroundFocus:hsla(153, 70%, 23%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 50%, 1);--borderColor:hsla(153, 70%, 32%, 1);--borderColorHover:hsla(153, 70%, 37%, 1);--borderColorFocus:hsla(153, 70%, 41%, 1);--borderColorPress:hsla(153, 70%, 37%, 1);} - } -:root.t_dark .t_light .t_dark .t_success_ProgressIndicator, :root.t_dark .t_light .t_dark .t_success_SliderThumb, :root.t_dark .t_light .t_dark .t_success_SwitchThumb, :root.t_dark .t_light .t_dark .t_success_Tooltip, :root.t_dark .t_success_ProgressIndicator, :root.t_dark .t_success_SliderThumb, :root.t_dark .t_success_SwitchThumb, :root.t_dark .t_success_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_success_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_success_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_success_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_success_Tooltip, :root.t_light .t_dark .t_success_ProgressIndicator, :root.t_light .t_dark .t_success_SliderThumb, :root.t_light .t_dark .t_success_SwitchThumb, :root.t_light .t_dark .t_success_Tooltip {--accentBackground:hsla(153, 69%, 10%, 0);--accentColor:hsla(153, 69%, 10%, 0);--background0:hsla(153, 69%, 95%, 0.25);--background025:hsla(153, 69%, 95%, 0.5);--background05:hsla(153, 69%, 95%, 0.75);--background075:hsla(153, 70%, 95%, 1);--color0:hsla(153, 70%, 10%, 1);--color025:hsla(153, 69%, 10%, 0.75);--color05:hsla(153, 69%, 10%, 0.5);--color075:hsla(153, 69%, 10%, 0.25);--background:hsla(153, 70%, 95%, 1);--backgroundHover:hsla(153, 70%, 93%, 1);--backgroundPress:hsla(153, 70%, 50%, 1);--backgroundFocus:hsla(153, 70%, 46%, 1);--color:hsla(153, 70%, 14%, 1);--colorHover:hsla(153, 70%, 19%, 1);--colorPress:hsla(153, 70%, 14%, 1);--colorFocus:hsla(153, 70%, 19%, 1);--placeholderColor:hsla(153, 70%, 19%, 1);--borderColor:hsla(153, 70%, 46%, 1);--borderColorHover:hsla(153, 70%, 41%, 1);--borderColorFocus:hsla(153, 70%, 37%, 1);--borderColorPress:hsla(153, 70%, 41%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_light .t_dark .t_success_ProgressIndicator, .t_light .t_dark .t_success_SliderThumb, .t_light .t_dark .t_success_SwitchThumb, .t_light .t_dark .t_success_Tooltip, .t_success_ProgressIndicator, .t_success_SliderThumb, .t_success_SwitchThumb, .t_success_Tooltip {--accentBackground:hsla(153, 69%, 10%, 0);--accentColor:hsla(153, 69%, 10%, 0);--background0:hsla(153, 69%, 95%, 0.25);--background025:hsla(153, 69%, 95%, 0.5);--background05:hsla(153, 69%, 95%, 0.75);--background075:hsla(153, 70%, 95%, 1);--color0:hsla(153, 70%, 10%, 1);--color025:hsla(153, 69%, 10%, 0.75);--color05:hsla(153, 69%, 10%, 0.5);--color075:hsla(153, 69%, 10%, 0.25);--background:hsla(153, 70%, 95%, 1);--backgroundHover:hsla(153, 70%, 93%, 1);--backgroundPress:hsla(153, 70%, 50%, 1);--backgroundFocus:hsla(153, 70%, 46%, 1);--color:hsla(153, 70%, 14%, 1);--colorHover:hsla(153, 70%, 19%, 1);--colorPress:hsla(153, 70%, 14%, 1);--colorFocus:hsla(153, 70%, 19%, 1);--placeholderColor:hsla(153, 70%, 19%, 1);--borderColor:hsla(153, 70%, 46%, 1);--borderColorHover:hsla(153, 70%, 41%, 1);--borderColorFocus:hsla(153, 70%, 37%, 1);--borderColorPress:hsla(153, 70%, 41%, 1);} - } -:root.t_dark .t_light .t_dark .t_success_SliderTrackActive, :root.t_dark .t_success_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_success_SliderTrackActive, :root.t_light .t_dark .t_success_SliderTrackActive {--accentBackground:hsla(153, 69%, 10%, 0);--accentColor:hsla(153, 69%, 10%, 0);--background0:hsla(153, 69%, 95%, 0.75);--background025:hsla(153, 70%, 95%, 1);--background05:hsla(153, 70%, 93%, 1);--background075:hsla(153, 70%, 50%, 1);--color0:hsla(153, 70%, 19%, 1);--color025:hsla(153, 70%, 14%, 1);--color05:hsla(153, 70%, 10%, 1);--color075:hsla(153, 69%, 10%, 0.75);--background:hsla(153, 70%, 50%, 1);--backgroundHover:hsla(153, 70%, 46%, 1);--backgroundPress:hsla(153, 70%, 41%, 1);--backgroundFocus:hsla(153, 70%, 37%, 1);--color:hsla(153, 70%, 14%, 1);--colorHover:hsla(153, 70%, 19%, 1);--colorPress:hsla(153, 70%, 14%, 1);--colorFocus:hsla(153, 70%, 19%, 1);--placeholderColor:hsla(153, 70%, 28%, 1);--borderColor:hsla(153, 70%, 37%, 1);--borderColorHover:hsla(153, 70%, 32%, 1);--borderColorFocus:hsla(153, 70%, 28%, 1);--borderColorPress:hsla(153, 70%, 32%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_light .t_dark .t_success_SliderTrackActive, .t_success_SliderTrackActive {--accentBackground:hsla(153, 69%, 10%, 0);--accentColor:hsla(153, 69%, 10%, 0);--background0:hsla(153, 69%, 95%, 0.75);--background025:hsla(153, 70%, 95%, 1);--background05:hsla(153, 70%, 93%, 1);--background075:hsla(153, 70%, 50%, 1);--color0:hsla(153, 70%, 19%, 1);--color025:hsla(153, 70%, 14%, 1);--color05:hsla(153, 70%, 10%, 1);--color075:hsla(153, 69%, 10%, 0.75);--background:hsla(153, 70%, 50%, 1);--backgroundHover:hsla(153, 70%, 46%, 1);--backgroundPress:hsla(153, 70%, 41%, 1);--backgroundFocus:hsla(153, 70%, 37%, 1);--color:hsla(153, 70%, 14%, 1);--colorHover:hsla(153, 70%, 19%, 1);--colorPress:hsla(153, 70%, 14%, 1);--colorFocus:hsla(153, 70%, 19%, 1);--placeholderColor:hsla(153, 70%, 28%, 1);--borderColor:hsla(153, 70%, 37%, 1);--borderColorHover:hsla(153, 70%, 32%, 1);--borderColorFocus:hsla(153, 70%, 28%, 1);--borderColorPress:hsla(153, 70%, 32%, 1);} - } -:root.t_dark .t_light .t_dark .t_warning, :root.t_dark .t_warning, :root.t_light .t_dark .t_light .t_dark .t_warning, :root.t_light .t_dark .t_warning {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(48, 69%, 10%, 0.25);--background025:hsla(48, 69%, 10%, 0.5);--background05:hsla(48, 69%, 10%, 0.75);--background075:hsla(48, 70%, 10%, 1);--color0:hsla(48, 70%, 95%, 1);--color025:hsla(50, 69%, 95%, 0.75);--color05:hsla(50, 69%, 95%, 0.5);--color075:hsla(50, 69%, 95%, 0.25);--background:hsla(48, 70%, 10%, 1);--backgroundHover:hsla(48, 70%, 14%, 1);--backgroundPress:hsla(48, 70%, 19%, 1);--backgroundFocus:hsla(48, 70%, 23%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 50%, 1);--borderColor:hsla(48, 70%, 23%, 1);--borderColorHover:hsla(48, 70%, 28%, 1);--borderColorFocus:hsla(48, 70%, 32%, 1);--borderColorPress:hsla(48, 70%, 28%, 1);--color1:hsla(48, 70%, 10%, 1);--color2:hsla(48, 70%, 14%, 1);--color3:hsla(48, 70%, 19%, 1);--color4:hsla(48, 70%, 23%, 1);--color5:hsla(48, 70%, 28%, 1);--color6:hsla(48, 70%, 32%, 1);--color7:hsla(48, 70%, 37%, 1);--color8:hsla(48, 70%, 41%, 1);--color9:hsla(48, 70%, 46%, 1);--color10:hsla(48, 70%, 50%, 1);--color11:hsla(48, 70%, 93%, 1);--color12:hsla(48, 70%, 95%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_light .t_dark .t_warning, .t_warning {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(48, 69%, 10%, 0.25);--background025:hsla(48, 69%, 10%, 0.5);--background05:hsla(48, 69%, 10%, 0.75);--background075:hsla(48, 70%, 10%, 1);--color0:hsla(48, 70%, 95%, 1);--color025:hsla(50, 69%, 95%, 0.75);--color05:hsla(50, 69%, 95%, 0.5);--color075:hsla(50, 69%, 95%, 0.25);--background:hsla(48, 70%, 10%, 1);--backgroundHover:hsla(48, 70%, 14%, 1);--backgroundPress:hsla(48, 70%, 19%, 1);--backgroundFocus:hsla(48, 70%, 23%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 50%, 1);--borderColor:hsla(48, 70%, 23%, 1);--borderColorHover:hsla(48, 70%, 28%, 1);--borderColorFocus:hsla(48, 70%, 32%, 1);--borderColorPress:hsla(48, 70%, 28%, 1);--color1:hsla(48, 70%, 10%, 1);--color2:hsla(48, 70%, 14%, 1);--color3:hsla(48, 70%, 19%, 1);--color4:hsla(48, 70%, 23%, 1);--color5:hsla(48, 70%, 28%, 1);--color6:hsla(48, 70%, 32%, 1);--color7:hsla(48, 70%, 37%, 1);--color8:hsla(48, 70%, 41%, 1);--color9:hsla(48, 70%, 46%, 1);--color10:hsla(48, 70%, 50%, 1);--color11:hsla(48, 70%, 93%, 1);--color12:hsla(48, 70%, 95%, 1);} - } -:root.t_dark .t_light .t_dark .t_warning_Button, :root.t_dark .t_light .t_dark .t_warning_SliderTrack, :root.t_dark .t_light .t_dark .t_warning_Switch, :root.t_dark .t_light .t_dark .t_warning_TooltipContent, :root.t_dark .t_warning_Button, :root.t_dark .t_warning_SliderTrack, :root.t_dark .t_warning_Switch, :root.t_dark .t_warning_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_warning_Button, :root.t_light .t_dark .t_light .t_dark .t_warning_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_warning_Switch, :root.t_light .t_dark .t_light .t_dark .t_warning_TooltipContent, :root.t_light .t_dark .t_warning_Button, :root.t_light .t_dark .t_warning_SliderTrack, :root.t_light .t_dark .t_warning_Switch, :root.t_light .t_dark .t_warning_TooltipContent {--background0:hsla(48, 69%, 10%, 0.75);--background025:hsla(48, 70%, 10%, 1);--background05:hsla(48, 70%, 14%, 1);--background075:hsla(48, 70%, 19%, 1);--color0:hsla(48, 70%, 50%, 1);--color025:hsla(48, 70%, 93%, 1);--color05:hsla(48, 70%, 95%, 1);--color075:hsla(50, 69%, 95%, 0.75);--background:hsla(48, 70%, 19%, 1);--backgroundHover:hsla(48, 70%, 23%, 1);--backgroundPress:hsla(48, 70%, 28%, 1);--backgroundFocus:hsla(48, 70%, 32%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 41%, 1);--borderColor:hsla(48, 70%, 32%, 1);--borderColorHover:hsla(48, 70%, 37%, 1);--borderColorFocus:hsla(48, 70%, 41%, 1);--borderColorPress:hsla(48, 70%, 37%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_light .t_dark .t_warning_Button, .t_light .t_dark .t_warning_SliderTrack, .t_light .t_dark .t_warning_Switch, .t_light .t_dark .t_warning_TooltipContent, .t_warning_Button, .t_warning_SliderTrack, .t_warning_Switch, .t_warning_TooltipContent {--background0:hsla(48, 69%, 10%, 0.75);--background025:hsla(48, 70%, 10%, 1);--background05:hsla(48, 70%, 14%, 1);--background075:hsla(48, 70%, 19%, 1);--color0:hsla(48, 70%, 50%, 1);--color025:hsla(48, 70%, 93%, 1);--color05:hsla(48, 70%, 95%, 1);--color075:hsla(50, 69%, 95%, 0.75);--background:hsla(48, 70%, 19%, 1);--backgroundHover:hsla(48, 70%, 23%, 1);--backgroundPress:hsla(48, 70%, 28%, 1);--backgroundFocus:hsla(48, 70%, 32%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 41%, 1);--borderColor:hsla(48, 70%, 32%, 1);--borderColorHover:hsla(48, 70%, 37%, 1);--borderColorFocus:hsla(48, 70%, 41%, 1);--borderColorPress:hsla(48, 70%, 37%, 1);} - } -:root.t_dark .t_light .t_dark .t_warning_Card, :root.t_dark .t_light .t_dark .t_warning_DrawerFrame, :root.t_dark .t_light .t_dark .t_warning_Progress, :root.t_dark .t_light .t_dark .t_warning_TooltipArrow, :root.t_dark .t_warning_Card, :root.t_dark .t_warning_DrawerFrame, :root.t_dark .t_warning_Progress, :root.t_dark .t_warning_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_warning_Card, :root.t_light .t_dark .t_light .t_dark .t_warning_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_warning_Progress, :root.t_light .t_dark .t_light .t_dark .t_warning_TooltipArrow, :root.t_light .t_dark .t_warning_Card, :root.t_light .t_dark .t_warning_DrawerFrame, :root.t_light .t_dark .t_warning_Progress, :root.t_light .t_dark .t_warning_TooltipArrow {--background0:hsla(48, 69%, 10%, 0.5);--background025:hsla(48, 69%, 10%, 0.75);--background05:hsla(48, 70%, 10%, 1);--background075:hsla(48, 70%, 14%, 1);--color0:hsla(48, 70%, 93%, 1);--color025:hsla(48, 70%, 95%, 1);--color05:hsla(50, 69%, 95%, 0.75);--color075:hsla(50, 69%, 95%, 0.5);--background:hsla(48, 70%, 14%, 1);--backgroundHover:hsla(48, 70%, 19%, 1);--backgroundPress:hsla(48, 70%, 23%, 1);--backgroundFocus:hsla(48, 70%, 28%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 46%, 1);--borderColor:hsla(48, 70%, 28%, 1);--borderColorHover:hsla(48, 70%, 32%, 1);--borderColorFocus:hsla(48, 70%, 37%, 1);--borderColorPress:hsla(48, 70%, 32%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_light .t_dark .t_warning_Card, .t_light .t_dark .t_warning_DrawerFrame, .t_light .t_dark .t_warning_Progress, .t_light .t_dark .t_warning_TooltipArrow, .t_warning_Card, .t_warning_DrawerFrame, .t_warning_Progress, .t_warning_TooltipArrow {--background0:hsla(48, 69%, 10%, 0.5);--background025:hsla(48, 69%, 10%, 0.75);--background05:hsla(48, 70%, 10%, 1);--background075:hsla(48, 70%, 14%, 1);--color0:hsla(48, 70%, 93%, 1);--color025:hsla(48, 70%, 95%, 1);--color05:hsla(50, 69%, 95%, 0.75);--color075:hsla(50, 69%, 95%, 0.5);--background:hsla(48, 70%, 14%, 1);--backgroundHover:hsla(48, 70%, 19%, 1);--backgroundPress:hsla(48, 70%, 23%, 1);--backgroundFocus:hsla(48, 70%, 28%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 46%, 1);--borderColor:hsla(48, 70%, 28%, 1);--borderColorHover:hsla(48, 70%, 32%, 1);--borderColorFocus:hsla(48, 70%, 37%, 1);--borderColorPress:hsla(48, 70%, 32%, 1);} - } -:root.t_dark .t_light .t_dark .t_warning_Checkbox, :root.t_dark .t_light .t_dark .t_warning_Input, :root.t_dark .t_light .t_dark .t_warning_RadioGroupItem, :root.t_dark .t_light .t_dark .t_warning_TextArea, :root.t_dark .t_warning_Checkbox, :root.t_dark .t_warning_Input, :root.t_dark .t_warning_RadioGroupItem, :root.t_dark .t_warning_TextArea, :root.t_light .t_dark .t_light .t_dark .t_warning_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_warning_Input, :root.t_light .t_dark .t_light .t_dark .t_warning_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_warning_TextArea, :root.t_light .t_dark .t_warning_Checkbox, :root.t_light .t_dark .t_warning_Input, :root.t_light .t_dark .t_warning_RadioGroupItem, :root.t_light .t_dark .t_warning_TextArea {--accentBackground:hsla(48, 69%, 10%, 0);--accentColor:hsla(48, 69%, 10%, 0);--background0:hsla(48, 69%, 10%, 0.25);--background025:hsla(48, 69%, 10%, 0.5);--background05:hsla(48, 69%, 10%, 0.75);--background075:hsla(48, 70%, 10%, 1);--color0:hsla(48, 70%, 95%, 1);--color025:hsla(50, 69%, 95%, 0.75);--color05:hsla(50, 69%, 95%, 0.5);--color075:hsla(50, 69%, 95%, 0.25);--background:hsla(48, 70%, 10%, 1);--backgroundHover:hsla(48, 70%, 14%, 1);--backgroundPress:hsla(48, 70%, 19%, 1);--backgroundFocus:hsla(48, 70%, 23%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 50%, 1);--borderColor:hsla(48, 70%, 32%, 1);--borderColorHover:hsla(48, 70%, 37%, 1);--borderColorFocus:hsla(48, 70%, 41%, 1);--borderColorPress:hsla(48, 70%, 37%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_light .t_dark .t_warning_Checkbox, .t_light .t_dark .t_warning_Input, .t_light .t_dark .t_warning_RadioGroupItem, .t_light .t_dark .t_warning_TextArea, .t_warning_Checkbox, .t_warning_Input, .t_warning_RadioGroupItem, .t_warning_TextArea {--accentBackground:hsla(48, 69%, 10%, 0);--accentColor:hsla(48, 69%, 10%, 0);--background0:hsla(48, 69%, 10%, 0.25);--background025:hsla(48, 69%, 10%, 0.5);--background05:hsla(48, 69%, 10%, 0.75);--background075:hsla(48, 70%, 10%, 1);--color0:hsla(48, 70%, 95%, 1);--color025:hsla(50, 69%, 95%, 0.75);--color05:hsla(50, 69%, 95%, 0.5);--color075:hsla(50, 69%, 95%, 0.25);--background:hsla(48, 70%, 10%, 1);--backgroundHover:hsla(48, 70%, 14%, 1);--backgroundPress:hsla(48, 70%, 19%, 1);--backgroundFocus:hsla(48, 70%, 23%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 50%, 1);--borderColor:hsla(48, 70%, 32%, 1);--borderColorHover:hsla(48, 70%, 37%, 1);--borderColorFocus:hsla(48, 70%, 41%, 1);--borderColorPress:hsla(48, 70%, 37%, 1);} - } -:root.t_dark .t_light .t_dark .t_warning_ProgressIndicator, :root.t_dark .t_light .t_dark .t_warning_SliderThumb, :root.t_dark .t_light .t_dark .t_warning_SwitchThumb, :root.t_dark .t_light .t_dark .t_warning_Tooltip, :root.t_dark .t_warning_ProgressIndicator, :root.t_dark .t_warning_SliderThumb, :root.t_dark .t_warning_SwitchThumb, :root.t_dark .t_warning_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_warning_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_warning_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_warning_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_warning_Tooltip, :root.t_light .t_dark .t_warning_ProgressIndicator, :root.t_light .t_dark .t_warning_SliderThumb, :root.t_light .t_dark .t_warning_SwitchThumb, :root.t_light .t_dark .t_warning_Tooltip {--accentBackground:hsla(48, 69%, 10%, 0);--accentColor:hsla(48, 69%, 10%, 0);--background0:hsla(50, 69%, 95%, 0.25);--background025:hsla(50, 69%, 95%, 0.5);--background05:hsla(50, 69%, 95%, 0.75);--background075:hsla(48, 70%, 95%, 1);--color0:hsla(48, 70%, 10%, 1);--color025:hsla(48, 69%, 10%, 0.75);--color05:hsla(48, 69%, 10%, 0.5);--color075:hsla(48, 69%, 10%, 0.25);--background:hsla(48, 70%, 95%, 1);--backgroundHover:hsla(48, 70%, 93%, 1);--backgroundPress:hsla(48, 70%, 50%, 1);--backgroundFocus:hsla(48, 70%, 46%, 1);--color:hsla(48, 70%, 14%, 1);--colorHover:hsla(48, 70%, 19%, 1);--colorPress:hsla(48, 70%, 14%, 1);--colorFocus:hsla(48, 70%, 19%, 1);--placeholderColor:hsla(48, 70%, 19%, 1);--borderColor:hsla(48, 70%, 46%, 1);--borderColorHover:hsla(48, 70%, 41%, 1);--borderColorFocus:hsla(48, 70%, 37%, 1);--borderColorPress:hsla(48, 70%, 41%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_light .t_dark .t_warning_ProgressIndicator, .t_light .t_dark .t_warning_SliderThumb, .t_light .t_dark .t_warning_SwitchThumb, .t_light .t_dark .t_warning_Tooltip, .t_warning_ProgressIndicator, .t_warning_SliderThumb, .t_warning_SwitchThumb, .t_warning_Tooltip {--accentBackground:hsla(48, 69%, 10%, 0);--accentColor:hsla(48, 69%, 10%, 0);--background0:hsla(50, 69%, 95%, 0.25);--background025:hsla(50, 69%, 95%, 0.5);--background05:hsla(50, 69%, 95%, 0.75);--background075:hsla(48, 70%, 95%, 1);--color0:hsla(48, 70%, 10%, 1);--color025:hsla(48, 69%, 10%, 0.75);--color05:hsla(48, 69%, 10%, 0.5);--color075:hsla(48, 69%, 10%, 0.25);--background:hsla(48, 70%, 95%, 1);--backgroundHover:hsla(48, 70%, 93%, 1);--backgroundPress:hsla(48, 70%, 50%, 1);--backgroundFocus:hsla(48, 70%, 46%, 1);--color:hsla(48, 70%, 14%, 1);--colorHover:hsla(48, 70%, 19%, 1);--colorPress:hsla(48, 70%, 14%, 1);--colorFocus:hsla(48, 70%, 19%, 1);--placeholderColor:hsla(48, 70%, 19%, 1);--borderColor:hsla(48, 70%, 46%, 1);--borderColorHover:hsla(48, 70%, 41%, 1);--borderColorFocus:hsla(48, 70%, 37%, 1);--borderColorPress:hsla(48, 70%, 41%, 1);} - } -:root.t_dark .t_light .t_dark .t_warning_SliderTrackActive, :root.t_dark .t_warning_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_warning_SliderTrackActive, :root.t_light .t_dark .t_warning_SliderTrackActive {--accentBackground:hsla(48, 69%, 10%, 0);--accentColor:hsla(48, 69%, 10%, 0);--background0:hsla(50, 69%, 95%, 0.75);--background025:hsla(48, 70%, 95%, 1);--background05:hsla(48, 70%, 93%, 1);--background075:hsla(48, 70%, 50%, 1);--color0:hsla(48, 70%, 19%, 1);--color025:hsla(48, 70%, 14%, 1);--color05:hsla(48, 70%, 10%, 1);--color075:hsla(48, 69%, 10%, 0.75);--background:hsla(48, 70%, 50%, 1);--backgroundHover:hsla(48, 70%, 46%, 1);--backgroundPress:hsla(48, 70%, 41%, 1);--backgroundFocus:hsla(48, 70%, 37%, 1);--color:hsla(48, 70%, 14%, 1);--colorHover:hsla(48, 70%, 19%, 1);--colorPress:hsla(48, 70%, 14%, 1);--colorFocus:hsla(48, 70%, 19%, 1);--placeholderColor:hsla(48, 70%, 28%, 1);--borderColor:hsla(48, 70%, 37%, 1);--borderColorHover:hsla(48, 70%, 32%, 1);--borderColorFocus:hsla(48, 70%, 28%, 1);--borderColorPress:hsla(48, 70%, 32%, 1);} -@media(prefers-color-scheme:dark){ - body{background:var(--background);color:var(--color)} - .t_light .t_dark .t_warning_SliderTrackActive, .t_warning_SliderTrackActive {--accentBackground:hsla(48, 69%, 10%, 0);--accentColor:hsla(48, 69%, 10%, 0);--background0:hsla(50, 69%, 95%, 0.75);--background025:hsla(48, 70%, 95%, 1);--background05:hsla(48, 70%, 93%, 1);--background075:hsla(48, 70%, 50%, 1);--color0:hsla(48, 70%, 19%, 1);--color025:hsla(48, 70%, 14%, 1);--color05:hsla(48, 70%, 10%, 1);--color075:hsla(48, 69%, 10%, 0.75);--background:hsla(48, 70%, 50%, 1);--backgroundHover:hsla(48, 70%, 46%, 1);--backgroundPress:hsla(48, 70%, 41%, 1);--backgroundFocus:hsla(48, 70%, 37%, 1);--color:hsla(48, 70%, 14%, 1);--colorHover:hsla(48, 70%, 19%, 1);--colorPress:hsla(48, 70%, 14%, 1);--colorFocus:hsla(48, 70%, 19%, 1);--placeholderColor:hsla(48, 70%, 28%, 1);--borderColor:hsla(48, 70%, 37%, 1);--borderColorHover:hsla(48, 70%, 32%, 1);--borderColorFocus:hsla(48, 70%, 28%, 1);--borderColorPress:hsla(48, 70%, 32%, 1);} - } -:root.t_dark .t_light, :root.t_dark .t_light .t_dark .t_light, :root.t_light, :root.t_light .t_dark .t_light {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(180, 20%, 99%, 0.25);--background025:hsla(180, 20%, 99%, 0.5);--background05:hsla(180, 20%, 99%, 0.75);--background075:hsla(191, 32%, 99%, 1);--color0:hsla(112, 22%, 0%, 1);--color025:hsla(0, 0%, 0%, 0.75);--color05:hsla(0, 0%, 0%, 0.5);--color075:hsla(0, 0%, 0%, 0.25);--background:hsla(191, 32%, 99%, 1);--backgroundHover:hsla(191, 32%, 93%, 1);--backgroundPress:hsla(191, 32%, 88%, 1);--backgroundFocus:hsla(191, 32%, 83%, 1);--color:hsla(96, 16%, 25%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(96, 16%, 25%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 83%, 1);--borderColorHover:hsla(191, 32%, 77%, 1);--borderColorFocus:hsla(191, 32%, 72%, 1);--borderColorPress:hsla(191, 32%, 77%, 1);--color1:hsla(191, 32%, 99%, 1);--color2:hsla(191, 32%, 93%, 1);--color3:hsla(191, 32%, 88%, 1);--color4:hsla(191, 32%, 83%, 1);--color5:hsla(191, 32%, 77%, 1);--color6:hsla(191, 32%, 72%, 1);--color7:hsla(191, 32%, 66%, 1);--color8:hsla(191, 32%, 61%, 1);--color9:hsla(191, 32%, 55%, 1);--color10:hsla(191, 32%, 50%, 1);--color11:hsla(96, 16%, 25%, 1);--color12:hsla(112, 22%, 0%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - :root, .t_dark .t_light {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(180, 20%, 99%, 0.25);--background025:hsla(180, 20%, 99%, 0.5);--background05:hsla(180, 20%, 99%, 0.75);--background075:hsla(191, 32%, 99%, 1);--color0:hsla(112, 22%, 0%, 1);--color025:hsla(0, 0%, 0%, 0.75);--color05:hsla(0, 0%, 0%, 0.5);--color075:hsla(0, 0%, 0%, 0.25);--background:hsla(191, 32%, 99%, 1);--backgroundHover:hsla(191, 32%, 93%, 1);--backgroundPress:hsla(191, 32%, 88%, 1);--backgroundFocus:hsla(191, 32%, 83%, 1);--color:hsla(96, 16%, 25%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(96, 16%, 25%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 83%, 1);--borderColorHover:hsla(191, 32%, 77%, 1);--borderColorFocus:hsla(191, 32%, 72%, 1);--borderColorPress:hsla(191, 32%, 77%, 1);--color1:hsla(191, 32%, 99%, 1);--color2:hsla(191, 32%, 93%, 1);--color3:hsla(191, 32%, 88%, 1);--color4:hsla(191, 32%, 83%, 1);--color5:hsla(191, 32%, 77%, 1);--color6:hsla(191, 32%, 72%, 1);--color7:hsla(191, 32%, 66%, 1);--color8:hsla(191, 32%, 61%, 1);--color9:hsla(191, 32%, 55%, 1);--color10:hsla(191, 32%, 50%, 1);--color11:hsla(96, 16%, 25%, 1);--color12:hsla(112, 22%, 0%, 1);} - } -:root.t_dark .t_light .t_Button, :root.t_dark .t_light .t_dark .t_light .t_Button, :root.t_dark .t_light .t_dark .t_light .t_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_Switch, :root.t_dark .t_light .t_dark .t_light .t_TooltipContent, :root.t_dark .t_light .t_SliderTrack, :root.t_dark .t_light .t_Switch, :root.t_dark .t_light .t_TooltipContent, :root.t_light .t_Button, :root.t_light .t_dark .t_light .t_Button, :root.t_light .t_dark .t_light .t_SliderTrack, :root.t_light .t_dark .t_light .t_Switch, :root.t_light .t_dark .t_light .t_TooltipContent, :root.t_light .t_SliderTrack, :root.t_light .t_Switch, :root.t_light .t_TooltipContent {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(96, 16%, 25%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(96, 16%, 25%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_Button, .t_dark .t_light .t_Button, .t_dark .t_light .t_SliderTrack, .t_dark .t_light .t_Switch, .t_dark .t_light .t_TooltipContent, .t_SliderTrack, .t_Switch, .t_TooltipContent {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(96, 16%, 25%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(96, 16%, 25%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} - } -:root.t_dark .t_light .t_Card, :root.t_dark .t_light .t_dark .t_light .t_Card, :root.t_dark .t_light .t_dark .t_light .t_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_Progress, :root.t_dark .t_light .t_dark .t_light .t_TooltipArrow, :root.t_dark .t_light .t_DrawerFrame, :root.t_dark .t_light .t_Progress, :root.t_dark .t_light .t_TooltipArrow, :root.t_light .t_Card, :root.t_light .t_dark .t_light .t_Card, :root.t_light .t_dark .t_light .t_DrawerFrame, :root.t_light .t_dark .t_light .t_Progress, :root.t_light .t_dark .t_light .t_TooltipArrow, :root.t_light .t_DrawerFrame, :root.t_light .t_Progress, :root.t_light .t_TooltipArrow {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(96, 16%, 25%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(96, 16%, 25%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_Card, .t_dark .t_light .t_Card, .t_dark .t_light .t_DrawerFrame, .t_dark .t_light .t_Progress, .t_dark .t_light .t_TooltipArrow, .t_DrawerFrame, .t_Progress, .t_TooltipArrow {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(96, 16%, 25%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(96, 16%, 25%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} - } -:root.t_dark .t_light .t_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_Input, :root.t_dark .t_light .t_dark .t_light .t_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_TextArea, :root.t_dark .t_light .t_Input, :root.t_dark .t_light .t_RadioGroupItem, :root.t_dark .t_light .t_TextArea, :root.t_light .t_Checkbox, :root.t_light .t_dark .t_light .t_Checkbox, :root.t_light .t_dark .t_light .t_Input, :root.t_light .t_dark .t_light .t_RadioGroupItem, :root.t_light .t_dark .t_light .t_TextArea, :root.t_light .t_Input, :root.t_light .t_RadioGroupItem, :root.t_light .t_TextArea {--accentBackground:hsla(180, 20%, 99%, 0);--accentColor:hsla(180, 20%, 99%, 0);--background0:hsla(180, 20%, 99%, 0.25);--background025:hsla(180, 20%, 99%, 0.5);--background05:hsla(180, 20%, 99%, 0.75);--background075:hsla(191, 32%, 99%, 1);--color0:hsla(112, 22%, 0%, 1);--color025:hsla(0, 0%, 0%, 0.75);--color05:hsla(0, 0%, 0%, 0.5);--color075:hsla(0, 0%, 0%, 0.25);--background:hsla(191, 32%, 99%, 1);--backgroundHover:hsla(191, 32%, 93%, 1);--backgroundPress:hsla(191, 32%, 88%, 1);--backgroundFocus:hsla(191, 32%, 83%, 1);--color:hsla(96, 16%, 25%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(96, 16%, 25%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_Checkbox, .t_dark .t_light .t_Checkbox, .t_dark .t_light .t_Input, .t_dark .t_light .t_RadioGroupItem, .t_dark .t_light .t_TextArea, .t_Input, .t_RadioGroupItem, .t_TextArea {--accentBackground:hsla(180, 20%, 99%, 0);--accentColor:hsla(180, 20%, 99%, 0);--background0:hsla(180, 20%, 99%, 0.25);--background025:hsla(180, 20%, 99%, 0.5);--background05:hsla(180, 20%, 99%, 0.75);--background075:hsla(191, 32%, 99%, 1);--color0:hsla(112, 22%, 0%, 1);--color025:hsla(0, 0%, 0%, 0.75);--color05:hsla(0, 0%, 0%, 0.5);--color075:hsla(0, 0%, 0%, 0.25);--background:hsla(191, 32%, 99%, 1);--backgroundHover:hsla(191, 32%, 93%, 1);--backgroundPress:hsla(191, 32%, 88%, 1);--backgroundFocus:hsla(191, 32%, 83%, 1);--color:hsla(96, 16%, 25%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(96, 16%, 25%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} - } -:root.t_dark .t_light .t_accent_DialogOverlay, :root.t_dark .t_light .t_accent_ModalOverlay, :root.t_dark .t_light .t_accent_SheetOverlay, :root.t_dark .t_light .t_active_accent_DialogOverlay, :root.t_dark .t_light .t_active_accent_ModalOverlay, :root.t_dark .t_light .t_active_accent_SheetOverlay, :root.t_dark .t_light .t_active_DialogOverlay, :root.t_dark .t_light .t_active_ModalOverlay, :root.t_dark .t_light .t_active_SheetOverlay, :root.t_dark .t_light .t_alt1_accent_DialogOverlay, :root.t_dark .t_light .t_alt1_accent_ModalOverlay, :root.t_dark .t_light .t_alt1_accent_SheetOverlay, :root.t_dark .t_light .t_alt1_DialogOverlay, :root.t_dark .t_light .t_alt1_ModalOverlay, :root.t_dark .t_light .t_alt1_SheetOverlay, :root.t_dark .t_light .t_alt2_accent_DialogOverlay, :root.t_dark .t_light .t_alt2_accent_ModalOverlay, :root.t_dark .t_light .t_alt2_accent_SheetOverlay, :root.t_dark .t_light .t_alt2_DialogOverlay, :root.t_dark .t_light .t_alt2_ModalOverlay, :root.t_dark .t_light .t_alt2_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_active_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_active_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_active_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_active_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_active_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_active_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt1_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt1_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt1_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt2_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt2_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt2_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_dim_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_dim_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_dim_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_disabled_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_disabled_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_disabled_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_error_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_error_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_error_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_error_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_error_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_error_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_red_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_red_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_red_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_red_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_red_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_red_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_success_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_success_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_success_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_success_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_success_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_success_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_warning_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_warning_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_warning_SheetOverlay, :root.t_dark .t_light .t_DialogOverlay, :root.t_dark .t_light .t_dim_accent_DialogOverlay, :root.t_dark .t_light .t_dim_accent_ModalOverlay, :root.t_dark .t_light .t_dim_accent_SheetOverlay, :root.t_dark .t_light .t_dim_DialogOverlay, :root.t_dark .t_light .t_dim_ModalOverlay, :root.t_dark .t_light .t_dim_SheetOverlay, :root.t_dark .t_light .t_disabled_accent_DialogOverlay, :root.t_dark .t_light .t_disabled_accent_ModalOverlay, :root.t_dark .t_light .t_disabled_accent_SheetOverlay, :root.t_dark .t_light .t_disabled_DialogOverlay, :root.t_dark .t_light .t_disabled_ModalOverlay, :root.t_dark .t_light .t_disabled_SheetOverlay, :root.t_dark .t_light .t_error_accent_DialogOverlay, :root.t_dark .t_light .t_error_accent_ModalOverlay, :root.t_dark .t_light .t_error_accent_SheetOverlay, :root.t_dark .t_light .t_error_DialogOverlay, :root.t_dark .t_light .t_error_ModalOverlay, :root.t_dark .t_light .t_error_SheetOverlay, :root.t_dark .t_light .t_ModalOverlay, :root.t_dark .t_light .t_red_accent_DialogOverlay, :root.t_dark .t_light .t_red_accent_ModalOverlay, :root.t_dark .t_light .t_red_accent_SheetOverlay, :root.t_dark .t_light .t_red_DialogOverlay, :root.t_dark .t_light .t_red_ModalOverlay, :root.t_dark .t_light .t_red_SheetOverlay, :root.t_dark .t_light .t_SheetOverlay, :root.t_dark .t_light .t_success_accent_DialogOverlay, :root.t_dark .t_light .t_success_accent_ModalOverlay, :root.t_dark .t_light .t_success_accent_SheetOverlay, :root.t_dark .t_light .t_success_DialogOverlay, :root.t_dark .t_light .t_success_ModalOverlay, :root.t_dark .t_light .t_success_SheetOverlay, :root.t_dark .t_light .t_warning_accent_DialogOverlay, :root.t_dark .t_light .t_warning_accent_ModalOverlay, :root.t_dark .t_light .t_warning_accent_SheetOverlay, :root.t_dark .t_light .t_warning_DialogOverlay, :root.t_dark .t_light .t_warning_ModalOverlay, :root.t_dark .t_light .t_warning_SheetOverlay, :root.t_light .t_accent_DialogOverlay, :root.t_light .t_accent_ModalOverlay, :root.t_light .t_accent_SheetOverlay, :root.t_light .t_active_accent_DialogOverlay, :root.t_light .t_active_accent_ModalOverlay, :root.t_light .t_active_accent_SheetOverlay, :root.t_light .t_active_DialogOverlay, :root.t_light .t_active_ModalOverlay, :root.t_light .t_active_SheetOverlay, :root.t_light .t_alt1_accent_DialogOverlay, :root.t_light .t_alt1_accent_ModalOverlay, :root.t_light .t_alt1_accent_SheetOverlay, :root.t_light .t_alt1_DialogOverlay, :root.t_light .t_alt1_ModalOverlay, :root.t_light .t_alt1_SheetOverlay, :root.t_light .t_alt2_accent_DialogOverlay, :root.t_light .t_alt2_accent_ModalOverlay, :root.t_light .t_alt2_accent_SheetOverlay, :root.t_light .t_alt2_DialogOverlay, :root.t_light .t_alt2_ModalOverlay, :root.t_light .t_alt2_SheetOverlay, :root.t_light .t_dark .t_light .t_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_active_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_active_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_active_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_active_DialogOverlay, :root.t_light .t_dark .t_light .t_active_ModalOverlay, :root.t_light .t_dark .t_light .t_active_SheetOverlay, :root.t_light .t_dark .t_light .t_alt1_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_alt1_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_alt1_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_alt1_DialogOverlay, :root.t_light .t_dark .t_light .t_alt1_ModalOverlay, :root.t_light .t_dark .t_light .t_alt1_SheetOverlay, :root.t_light .t_dark .t_light .t_alt2_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_alt2_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_alt2_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_alt2_DialogOverlay, :root.t_light .t_dark .t_light .t_alt2_ModalOverlay, :root.t_light .t_dark .t_light .t_alt2_SheetOverlay, :root.t_light .t_dark .t_light .t_DialogOverlay, :root.t_light .t_dark .t_light .t_dim_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dim_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dim_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dim_DialogOverlay, :root.t_light .t_dark .t_light .t_dim_ModalOverlay, :root.t_light .t_dark .t_light .t_dim_SheetOverlay, :root.t_light .t_dark .t_light .t_disabled_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_disabled_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_disabled_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_disabled_DialogOverlay, :root.t_light .t_dark .t_light .t_disabled_ModalOverlay, :root.t_light .t_dark .t_light .t_disabled_SheetOverlay, :root.t_light .t_dark .t_light .t_error_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_error_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_error_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_error_DialogOverlay, :root.t_light .t_dark .t_light .t_error_ModalOverlay, :root.t_light .t_dark .t_light .t_error_SheetOverlay, :root.t_light .t_dark .t_light .t_ModalOverlay, :root.t_light .t_dark .t_light .t_red_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_red_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_red_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_red_DialogOverlay, :root.t_light .t_dark .t_light .t_red_ModalOverlay, :root.t_light .t_dark .t_light .t_red_SheetOverlay, :root.t_light .t_dark .t_light .t_SheetOverlay, :root.t_light .t_dark .t_light .t_success_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_success_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_success_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_success_DialogOverlay, :root.t_light .t_dark .t_light .t_success_ModalOverlay, :root.t_light .t_dark .t_light .t_success_SheetOverlay, :root.t_light .t_dark .t_light .t_warning_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_warning_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_warning_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_warning_DialogOverlay, :root.t_light .t_dark .t_light .t_warning_ModalOverlay, :root.t_light .t_dark .t_light .t_warning_SheetOverlay, :root.t_light .t_DialogOverlay, :root.t_light .t_dim_accent_DialogOverlay, :root.t_light .t_dim_accent_ModalOverlay, :root.t_light .t_dim_accent_SheetOverlay, :root.t_light .t_dim_DialogOverlay, :root.t_light .t_dim_ModalOverlay, :root.t_light .t_dim_SheetOverlay, :root.t_light .t_disabled_accent_DialogOverlay, :root.t_light .t_disabled_accent_ModalOverlay, :root.t_light .t_disabled_accent_SheetOverlay, :root.t_light .t_disabled_DialogOverlay, :root.t_light .t_disabled_ModalOverlay, :root.t_light .t_disabled_SheetOverlay, :root.t_light .t_error_accent_DialogOverlay, :root.t_light .t_error_accent_ModalOverlay, :root.t_light .t_error_accent_SheetOverlay, :root.t_light .t_error_DialogOverlay, :root.t_light .t_error_ModalOverlay, :root.t_light .t_error_SheetOverlay, :root.t_light .t_ModalOverlay, :root.t_light .t_red_accent_DialogOverlay, :root.t_light .t_red_accent_ModalOverlay, :root.t_light .t_red_accent_SheetOverlay, :root.t_light .t_red_DialogOverlay, :root.t_light .t_red_ModalOverlay, :root.t_light .t_red_SheetOverlay, :root.t_light .t_SheetOverlay, :root.t_light .t_success_accent_DialogOverlay, :root.t_light .t_success_accent_ModalOverlay, :root.t_light .t_success_accent_SheetOverlay, :root.t_light .t_success_DialogOverlay, :root.t_light .t_success_ModalOverlay, :root.t_light .t_success_SheetOverlay, :root.t_light .t_warning_accent_DialogOverlay, :root.t_light .t_warning_accent_ModalOverlay, :root.t_light .t_warning_accent_SheetOverlay, :root.t_light .t_warning_DialogOverlay, :root.t_light .t_warning_ModalOverlay, :root.t_light .t_warning_SheetOverlay {--background:rgba(0,0,0,0.5);} -@media(prefers-color-scheme:light){ - body{background:var(--background);} - .t_accent_DialogOverlay, .t_accent_ModalOverlay, .t_accent_SheetOverlay, .t_active_accent_DialogOverlay, .t_active_accent_ModalOverlay, .t_active_accent_SheetOverlay, .t_active_DialogOverlay, .t_active_ModalOverlay, .t_active_SheetOverlay, .t_alt1_accent_DialogOverlay, .t_alt1_accent_ModalOverlay, .t_alt1_accent_SheetOverlay, .t_alt1_DialogOverlay, .t_alt1_ModalOverlay, .t_alt1_SheetOverlay, .t_alt2_accent_DialogOverlay, .t_alt2_accent_ModalOverlay, .t_alt2_accent_SheetOverlay, .t_alt2_DialogOverlay, .t_alt2_ModalOverlay, .t_alt2_SheetOverlay, .t_dark .t_light .t_accent_DialogOverlay, .t_dark .t_light .t_accent_ModalOverlay, .t_dark .t_light .t_accent_SheetOverlay, .t_dark .t_light .t_active_accent_DialogOverlay, .t_dark .t_light .t_active_accent_ModalOverlay, .t_dark .t_light .t_active_accent_SheetOverlay, .t_dark .t_light .t_active_DialogOverlay, .t_dark .t_light .t_active_ModalOverlay, .t_dark .t_light .t_active_SheetOverlay, .t_dark .t_light .t_alt1_accent_DialogOverlay, .t_dark .t_light .t_alt1_accent_ModalOverlay, .t_dark .t_light .t_alt1_accent_SheetOverlay, .t_dark .t_light .t_alt1_DialogOverlay, .t_dark .t_light .t_alt1_ModalOverlay, .t_dark .t_light .t_alt1_SheetOverlay, .t_dark .t_light .t_alt2_accent_DialogOverlay, .t_dark .t_light .t_alt2_accent_ModalOverlay, .t_dark .t_light .t_alt2_accent_SheetOverlay, .t_dark .t_light .t_alt2_DialogOverlay, .t_dark .t_light .t_alt2_ModalOverlay, .t_dark .t_light .t_alt2_SheetOverlay, .t_dark .t_light .t_DialogOverlay, .t_dark .t_light .t_dim_accent_DialogOverlay, .t_dark .t_light .t_dim_accent_ModalOverlay, .t_dark .t_light .t_dim_accent_SheetOverlay, .t_dark .t_light .t_dim_DialogOverlay, .t_dark .t_light .t_dim_ModalOverlay, .t_dark .t_light .t_dim_SheetOverlay, .t_dark .t_light .t_disabled_accent_DialogOverlay, .t_dark .t_light .t_disabled_accent_ModalOverlay, .t_dark .t_light .t_disabled_accent_SheetOverlay, .t_dark .t_light .t_disabled_DialogOverlay, .t_dark .t_light .t_disabled_ModalOverlay, .t_dark .t_light .t_disabled_SheetOverlay, .t_dark .t_light .t_error_accent_DialogOverlay, .t_dark .t_light .t_error_accent_ModalOverlay, .t_dark .t_light .t_error_accent_SheetOverlay, .t_dark .t_light .t_error_DialogOverlay, .t_dark .t_light .t_error_ModalOverlay, .t_dark .t_light .t_error_SheetOverlay, .t_dark .t_light .t_ModalOverlay, .t_dark .t_light .t_red_accent_DialogOverlay, .t_dark .t_light .t_red_accent_ModalOverlay, .t_dark .t_light .t_red_accent_SheetOverlay, .t_dark .t_light .t_red_DialogOverlay, .t_dark .t_light .t_red_ModalOverlay, .t_dark .t_light .t_red_SheetOverlay, .t_dark .t_light .t_SheetOverlay, .t_dark .t_light .t_success_accent_DialogOverlay, .t_dark .t_light .t_success_accent_ModalOverlay, .t_dark .t_light .t_success_accent_SheetOverlay, .t_dark .t_light .t_success_DialogOverlay, .t_dark .t_light .t_success_ModalOverlay, .t_dark .t_light .t_success_SheetOverlay, .t_dark .t_light .t_warning_accent_DialogOverlay, .t_dark .t_light .t_warning_accent_ModalOverlay, .t_dark .t_light .t_warning_accent_SheetOverlay, .t_dark .t_light .t_warning_DialogOverlay, .t_dark .t_light .t_warning_ModalOverlay, .t_dark .t_light .t_warning_SheetOverlay, .t_DialogOverlay, .t_dim_accent_DialogOverlay, .t_dim_accent_ModalOverlay, .t_dim_accent_SheetOverlay, .t_dim_DialogOverlay, .t_dim_ModalOverlay, .t_dim_SheetOverlay, .t_disabled_accent_DialogOverlay, .t_disabled_accent_ModalOverlay, .t_disabled_accent_SheetOverlay, .t_disabled_DialogOverlay, .t_disabled_ModalOverlay, .t_disabled_SheetOverlay, .t_error_accent_DialogOverlay, .t_error_accent_ModalOverlay, .t_error_accent_SheetOverlay, .t_error_DialogOverlay, .t_error_ModalOverlay, .t_error_SheetOverlay, .t_ModalOverlay, .t_red_accent_DialogOverlay, .t_red_accent_ModalOverlay, .t_red_accent_SheetOverlay, .t_red_DialogOverlay, .t_red_ModalOverlay, .t_red_SheetOverlay, .t_SheetOverlay, .t_success_accent_DialogOverlay, .t_success_accent_ModalOverlay, .t_success_accent_SheetOverlay, .t_success_DialogOverlay, .t_success_ModalOverlay, .t_success_SheetOverlay, .t_warning_accent_DialogOverlay, .t_warning_accent_ModalOverlay, .t_warning_accent_SheetOverlay, .t_warning_DialogOverlay, .t_warning_ModalOverlay, .t_warning_SheetOverlay {--background:rgba(0,0,0,0.5);} - } -:root.t_dark .t_light .t_dark .t_light .t_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_Tooltip, :root.t_dark .t_light .t_ProgressIndicator, :root.t_dark .t_light .t_SliderThumb, :root.t_dark .t_light .t_SwitchThumb, :root.t_dark .t_light .t_Tooltip, :root.t_light .t_dark .t_light .t_ProgressIndicator, :root.t_light .t_dark .t_light .t_SliderThumb, :root.t_light .t_dark .t_light .t_SwitchThumb, :root.t_light .t_dark .t_light .t_Tooltip, :root.t_light .t_ProgressIndicator, :root.t_light .t_SliderThumb, :root.t_light .t_SwitchThumb, :root.t_light .t_Tooltip {--accentBackground:hsla(180, 20%, 99%, 0);--accentColor:hsla(180, 20%, 99%, 0);--background0:hsla(0, 0%, 0%, 0.25);--background025:hsla(0, 0%, 0%, 0.5);--background05:hsla(0, 0%, 0%, 0.75);--background075:hsla(112, 22%, 0%, 1);--color0:hsla(191, 32%, 99%, 1);--color025:hsla(180, 20%, 99%, 0.75);--color05:hsla(180, 20%, 99%, 0.5);--color075:hsla(180, 20%, 99%, 0.25);--background:hsla(112, 22%, 0%, 1);--backgroundHover:hsla(96, 16%, 25%, 1);--backgroundPress:hsla(191, 32%, 50%, 1);--backgroundFocus:hsla(191, 32%, 55%, 1);--color:hsla(191, 32%, 93%, 1);--colorHover:hsla(191, 32%, 88%, 1);--colorPress:hsla(191, 32%, 93%, 1);--colorFocus:hsla(191, 32%, 88%, 1);--placeholderColor:hsla(191, 32%, 88%, 1);--borderColor:hsla(191, 32%, 55%, 1);--borderColorHover:hsla(191, 32%, 61%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 61%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_ProgressIndicator, .t_dark .t_light .t_SliderThumb, .t_dark .t_light .t_SwitchThumb, .t_dark .t_light .t_Tooltip, .t_ProgressIndicator, .t_SliderThumb, .t_SwitchThumb, .t_Tooltip {--accentBackground:hsla(180, 20%, 99%, 0);--accentColor:hsla(180, 20%, 99%, 0);--background0:hsla(0, 0%, 0%, 0.25);--background025:hsla(0, 0%, 0%, 0.5);--background05:hsla(0, 0%, 0%, 0.75);--background075:hsla(112, 22%, 0%, 1);--color0:hsla(191, 32%, 99%, 1);--color025:hsla(180, 20%, 99%, 0.75);--color05:hsla(180, 20%, 99%, 0.5);--color075:hsla(180, 20%, 99%, 0.25);--background:hsla(112, 22%, 0%, 1);--backgroundHover:hsla(96, 16%, 25%, 1);--backgroundPress:hsla(191, 32%, 50%, 1);--backgroundFocus:hsla(191, 32%, 55%, 1);--color:hsla(191, 32%, 93%, 1);--colorHover:hsla(191, 32%, 88%, 1);--colorPress:hsla(191, 32%, 93%, 1);--colorFocus:hsla(191, 32%, 88%, 1);--placeholderColor:hsla(191, 32%, 88%, 1);--borderColor:hsla(191, 32%, 55%, 1);--borderColorHover:hsla(191, 32%, 61%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 61%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_SliderTrackActive, :root.t_dark .t_light .t_SliderTrackActive, :root.t_light .t_dark .t_light .t_SliderTrackActive, :root.t_light .t_SliderTrackActive {--accentBackground:hsla(180, 20%, 99%, 0);--accentColor:hsla(180, 20%, 99%, 0);--background0:hsla(0, 0%, 0%, 0.75);--background025:hsla(112, 22%, 0%, 1);--background05:hsla(96, 16%, 25%, 1);--background075:hsla(191, 32%, 50%, 1);--color0:hsla(191, 32%, 88%, 1);--color025:hsla(191, 32%, 93%, 1);--color05:hsla(191, 32%, 99%, 1);--color075:hsla(180, 20%, 99%, 0.75);--background:hsla(191, 32%, 50%, 1);--backgroundHover:hsla(191, 32%, 55%, 1);--backgroundPress:hsla(191, 32%, 61%, 1);--backgroundFocus:hsla(191, 32%, 66%, 1);--color:hsla(191, 32%, 93%, 1);--colorHover:hsla(191, 32%, 88%, 1);--colorPress:hsla(191, 32%, 93%, 1);--colorFocus:hsla(191, 32%, 88%, 1);--placeholderColor:hsla(191, 32%, 77%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 77%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_SliderTrackActive, .t_SliderTrackActive {--accentBackground:hsla(180, 20%, 99%, 0);--accentColor:hsla(180, 20%, 99%, 0);--background0:hsla(0, 0%, 0%, 0.75);--background025:hsla(112, 22%, 0%, 1);--background05:hsla(96, 16%, 25%, 1);--background075:hsla(191, 32%, 50%, 1);--color0:hsla(191, 32%, 88%, 1);--color025:hsla(191, 32%, 93%, 1);--color05:hsla(191, 32%, 99%, 1);--color075:hsla(180, 20%, 99%, 0.75);--background:hsla(191, 32%, 50%, 1);--backgroundHover:hsla(191, 32%, 55%, 1);--backgroundPress:hsla(191, 32%, 61%, 1);--backgroundFocus:hsla(191, 32%, 66%, 1);--color:hsla(191, 32%, 93%, 1);--colorHover:hsla(191, 32%, 88%, 1);--colorPress:hsla(191, 32%, 93%, 1);--colorFocus:hsla(191, 32%, 88%, 1);--placeholderColor:hsla(191, 32%, 77%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 77%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} - } -:root.t_dark .t_light .t_accent, :root.t_dark .t_light .t_active_accent, :root.t_dark .t_light .t_alt1_accent, :root.t_dark .t_light .t_alt2_accent, :root.t_dark .t_light .t_dark .t_light .t_accent, :root.t_dark .t_light .t_dark .t_light .t_active_accent, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent, :root.t_dark .t_light .t_dark .t_light .t_dim_accent, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent, :root.t_dark .t_light .t_dark .t_light .t_error_accent, :root.t_dark .t_light .t_dark .t_light .t_red_accent, :root.t_dark .t_light .t_dark .t_light .t_success_accent, :root.t_dark .t_light .t_dark .t_light .t_warning_accent, :root.t_dark .t_light .t_dim_accent, :root.t_dark .t_light .t_disabled_accent, :root.t_dark .t_light .t_error_accent, :root.t_dark .t_light .t_red_accent, :root.t_dark .t_light .t_success_accent, :root.t_dark .t_light .t_warning_accent, :root.t_light .t_accent, :root.t_light .t_active_accent, :root.t_light .t_alt1_accent, :root.t_light .t_alt2_accent, :root.t_light .t_dark .t_light .t_accent, :root.t_light .t_dark .t_light .t_active_accent, :root.t_light .t_dark .t_light .t_alt1_accent, :root.t_light .t_dark .t_light .t_alt2_accent, :root.t_light .t_dark .t_light .t_dim_accent, :root.t_light .t_dark .t_light .t_disabled_accent, :root.t_light .t_dark .t_light .t_error_accent, :root.t_light .t_dark .t_light .t_red_accent, :root.t_light .t_dark .t_light .t_success_accent, :root.t_light .t_dark .t_light .t_warning_accent, :root.t_light .t_dim_accent, :root.t_light .t_disabled_accent, :root.t_light .t_error_accent, :root.t_light .t_red_accent, :root.t_light .t_success_accent, :root.t_light .t_warning_accent {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-231);--backgroundHover:var(--color-232);--backgroundPress:var(--color-233);--backgroundFocus:var(--color-234);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-234);--borderColorHover:var(--color-235);--borderColorFocus:var(--color-236);--borderColorPress:var(--color-235);--color1:var(--color-231);--color2:var(--color-232);--color3:var(--color-233);--color4:var(--color-234);--color5:var(--color-235);--color6:var(--color-236);--color7:var(--color-237);--color8:var(--color-238);--color9:var(--color-239);--color10:var(--color-240);--color11:hsla(191, 32%, 10%, 1);--color12:hsla(191, 32%, 10%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_accent, .t_active_accent, .t_alt1_accent, .t_alt2_accent, .t_dark .t_light .t_accent, .t_dark .t_light .t_active_accent, .t_dark .t_light .t_alt1_accent, .t_dark .t_light .t_alt2_accent, .t_dark .t_light .t_dim_accent, .t_dark .t_light .t_disabled_accent, .t_dark .t_light .t_error_accent, .t_dark .t_light .t_red_accent, .t_dark .t_light .t_success_accent, .t_dark .t_light .t_warning_accent, .t_dim_accent, .t_disabled_accent, .t_error_accent, .t_red_accent, .t_success_accent, .t_warning_accent {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-231);--backgroundHover:var(--color-232);--backgroundPress:var(--color-233);--backgroundFocus:var(--color-234);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-234);--borderColorHover:var(--color-235);--borderColorFocus:var(--color-236);--borderColorPress:var(--color-235);--color1:var(--color-231);--color2:var(--color-232);--color3:var(--color-233);--color4:var(--color-234);--color5:var(--color-235);--color6:var(--color-236);--color7:var(--color-237);--color8:var(--color-238);--color9:var(--color-239);--color10:var(--color-240);--color11:hsla(191, 32%, 10%, 1);--color12:hsla(191, 32%, 10%, 1);} - } -:root.t_dark .t_light .t_accent_Button, :root.t_dark .t_light .t_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_accent_Switch, :root.t_light .t_accent_Button, :root.t_light .t_accent_Switch, :root.t_light .t_dark .t_light .t_accent_Button, :root.t_light .t_dark .t_light .t_accent_Switch {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-234);--backgroundHover:var(--color-235);--backgroundPress:var(--color-236);--backgroundFocus:var(--color-237);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-237);--borderColorHover:var(--color-238);--borderColorFocus:var(--color-239);--borderColorPress:var(--color-238);--color1:var(--color-231);--color2:var(--color-232);--color3:var(--color-233);--color4:var(--color-234);--color5:var(--color-235);--color6:var(--color-236);--color7:var(--color-237);--color8:var(--color-238);--color9:var(--color-239);--color10:var(--color-240);--color11:hsla(191, 32%, 10%, 1);--color12:hsla(191, 32%, 10%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_accent_Button, .t_accent_Switch, .t_dark .t_light .t_accent_Button, .t_dark .t_light .t_accent_Switch {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-234);--backgroundHover:var(--color-235);--backgroundPress:var(--color-236);--backgroundFocus:var(--color-237);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-237);--borderColorHover:var(--color-238);--borderColorFocus:var(--color-239);--borderColorPress:var(--color-238);--color1:var(--color-231);--color2:var(--color-232);--color3:var(--color-233);--color4:var(--color-234);--color5:var(--color-235);--color6:var(--color-236);--color7:var(--color-237);--color8:var(--color-238);--color9:var(--color-239);--color10:var(--color-240);--color11:hsla(191, 32%, 10%, 1);--color12:hsla(191, 32%, 10%, 1);} - } -:root.t_dark .t_light .t_accent_Card, :root.t_dark .t_light .t_accent_DrawerFrame, :root.t_dark .t_light .t_accent_Progress, :root.t_dark .t_light .t_accent_TooltipArrow, :root.t_dark .t_light .t_active_accent_Card, :root.t_dark .t_light .t_active_accent_DrawerFrame, :root.t_dark .t_light .t_active_accent_Progress, :root.t_dark .t_light .t_active_accent_TooltipArrow, :root.t_dark .t_light .t_alt1_accent_Card, :root.t_dark .t_light .t_alt1_accent_DrawerFrame, :root.t_dark .t_light .t_alt1_accent_Progress, :root.t_dark .t_light .t_alt1_accent_TooltipArrow, :root.t_dark .t_light .t_alt2_accent_Card, :root.t_dark .t_light .t_alt2_accent_DrawerFrame, :root.t_dark .t_light .t_alt2_accent_Progress, :root.t_dark .t_light .t_alt2_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_active_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_active_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_active_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_active_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_error_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_error_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_error_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_error_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_red_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_red_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_red_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_red_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_success_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_success_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_success_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_success_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_TooltipArrow, :root.t_dark .t_light .t_dim_accent_Card, :root.t_dark .t_light .t_dim_accent_DrawerFrame, :root.t_dark .t_light .t_dim_accent_Progress, :root.t_dark .t_light .t_dim_accent_TooltipArrow, :root.t_dark .t_light .t_disabled_accent_Card, :root.t_dark .t_light .t_disabled_accent_DrawerFrame, :root.t_dark .t_light .t_disabled_accent_Progress, :root.t_dark .t_light .t_disabled_accent_TooltipArrow, :root.t_dark .t_light .t_error_accent_Card, :root.t_dark .t_light .t_error_accent_DrawerFrame, :root.t_dark .t_light .t_error_accent_Progress, :root.t_dark .t_light .t_error_accent_TooltipArrow, :root.t_dark .t_light .t_red_accent_Card, :root.t_dark .t_light .t_red_accent_DrawerFrame, :root.t_dark .t_light .t_red_accent_Progress, :root.t_dark .t_light .t_red_accent_TooltipArrow, :root.t_dark .t_light .t_success_accent_Card, :root.t_dark .t_light .t_success_accent_DrawerFrame, :root.t_dark .t_light .t_success_accent_Progress, :root.t_dark .t_light .t_success_accent_TooltipArrow, :root.t_dark .t_light .t_warning_accent_Card, :root.t_dark .t_light .t_warning_accent_DrawerFrame, :root.t_dark .t_light .t_warning_accent_Progress, :root.t_dark .t_light .t_warning_accent_TooltipArrow, :root.t_light .t_accent_Card, :root.t_light .t_accent_DrawerFrame, :root.t_light .t_accent_Progress, :root.t_light .t_accent_TooltipArrow, :root.t_light .t_active_accent_Card, :root.t_light .t_active_accent_DrawerFrame, :root.t_light .t_active_accent_Progress, :root.t_light .t_active_accent_TooltipArrow, :root.t_light .t_alt1_accent_Card, :root.t_light .t_alt1_accent_DrawerFrame, :root.t_light .t_alt1_accent_Progress, :root.t_light .t_alt1_accent_TooltipArrow, :root.t_light .t_alt2_accent_Card, :root.t_light .t_alt2_accent_DrawerFrame, :root.t_light .t_alt2_accent_Progress, :root.t_light .t_alt2_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_accent_Card, :root.t_light .t_dark .t_light .t_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_accent_Progress, :root.t_light .t_dark .t_light .t_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_active_accent_Card, :root.t_light .t_dark .t_light .t_active_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_active_accent_Progress, :root.t_light .t_dark .t_light .t_active_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_alt1_accent_Card, :root.t_light .t_dark .t_light .t_alt1_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_alt1_accent_Progress, :root.t_light .t_dark .t_light .t_alt1_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_alt2_accent_Card, :root.t_light .t_dark .t_light .t_alt2_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_alt2_accent_Progress, :root.t_light .t_dark .t_light .t_alt2_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dim_accent_Card, :root.t_light .t_dark .t_light .t_dim_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dim_accent_Progress, :root.t_light .t_dark .t_light .t_dim_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_disabled_accent_Card, :root.t_light .t_dark .t_light .t_disabled_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_disabled_accent_Progress, :root.t_light .t_dark .t_light .t_disabled_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_error_accent_Card, :root.t_light .t_dark .t_light .t_error_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_error_accent_Progress, :root.t_light .t_dark .t_light .t_error_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_red_accent_Card, :root.t_light .t_dark .t_light .t_red_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_red_accent_Progress, :root.t_light .t_dark .t_light .t_red_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_success_accent_Card, :root.t_light .t_dark .t_light .t_success_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_success_accent_Progress, :root.t_light .t_dark .t_light .t_success_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_warning_accent_Card, :root.t_light .t_dark .t_light .t_warning_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_warning_accent_Progress, :root.t_light .t_dark .t_light .t_warning_accent_TooltipArrow, :root.t_light .t_dim_accent_Card, :root.t_light .t_dim_accent_DrawerFrame, :root.t_light .t_dim_accent_Progress, :root.t_light .t_dim_accent_TooltipArrow, :root.t_light .t_disabled_accent_Card, :root.t_light .t_disabled_accent_DrawerFrame, :root.t_light .t_disabled_accent_Progress, :root.t_light .t_disabled_accent_TooltipArrow, :root.t_light .t_error_accent_Card, :root.t_light .t_error_accent_DrawerFrame, :root.t_light .t_error_accent_Progress, :root.t_light .t_error_accent_TooltipArrow, :root.t_light .t_red_accent_Card, :root.t_light .t_red_accent_DrawerFrame, :root.t_light .t_red_accent_Progress, :root.t_light .t_red_accent_TooltipArrow, :root.t_light .t_success_accent_Card, :root.t_light .t_success_accent_DrawerFrame, :root.t_light .t_success_accent_Progress, :root.t_light .t_success_accent_TooltipArrow, :root.t_light .t_warning_accent_Card, :root.t_light .t_warning_accent_DrawerFrame, :root.t_light .t_warning_accent_Progress, :root.t_light .t_warning_accent_TooltipArrow {--background0:var(--color-229);--background025:var(--color-230);--background05:var(--color-231);--background075:var(--color-232);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 33%, 10%, 0.75);--color075:hsla(191, 33%, 10%, 0.5);--background:var(--color-232);--backgroundHover:var(--color-233);--backgroundPress:var(--color-234);--backgroundFocus:var(--color-235);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-239);--borderColor:var(--color-235);--borderColorHover:var(--color-236);--borderColorFocus:var(--color-237);--borderColorPress:var(--color-236);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_accent_Card, .t_accent_DrawerFrame, .t_accent_Progress, .t_accent_TooltipArrow, .t_active_accent_Card, .t_active_accent_DrawerFrame, .t_active_accent_Progress, .t_active_accent_TooltipArrow, .t_alt1_accent_Card, .t_alt1_accent_DrawerFrame, .t_alt1_accent_Progress, .t_alt1_accent_TooltipArrow, .t_alt2_accent_Card, .t_alt2_accent_DrawerFrame, .t_alt2_accent_Progress, .t_alt2_accent_TooltipArrow, .t_dark .t_light .t_accent_Card, .t_dark .t_light .t_accent_DrawerFrame, .t_dark .t_light .t_accent_Progress, .t_dark .t_light .t_accent_TooltipArrow, .t_dark .t_light .t_active_accent_Card, .t_dark .t_light .t_active_accent_DrawerFrame, .t_dark .t_light .t_active_accent_Progress, .t_dark .t_light .t_active_accent_TooltipArrow, .t_dark .t_light .t_alt1_accent_Card, .t_dark .t_light .t_alt1_accent_DrawerFrame, .t_dark .t_light .t_alt1_accent_Progress, .t_dark .t_light .t_alt1_accent_TooltipArrow, .t_dark .t_light .t_alt2_accent_Card, .t_dark .t_light .t_alt2_accent_DrawerFrame, .t_dark .t_light .t_alt2_accent_Progress, .t_dark .t_light .t_alt2_accent_TooltipArrow, .t_dark .t_light .t_dim_accent_Card, .t_dark .t_light .t_dim_accent_DrawerFrame, .t_dark .t_light .t_dim_accent_Progress, .t_dark .t_light .t_dim_accent_TooltipArrow, .t_dark .t_light .t_disabled_accent_Card, .t_dark .t_light .t_disabled_accent_DrawerFrame, .t_dark .t_light .t_disabled_accent_Progress, .t_dark .t_light .t_disabled_accent_TooltipArrow, .t_dark .t_light .t_error_accent_Card, .t_dark .t_light .t_error_accent_DrawerFrame, .t_dark .t_light .t_error_accent_Progress, .t_dark .t_light .t_error_accent_TooltipArrow, .t_dark .t_light .t_red_accent_Card, .t_dark .t_light .t_red_accent_DrawerFrame, .t_dark .t_light .t_red_accent_Progress, .t_dark .t_light .t_red_accent_TooltipArrow, .t_dark .t_light .t_success_accent_Card, .t_dark .t_light .t_success_accent_DrawerFrame, .t_dark .t_light .t_success_accent_Progress, .t_dark .t_light .t_success_accent_TooltipArrow, .t_dark .t_light .t_warning_accent_Card, .t_dark .t_light .t_warning_accent_DrawerFrame, .t_dark .t_light .t_warning_accent_Progress, .t_dark .t_light .t_warning_accent_TooltipArrow, .t_dim_accent_Card, .t_dim_accent_DrawerFrame, .t_dim_accent_Progress, .t_dim_accent_TooltipArrow, .t_disabled_accent_Card, .t_disabled_accent_DrawerFrame, .t_disabled_accent_Progress, .t_disabled_accent_TooltipArrow, .t_error_accent_Card, .t_error_accent_DrawerFrame, .t_error_accent_Progress, .t_error_accent_TooltipArrow, .t_red_accent_Card, .t_red_accent_DrawerFrame, .t_red_accent_Progress, .t_red_accent_TooltipArrow, .t_success_accent_Card, .t_success_accent_DrawerFrame, .t_success_accent_Progress, .t_success_accent_TooltipArrow, .t_warning_accent_Card, .t_warning_accent_DrawerFrame, .t_warning_accent_Progress, .t_warning_accent_TooltipArrow {--background0:var(--color-229);--background025:var(--color-230);--background05:var(--color-231);--background075:var(--color-232);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 33%, 10%, 0.75);--color075:hsla(191, 33%, 10%, 0.5);--background:var(--color-232);--backgroundHover:var(--color-233);--backgroundPress:var(--color-234);--backgroundFocus:var(--color-235);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-239);--borderColor:var(--color-235);--borderColorHover:var(--color-236);--borderColorFocus:var(--color-237);--borderColorPress:var(--color-236);} - } -:root.t_dark .t_light .t_accent_Checkbox, :root.t_dark .t_light .t_accent_Input, :root.t_dark .t_light .t_accent_RadioGroupItem, :root.t_dark .t_light .t_accent_TextArea, :root.t_dark .t_light .t_active_accent_Checkbox, :root.t_dark .t_light .t_active_accent_Input, :root.t_dark .t_light .t_active_accent_RadioGroupItem, :root.t_dark .t_light .t_active_accent_TextArea, :root.t_dark .t_light .t_alt1_accent_Checkbox, :root.t_dark .t_light .t_alt1_accent_Input, :root.t_dark .t_light .t_alt1_accent_RadioGroupItem, :root.t_dark .t_light .t_alt1_accent_TextArea, :root.t_dark .t_light .t_alt2_accent_Checkbox, :root.t_dark .t_light .t_alt2_accent_Input, :root.t_dark .t_light .t_alt2_accent_RadioGroupItem, :root.t_dark .t_light .t_alt2_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_active_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_active_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_active_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_active_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_error_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_error_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_error_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_error_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_red_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_red_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_red_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_red_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_success_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_success_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_success_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_success_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_TextArea, :root.t_dark .t_light .t_dim_accent_Checkbox, :root.t_dark .t_light .t_dim_accent_Input, :root.t_dark .t_light .t_dim_accent_RadioGroupItem, :root.t_dark .t_light .t_dim_accent_TextArea, :root.t_dark .t_light .t_disabled_accent_Checkbox, :root.t_dark .t_light .t_disabled_accent_Input, :root.t_dark .t_light .t_disabled_accent_RadioGroupItem, :root.t_dark .t_light .t_disabled_accent_TextArea, :root.t_dark .t_light .t_error_accent_Checkbox, :root.t_dark .t_light .t_error_accent_Input, :root.t_dark .t_light .t_error_accent_RadioGroupItem, :root.t_dark .t_light .t_error_accent_TextArea, :root.t_dark .t_light .t_red_accent_Checkbox, :root.t_dark .t_light .t_red_accent_Input, :root.t_dark .t_light .t_red_accent_RadioGroupItem, :root.t_dark .t_light .t_red_accent_TextArea, :root.t_dark .t_light .t_success_accent_Checkbox, :root.t_dark .t_light .t_success_accent_Input, :root.t_dark .t_light .t_success_accent_RadioGroupItem, :root.t_dark .t_light .t_success_accent_TextArea, :root.t_dark .t_light .t_warning_accent_Checkbox, :root.t_dark .t_light .t_warning_accent_Input, :root.t_dark .t_light .t_warning_accent_RadioGroupItem, :root.t_dark .t_light .t_warning_accent_TextArea, :root.t_light .t_accent_Checkbox, :root.t_light .t_accent_Input, :root.t_light .t_accent_RadioGroupItem, :root.t_light .t_accent_TextArea, :root.t_light .t_active_accent_Checkbox, :root.t_light .t_active_accent_Input, :root.t_light .t_active_accent_RadioGroupItem, :root.t_light .t_active_accent_TextArea, :root.t_light .t_alt1_accent_Checkbox, :root.t_light .t_alt1_accent_Input, :root.t_light .t_alt1_accent_RadioGroupItem, :root.t_light .t_alt1_accent_TextArea, :root.t_light .t_alt2_accent_Checkbox, :root.t_light .t_alt2_accent_Input, :root.t_light .t_alt2_accent_RadioGroupItem, :root.t_light .t_alt2_accent_TextArea, :root.t_light .t_dark .t_light .t_accent_Checkbox, :root.t_light .t_dark .t_light .t_accent_Input, :root.t_light .t_dark .t_light .t_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_accent_TextArea, :root.t_light .t_dark .t_light .t_active_accent_Checkbox, :root.t_light .t_dark .t_light .t_active_accent_Input, :root.t_light .t_dark .t_light .t_active_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_active_accent_TextArea, :root.t_light .t_dark .t_light .t_alt1_accent_Checkbox, :root.t_light .t_dark .t_light .t_alt1_accent_Input, :root.t_light .t_dark .t_light .t_alt1_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_alt1_accent_TextArea, :root.t_light .t_dark .t_light .t_alt2_accent_Checkbox, :root.t_light .t_dark .t_light .t_alt2_accent_Input, :root.t_light .t_dark .t_light .t_alt2_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_alt2_accent_TextArea, :root.t_light .t_dark .t_light .t_dim_accent_Checkbox, :root.t_light .t_dark .t_light .t_dim_accent_Input, :root.t_light .t_dark .t_light .t_dim_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dim_accent_TextArea, :root.t_light .t_dark .t_light .t_disabled_accent_Checkbox, :root.t_light .t_dark .t_light .t_disabled_accent_Input, :root.t_light .t_dark .t_light .t_disabled_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_disabled_accent_TextArea, :root.t_light .t_dark .t_light .t_error_accent_Checkbox, :root.t_light .t_dark .t_light .t_error_accent_Input, :root.t_light .t_dark .t_light .t_error_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_error_accent_TextArea, :root.t_light .t_dark .t_light .t_red_accent_Checkbox, :root.t_light .t_dark .t_light .t_red_accent_Input, :root.t_light .t_dark .t_light .t_red_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_red_accent_TextArea, :root.t_light .t_dark .t_light .t_success_accent_Checkbox, :root.t_light .t_dark .t_light .t_success_accent_Input, :root.t_light .t_dark .t_light .t_success_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_success_accent_TextArea, :root.t_light .t_dark .t_light .t_warning_accent_Checkbox, :root.t_light .t_dark .t_light .t_warning_accent_Input, :root.t_light .t_dark .t_light .t_warning_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_warning_accent_TextArea, :root.t_light .t_dim_accent_Checkbox, :root.t_light .t_dim_accent_Input, :root.t_light .t_dim_accent_RadioGroupItem, :root.t_light .t_dim_accent_TextArea, :root.t_light .t_disabled_accent_Checkbox, :root.t_light .t_disabled_accent_Input, :root.t_light .t_disabled_accent_RadioGroupItem, :root.t_light .t_disabled_accent_TextArea, :root.t_light .t_error_accent_Checkbox, :root.t_light .t_error_accent_Input, :root.t_light .t_error_accent_RadioGroupItem, :root.t_light .t_error_accent_TextArea, :root.t_light .t_red_accent_Checkbox, :root.t_light .t_red_accent_Input, :root.t_light .t_red_accent_RadioGroupItem, :root.t_light .t_red_accent_TextArea, :root.t_light .t_success_accent_Checkbox, :root.t_light .t_success_accent_Input, :root.t_light .t_success_accent_RadioGroupItem, :root.t_light .t_success_accent_TextArea, :root.t_light .t_warning_accent_Checkbox, :root.t_light .t_warning_accent_Input, :root.t_light .t_warning_accent_RadioGroupItem, :root.t_light .t_warning_accent_TextArea {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-231);--backgroundHover:var(--color-232);--backgroundPress:var(--color-233);--backgroundFocus:var(--color-234);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-236);--borderColorHover:var(--color-237);--borderColorFocus:var(--color-238);--borderColorPress:var(--color-237);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_accent_Checkbox, .t_accent_Input, .t_accent_RadioGroupItem, .t_accent_TextArea, .t_active_accent_Checkbox, .t_active_accent_Input, .t_active_accent_RadioGroupItem, .t_active_accent_TextArea, .t_alt1_accent_Checkbox, .t_alt1_accent_Input, .t_alt1_accent_RadioGroupItem, .t_alt1_accent_TextArea, .t_alt2_accent_Checkbox, .t_alt2_accent_Input, .t_alt2_accent_RadioGroupItem, .t_alt2_accent_TextArea, .t_dark .t_light .t_accent_Checkbox, .t_dark .t_light .t_accent_Input, .t_dark .t_light .t_accent_RadioGroupItem, .t_dark .t_light .t_accent_TextArea, .t_dark .t_light .t_active_accent_Checkbox, .t_dark .t_light .t_active_accent_Input, .t_dark .t_light .t_active_accent_RadioGroupItem, .t_dark .t_light .t_active_accent_TextArea, .t_dark .t_light .t_alt1_accent_Checkbox, .t_dark .t_light .t_alt1_accent_Input, .t_dark .t_light .t_alt1_accent_RadioGroupItem, .t_dark .t_light .t_alt1_accent_TextArea, .t_dark .t_light .t_alt2_accent_Checkbox, .t_dark .t_light .t_alt2_accent_Input, .t_dark .t_light .t_alt2_accent_RadioGroupItem, .t_dark .t_light .t_alt2_accent_TextArea, .t_dark .t_light .t_dim_accent_Checkbox, .t_dark .t_light .t_dim_accent_Input, .t_dark .t_light .t_dim_accent_RadioGroupItem, .t_dark .t_light .t_dim_accent_TextArea, .t_dark .t_light .t_disabled_accent_Checkbox, .t_dark .t_light .t_disabled_accent_Input, .t_dark .t_light .t_disabled_accent_RadioGroupItem, .t_dark .t_light .t_disabled_accent_TextArea, .t_dark .t_light .t_error_accent_Checkbox, .t_dark .t_light .t_error_accent_Input, .t_dark .t_light .t_error_accent_RadioGroupItem, .t_dark .t_light .t_error_accent_TextArea, .t_dark .t_light .t_red_accent_Checkbox, .t_dark .t_light .t_red_accent_Input, .t_dark .t_light .t_red_accent_RadioGroupItem, .t_dark .t_light .t_red_accent_TextArea, .t_dark .t_light .t_success_accent_Checkbox, .t_dark .t_light .t_success_accent_Input, .t_dark .t_light .t_success_accent_RadioGroupItem, .t_dark .t_light .t_success_accent_TextArea, .t_dark .t_light .t_warning_accent_Checkbox, .t_dark .t_light .t_warning_accent_Input, .t_dark .t_light .t_warning_accent_RadioGroupItem, .t_dark .t_light .t_warning_accent_TextArea, .t_dim_accent_Checkbox, .t_dim_accent_Input, .t_dim_accent_RadioGroupItem, .t_dim_accent_TextArea, .t_disabled_accent_Checkbox, .t_disabled_accent_Input, .t_disabled_accent_RadioGroupItem, .t_disabled_accent_TextArea, .t_error_accent_Checkbox, .t_error_accent_Input, .t_error_accent_RadioGroupItem, .t_error_accent_TextArea, .t_red_accent_Checkbox, .t_red_accent_Input, .t_red_accent_RadioGroupItem, .t_red_accent_TextArea, .t_success_accent_Checkbox, .t_success_accent_Input, .t_success_accent_RadioGroupItem, .t_success_accent_TextArea, .t_warning_accent_Checkbox, .t_warning_accent_Input, .t_warning_accent_RadioGroupItem, .t_warning_accent_TextArea {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-231);--backgroundHover:var(--color-232);--backgroundPress:var(--color-233);--backgroundFocus:var(--color-234);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-236);--borderColorHover:var(--color-237);--borderColorFocus:var(--color-238);--borderColorPress:var(--color-237);} - } -:root.t_dark .t_light .t_accent_ProgressIndicator, :root.t_dark .t_light .t_accent_SliderThumb, :root.t_dark .t_light .t_accent_SwitchThumb, :root.t_dark .t_light .t_accent_Tooltip, :root.t_dark .t_light .t_active_accent_ProgressIndicator, :root.t_dark .t_light .t_active_accent_SliderThumb, :root.t_dark .t_light .t_active_accent_SwitchThumb, :root.t_dark .t_light .t_active_accent_Tooltip, :root.t_dark .t_light .t_alt1_accent_ProgressIndicator, :root.t_dark .t_light .t_alt1_accent_SliderThumb, :root.t_dark .t_light .t_alt1_accent_SwitchThumb, :root.t_dark .t_light .t_alt1_accent_Tooltip, :root.t_dark .t_light .t_alt2_accent_ProgressIndicator, :root.t_dark .t_light .t_alt2_accent_SliderThumb, :root.t_dark .t_light .t_alt2_accent_SwitchThumb, :root.t_dark .t_light .t_alt2_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_active_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_active_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_active_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_active_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_error_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_error_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_error_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_error_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_red_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_red_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_red_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_red_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_success_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_success_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_success_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_success_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_Tooltip, :root.t_dark .t_light .t_dim_accent_ProgressIndicator, :root.t_dark .t_light .t_dim_accent_SliderThumb, :root.t_dark .t_light .t_dim_accent_SwitchThumb, :root.t_dark .t_light .t_dim_accent_Tooltip, :root.t_dark .t_light .t_disabled_accent_ProgressIndicator, :root.t_dark .t_light .t_disabled_accent_SliderThumb, :root.t_dark .t_light .t_disabled_accent_SwitchThumb, :root.t_dark .t_light .t_disabled_accent_Tooltip, :root.t_dark .t_light .t_error_accent_ProgressIndicator, :root.t_dark .t_light .t_error_accent_SliderThumb, :root.t_dark .t_light .t_error_accent_SwitchThumb, :root.t_dark .t_light .t_error_accent_Tooltip, :root.t_dark .t_light .t_red_accent_ProgressIndicator, :root.t_dark .t_light .t_red_accent_SliderThumb, :root.t_dark .t_light .t_red_accent_SwitchThumb, :root.t_dark .t_light .t_red_accent_Tooltip, :root.t_dark .t_light .t_success_accent_ProgressIndicator, :root.t_dark .t_light .t_success_accent_SliderThumb, :root.t_dark .t_light .t_success_accent_SwitchThumb, :root.t_dark .t_light .t_success_accent_Tooltip, :root.t_dark .t_light .t_warning_accent_ProgressIndicator, :root.t_dark .t_light .t_warning_accent_SliderThumb, :root.t_dark .t_light .t_warning_accent_SwitchThumb, :root.t_dark .t_light .t_warning_accent_Tooltip, :root.t_light .t_accent_ProgressIndicator, :root.t_light .t_accent_SliderThumb, :root.t_light .t_accent_SwitchThumb, :root.t_light .t_accent_Tooltip, :root.t_light .t_active_accent_ProgressIndicator, :root.t_light .t_active_accent_SliderThumb, :root.t_light .t_active_accent_SwitchThumb, :root.t_light .t_active_accent_Tooltip, :root.t_light .t_alt1_accent_ProgressIndicator, :root.t_light .t_alt1_accent_SliderThumb, :root.t_light .t_alt1_accent_SwitchThumb, :root.t_light .t_alt1_accent_Tooltip, :root.t_light .t_alt2_accent_ProgressIndicator, :root.t_light .t_alt2_accent_SliderThumb, :root.t_light .t_alt2_accent_SwitchThumb, :root.t_light .t_alt2_accent_Tooltip, :root.t_light .t_dark .t_light .t_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_accent_SliderThumb, :root.t_light .t_dark .t_light .t_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_accent_Tooltip, :root.t_light .t_dark .t_light .t_active_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_active_accent_SliderThumb, :root.t_light .t_dark .t_light .t_active_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_active_accent_Tooltip, :root.t_light .t_dark .t_light .t_alt1_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_alt1_accent_SliderThumb, :root.t_light .t_dark .t_light .t_alt1_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_alt1_accent_Tooltip, :root.t_light .t_dark .t_light .t_alt2_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_alt2_accent_SliderThumb, :root.t_light .t_dark .t_light .t_alt2_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_alt2_accent_Tooltip, :root.t_light .t_dark .t_light .t_dim_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dim_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dim_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dim_accent_Tooltip, :root.t_light .t_dark .t_light .t_disabled_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_disabled_accent_SliderThumb, :root.t_light .t_dark .t_light .t_disabled_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_disabled_accent_Tooltip, :root.t_light .t_dark .t_light .t_error_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_error_accent_SliderThumb, :root.t_light .t_dark .t_light .t_error_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_error_accent_Tooltip, :root.t_light .t_dark .t_light .t_red_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_red_accent_SliderThumb, :root.t_light .t_dark .t_light .t_red_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_red_accent_Tooltip, :root.t_light .t_dark .t_light .t_success_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_success_accent_SliderThumb, :root.t_light .t_dark .t_light .t_success_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_success_accent_Tooltip, :root.t_light .t_dark .t_light .t_warning_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_warning_accent_SliderThumb, :root.t_light .t_dark .t_light .t_warning_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_warning_accent_Tooltip, :root.t_light .t_dim_accent_ProgressIndicator, :root.t_light .t_dim_accent_SliderThumb, :root.t_light .t_dim_accent_SwitchThumb, :root.t_light .t_dim_accent_Tooltip, :root.t_light .t_disabled_accent_ProgressIndicator, :root.t_light .t_disabled_accent_SliderThumb, :root.t_light .t_disabled_accent_SwitchThumb, :root.t_light .t_disabled_accent_Tooltip, :root.t_light .t_error_accent_ProgressIndicator, :root.t_light .t_error_accent_SliderThumb, :root.t_light .t_error_accent_SwitchThumb, :root.t_light .t_error_accent_Tooltip, :root.t_light .t_red_accent_ProgressIndicator, :root.t_light .t_red_accent_SliderThumb, :root.t_light .t_red_accent_SwitchThumb, :root.t_light .t_red_accent_Tooltip, :root.t_light .t_success_accent_ProgressIndicator, :root.t_light .t_success_accent_SliderThumb, :root.t_light .t_success_accent_SwitchThumb, :root.t_light .t_success_accent_Tooltip, :root.t_light .t_warning_accent_ProgressIndicator, :root.t_light .t_warning_accent_SliderThumb, :root.t_light .t_warning_accent_SwitchThumb, :root.t_light .t_warning_accent_Tooltip {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:var(--color-231);--color025:var(--color-230);--color05:var(--color-229);--color075:hsla(125, 96%, 40%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 10%, 1);--backgroundPress:var(--color-240);--backgroundFocus:var(--color-239);--color:var(--color-232);--colorHover:var(--color-233);--colorPress:var(--color-232);--colorFocus:var(--color-233);--placeholderColor:var(--color-233);--borderColor:var(--color-239);--borderColorHover:var(--color-238);--borderColorFocus:var(--color-237);--borderColorPress:var(--color-238);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_accent_ProgressIndicator, .t_accent_SliderThumb, .t_accent_SwitchThumb, .t_accent_Tooltip, .t_active_accent_ProgressIndicator, .t_active_accent_SliderThumb, .t_active_accent_SwitchThumb, .t_active_accent_Tooltip, .t_alt1_accent_ProgressIndicator, .t_alt1_accent_SliderThumb, .t_alt1_accent_SwitchThumb, .t_alt1_accent_Tooltip, .t_alt2_accent_ProgressIndicator, .t_alt2_accent_SliderThumb, .t_alt2_accent_SwitchThumb, .t_alt2_accent_Tooltip, .t_dark .t_light .t_accent_ProgressIndicator, .t_dark .t_light .t_accent_SliderThumb, .t_dark .t_light .t_accent_SwitchThumb, .t_dark .t_light .t_accent_Tooltip, .t_dark .t_light .t_active_accent_ProgressIndicator, .t_dark .t_light .t_active_accent_SliderThumb, .t_dark .t_light .t_active_accent_SwitchThumb, .t_dark .t_light .t_active_accent_Tooltip, .t_dark .t_light .t_alt1_accent_ProgressIndicator, .t_dark .t_light .t_alt1_accent_SliderThumb, .t_dark .t_light .t_alt1_accent_SwitchThumb, .t_dark .t_light .t_alt1_accent_Tooltip, .t_dark .t_light .t_alt2_accent_ProgressIndicator, .t_dark .t_light .t_alt2_accent_SliderThumb, .t_dark .t_light .t_alt2_accent_SwitchThumb, .t_dark .t_light .t_alt2_accent_Tooltip, .t_dark .t_light .t_dim_accent_ProgressIndicator, .t_dark .t_light .t_dim_accent_SliderThumb, .t_dark .t_light .t_dim_accent_SwitchThumb, .t_dark .t_light .t_dim_accent_Tooltip, .t_dark .t_light .t_disabled_accent_ProgressIndicator, .t_dark .t_light .t_disabled_accent_SliderThumb, .t_dark .t_light .t_disabled_accent_SwitchThumb, .t_dark .t_light .t_disabled_accent_Tooltip, .t_dark .t_light .t_error_accent_ProgressIndicator, .t_dark .t_light .t_error_accent_SliderThumb, .t_dark .t_light .t_error_accent_SwitchThumb, .t_dark .t_light .t_error_accent_Tooltip, .t_dark .t_light .t_red_accent_ProgressIndicator, .t_dark .t_light .t_red_accent_SliderThumb, .t_dark .t_light .t_red_accent_SwitchThumb, .t_dark .t_light .t_red_accent_Tooltip, .t_dark .t_light .t_success_accent_ProgressIndicator, .t_dark .t_light .t_success_accent_SliderThumb, .t_dark .t_light .t_success_accent_SwitchThumb, .t_dark .t_light .t_success_accent_Tooltip, .t_dark .t_light .t_warning_accent_ProgressIndicator, .t_dark .t_light .t_warning_accent_SliderThumb, .t_dark .t_light .t_warning_accent_SwitchThumb, .t_dark .t_light .t_warning_accent_Tooltip, .t_dim_accent_ProgressIndicator, .t_dim_accent_SliderThumb, .t_dim_accent_SwitchThumb, .t_dim_accent_Tooltip, .t_disabled_accent_ProgressIndicator, .t_disabled_accent_SliderThumb, .t_disabled_accent_SwitchThumb, .t_disabled_accent_Tooltip, .t_error_accent_ProgressIndicator, .t_error_accent_SliderThumb, .t_error_accent_SwitchThumb, .t_error_accent_Tooltip, .t_red_accent_ProgressIndicator, .t_red_accent_SliderThumb, .t_red_accent_SwitchThumb, .t_red_accent_Tooltip, .t_success_accent_ProgressIndicator, .t_success_accent_SliderThumb, .t_success_accent_SwitchThumb, .t_success_accent_Tooltip, .t_warning_accent_ProgressIndicator, .t_warning_accent_SliderThumb, .t_warning_accent_SwitchThumb, .t_warning_accent_Tooltip {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:var(--color-231);--color025:var(--color-230);--color05:var(--color-229);--color075:hsla(125, 96%, 40%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 10%, 1);--backgroundPress:var(--color-240);--backgroundFocus:var(--color-239);--color:var(--color-232);--colorHover:var(--color-233);--colorPress:var(--color-232);--colorFocus:var(--color-233);--placeholderColor:var(--color-233);--borderColor:var(--color-239);--borderColorHover:var(--color-238);--borderColorFocus:var(--color-237);--borderColorPress:var(--color-238);} - } -:root.t_dark .t_light .t_accent_SliderTrack, :root.t_dark .t_light .t_accent_TooltipContent, :root.t_dark .t_light .t_active_accent_Button, :root.t_dark .t_light .t_active_accent_SliderTrack, :root.t_dark .t_light .t_active_accent_Switch, :root.t_dark .t_light .t_active_accent_TooltipContent, :root.t_dark .t_light .t_alt1_accent_Button, :root.t_dark .t_light .t_alt1_accent_SliderTrack, :root.t_dark .t_light .t_alt1_accent_Switch, :root.t_dark .t_light .t_alt1_accent_TooltipContent, :root.t_dark .t_light .t_alt2_accent_Button, :root.t_dark .t_light .t_alt2_accent_SliderTrack, :root.t_dark .t_light .t_alt2_accent_Switch, :root.t_dark .t_light .t_alt2_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_active_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_active_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_active_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_active_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_error_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_error_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_error_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_error_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_red_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_red_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_red_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_red_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_success_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_success_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_success_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_success_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_TooltipContent, :root.t_dark .t_light .t_dim_accent_Button, :root.t_dark .t_light .t_dim_accent_SliderTrack, :root.t_dark .t_light .t_dim_accent_Switch, :root.t_dark .t_light .t_dim_accent_TooltipContent, :root.t_dark .t_light .t_disabled_accent_Button, :root.t_dark .t_light .t_disabled_accent_SliderTrack, :root.t_dark .t_light .t_disabled_accent_Switch, :root.t_dark .t_light .t_disabled_accent_TooltipContent, :root.t_dark .t_light .t_error_accent_Button, :root.t_dark .t_light .t_error_accent_SliderTrack, :root.t_dark .t_light .t_error_accent_Switch, :root.t_dark .t_light .t_error_accent_TooltipContent, :root.t_dark .t_light .t_red_accent_Button, :root.t_dark .t_light .t_red_accent_SliderTrack, :root.t_dark .t_light .t_red_accent_Switch, :root.t_dark .t_light .t_red_accent_TooltipContent, :root.t_dark .t_light .t_success_accent_Button, :root.t_dark .t_light .t_success_accent_SliderTrack, :root.t_dark .t_light .t_success_accent_Switch, :root.t_dark .t_light .t_success_accent_TooltipContent, :root.t_dark .t_light .t_warning_accent_Button, :root.t_dark .t_light .t_warning_accent_SliderTrack, :root.t_dark .t_light .t_warning_accent_Switch, :root.t_dark .t_light .t_warning_accent_TooltipContent, :root.t_light .t_accent_SliderTrack, :root.t_light .t_accent_TooltipContent, :root.t_light .t_active_accent_Button, :root.t_light .t_active_accent_SliderTrack, :root.t_light .t_active_accent_Switch, :root.t_light .t_active_accent_TooltipContent, :root.t_light .t_alt1_accent_Button, :root.t_light .t_alt1_accent_SliderTrack, :root.t_light .t_alt1_accent_Switch, :root.t_light .t_alt1_accent_TooltipContent, :root.t_light .t_alt2_accent_Button, :root.t_light .t_alt2_accent_SliderTrack, :root.t_light .t_alt2_accent_Switch, :root.t_light .t_alt2_accent_TooltipContent, :root.t_light .t_dark .t_light .t_accent_SliderTrack, :root.t_light .t_dark .t_light .t_accent_TooltipContent, :root.t_light .t_dark .t_light .t_active_accent_Button, :root.t_light .t_dark .t_light .t_active_accent_SliderTrack, :root.t_light .t_dark .t_light .t_active_accent_Switch, :root.t_light .t_dark .t_light .t_active_accent_TooltipContent, :root.t_light .t_dark .t_light .t_alt1_accent_Button, :root.t_light .t_dark .t_light .t_alt1_accent_SliderTrack, :root.t_light .t_dark .t_light .t_alt1_accent_Switch, :root.t_light .t_dark .t_light .t_alt1_accent_TooltipContent, :root.t_light .t_dark .t_light .t_alt2_accent_Button, :root.t_light .t_dark .t_light .t_alt2_accent_SliderTrack, :root.t_light .t_dark .t_light .t_alt2_accent_Switch, :root.t_light .t_dark .t_light .t_alt2_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dim_accent_Button, :root.t_light .t_dark .t_light .t_dim_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dim_accent_Switch, :root.t_light .t_dark .t_light .t_dim_accent_TooltipContent, :root.t_light .t_dark .t_light .t_disabled_accent_Button, :root.t_light .t_dark .t_light .t_disabled_accent_SliderTrack, :root.t_light .t_dark .t_light .t_disabled_accent_Switch, :root.t_light .t_dark .t_light .t_disabled_accent_TooltipContent, :root.t_light .t_dark .t_light .t_error_accent_Button, :root.t_light .t_dark .t_light .t_error_accent_SliderTrack, :root.t_light .t_dark .t_light .t_error_accent_Switch, :root.t_light .t_dark .t_light .t_error_accent_TooltipContent, :root.t_light .t_dark .t_light .t_red_accent_Button, :root.t_light .t_dark .t_light .t_red_accent_SliderTrack, :root.t_light .t_dark .t_light .t_red_accent_Switch, :root.t_light .t_dark .t_light .t_red_accent_TooltipContent, :root.t_light .t_dark .t_light .t_success_accent_Button, :root.t_light .t_dark .t_light .t_success_accent_SliderTrack, :root.t_light .t_dark .t_light .t_success_accent_Switch, :root.t_light .t_dark .t_light .t_success_accent_TooltipContent, :root.t_light .t_dark .t_light .t_warning_accent_Button, :root.t_light .t_dark .t_light .t_warning_accent_SliderTrack, :root.t_light .t_dark .t_light .t_warning_accent_Switch, :root.t_light .t_dark .t_light .t_warning_accent_TooltipContent, :root.t_light .t_dim_accent_Button, :root.t_light .t_dim_accent_SliderTrack, :root.t_light .t_dim_accent_Switch, :root.t_light .t_dim_accent_TooltipContent, :root.t_light .t_disabled_accent_Button, :root.t_light .t_disabled_accent_SliderTrack, :root.t_light .t_disabled_accent_Switch, :root.t_light .t_disabled_accent_TooltipContent, :root.t_light .t_error_accent_Button, :root.t_light .t_error_accent_SliderTrack, :root.t_light .t_error_accent_Switch, :root.t_light .t_error_accent_TooltipContent, :root.t_light .t_red_accent_Button, :root.t_light .t_red_accent_SliderTrack, :root.t_light .t_red_accent_Switch, :root.t_light .t_red_accent_TooltipContent, :root.t_light .t_success_accent_Button, :root.t_light .t_success_accent_SliderTrack, :root.t_light .t_success_accent_Switch, :root.t_light .t_success_accent_TooltipContent, :root.t_light .t_warning_accent_Button, :root.t_light .t_warning_accent_SliderTrack, :root.t_light .t_warning_accent_Switch, :root.t_light .t_warning_accent_TooltipContent {--background0:var(--color-230);--background025:var(--color-231);--background05:var(--color-232);--background075:var(--color-233);--color0:var(--color-240);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 32%, 10%, 1);--color075:hsla(191, 33%, 10%, 0.75);--background:var(--color-233);--backgroundHover:var(--color-234);--backgroundPress:var(--color-235);--backgroundFocus:var(--color-236);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-238);--borderColor:var(--color-236);--borderColorHover:var(--color-237);--borderColorFocus:var(--color-238);--borderColorPress:var(--color-237);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_accent_SliderTrack, .t_accent_TooltipContent, .t_active_accent_Button, .t_active_accent_SliderTrack, .t_active_accent_Switch, .t_active_accent_TooltipContent, .t_alt1_accent_Button, .t_alt1_accent_SliderTrack, .t_alt1_accent_Switch, .t_alt1_accent_TooltipContent, .t_alt2_accent_Button, .t_alt2_accent_SliderTrack, .t_alt2_accent_Switch, .t_alt2_accent_TooltipContent, .t_dark .t_light .t_accent_SliderTrack, .t_dark .t_light .t_accent_TooltipContent, .t_dark .t_light .t_active_accent_Button, .t_dark .t_light .t_active_accent_SliderTrack, .t_dark .t_light .t_active_accent_Switch, .t_dark .t_light .t_active_accent_TooltipContent, .t_dark .t_light .t_alt1_accent_Button, .t_dark .t_light .t_alt1_accent_SliderTrack, .t_dark .t_light .t_alt1_accent_Switch, .t_dark .t_light .t_alt1_accent_TooltipContent, .t_dark .t_light .t_alt2_accent_Button, .t_dark .t_light .t_alt2_accent_SliderTrack, .t_dark .t_light .t_alt2_accent_Switch, .t_dark .t_light .t_alt2_accent_TooltipContent, .t_dark .t_light .t_dim_accent_Button, .t_dark .t_light .t_dim_accent_SliderTrack, .t_dark .t_light .t_dim_accent_Switch, .t_dark .t_light .t_dim_accent_TooltipContent, .t_dark .t_light .t_disabled_accent_Button, .t_dark .t_light .t_disabled_accent_SliderTrack, .t_dark .t_light .t_disabled_accent_Switch, .t_dark .t_light .t_disabled_accent_TooltipContent, .t_dark .t_light .t_error_accent_Button, .t_dark .t_light .t_error_accent_SliderTrack, .t_dark .t_light .t_error_accent_Switch, .t_dark .t_light .t_error_accent_TooltipContent, .t_dark .t_light .t_red_accent_Button, .t_dark .t_light .t_red_accent_SliderTrack, .t_dark .t_light .t_red_accent_Switch, .t_dark .t_light .t_red_accent_TooltipContent, .t_dark .t_light .t_success_accent_Button, .t_dark .t_light .t_success_accent_SliderTrack, .t_dark .t_light .t_success_accent_Switch, .t_dark .t_light .t_success_accent_TooltipContent, .t_dark .t_light .t_warning_accent_Button, .t_dark .t_light .t_warning_accent_SliderTrack, .t_dark .t_light .t_warning_accent_Switch, .t_dark .t_light .t_warning_accent_TooltipContent, .t_dim_accent_Button, .t_dim_accent_SliderTrack, .t_dim_accent_Switch, .t_dim_accent_TooltipContent, .t_disabled_accent_Button, .t_disabled_accent_SliderTrack, .t_disabled_accent_Switch, .t_disabled_accent_TooltipContent, .t_error_accent_Button, .t_error_accent_SliderTrack, .t_error_accent_Switch, .t_error_accent_TooltipContent, .t_red_accent_Button, .t_red_accent_SliderTrack, .t_red_accent_Switch, .t_red_accent_TooltipContent, .t_success_accent_Button, .t_success_accent_SliderTrack, .t_success_accent_Switch, .t_success_accent_TooltipContent, .t_warning_accent_Button, .t_warning_accent_SliderTrack, .t_warning_accent_Switch, .t_warning_accent_TooltipContent {--background0:var(--color-230);--background025:var(--color-231);--background05:var(--color-232);--background075:var(--color-233);--color0:var(--color-240);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 32%, 10%, 1);--color075:hsla(191, 33%, 10%, 0.75);--background:var(--color-233);--backgroundHover:var(--color-234);--backgroundPress:var(--color-235);--backgroundFocus:var(--color-236);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-238);--borderColor:var(--color-236);--borderColorHover:var(--color-237);--borderColorFocus:var(--color-238);--borderColorPress:var(--color-237);} - } -:root.t_dark .t_light .t_accent_SliderTrackActive, :root.t_dark .t_light .t_active_accent_SliderTrackActive, :root.t_dark .t_light .t_alt1_accent_SliderTrackActive, :root.t_dark .t_light .t_alt2_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_active_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_error_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_red_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_success_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_SliderTrackActive, :root.t_dark .t_light .t_dim_accent_SliderTrackActive, :root.t_dark .t_light .t_disabled_accent_SliderTrackActive, :root.t_dark .t_light .t_error_accent_SliderTrackActive, :root.t_dark .t_light .t_red_accent_SliderTrackActive, :root.t_dark .t_light .t_success_accent_SliderTrackActive, :root.t_dark .t_light .t_warning_accent_SliderTrackActive, :root.t_light .t_accent_SliderTrackActive, :root.t_light .t_active_accent_SliderTrackActive, :root.t_light .t_alt1_accent_SliderTrackActive, :root.t_light .t_alt2_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_active_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_alt1_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_alt2_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dim_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_disabled_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_error_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_red_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_success_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_warning_accent_SliderTrackActive, :root.t_light .t_dim_accent_SliderTrackActive, :root.t_light .t_disabled_accent_SliderTrackActive, :root.t_light .t_error_accent_SliderTrackActive, :root.t_light .t_red_accent_SliderTrackActive, :root.t_light .t_success_accent_SliderTrackActive, :root.t_light .t_warning_accent_SliderTrackActive {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 10%, 1);--background075:var(--color-240);--color0:var(--color-233);--color025:var(--color-232);--color05:var(--color-231);--color075:var(--color-230);--background:var(--color-240);--backgroundHover:var(--color-239);--backgroundPress:var(--color-238);--backgroundFocus:var(--color-237);--color:var(--color-232);--colorHover:var(--color-233);--colorPress:var(--color-232);--colorFocus:var(--color-233);--placeholderColor:var(--color-235);--borderColor:var(--color-237);--borderColorHover:var(--color-236);--borderColorFocus:var(--color-235);--borderColorPress:var(--color-236);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_accent_SliderTrackActive, .t_active_accent_SliderTrackActive, .t_alt1_accent_SliderTrackActive, .t_alt2_accent_SliderTrackActive, .t_dark .t_light .t_accent_SliderTrackActive, .t_dark .t_light .t_active_accent_SliderTrackActive, .t_dark .t_light .t_alt1_accent_SliderTrackActive, .t_dark .t_light .t_alt2_accent_SliderTrackActive, .t_dark .t_light .t_dim_accent_SliderTrackActive, .t_dark .t_light .t_disabled_accent_SliderTrackActive, .t_dark .t_light .t_error_accent_SliderTrackActive, .t_dark .t_light .t_red_accent_SliderTrackActive, .t_dark .t_light .t_success_accent_SliderTrackActive, .t_dark .t_light .t_warning_accent_SliderTrackActive, .t_dim_accent_SliderTrackActive, .t_disabled_accent_SliderTrackActive, .t_error_accent_SliderTrackActive, .t_red_accent_SliderTrackActive, .t_success_accent_SliderTrackActive, .t_warning_accent_SliderTrackActive {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 10%, 1);--background075:var(--color-240);--color0:var(--color-233);--color025:var(--color-232);--color05:var(--color-231);--color075:var(--color-230);--background:var(--color-240);--backgroundHover:var(--color-239);--backgroundPress:var(--color-238);--backgroundFocus:var(--color-237);--color:var(--color-232);--colorHover:var(--color-233);--colorPress:var(--color-232);--colorFocus:var(--color-233);--placeholderColor:var(--color-235);--borderColor:var(--color-237);--borderColorHover:var(--color-236);--borderColorFocus:var(--color-235);--borderColorPress:var(--color-236);} - } -:root.t_dark .t_light .t_active, :root.t_dark .t_light .t_dark .t_light .t_active, :root.t_light .t_active, :root.t_light .t_dark .t_light .t_active {--background0:hsla(180, 20%, 99%, 0);--background025:hsla(180, 20%, 99%, 0.25);--background05:hsla(180, 20%, 99%, 0.5);--background075:hsla(180, 20%, 99%, 0.75);--color0:hsla(0, 0%, 0%, 0.75);--color025:hsla(0, 0%, 0%, 0.5);--color05:hsla(0, 0%, 0%, 0.25);--color075:hsla(0, 0%, 0%, 0);--background:hsla(180, 20%, 99%, 0.75);--backgroundHover:hsla(191, 32%, 99%, 1);--backgroundPress:hsla(191, 32%, 93%, 1);--backgroundFocus:hsla(191, 32%, 88%, 1);--colorHover:hsla(96, 16%, 25%, 1);--colorPress:hsla(112, 22%, 0%, 1);--colorFocus:hsla(96, 16%, 25%, 1);--placeholderColor:hsla(96, 16%, 25%, 1);--borderColor:hsla(191, 32%, 88%, 1);--borderColorHover:hsla(191, 32%, 83%, 1);--borderColorFocus:hsla(191, 32%, 77%, 1);--borderColorPress:hsla(191, 32%, 83%, 1);--color1:hsla(180, 20%, 99%, 0.75);--color2:hsla(191, 32%, 99%, 1);--color3:hsla(191, 32%, 93%, 1);--color4:hsla(191, 32%, 88%, 1);--color5:hsla(191, 32%, 83%, 1);--color6:hsla(191, 32%, 77%, 1);--color7:hsla(191, 32%, 72%, 1);--color8:hsla(191, 32%, 66%, 1);--color9:hsla(191, 32%, 61%, 1);--color10:hsla(191, 32%, 55%, 1);--color11:hsla(191, 32%, 50%, 1);--color12:hsla(96, 16%, 25%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);} - .t_active, .t_dark .t_light .t_active {--background0:hsla(180, 20%, 99%, 0);--background025:hsla(180, 20%, 99%, 0.25);--background05:hsla(180, 20%, 99%, 0.5);--background075:hsla(180, 20%, 99%, 0.75);--color0:hsla(0, 0%, 0%, 0.75);--color025:hsla(0, 0%, 0%, 0.5);--color05:hsla(0, 0%, 0%, 0.25);--color075:hsla(0, 0%, 0%, 0);--background:hsla(180, 20%, 99%, 0.75);--backgroundHover:hsla(191, 32%, 99%, 1);--backgroundPress:hsla(191, 32%, 93%, 1);--backgroundFocus:hsla(191, 32%, 88%, 1);--colorHover:hsla(96, 16%, 25%, 1);--colorPress:hsla(112, 22%, 0%, 1);--colorFocus:hsla(96, 16%, 25%, 1);--placeholderColor:hsla(96, 16%, 25%, 1);--borderColor:hsla(191, 32%, 88%, 1);--borderColorHover:hsla(191, 32%, 83%, 1);--borderColorFocus:hsla(191, 32%, 77%, 1);--borderColorPress:hsla(191, 32%, 83%, 1);--color1:hsla(180, 20%, 99%, 0.75);--color2:hsla(191, 32%, 99%, 1);--color3:hsla(191, 32%, 93%, 1);--color4:hsla(191, 32%, 88%, 1);--color5:hsla(191, 32%, 83%, 1);--color6:hsla(191, 32%, 77%, 1);--color7:hsla(191, 32%, 72%, 1);--color8:hsla(191, 32%, 66%, 1);--color9:hsla(191, 32%, 61%, 1);--color10:hsla(191, 32%, 55%, 1);--color11:hsla(191, 32%, 50%, 1);--color12:hsla(96, 16%, 25%, 1);} - } -:root.t_dark .t_light .t_active_Button, :root.t_dark .t_light .t_active_SliderTrack, :root.t_dark .t_light .t_active_Switch, :root.t_dark .t_light .t_active_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_active_Button, :root.t_dark .t_light .t_dark .t_light .t_active_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_active_Switch, :root.t_dark .t_light .t_dark .t_light .t_active_TooltipContent, :root.t_light .t_active_Button, :root.t_light .t_active_SliderTrack, :root.t_light .t_active_Switch, :root.t_light .t_active_TooltipContent, :root.t_light .t_dark .t_light .t_active_Button, :root.t_light .t_dark .t_light .t_active_SliderTrack, :root.t_light .t_dark .t_light .t_active_Switch, :root.t_light .t_dark .t_light .t_active_TooltipContent {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--colorHover:hsla(96, 16%, 25%, 1);--colorPress:hsla(112, 22%, 0%, 1);--colorFocus:hsla(96, 16%, 25%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);} - .t_active_Button, .t_active_SliderTrack, .t_active_Switch, .t_active_TooltipContent, .t_dark .t_light .t_active_Button, .t_dark .t_light .t_active_SliderTrack, .t_dark .t_light .t_active_Switch, .t_dark .t_light .t_active_TooltipContent {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--colorHover:hsla(96, 16%, 25%, 1);--colorPress:hsla(112, 22%, 0%, 1);--colorFocus:hsla(96, 16%, 25%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} - } -:root.t_dark .t_light .t_active_Card, :root.t_dark .t_light .t_active_DrawerFrame, :root.t_dark .t_light .t_active_Progress, :root.t_dark .t_light .t_active_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_active_Card, :root.t_dark .t_light .t_dark .t_light .t_active_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_active_Progress, :root.t_dark .t_light .t_dark .t_light .t_active_TooltipArrow, :root.t_light .t_active_Card, :root.t_light .t_active_DrawerFrame, :root.t_light .t_active_Progress, :root.t_light .t_active_TooltipArrow, :root.t_light .t_dark .t_light .t_active_Card, :root.t_light .t_dark .t_light .t_active_DrawerFrame, :root.t_light .t_dark .t_light .t_active_Progress, :root.t_light .t_dark .t_light .t_active_TooltipArrow {--background0:hsla(180, 20%, 99%, 0.25);--background025:hsla(180, 20%, 99%, 0.5);--background05:hsla(180, 20%, 99%, 0.75);--background075:hsla(191, 32%, 99%, 1);--color0:hsla(112, 22%, 0%, 1);--color025:hsla(0, 0%, 0%, 0.75);--color05:hsla(0, 0%, 0%, 0.5);--color075:hsla(0, 0%, 0%, 0.25);--background:hsla(191, 32%, 99%, 1);--backgroundHover:hsla(191, 32%, 93%, 1);--backgroundPress:hsla(191, 32%, 88%, 1);--backgroundFocus:hsla(191, 32%, 83%, 1);--colorHover:hsla(96, 16%, 25%, 1);--colorPress:hsla(112, 22%, 0%, 1);--colorFocus:hsla(96, 16%, 25%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 83%, 1);--borderColorHover:hsla(191, 32%, 77%, 1);--borderColorFocus:hsla(191, 32%, 72%, 1);--borderColorPress:hsla(191, 32%, 77%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);} - .t_active_Card, .t_active_DrawerFrame, .t_active_Progress, .t_active_TooltipArrow, .t_dark .t_light .t_active_Card, .t_dark .t_light .t_active_DrawerFrame, .t_dark .t_light .t_active_Progress, .t_dark .t_light .t_active_TooltipArrow {--background0:hsla(180, 20%, 99%, 0.25);--background025:hsla(180, 20%, 99%, 0.5);--background05:hsla(180, 20%, 99%, 0.75);--background075:hsla(191, 32%, 99%, 1);--color0:hsla(112, 22%, 0%, 1);--color025:hsla(0, 0%, 0%, 0.75);--color05:hsla(0, 0%, 0%, 0.5);--color075:hsla(0, 0%, 0%, 0.25);--background:hsla(191, 32%, 99%, 1);--backgroundHover:hsla(191, 32%, 93%, 1);--backgroundPress:hsla(191, 32%, 88%, 1);--backgroundFocus:hsla(191, 32%, 83%, 1);--colorHover:hsla(96, 16%, 25%, 1);--colorPress:hsla(112, 22%, 0%, 1);--colorFocus:hsla(96, 16%, 25%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 83%, 1);--borderColorHover:hsla(191, 32%, 77%, 1);--borderColorFocus:hsla(191, 32%, 72%, 1);--borderColorPress:hsla(191, 32%, 77%, 1);} - } -:root.t_dark .t_light .t_active_Checkbox, :root.t_dark .t_light .t_active_Input, :root.t_dark .t_light .t_active_RadioGroupItem, :root.t_dark .t_light .t_active_TextArea, :root.t_dark .t_light .t_dark .t_light .t_active_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_active_Input, :root.t_dark .t_light .t_dark .t_light .t_active_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_active_TextArea, :root.t_light .t_active_Checkbox, :root.t_light .t_active_Input, :root.t_light .t_active_RadioGroupItem, :root.t_light .t_active_TextArea, :root.t_light .t_dark .t_light .t_active_Checkbox, :root.t_light .t_dark .t_light .t_active_Input, :root.t_light .t_dark .t_light .t_active_RadioGroupItem, :root.t_light .t_dark .t_light .t_active_TextArea {--background0:hsla(180, 20%, 99%, 0);--background025:hsla(180, 20%, 99%, 0.25);--background05:hsla(180, 20%, 99%, 0.5);--background075:hsla(180, 20%, 99%, 0.75);--color0:hsla(0, 0%, 0%, 0.75);--color025:hsla(0, 0%, 0%, 0.5);--color05:hsla(0, 0%, 0%, 0.25);--color075:hsla(0, 0%, 0%, 0);--background:hsla(180, 20%, 99%, 0.75);--backgroundHover:hsla(191, 32%, 99%, 1);--backgroundPress:hsla(191, 32%, 93%, 1);--backgroundFocus:hsla(191, 32%, 88%, 1);--colorHover:hsla(96, 16%, 25%, 1);--colorPress:hsla(112, 22%, 0%, 1);--colorFocus:hsla(96, 16%, 25%, 1);--placeholderColor:hsla(96, 16%, 25%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);} - .t_active_Checkbox, .t_active_Input, .t_active_RadioGroupItem, .t_active_TextArea, .t_dark .t_light .t_active_Checkbox, .t_dark .t_light .t_active_Input, .t_dark .t_light .t_active_RadioGroupItem, .t_dark .t_light .t_active_TextArea {--background0:hsla(180, 20%, 99%, 0);--background025:hsla(180, 20%, 99%, 0.25);--background05:hsla(180, 20%, 99%, 0.5);--background075:hsla(180, 20%, 99%, 0.75);--color0:hsla(0, 0%, 0%, 0.75);--color025:hsla(0, 0%, 0%, 0.5);--color05:hsla(0, 0%, 0%, 0.25);--color075:hsla(0, 0%, 0%, 0);--background:hsla(180, 20%, 99%, 0.75);--backgroundHover:hsla(191, 32%, 99%, 1);--backgroundPress:hsla(191, 32%, 93%, 1);--backgroundFocus:hsla(191, 32%, 88%, 1);--colorHover:hsla(96, 16%, 25%, 1);--colorPress:hsla(112, 22%, 0%, 1);--colorFocus:hsla(96, 16%, 25%, 1);--placeholderColor:hsla(96, 16%, 25%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} - } -:root.t_dark .t_light .t_active_ProgressIndicator, :root.t_dark .t_light .t_active_SliderThumb, :root.t_dark .t_light .t_active_SwitchThumb, :root.t_dark .t_light .t_active_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_active_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_active_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_active_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_active_Tooltip, :root.t_light .t_active_ProgressIndicator, :root.t_light .t_active_SliderThumb, :root.t_light .t_active_SwitchThumb, :root.t_light .t_active_Tooltip, :root.t_light .t_dark .t_light .t_active_ProgressIndicator, :root.t_light .t_dark .t_light .t_active_SliderThumb, :root.t_light .t_dark .t_light .t_active_SwitchThumb, :root.t_light .t_dark .t_light .t_active_Tooltip {--background0:hsla(0, 0%, 0%, 0);--background025:hsla(0, 0%, 0%, 0.25);--background05:hsla(0, 0%, 0%, 0.5);--background075:hsla(0, 0%, 0%, 0.75);--color0:hsla(180, 20%, 99%, 0.75);--color025:hsla(180, 20%, 99%, 0.5);--color05:hsla(180, 20%, 99%, 0.25);--color075:hsla(180, 20%, 99%, 0);--background:hsla(0, 0%, 0%, 0.75);--backgroundHover:hsla(112, 22%, 0%, 1);--backgroundPress:hsla(96, 16%, 25%, 1);--backgroundFocus:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 93%, 1);--colorPress:hsla(191, 32%, 99%, 1);--colorFocus:hsla(191, 32%, 93%, 1);--placeholderColor:hsla(191, 32%, 93%, 1);--borderColor:hsla(191, 32%, 50%, 1);--borderColorHover:hsla(191, 32%, 55%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 55%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);} - .t_active_ProgressIndicator, .t_active_SliderThumb, .t_active_SwitchThumb, .t_active_Tooltip, .t_dark .t_light .t_active_ProgressIndicator, .t_dark .t_light .t_active_SliderThumb, .t_dark .t_light .t_active_SwitchThumb, .t_dark .t_light .t_active_Tooltip {--background0:hsla(0, 0%, 0%, 0);--background025:hsla(0, 0%, 0%, 0.25);--background05:hsla(0, 0%, 0%, 0.5);--background075:hsla(0, 0%, 0%, 0.75);--color0:hsla(180, 20%, 99%, 0.75);--color025:hsla(180, 20%, 99%, 0.5);--color05:hsla(180, 20%, 99%, 0.25);--color075:hsla(180, 20%, 99%, 0);--background:hsla(0, 0%, 0%, 0.75);--backgroundHover:hsla(112, 22%, 0%, 1);--backgroundPress:hsla(96, 16%, 25%, 1);--backgroundFocus:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 93%, 1);--colorPress:hsla(191, 32%, 99%, 1);--colorFocus:hsla(191, 32%, 93%, 1);--placeholderColor:hsla(191, 32%, 93%, 1);--borderColor:hsla(191, 32%, 50%, 1);--borderColorHover:hsla(191, 32%, 55%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 55%, 1);} - } -:root.t_dark .t_light .t_active_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_active_SliderTrackActive, :root.t_light .t_active_SliderTrackActive, :root.t_light .t_dark .t_light .t_active_SliderTrackActive {--background0:hsla(0, 0%, 0%, 0.5);--background025:hsla(0, 0%, 0%, 0.75);--background05:hsla(112, 22%, 0%, 1);--background075:hsla(96, 16%, 25%, 1);--color0:hsla(191, 32%, 93%, 1);--color025:hsla(191, 32%, 99%, 1);--color05:hsla(180, 20%, 99%, 0.75);--color075:hsla(180, 20%, 99%, 0.5);--background:hsla(96, 16%, 25%, 1);--backgroundHover:hsla(191, 32%, 50%, 1);--backgroundPress:hsla(191, 32%, 55%, 1);--backgroundFocus:hsla(191, 32%, 61%, 1);--colorHover:hsla(191, 32%, 93%, 1);--colorPress:hsla(191, 32%, 99%, 1);--colorFocus:hsla(191, 32%, 93%, 1);--placeholderColor:hsla(191, 32%, 83%, 1);--borderColor:hsla(191, 32%, 61%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 72%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);} - .t_active_SliderTrackActive, .t_dark .t_light .t_active_SliderTrackActive {--background0:hsla(0, 0%, 0%, 0.5);--background025:hsla(0, 0%, 0%, 0.75);--background05:hsla(112, 22%, 0%, 1);--background075:hsla(96, 16%, 25%, 1);--color0:hsla(191, 32%, 93%, 1);--color025:hsla(191, 32%, 99%, 1);--color05:hsla(180, 20%, 99%, 0.75);--color075:hsla(180, 20%, 99%, 0.5);--background:hsla(96, 16%, 25%, 1);--backgroundHover:hsla(191, 32%, 50%, 1);--backgroundPress:hsla(191, 32%, 55%, 1);--backgroundFocus:hsla(191, 32%, 61%, 1);--colorHover:hsla(191, 32%, 93%, 1);--colorPress:hsla(191, 32%, 99%, 1);--colorFocus:hsla(191, 32%, 93%, 1);--placeholderColor:hsla(191, 32%, 83%, 1);--borderColor:hsla(191, 32%, 61%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 72%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} - } -:root.t_dark .t_light .t_alt1, :root.t_dark .t_light .t_dark .t_light .t_alt1, :root.t_light .t_alt1, :root.t_light .t_dark .t_light .t_alt1 {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);--color1:hsla(191, 32%, 93%, 1);--color2:hsla(191, 32%, 88%, 1);--color3:hsla(191, 32%, 83%, 1);--color4:hsla(191, 32%, 77%, 1);--color5:hsla(191, 32%, 72%, 1);--color6:hsla(191, 32%, 66%, 1);--color7:hsla(191, 32%, 61%, 1);--color8:hsla(191, 32%, 55%, 1);--color9:hsla(191, 32%, 55%, 1);--color10:hsla(191, 32%, 55%, 1);--color11:hsla(191, 32%, 55%, 1);--color12:hsla(191, 32%, 55%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_alt1, .t_dark .t_light .t_alt1 {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);--color1:hsla(191, 32%, 93%, 1);--color2:hsla(191, 32%, 88%, 1);--color3:hsla(191, 32%, 83%, 1);--color4:hsla(191, 32%, 77%, 1);--color5:hsla(191, 32%, 72%, 1);--color6:hsla(191, 32%, 66%, 1);--color7:hsla(191, 32%, 61%, 1);--color8:hsla(191, 32%, 55%, 1);--color9:hsla(191, 32%, 55%, 1);--color10:hsla(191, 32%, 55%, 1);--color11:hsla(191, 32%, 55%, 1);--color12:hsla(191, 32%, 55%, 1);} - } -:root.t_dark .t_light .t_alt1_Button, :root.t_dark .t_light .t_alt1_SliderTrack, :root.t_dark .t_light .t_alt1_Switch, :root.t_dark .t_light .t_alt1_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_alt1_Button, :root.t_dark .t_light .t_dark .t_light .t_alt1_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_alt1_Switch, :root.t_dark .t_light .t_dark .t_light .t_alt1_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_dim_Button, :root.t_dark .t_light .t_dark .t_light .t_dim_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_dim_Switch, :root.t_dark .t_light .t_dark .t_light .t_dim_TooltipContent, :root.t_dark .t_light .t_dim_Button, :root.t_dark .t_light .t_dim_SliderTrack, :root.t_dark .t_light .t_dim_Switch, :root.t_dark .t_light .t_dim_TooltipContent, :root.t_light .t_alt1_Button, :root.t_light .t_alt1_SliderTrack, :root.t_light .t_alt1_Switch, :root.t_light .t_alt1_TooltipContent, :root.t_light .t_dark .t_light .t_alt1_Button, :root.t_light .t_dark .t_light .t_alt1_SliderTrack, :root.t_light .t_dark .t_light .t_alt1_Switch, :root.t_light .t_dark .t_light .t_alt1_TooltipContent, :root.t_light .t_dark .t_light .t_dim_Button, :root.t_light .t_dark .t_light .t_dim_SliderTrack, :root.t_light .t_dark .t_light .t_dim_Switch, :root.t_light .t_dark .t_light .t_dim_TooltipContent, :root.t_light .t_dim_Button, :root.t_light .t_dim_SliderTrack, :root.t_light .t_dim_Switch, :root.t_light .t_dim_TooltipContent {--background0:hsla(191, 32%, 99%, 1);--background025:hsla(191, 32%, 93%, 1);--background05:hsla(191, 32%, 88%, 1);--background075:hsla(191, 32%, 83%, 1);--color0:hsla(191, 32%, 55%, 1);--color025:hsla(191, 32%, 50%, 1);--color05:hsla(96, 16%, 25%, 1);--color075:hsla(112, 22%, 0%, 1);--background:hsla(191, 32%, 83%, 1);--backgroundHover:hsla(191, 32%, 77%, 1);--backgroundPress:hsla(191, 32%, 72%, 1);--backgroundFocus:hsla(191, 32%, 66%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 66%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 61%, 1);--borderColorFocus:hsla(191, 32%, 55%, 1);--borderColorPress:hsla(191, 32%, 61%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_alt1_Button, .t_alt1_SliderTrack, .t_alt1_Switch, .t_alt1_TooltipContent, .t_dark .t_light .t_alt1_Button, .t_dark .t_light .t_alt1_SliderTrack, .t_dark .t_light .t_alt1_Switch, .t_dark .t_light .t_alt1_TooltipContent, .t_dark .t_light .t_dim_Button, .t_dark .t_light .t_dim_SliderTrack, .t_dark .t_light .t_dim_Switch, .t_dark .t_light .t_dim_TooltipContent, .t_dim_Button, .t_dim_SliderTrack, .t_dim_Switch, .t_dim_TooltipContent {--background0:hsla(191, 32%, 99%, 1);--background025:hsla(191, 32%, 93%, 1);--background05:hsla(191, 32%, 88%, 1);--background075:hsla(191, 32%, 83%, 1);--color0:hsla(191, 32%, 55%, 1);--color025:hsla(191, 32%, 50%, 1);--color05:hsla(96, 16%, 25%, 1);--color075:hsla(112, 22%, 0%, 1);--background:hsla(191, 32%, 83%, 1);--backgroundHover:hsla(191, 32%, 77%, 1);--backgroundPress:hsla(191, 32%, 72%, 1);--backgroundFocus:hsla(191, 32%, 66%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 66%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 61%, 1);--borderColorFocus:hsla(191, 32%, 55%, 1);--borderColorPress:hsla(191, 32%, 61%, 1);} - } -:root.t_dark .t_light .t_alt1_Card, :root.t_dark .t_light .t_alt1_DrawerFrame, :root.t_dark .t_light .t_alt1_Progress, :root.t_dark .t_light .t_alt1_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_alt1_Card, :root.t_dark .t_light .t_dark .t_light .t_alt1_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_alt1_Progress, :root.t_dark .t_light .t_dark .t_light .t_alt1_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_dim_Card, :root.t_dark .t_light .t_dark .t_light .t_dim_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_dim_Progress, :root.t_dark .t_light .t_dark .t_light .t_dim_TooltipArrow, :root.t_dark .t_light .t_dim_Card, :root.t_dark .t_light .t_dim_DrawerFrame, :root.t_dark .t_light .t_dim_Progress, :root.t_dark .t_light .t_dim_TooltipArrow, :root.t_light .t_alt1_Card, :root.t_light .t_alt1_DrawerFrame, :root.t_light .t_alt1_Progress, :root.t_light .t_alt1_TooltipArrow, :root.t_light .t_dark .t_light .t_alt1_Card, :root.t_light .t_dark .t_light .t_alt1_DrawerFrame, :root.t_light .t_dark .t_light .t_alt1_Progress, :root.t_light .t_dark .t_light .t_alt1_TooltipArrow, :root.t_light .t_dark .t_light .t_dim_Card, :root.t_light .t_dark .t_light .t_dim_DrawerFrame, :root.t_light .t_dark .t_light .t_dim_Progress, :root.t_light .t_dark .t_light .t_dim_TooltipArrow, :root.t_light .t_dim_Card, :root.t_light .t_dim_DrawerFrame, :root.t_light .t_dim_Progress, :root.t_light .t_dim_TooltipArrow {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_alt1_Card, .t_alt1_DrawerFrame, .t_alt1_Progress, .t_alt1_TooltipArrow, .t_dark .t_light .t_alt1_Card, .t_dark .t_light .t_alt1_DrawerFrame, .t_dark .t_light .t_alt1_Progress, .t_dark .t_light .t_alt1_TooltipArrow, .t_dark .t_light .t_dim_Card, .t_dark .t_light .t_dim_DrawerFrame, .t_dark .t_light .t_dim_Progress, .t_dark .t_light .t_dim_TooltipArrow, .t_dim_Card, .t_dim_DrawerFrame, .t_dim_Progress, .t_dim_TooltipArrow {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} - } -:root.t_dark .t_light .t_alt1_Checkbox, :root.t_dark .t_light .t_alt1_Input, :root.t_dark .t_light .t_alt1_RadioGroupItem, :root.t_dark .t_light .t_alt1_TextArea, :root.t_dark .t_light .t_dark .t_light .t_alt1_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_alt1_Input, :root.t_dark .t_light .t_dark .t_light .t_alt1_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_alt1_TextArea, :root.t_dark .t_light .t_dark .t_light .t_dim_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_dim_Input, :root.t_dark .t_light .t_dark .t_light .t_dim_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_dim_TextArea, :root.t_dark .t_light .t_dim_Checkbox, :root.t_dark .t_light .t_dim_Input, :root.t_dark .t_light .t_dim_RadioGroupItem, :root.t_dark .t_light .t_dim_TextArea, :root.t_light .t_alt1_Checkbox, :root.t_light .t_alt1_Input, :root.t_light .t_alt1_RadioGroupItem, :root.t_light .t_alt1_TextArea, :root.t_light .t_dark .t_light .t_alt1_Checkbox, :root.t_light .t_dark .t_light .t_alt1_Input, :root.t_light .t_dark .t_light .t_alt1_RadioGroupItem, :root.t_light .t_dark .t_light .t_alt1_TextArea, :root.t_light .t_dark .t_light .t_dim_Checkbox, :root.t_light .t_dark .t_light .t_dim_Input, :root.t_light .t_dark .t_light .t_dim_RadioGroupItem, :root.t_light .t_dark .t_light .t_dim_TextArea, :root.t_light .t_dim_Checkbox, :root.t_light .t_dim_Input, :root.t_light .t_dim_RadioGroupItem, :root.t_light .t_dim_TextArea {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 61%, 1);--borderColorFocus:hsla(191, 32%, 55%, 1);--borderColorPress:hsla(191, 32%, 61%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_alt1_Checkbox, .t_alt1_Input, .t_alt1_RadioGroupItem, .t_alt1_TextArea, .t_dark .t_light .t_alt1_Checkbox, .t_dark .t_light .t_alt1_Input, .t_dark .t_light .t_alt1_RadioGroupItem, .t_dark .t_light .t_alt1_TextArea, .t_dark .t_light .t_dim_Checkbox, .t_dark .t_light .t_dim_Input, .t_dark .t_light .t_dim_RadioGroupItem, .t_dark .t_light .t_dim_TextArea, .t_dim_Checkbox, .t_dim_Input, .t_dim_RadioGroupItem, .t_dim_TextArea {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 61%, 1);--borderColorFocus:hsla(191, 32%, 55%, 1);--borderColorPress:hsla(191, 32%, 61%, 1);} - } -:root.t_dark .t_light .t_alt1_ProgressIndicator, :root.t_dark .t_light .t_alt1_SliderThumb, :root.t_dark .t_light .t_alt1_SwitchThumb, :root.t_dark .t_light .t_alt1_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_alt1_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_alt1_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_alt1_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_alt1_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_dim_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_dim_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_dim_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_dim_Tooltip, :root.t_dark .t_light .t_dim_ProgressIndicator, :root.t_dark .t_light .t_dim_SliderThumb, :root.t_dark .t_light .t_dim_SwitchThumb, :root.t_dark .t_light .t_dim_Tooltip, :root.t_light .t_alt1_ProgressIndicator, :root.t_light .t_alt1_SliderThumb, :root.t_light .t_alt1_SwitchThumb, :root.t_light .t_alt1_Tooltip, :root.t_light .t_dark .t_light .t_alt1_ProgressIndicator, :root.t_light .t_dark .t_light .t_alt1_SliderThumb, :root.t_light .t_dark .t_light .t_alt1_SwitchThumb, :root.t_light .t_dark .t_light .t_alt1_Tooltip, :root.t_light .t_dark .t_light .t_dim_ProgressIndicator, :root.t_light .t_dark .t_light .t_dim_SliderThumb, :root.t_light .t_dark .t_light .t_dim_SwitchThumb, :root.t_light .t_dark .t_light .t_dim_Tooltip, :root.t_light .t_dim_ProgressIndicator, :root.t_light .t_dim_SliderThumb, :root.t_light .t_dim_SwitchThumb, :root.t_light .t_dim_Tooltip {--background0:hsla(0, 0%, 0%, 0.5);--background025:hsla(0, 0%, 0%, 0.75);--background05:hsla(112, 22%, 0%, 1);--background075:hsla(96, 16%, 25%, 1);--color0:hsla(191, 32%, 93%, 1);--color025:hsla(191, 32%, 99%, 1);--color05:hsla(180, 20%, 99%, 0.75);--color075:hsla(180, 20%, 99%, 0.5);--background:hsla(96, 16%, 25%, 1);--backgroundHover:hsla(191, 32%, 50%, 1);--backgroundPress:hsla(191, 32%, 55%, 1);--backgroundFocus:hsla(191, 32%, 61%, 1);--color:hsla(191, 32%, 88%, 1);--colorHover:hsla(191, 32%, 83%, 1);--colorPress:hsla(191, 32%, 88%, 1);--colorFocus:hsla(191, 32%, 83%, 1);--placeholderColor:hsla(191, 32%, 83%, 1);--borderColor:hsla(191, 32%, 61%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 72%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_alt1_ProgressIndicator, .t_alt1_SliderThumb, .t_alt1_SwitchThumb, .t_alt1_Tooltip, .t_dark .t_light .t_alt1_ProgressIndicator, .t_dark .t_light .t_alt1_SliderThumb, .t_dark .t_light .t_alt1_SwitchThumb, .t_dark .t_light .t_alt1_Tooltip, .t_dark .t_light .t_dim_ProgressIndicator, .t_dark .t_light .t_dim_SliderThumb, .t_dark .t_light .t_dim_SwitchThumb, .t_dark .t_light .t_dim_Tooltip, .t_dim_ProgressIndicator, .t_dim_SliderThumb, .t_dim_SwitchThumb, .t_dim_Tooltip {--background0:hsla(0, 0%, 0%, 0.5);--background025:hsla(0, 0%, 0%, 0.75);--background05:hsla(112, 22%, 0%, 1);--background075:hsla(96, 16%, 25%, 1);--color0:hsla(191, 32%, 93%, 1);--color025:hsla(191, 32%, 99%, 1);--color05:hsla(180, 20%, 99%, 0.75);--color075:hsla(180, 20%, 99%, 0.5);--background:hsla(96, 16%, 25%, 1);--backgroundHover:hsla(191, 32%, 50%, 1);--backgroundPress:hsla(191, 32%, 55%, 1);--backgroundFocus:hsla(191, 32%, 61%, 1);--color:hsla(191, 32%, 88%, 1);--colorHover:hsla(191, 32%, 83%, 1);--colorPress:hsla(191, 32%, 88%, 1);--colorFocus:hsla(191, 32%, 83%, 1);--placeholderColor:hsla(191, 32%, 83%, 1);--borderColor:hsla(191, 32%, 61%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 72%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} - } -:root.t_dark .t_light .t_alt1_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_alt1_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_dim_SliderTrackActive, :root.t_dark .t_light .t_dim_SliderTrackActive, :root.t_light .t_alt1_SliderTrackActive, :root.t_light .t_dark .t_light .t_alt1_SliderTrackActive, :root.t_light .t_dark .t_light .t_dim_SliderTrackActive, :root.t_light .t_dim_SliderTrackActive {--background0:hsla(112, 22%, 0%, 1);--background025:hsla(96, 16%, 25%, 1);--background05:hsla(191, 32%, 50%, 1);--background075:hsla(191, 32%, 55%, 1);--color0:hsla(191, 32%, 83%, 1);--color025:hsla(191, 32%, 88%, 1);--color05:hsla(191, 32%, 93%, 1);--color075:hsla(191, 32%, 99%, 1);--background:hsla(191, 32%, 55%, 1);--backgroundHover:hsla(191, 32%, 61%, 1);--backgroundPress:hsla(191, 32%, 66%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 88%, 1);--colorHover:hsla(191, 32%, 83%, 1);--colorPress:hsla(191, 32%, 88%, 1);--colorFocus:hsla(191, 32%, 83%, 1);--placeholderColor:hsla(191, 32%, 72%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 77%, 1);--borderColorFocus:hsla(191, 32%, 83%, 1);--borderColorPress:hsla(191, 32%, 77%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_alt1_SliderTrackActive, .t_dark .t_light .t_alt1_SliderTrackActive, .t_dark .t_light .t_dim_SliderTrackActive, .t_dim_SliderTrackActive {--background0:hsla(112, 22%, 0%, 1);--background025:hsla(96, 16%, 25%, 1);--background05:hsla(191, 32%, 50%, 1);--background075:hsla(191, 32%, 55%, 1);--color0:hsla(191, 32%, 83%, 1);--color025:hsla(191, 32%, 88%, 1);--color05:hsla(191, 32%, 93%, 1);--color075:hsla(191, 32%, 99%, 1);--background:hsla(191, 32%, 55%, 1);--backgroundHover:hsla(191, 32%, 61%, 1);--backgroundPress:hsla(191, 32%, 66%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 88%, 1);--colorHover:hsla(191, 32%, 83%, 1);--colorPress:hsla(191, 32%, 88%, 1);--colorFocus:hsla(191, 32%, 83%, 1);--placeholderColor:hsla(191, 32%, 72%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 77%, 1);--borderColorFocus:hsla(191, 32%, 83%, 1);--borderColorPress:hsla(191, 32%, 77%, 1);} - } -:root.t_dark .t_light .t_alt2, :root.t_dark .t_light .t_dark .t_light .t_alt2, :root.t_light .t_alt2, :root.t_light .t_dark .t_light .t_alt2 {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);--color1:hsla(191, 32%, 88%, 1);--color2:hsla(191, 32%, 83%, 1);--color3:hsla(191, 32%, 77%, 1);--color4:hsla(191, 32%, 72%, 1);--color5:hsla(191, 32%, 66%, 1);--color6:hsla(191, 32%, 61%, 1);--color7:hsla(191, 32%, 55%, 1);--color8:hsla(191, 32%, 55%, 1);--color9:hsla(191, 32%, 55%, 1);--color10:hsla(191, 32%, 55%, 1);--color11:hsla(191, 32%, 55%, 1);--color12:hsla(191, 32%, 55%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_alt2, .t_dark .t_light .t_alt2 {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);--color1:hsla(191, 32%, 88%, 1);--color2:hsla(191, 32%, 83%, 1);--color3:hsla(191, 32%, 77%, 1);--color4:hsla(191, 32%, 72%, 1);--color5:hsla(191, 32%, 66%, 1);--color6:hsla(191, 32%, 61%, 1);--color7:hsla(191, 32%, 55%, 1);--color8:hsla(191, 32%, 55%, 1);--color9:hsla(191, 32%, 55%, 1);--color10:hsla(191, 32%, 55%, 1);--color11:hsla(191, 32%, 55%, 1);--color12:hsla(191, 32%, 55%, 1);} - } -:root.t_dark .t_light .t_alt2_Button, :root.t_dark .t_light .t_alt2_SliderTrack, :root.t_dark .t_light .t_alt2_Switch, :root.t_dark .t_light .t_alt2_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_alt2_Button, :root.t_dark .t_light .t_dark .t_light .t_alt2_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_alt2_Switch, :root.t_dark .t_light .t_dark .t_light .t_alt2_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_disabled_Button, :root.t_dark .t_light .t_dark .t_light .t_disabled_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_disabled_Switch, :root.t_dark .t_light .t_dark .t_light .t_disabled_TooltipContent, :root.t_dark .t_light .t_disabled_Button, :root.t_dark .t_light .t_disabled_SliderTrack, :root.t_dark .t_light .t_disabled_Switch, :root.t_dark .t_light .t_disabled_TooltipContent, :root.t_light .t_alt2_Button, :root.t_light .t_alt2_SliderTrack, :root.t_light .t_alt2_Switch, :root.t_light .t_alt2_TooltipContent, :root.t_light .t_dark .t_light .t_alt2_Button, :root.t_light .t_dark .t_light .t_alt2_SliderTrack, :root.t_light .t_dark .t_light .t_alt2_Switch, :root.t_light .t_dark .t_light .t_alt2_TooltipContent, :root.t_light .t_dark .t_light .t_disabled_Button, :root.t_light .t_dark .t_light .t_disabled_SliderTrack, :root.t_light .t_dark .t_light .t_disabled_Switch, :root.t_light .t_dark .t_light .t_disabled_TooltipContent, :root.t_light .t_disabled_Button, :root.t_light .t_disabled_SliderTrack, :root.t_light .t_disabled_Switch, :root.t_light .t_disabled_TooltipContent {--background0:hsla(191, 32%, 93%, 1);--background025:hsla(191, 32%, 88%, 1);--background05:hsla(191, 32%, 83%, 1);--background075:hsla(191, 32%, 77%, 1);--color0:hsla(191, 32%, 61%, 1);--color025:hsla(191, 32%, 55%, 1);--color05:hsla(191, 32%, 50%, 1);--color075:hsla(96, 16%, 25%, 1);--background:hsla(191, 32%, 77%, 1);--backgroundHover:hsla(191, 32%, 72%, 1);--backgroundPress:hsla(191, 32%, 66%, 1);--backgroundFocus:hsla(191, 32%, 61%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 72%, 1);--borderColor:hsla(191, 32%, 61%, 1);--borderColorHover:hsla(191, 32%, 55%, 1);--borderColorFocus:hsla(191, 32%, 50%, 1);--borderColorPress:hsla(191, 32%, 55%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_alt2_Button, .t_alt2_SliderTrack, .t_alt2_Switch, .t_alt2_TooltipContent, .t_dark .t_light .t_alt2_Button, .t_dark .t_light .t_alt2_SliderTrack, .t_dark .t_light .t_alt2_Switch, .t_dark .t_light .t_alt2_TooltipContent, .t_dark .t_light .t_disabled_Button, .t_dark .t_light .t_disabled_SliderTrack, .t_dark .t_light .t_disabled_Switch, .t_dark .t_light .t_disabled_TooltipContent, .t_disabled_Button, .t_disabled_SliderTrack, .t_disabled_Switch, .t_disabled_TooltipContent {--background0:hsla(191, 32%, 93%, 1);--background025:hsla(191, 32%, 88%, 1);--background05:hsla(191, 32%, 83%, 1);--background075:hsla(191, 32%, 77%, 1);--color0:hsla(191, 32%, 61%, 1);--color025:hsla(191, 32%, 55%, 1);--color05:hsla(191, 32%, 50%, 1);--color075:hsla(96, 16%, 25%, 1);--background:hsla(191, 32%, 77%, 1);--backgroundHover:hsla(191, 32%, 72%, 1);--backgroundPress:hsla(191, 32%, 66%, 1);--backgroundFocus:hsla(191, 32%, 61%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 72%, 1);--borderColor:hsla(191, 32%, 61%, 1);--borderColorHover:hsla(191, 32%, 55%, 1);--borderColorFocus:hsla(191, 32%, 50%, 1);--borderColorPress:hsla(191, 32%, 55%, 1);} - } -:root.t_dark .t_light .t_alt2_Card, :root.t_dark .t_light .t_alt2_DrawerFrame, :root.t_dark .t_light .t_alt2_Progress, :root.t_dark .t_light .t_alt2_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_alt2_Card, :root.t_dark .t_light .t_dark .t_light .t_alt2_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_alt2_Progress, :root.t_dark .t_light .t_dark .t_light .t_alt2_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_disabled_Card, :root.t_dark .t_light .t_dark .t_light .t_disabled_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_disabled_Progress, :root.t_dark .t_light .t_dark .t_light .t_disabled_TooltipArrow, :root.t_dark .t_light .t_disabled_Card, :root.t_dark .t_light .t_disabled_DrawerFrame, :root.t_dark .t_light .t_disabled_Progress, :root.t_dark .t_light .t_disabled_TooltipArrow, :root.t_light .t_alt2_Card, :root.t_light .t_alt2_DrawerFrame, :root.t_light .t_alt2_Progress, :root.t_light .t_alt2_TooltipArrow, :root.t_light .t_dark .t_light .t_alt2_Card, :root.t_light .t_dark .t_light .t_alt2_DrawerFrame, :root.t_light .t_dark .t_light .t_alt2_Progress, :root.t_light .t_dark .t_light .t_alt2_TooltipArrow, :root.t_light .t_dark .t_light .t_disabled_Card, :root.t_light .t_dark .t_light .t_disabled_DrawerFrame, :root.t_light .t_dark .t_light .t_disabled_Progress, :root.t_light .t_dark .t_light .t_disabled_TooltipArrow, :root.t_light .t_disabled_Card, :root.t_light .t_disabled_DrawerFrame, :root.t_light .t_disabled_Progress, :root.t_light .t_disabled_TooltipArrow {--background0:hsla(191, 32%, 99%, 1);--background025:hsla(191, 32%, 93%, 1);--background05:hsla(191, 32%, 88%, 1);--background075:hsla(191, 32%, 83%, 1);--color0:hsla(191, 32%, 55%, 1);--color025:hsla(191, 32%, 50%, 1);--color05:hsla(96, 16%, 25%, 1);--color075:hsla(112, 22%, 0%, 1);--background:hsla(191, 32%, 83%, 1);--backgroundHover:hsla(191, 32%, 77%, 1);--backgroundPress:hsla(191, 32%, 72%, 1);--backgroundFocus:hsla(191, 32%, 66%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 66%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 61%, 1);--borderColorFocus:hsla(191, 32%, 55%, 1);--borderColorPress:hsla(191, 32%, 61%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_alt2_Card, .t_alt2_DrawerFrame, .t_alt2_Progress, .t_alt2_TooltipArrow, .t_dark .t_light .t_alt2_Card, .t_dark .t_light .t_alt2_DrawerFrame, .t_dark .t_light .t_alt2_Progress, .t_dark .t_light .t_alt2_TooltipArrow, .t_dark .t_light .t_disabled_Card, .t_dark .t_light .t_disabled_DrawerFrame, .t_dark .t_light .t_disabled_Progress, .t_dark .t_light .t_disabled_TooltipArrow, .t_disabled_Card, .t_disabled_DrawerFrame, .t_disabled_Progress, .t_disabled_TooltipArrow {--background0:hsla(191, 32%, 99%, 1);--background025:hsla(191, 32%, 93%, 1);--background05:hsla(191, 32%, 88%, 1);--background075:hsla(191, 32%, 83%, 1);--color0:hsla(191, 32%, 55%, 1);--color025:hsla(191, 32%, 50%, 1);--color05:hsla(96, 16%, 25%, 1);--color075:hsla(112, 22%, 0%, 1);--background:hsla(191, 32%, 83%, 1);--backgroundHover:hsla(191, 32%, 77%, 1);--backgroundPress:hsla(191, 32%, 72%, 1);--backgroundFocus:hsla(191, 32%, 66%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 66%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 61%, 1);--borderColorFocus:hsla(191, 32%, 55%, 1);--borderColorPress:hsla(191, 32%, 61%, 1);} - } -:root.t_dark .t_light .t_alt2_Checkbox, :root.t_dark .t_light .t_alt2_Input, :root.t_dark .t_light .t_alt2_RadioGroupItem, :root.t_dark .t_light .t_alt2_TextArea, :root.t_dark .t_light .t_dark .t_light .t_alt2_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_alt2_Input, :root.t_dark .t_light .t_dark .t_light .t_alt2_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_alt2_TextArea, :root.t_dark .t_light .t_dark .t_light .t_disabled_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_disabled_Input, :root.t_dark .t_light .t_dark .t_light .t_disabled_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_disabled_TextArea, :root.t_dark .t_light .t_disabled_Checkbox, :root.t_dark .t_light .t_disabled_Input, :root.t_dark .t_light .t_disabled_RadioGroupItem, :root.t_dark .t_light .t_disabled_TextArea, :root.t_light .t_alt2_Checkbox, :root.t_light .t_alt2_Input, :root.t_light .t_alt2_RadioGroupItem, :root.t_light .t_alt2_TextArea, :root.t_light .t_dark .t_light .t_alt2_Checkbox, :root.t_light .t_dark .t_light .t_alt2_Input, :root.t_light .t_dark .t_light .t_alt2_RadioGroupItem, :root.t_light .t_dark .t_light .t_alt2_TextArea, :root.t_light .t_dark .t_light .t_disabled_Checkbox, :root.t_light .t_dark .t_light .t_disabled_Input, :root.t_light .t_dark .t_light .t_disabled_RadioGroupItem, :root.t_light .t_dark .t_light .t_disabled_TextArea, :root.t_light .t_disabled_Checkbox, :root.t_light .t_disabled_Input, :root.t_light .t_disabled_RadioGroupItem, :root.t_light .t_disabled_TextArea {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 61%, 1);--borderColorHover:hsla(191, 32%, 55%, 1);--borderColorFocus:hsla(191, 32%, 50%, 1);--borderColorPress:hsla(191, 32%, 55%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_alt2_Checkbox, .t_alt2_Input, .t_alt2_RadioGroupItem, .t_alt2_TextArea, .t_dark .t_light .t_alt2_Checkbox, .t_dark .t_light .t_alt2_Input, .t_dark .t_light .t_alt2_RadioGroupItem, .t_dark .t_light .t_alt2_TextArea, .t_dark .t_light .t_disabled_Checkbox, .t_dark .t_light .t_disabled_Input, .t_dark .t_light .t_disabled_RadioGroupItem, .t_dark .t_light .t_disabled_TextArea, .t_disabled_Checkbox, .t_disabled_Input, .t_disabled_RadioGroupItem, .t_disabled_TextArea {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 61%, 1);--borderColorHover:hsla(191, 32%, 55%, 1);--borderColorFocus:hsla(191, 32%, 50%, 1);--borderColorPress:hsla(191, 32%, 55%, 1);} - } -:root.t_dark .t_light .t_alt2_ProgressIndicator, :root.t_dark .t_light .t_alt2_SliderThumb, :root.t_dark .t_light .t_alt2_SwitchThumb, :root.t_dark .t_light .t_alt2_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_alt2_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_alt2_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_alt2_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_alt2_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_disabled_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_disabled_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_disabled_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_disabled_Tooltip, :root.t_dark .t_light .t_disabled_ProgressIndicator, :root.t_dark .t_light .t_disabled_SliderThumb, :root.t_dark .t_light .t_disabled_SwitchThumb, :root.t_dark .t_light .t_disabled_Tooltip, :root.t_light .t_alt2_ProgressIndicator, :root.t_light .t_alt2_SliderThumb, :root.t_light .t_alt2_SwitchThumb, :root.t_light .t_alt2_Tooltip, :root.t_light .t_dark .t_light .t_alt2_ProgressIndicator, :root.t_light .t_dark .t_light .t_alt2_SliderThumb, :root.t_light .t_dark .t_light .t_alt2_SwitchThumb, :root.t_light .t_dark .t_light .t_alt2_Tooltip, :root.t_light .t_dark .t_light .t_disabled_ProgressIndicator, :root.t_light .t_dark .t_light .t_disabled_SliderThumb, :root.t_light .t_dark .t_light .t_disabled_SwitchThumb, :root.t_light .t_dark .t_light .t_disabled_Tooltip, :root.t_light .t_disabled_ProgressIndicator, :root.t_light .t_disabled_SliderThumb, :root.t_light .t_disabled_SwitchThumb, :root.t_light .t_disabled_Tooltip {--background0:hsla(0, 0%, 0%, 0.75);--background025:hsla(112, 22%, 0%, 1);--background05:hsla(96, 16%, 25%, 1);--background075:hsla(191, 32%, 50%, 1);--color0:hsla(191, 32%, 88%, 1);--color025:hsla(191, 32%, 93%, 1);--color05:hsla(191, 32%, 99%, 1);--color075:hsla(180, 20%, 99%, 0.75);--background:hsla(191, 32%, 50%, 1);--backgroundHover:hsla(191, 32%, 55%, 1);--backgroundPress:hsla(191, 32%, 61%, 1);--backgroundFocus:hsla(191, 32%, 66%, 1);--color:hsla(191, 32%, 83%, 1);--colorHover:hsla(191, 32%, 77%, 1);--colorPress:hsla(191, 32%, 83%, 1);--colorFocus:hsla(191, 32%, 77%, 1);--placeholderColor:hsla(191, 32%, 77%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 77%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_alt2_ProgressIndicator, .t_alt2_SliderThumb, .t_alt2_SwitchThumb, .t_alt2_Tooltip, .t_dark .t_light .t_alt2_ProgressIndicator, .t_dark .t_light .t_alt2_SliderThumb, .t_dark .t_light .t_alt2_SwitchThumb, .t_dark .t_light .t_alt2_Tooltip, .t_dark .t_light .t_disabled_ProgressIndicator, .t_dark .t_light .t_disabled_SliderThumb, .t_dark .t_light .t_disabled_SwitchThumb, .t_dark .t_light .t_disabled_Tooltip, .t_disabled_ProgressIndicator, .t_disabled_SliderThumb, .t_disabled_SwitchThumb, .t_disabled_Tooltip {--background0:hsla(0, 0%, 0%, 0.75);--background025:hsla(112, 22%, 0%, 1);--background05:hsla(96, 16%, 25%, 1);--background075:hsla(191, 32%, 50%, 1);--color0:hsla(191, 32%, 88%, 1);--color025:hsla(191, 32%, 93%, 1);--color05:hsla(191, 32%, 99%, 1);--color075:hsla(180, 20%, 99%, 0.75);--background:hsla(191, 32%, 50%, 1);--backgroundHover:hsla(191, 32%, 55%, 1);--backgroundPress:hsla(191, 32%, 61%, 1);--backgroundFocus:hsla(191, 32%, 66%, 1);--color:hsla(191, 32%, 83%, 1);--colorHover:hsla(191, 32%, 77%, 1);--colorPress:hsla(191, 32%, 83%, 1);--colorFocus:hsla(191, 32%, 77%, 1);--placeholderColor:hsla(191, 32%, 77%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 77%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} - } -:root.t_dark .t_light .t_alt2_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_alt2_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_disabled_SliderTrackActive, :root.t_dark .t_light .t_disabled_SliderTrackActive, :root.t_light .t_alt2_SliderTrackActive, :root.t_light .t_dark .t_light .t_alt2_SliderTrackActive, :root.t_light .t_dark .t_light .t_disabled_SliderTrackActive, :root.t_light .t_disabled_SliderTrackActive {--background0:hsla(96, 16%, 25%, 1);--background025:hsla(191, 32%, 50%, 1);--background05:hsla(191, 32%, 55%, 1);--background075:hsla(191, 32%, 61%, 1);--color0:hsla(191, 32%, 77%, 1);--color025:hsla(191, 32%, 83%, 1);--color05:hsla(191, 32%, 88%, 1);--color075:hsla(191, 32%, 93%, 1);--background:hsla(191, 32%, 61%, 1);--backgroundHover:hsla(191, 32%, 66%, 1);--backgroundPress:hsla(191, 32%, 72%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(191, 32%, 83%, 1);--colorHover:hsla(191, 32%, 77%, 1);--colorPress:hsla(191, 32%, 83%, 1);--colorFocus:hsla(191, 32%, 77%, 1);--placeholderColor:hsla(191, 32%, 66%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 83%, 1);--borderColorFocus:hsla(191, 32%, 88%, 1);--borderColorPress:hsla(191, 32%, 83%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_alt2_SliderTrackActive, .t_dark .t_light .t_alt2_SliderTrackActive, .t_dark .t_light .t_disabled_SliderTrackActive, .t_disabled_SliderTrackActive {--background0:hsla(96, 16%, 25%, 1);--background025:hsla(191, 32%, 50%, 1);--background05:hsla(191, 32%, 55%, 1);--background075:hsla(191, 32%, 61%, 1);--color0:hsla(191, 32%, 77%, 1);--color025:hsla(191, 32%, 83%, 1);--color05:hsla(191, 32%, 88%, 1);--color075:hsla(191, 32%, 93%, 1);--background:hsla(191, 32%, 61%, 1);--backgroundHover:hsla(191, 32%, 66%, 1);--backgroundPress:hsla(191, 32%, 72%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(191, 32%, 83%, 1);--colorHover:hsla(191, 32%, 77%, 1);--colorPress:hsla(191, 32%, 83%, 1);--colorFocus:hsla(191, 32%, 77%, 1);--placeholderColor:hsla(191, 32%, 66%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 83%, 1);--borderColorFocus:hsla(191, 32%, 88%, 1);--borderColorPress:hsla(191, 32%, 83%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_dim, :root.t_dark .t_light .t_dim, :root.t_light .t_dark .t_light .t_dim, :root.t_light .t_dim {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);--color1:hsla(191, 32%, 93%, 1);--color2:hsla(191, 32%, 88%, 1);--color3:hsla(191, 32%, 83%, 1);--color4:hsla(191, 32%, 77%, 1);--color5:hsla(191, 32%, 72%, 1);--color6:hsla(191, 32%, 66%, 1);--color7:hsla(191, 32%, 61%, 1);--color8:hsla(191, 32%, 55%, 1);--color9:hsla(191, 32%, 50%, 1);--color10:hsla(96, 16%, 25%, 1);--color11:hsla(112, 22%, 0%, 1);--color12:hsla(0, 0%, 0%, 0.75);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_dim, .t_dim {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);--color1:hsla(191, 32%, 93%, 1);--color2:hsla(191, 32%, 88%, 1);--color3:hsla(191, 32%, 83%, 1);--color4:hsla(191, 32%, 77%, 1);--color5:hsla(191, 32%, 72%, 1);--color6:hsla(191, 32%, 66%, 1);--color7:hsla(191, 32%, 61%, 1);--color8:hsla(191, 32%, 55%, 1);--color9:hsla(191, 32%, 50%, 1);--color10:hsla(96, 16%, 25%, 1);--color11:hsla(112, 22%, 0%, 1);--color12:hsla(0, 0%, 0%, 0.75);} - } -:root.t_dark .t_light .t_dark .t_light .t_disabled, :root.t_dark .t_light .t_disabled, :root.t_light .t_dark .t_light .t_disabled, :root.t_light .t_disabled {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);--color1:hsla(191, 32%, 88%, 1);--color2:hsla(191, 32%, 83%, 1);--color3:hsla(191, 32%, 77%, 1);--color4:hsla(191, 32%, 72%, 1);--color5:hsla(191, 32%, 66%, 1);--color6:hsla(191, 32%, 61%, 1);--color7:hsla(191, 32%, 55%, 1);--color8:hsla(191, 32%, 50%, 1);--color9:hsla(96, 16%, 25%, 1);--color10:hsla(112, 22%, 0%, 1);--color11:hsla(0, 0%, 0%, 0.75);--color12:hsla(0, 0%, 0%, 0.5);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_disabled, .t_disabled {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);--color1:hsla(191, 32%, 88%, 1);--color2:hsla(191, 32%, 83%, 1);--color3:hsla(191, 32%, 77%, 1);--color4:hsla(191, 32%, 72%, 1);--color5:hsla(191, 32%, 66%, 1);--color6:hsla(191, 32%, 61%, 1);--color7:hsla(191, 32%, 55%, 1);--color8:hsla(191, 32%, 50%, 1);--color9:hsla(96, 16%, 25%, 1);--color10:hsla(112, 22%, 0%, 1);--color11:hsla(0, 0%, 0%, 0.75);--color12:hsla(0, 0%, 0%, 0.5);} - } -:root.t_dark .t_light .t_dark .t_light .t_error, :root.t_dark .t_light .t_dark .t_light .t_red, :root.t_dark .t_light .t_error, :root.t_dark .t_light .t_red, :root.t_light .t_dark .t_light .t_error, :root.t_light .t_dark .t_light .t_red, :root.t_light .t_error, :root.t_light .t_red {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(0, 60%, 99%, 0.25);--background025:hsla(0, 60%, 99%, 0.5);--background05:hsla(0, 60%, 99%, 0.75);--background075:hsla(0, 70%, 99%, 1);--color0:hsla(0, 70%, 10%, 1);--color025:hsla(0, 69%, 10%, 0.75);--color05:hsla(0, 69%, 10%, 0.5);--color075:hsla(0, 69%, 10%, 0.25);--background:hsla(0, 70%, 99%, 1);--backgroundHover:hsla(0, 70%, 93%, 1);--backgroundPress:hsla(0, 70%, 88%, 1);--backgroundFocus:hsla(0, 70%, 82%, 1);--color:hsla(0, 70%, 15%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 15%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 50%, 1);--borderColor:hsla(0, 70%, 82%, 1);--borderColorHover:hsla(0, 70%, 77%, 1);--borderColorFocus:hsla(0, 70%, 72%, 1);--borderColorPress:hsla(0, 70%, 77%, 1);--color1:hsla(0, 70%, 99%, 1);--color2:hsla(0, 70%, 93%, 1);--color3:hsla(0, 70%, 88%, 1);--color4:hsla(0, 70%, 82%, 1);--color5:hsla(0, 70%, 77%, 1);--color6:hsla(0, 70%, 72%, 1);--color7:hsla(0, 70%, 66%, 1);--color8:hsla(0, 70%, 61%, 1);--color9:hsla(0, 70%, 55%, 1);--color10:hsla(0, 70%, 50%, 1);--color11:hsla(0, 70%, 15%, 1);--color12:hsla(0, 70%, 10%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_error, .t_dark .t_light .t_red, .t_error, .t_red {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(0, 60%, 99%, 0.25);--background025:hsla(0, 60%, 99%, 0.5);--background05:hsla(0, 60%, 99%, 0.75);--background075:hsla(0, 70%, 99%, 1);--color0:hsla(0, 70%, 10%, 1);--color025:hsla(0, 69%, 10%, 0.75);--color05:hsla(0, 69%, 10%, 0.5);--color075:hsla(0, 69%, 10%, 0.25);--background:hsla(0, 70%, 99%, 1);--backgroundHover:hsla(0, 70%, 93%, 1);--backgroundPress:hsla(0, 70%, 88%, 1);--backgroundFocus:hsla(0, 70%, 82%, 1);--color:hsla(0, 70%, 15%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 15%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 50%, 1);--borderColor:hsla(0, 70%, 82%, 1);--borderColorHover:hsla(0, 70%, 77%, 1);--borderColorFocus:hsla(0, 70%, 72%, 1);--borderColorPress:hsla(0, 70%, 77%, 1);--color1:hsla(0, 70%, 99%, 1);--color2:hsla(0, 70%, 93%, 1);--color3:hsla(0, 70%, 88%, 1);--color4:hsla(0, 70%, 82%, 1);--color5:hsla(0, 70%, 77%, 1);--color6:hsla(0, 70%, 72%, 1);--color7:hsla(0, 70%, 66%, 1);--color8:hsla(0, 70%, 61%, 1);--color9:hsla(0, 70%, 55%, 1);--color10:hsla(0, 70%, 50%, 1);--color11:hsla(0, 70%, 15%, 1);--color12:hsla(0, 70%, 10%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_error_Button, :root.t_dark .t_light .t_dark .t_light .t_error_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_error_Switch, :root.t_dark .t_light .t_dark .t_light .t_error_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_red_Button, :root.t_dark .t_light .t_dark .t_light .t_red_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_red_Switch, :root.t_dark .t_light .t_dark .t_light .t_red_TooltipContent, :root.t_dark .t_light .t_error_Button, :root.t_dark .t_light .t_error_SliderTrack, :root.t_dark .t_light .t_error_Switch, :root.t_dark .t_light .t_error_TooltipContent, :root.t_dark .t_light .t_red_Button, :root.t_dark .t_light .t_red_SliderTrack, :root.t_dark .t_light .t_red_Switch, :root.t_dark .t_light .t_red_TooltipContent, :root.t_light .t_dark .t_light .t_error_Button, :root.t_light .t_dark .t_light .t_error_SliderTrack, :root.t_light .t_dark .t_light .t_error_Switch, :root.t_light .t_dark .t_light .t_error_TooltipContent, :root.t_light .t_dark .t_light .t_red_Button, :root.t_light .t_dark .t_light .t_red_SliderTrack, :root.t_light .t_dark .t_light .t_red_Switch, :root.t_light .t_dark .t_light .t_red_TooltipContent, :root.t_light .t_error_Button, :root.t_light .t_error_SliderTrack, :root.t_light .t_error_Switch, :root.t_light .t_error_TooltipContent, :root.t_light .t_red_Button, :root.t_light .t_red_SliderTrack, :root.t_light .t_red_Switch, :root.t_light .t_red_TooltipContent {--background0:hsla(0, 60%, 99%, 0.75);--background025:hsla(0, 70%, 99%, 1);--background05:hsla(0, 70%, 93%, 1);--background075:hsla(0, 70%, 88%, 1);--color0:hsla(0, 70%, 50%, 1);--color025:hsla(0, 70%, 15%, 1);--color05:hsla(0, 70%, 10%, 1);--color075:hsla(0, 69%, 10%, 0.75);--background:hsla(0, 70%, 88%, 1);--backgroundHover:hsla(0, 70%, 82%, 1);--backgroundPress:hsla(0, 70%, 77%, 1);--backgroundFocus:hsla(0, 70%, 72%, 1);--color:hsla(0, 70%, 15%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 15%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 61%, 1);--borderColor:hsla(0, 70%, 72%, 1);--borderColorHover:hsla(0, 70%, 66%, 1);--borderColorFocus:hsla(0, 70%, 61%, 1);--borderColorPress:hsla(0, 70%, 66%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_error_Button, .t_dark .t_light .t_error_SliderTrack, .t_dark .t_light .t_error_Switch, .t_dark .t_light .t_error_TooltipContent, .t_dark .t_light .t_red_Button, .t_dark .t_light .t_red_SliderTrack, .t_dark .t_light .t_red_Switch, .t_dark .t_light .t_red_TooltipContent, .t_error_Button, .t_error_SliderTrack, .t_error_Switch, .t_error_TooltipContent, .t_red_Button, .t_red_SliderTrack, .t_red_Switch, .t_red_TooltipContent {--background0:hsla(0, 60%, 99%, 0.75);--background025:hsla(0, 70%, 99%, 1);--background05:hsla(0, 70%, 93%, 1);--background075:hsla(0, 70%, 88%, 1);--color0:hsla(0, 70%, 50%, 1);--color025:hsla(0, 70%, 15%, 1);--color05:hsla(0, 70%, 10%, 1);--color075:hsla(0, 69%, 10%, 0.75);--background:hsla(0, 70%, 88%, 1);--backgroundHover:hsla(0, 70%, 82%, 1);--backgroundPress:hsla(0, 70%, 77%, 1);--backgroundFocus:hsla(0, 70%, 72%, 1);--color:hsla(0, 70%, 15%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 15%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 61%, 1);--borderColor:hsla(0, 70%, 72%, 1);--borderColorHover:hsla(0, 70%, 66%, 1);--borderColorFocus:hsla(0, 70%, 61%, 1);--borderColorPress:hsla(0, 70%, 66%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_error_Card, :root.t_dark .t_light .t_dark .t_light .t_error_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_error_Progress, :root.t_dark .t_light .t_dark .t_light .t_error_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_red_Card, :root.t_dark .t_light .t_dark .t_light .t_red_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_red_Progress, :root.t_dark .t_light .t_dark .t_light .t_red_TooltipArrow, :root.t_dark .t_light .t_error_Card, :root.t_dark .t_light .t_error_DrawerFrame, :root.t_dark .t_light .t_error_Progress, :root.t_dark .t_light .t_error_TooltipArrow, :root.t_dark .t_light .t_red_Card, :root.t_dark .t_light .t_red_DrawerFrame, :root.t_dark .t_light .t_red_Progress, :root.t_dark .t_light .t_red_TooltipArrow, :root.t_light .t_dark .t_light .t_error_Card, :root.t_light .t_dark .t_light .t_error_DrawerFrame, :root.t_light .t_dark .t_light .t_error_Progress, :root.t_light .t_dark .t_light .t_error_TooltipArrow, :root.t_light .t_dark .t_light .t_red_Card, :root.t_light .t_dark .t_light .t_red_DrawerFrame, :root.t_light .t_dark .t_light .t_red_Progress, :root.t_light .t_dark .t_light .t_red_TooltipArrow, :root.t_light .t_error_Card, :root.t_light .t_error_DrawerFrame, :root.t_light .t_error_Progress, :root.t_light .t_error_TooltipArrow, :root.t_light .t_red_Card, :root.t_light .t_red_DrawerFrame, :root.t_light .t_red_Progress, :root.t_light .t_red_TooltipArrow {--background0:hsla(0, 60%, 99%, 0.5);--background025:hsla(0, 60%, 99%, 0.75);--background05:hsla(0, 70%, 99%, 1);--background075:hsla(0, 70%, 93%, 1);--color0:hsla(0, 70%, 15%, 1);--color025:hsla(0, 70%, 10%, 1);--color05:hsla(0, 69%, 10%, 0.75);--color075:hsla(0, 69%, 10%, 0.5);--background:hsla(0, 70%, 93%, 1);--backgroundHover:hsla(0, 70%, 88%, 1);--backgroundPress:hsla(0, 70%, 82%, 1);--backgroundFocus:hsla(0, 70%, 77%, 1);--color:hsla(0, 70%, 15%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 15%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 55%, 1);--borderColor:hsla(0, 70%, 77%, 1);--borderColorHover:hsla(0, 70%, 72%, 1);--borderColorFocus:hsla(0, 70%, 66%, 1);--borderColorPress:hsla(0, 70%, 72%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_error_Card, .t_dark .t_light .t_error_DrawerFrame, .t_dark .t_light .t_error_Progress, .t_dark .t_light .t_error_TooltipArrow, .t_dark .t_light .t_red_Card, .t_dark .t_light .t_red_DrawerFrame, .t_dark .t_light .t_red_Progress, .t_dark .t_light .t_red_TooltipArrow, .t_error_Card, .t_error_DrawerFrame, .t_error_Progress, .t_error_TooltipArrow, .t_red_Card, .t_red_DrawerFrame, .t_red_Progress, .t_red_TooltipArrow {--background0:hsla(0, 60%, 99%, 0.5);--background025:hsla(0, 60%, 99%, 0.75);--background05:hsla(0, 70%, 99%, 1);--background075:hsla(0, 70%, 93%, 1);--color0:hsla(0, 70%, 15%, 1);--color025:hsla(0, 70%, 10%, 1);--color05:hsla(0, 69%, 10%, 0.75);--color075:hsla(0, 69%, 10%, 0.5);--background:hsla(0, 70%, 93%, 1);--backgroundHover:hsla(0, 70%, 88%, 1);--backgroundPress:hsla(0, 70%, 82%, 1);--backgroundFocus:hsla(0, 70%, 77%, 1);--color:hsla(0, 70%, 15%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 15%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 55%, 1);--borderColor:hsla(0, 70%, 77%, 1);--borderColorHover:hsla(0, 70%, 72%, 1);--borderColorFocus:hsla(0, 70%, 66%, 1);--borderColorPress:hsla(0, 70%, 72%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_error_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_error_Input, :root.t_dark .t_light .t_dark .t_light .t_error_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_error_TextArea, :root.t_dark .t_light .t_dark .t_light .t_red_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_red_Input, :root.t_dark .t_light .t_dark .t_light .t_red_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_red_TextArea, :root.t_dark .t_light .t_error_Checkbox, :root.t_dark .t_light .t_error_Input, :root.t_dark .t_light .t_error_RadioGroupItem, :root.t_dark .t_light .t_error_TextArea, :root.t_dark .t_light .t_red_Checkbox, :root.t_dark .t_light .t_red_Input, :root.t_dark .t_light .t_red_RadioGroupItem, :root.t_dark .t_light .t_red_TextArea, :root.t_light .t_dark .t_light .t_error_Checkbox, :root.t_light .t_dark .t_light .t_error_Input, :root.t_light .t_dark .t_light .t_error_RadioGroupItem, :root.t_light .t_dark .t_light .t_error_TextArea, :root.t_light .t_dark .t_light .t_red_Checkbox, :root.t_light .t_dark .t_light .t_red_Input, :root.t_light .t_dark .t_light .t_red_RadioGroupItem, :root.t_light .t_dark .t_light .t_red_TextArea, :root.t_light .t_error_Checkbox, :root.t_light .t_error_Input, :root.t_light .t_error_RadioGroupItem, :root.t_light .t_error_TextArea, :root.t_light .t_red_Checkbox, :root.t_light .t_red_Input, :root.t_light .t_red_RadioGroupItem, :root.t_light .t_red_TextArea {--accentBackground:hsla(0, 60%, 99%, 0);--accentColor:hsla(0, 60%, 99%, 0);--background0:hsla(0, 60%, 99%, 0.25);--background025:hsla(0, 60%, 99%, 0.5);--background05:hsla(0, 60%, 99%, 0.75);--background075:hsla(0, 70%, 99%, 1);--color0:hsla(0, 70%, 10%, 1);--color025:hsla(0, 69%, 10%, 0.75);--color05:hsla(0, 69%, 10%, 0.5);--color075:hsla(0, 69%, 10%, 0.25);--background:hsla(0, 70%, 99%, 1);--backgroundHover:hsla(0, 70%, 93%, 1);--backgroundPress:hsla(0, 70%, 88%, 1);--backgroundFocus:hsla(0, 70%, 82%, 1);--color:hsla(0, 70%, 15%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 15%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 50%, 1);--borderColor:hsla(0, 70%, 72%, 1);--borderColorHover:hsla(0, 70%, 66%, 1);--borderColorFocus:hsla(0, 70%, 61%, 1);--borderColorPress:hsla(0, 70%, 66%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_error_Checkbox, .t_dark .t_light .t_error_Input, .t_dark .t_light .t_error_RadioGroupItem, .t_dark .t_light .t_error_TextArea, .t_dark .t_light .t_red_Checkbox, .t_dark .t_light .t_red_Input, .t_dark .t_light .t_red_RadioGroupItem, .t_dark .t_light .t_red_TextArea, .t_error_Checkbox, .t_error_Input, .t_error_RadioGroupItem, .t_error_TextArea, .t_red_Checkbox, .t_red_Input, .t_red_RadioGroupItem, .t_red_TextArea {--accentBackground:hsla(0, 60%, 99%, 0);--accentColor:hsla(0, 60%, 99%, 0);--background0:hsla(0, 60%, 99%, 0.25);--background025:hsla(0, 60%, 99%, 0.5);--background05:hsla(0, 60%, 99%, 0.75);--background075:hsla(0, 70%, 99%, 1);--color0:hsla(0, 70%, 10%, 1);--color025:hsla(0, 69%, 10%, 0.75);--color05:hsla(0, 69%, 10%, 0.5);--color075:hsla(0, 69%, 10%, 0.25);--background:hsla(0, 70%, 99%, 1);--backgroundHover:hsla(0, 70%, 93%, 1);--backgroundPress:hsla(0, 70%, 88%, 1);--backgroundFocus:hsla(0, 70%, 82%, 1);--color:hsla(0, 70%, 15%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 15%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 50%, 1);--borderColor:hsla(0, 70%, 72%, 1);--borderColorHover:hsla(0, 70%, 66%, 1);--borderColorFocus:hsla(0, 70%, 61%, 1);--borderColorPress:hsla(0, 70%, 66%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_error_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_error_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_error_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_error_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_red_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_red_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_red_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_red_Tooltip, :root.t_dark .t_light .t_error_ProgressIndicator, :root.t_dark .t_light .t_error_SliderThumb, :root.t_dark .t_light .t_error_SwitchThumb, :root.t_dark .t_light .t_error_Tooltip, :root.t_dark .t_light .t_red_ProgressIndicator, :root.t_dark .t_light .t_red_SliderThumb, :root.t_dark .t_light .t_red_SwitchThumb, :root.t_dark .t_light .t_red_Tooltip, :root.t_light .t_dark .t_light .t_error_ProgressIndicator, :root.t_light .t_dark .t_light .t_error_SliderThumb, :root.t_light .t_dark .t_light .t_error_SwitchThumb, :root.t_light .t_dark .t_light .t_error_Tooltip, :root.t_light .t_dark .t_light .t_red_ProgressIndicator, :root.t_light .t_dark .t_light .t_red_SliderThumb, :root.t_light .t_dark .t_light .t_red_SwitchThumb, :root.t_light .t_dark .t_light .t_red_Tooltip, :root.t_light .t_error_ProgressIndicator, :root.t_light .t_error_SliderThumb, :root.t_light .t_error_SwitchThumb, :root.t_light .t_error_Tooltip, :root.t_light .t_red_ProgressIndicator, :root.t_light .t_red_SliderThumb, :root.t_light .t_red_SwitchThumb, :root.t_light .t_red_Tooltip {--accentBackground:hsla(0, 60%, 99%, 0);--accentColor:hsla(0, 60%, 99%, 0);--background0:hsla(0, 69%, 10%, 0.25);--background025:hsla(0, 69%, 10%, 0.5);--background05:hsla(0, 69%, 10%, 0.75);--background075:hsla(0, 70%, 10%, 1);--color0:hsla(0, 70%, 99%, 1);--color025:hsla(0, 60%, 99%, 0.75);--color05:hsla(0, 60%, 99%, 0.5);--color075:hsla(0, 60%, 99%, 0.25);--background:hsla(0, 70%, 10%, 1);--backgroundHover:hsla(0, 70%, 15%, 1);--backgroundPress:hsla(0, 70%, 50%, 1);--backgroundFocus:hsla(0, 70%, 55%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 88%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 88%, 1);--placeholderColor:hsla(0, 70%, 88%, 1);--borderColor:hsla(0, 70%, 55%, 1);--borderColorHover:hsla(0, 70%, 61%, 1);--borderColorFocus:hsla(0, 70%, 66%, 1);--borderColorPress:hsla(0, 70%, 61%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_error_ProgressIndicator, .t_dark .t_light .t_error_SliderThumb, .t_dark .t_light .t_error_SwitchThumb, .t_dark .t_light .t_error_Tooltip, .t_dark .t_light .t_red_ProgressIndicator, .t_dark .t_light .t_red_SliderThumb, .t_dark .t_light .t_red_SwitchThumb, .t_dark .t_light .t_red_Tooltip, .t_error_ProgressIndicator, .t_error_SliderThumb, .t_error_SwitchThumb, .t_error_Tooltip, .t_red_ProgressIndicator, .t_red_SliderThumb, .t_red_SwitchThumb, .t_red_Tooltip {--accentBackground:hsla(0, 60%, 99%, 0);--accentColor:hsla(0, 60%, 99%, 0);--background0:hsla(0, 69%, 10%, 0.25);--background025:hsla(0, 69%, 10%, 0.5);--background05:hsla(0, 69%, 10%, 0.75);--background075:hsla(0, 70%, 10%, 1);--color0:hsla(0, 70%, 99%, 1);--color025:hsla(0, 60%, 99%, 0.75);--color05:hsla(0, 60%, 99%, 0.5);--color075:hsla(0, 60%, 99%, 0.25);--background:hsla(0, 70%, 10%, 1);--backgroundHover:hsla(0, 70%, 15%, 1);--backgroundPress:hsla(0, 70%, 50%, 1);--backgroundFocus:hsla(0, 70%, 55%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 88%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 88%, 1);--placeholderColor:hsla(0, 70%, 88%, 1);--borderColor:hsla(0, 70%, 55%, 1);--borderColorHover:hsla(0, 70%, 61%, 1);--borderColorFocus:hsla(0, 70%, 66%, 1);--borderColorPress:hsla(0, 70%, 61%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_error_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_red_SliderTrackActive, :root.t_dark .t_light .t_error_SliderTrackActive, :root.t_dark .t_light .t_red_SliderTrackActive, :root.t_light .t_dark .t_light .t_error_SliderTrackActive, :root.t_light .t_dark .t_light .t_red_SliderTrackActive, :root.t_light .t_error_SliderTrackActive, :root.t_light .t_red_SliderTrackActive {--accentBackground:hsla(0, 60%, 99%, 0);--accentColor:hsla(0, 60%, 99%, 0);--background0:hsla(0, 69%, 10%, 0.75);--background025:hsla(0, 70%, 10%, 1);--background05:hsla(0, 70%, 15%, 1);--background075:hsla(0, 70%, 50%, 1);--color0:hsla(0, 70%, 88%, 1);--color025:hsla(0, 70%, 93%, 1);--color05:hsla(0, 70%, 99%, 1);--color075:hsla(0, 60%, 99%, 0.75);--background:hsla(0, 70%, 50%, 1);--backgroundHover:hsla(0, 70%, 55%, 1);--backgroundPress:hsla(0, 70%, 61%, 1);--backgroundFocus:hsla(0, 70%, 66%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 88%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 88%, 1);--placeholderColor:hsla(0, 70%, 77%, 1);--borderColor:hsla(0, 70%, 66%, 1);--borderColorHover:hsla(0, 70%, 72%, 1);--borderColorFocus:hsla(0, 70%, 77%, 1);--borderColorPress:hsla(0, 70%, 72%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_error_SliderTrackActive, .t_dark .t_light .t_red_SliderTrackActive, .t_error_SliderTrackActive, .t_red_SliderTrackActive {--accentBackground:hsla(0, 60%, 99%, 0);--accentColor:hsla(0, 60%, 99%, 0);--background0:hsla(0, 69%, 10%, 0.75);--background025:hsla(0, 70%, 10%, 1);--background05:hsla(0, 70%, 15%, 1);--background075:hsla(0, 70%, 50%, 1);--color0:hsla(0, 70%, 88%, 1);--color025:hsla(0, 70%, 93%, 1);--color05:hsla(0, 70%, 99%, 1);--color075:hsla(0, 60%, 99%, 0.75);--background:hsla(0, 70%, 50%, 1);--backgroundHover:hsla(0, 70%, 55%, 1);--backgroundPress:hsla(0, 70%, 61%, 1);--backgroundFocus:hsla(0, 70%, 66%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 88%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 88%, 1);--placeholderColor:hsla(0, 70%, 77%, 1);--borderColor:hsla(0, 70%, 66%, 1);--borderColorHover:hsla(0, 70%, 72%, 1);--borderColorFocus:hsla(0, 70%, 77%, 1);--borderColorPress:hsla(0, 70%, 72%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_success, :root.t_dark .t_light .t_success, :root.t_light .t_dark .t_light .t_success, :root.t_light .t_success {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(160, 60%, 99%, 0.25);--background025:hsla(160, 60%, 99%, 0.5);--background05:hsla(160, 60%, 99%, 0.75);--background075:hsla(153, 70%, 99%, 1);--color0:hsla(153, 70%, 10%, 1);--color025:hsla(153, 69%, 10%, 0.75);--color05:hsla(153, 69%, 10%, 0.5);--color075:hsla(153, 69%, 10%, 0.25);--background:hsla(153, 70%, 99%, 1);--backgroundHover:hsla(153, 70%, 93%, 1);--backgroundPress:hsla(153, 70%, 88%, 1);--backgroundFocus:hsla(153, 70%, 82%, 1);--color:hsla(153, 70%, 15%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 15%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 50%, 1);--borderColor:hsla(153, 70%, 82%, 1);--borderColorHover:hsla(153, 70%, 77%, 1);--borderColorFocus:hsla(153, 70%, 72%, 1);--borderColorPress:hsla(153, 70%, 77%, 1);--color1:hsla(153, 70%, 99%, 1);--color2:hsla(153, 70%, 93%, 1);--color3:hsla(153, 70%, 88%, 1);--color4:hsla(153, 70%, 82%, 1);--color5:hsla(153, 70%, 77%, 1);--color6:hsla(153, 70%, 72%, 1);--color7:hsla(153, 70%, 66%, 1);--color8:hsla(153, 70%, 61%, 1);--color9:hsla(153, 70%, 55%, 1);--color10:hsla(153, 70%, 50%, 1);--color11:hsla(153, 70%, 15%, 1);--color12:hsla(153, 70%, 10%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_success, .t_success {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(160, 60%, 99%, 0.25);--background025:hsla(160, 60%, 99%, 0.5);--background05:hsla(160, 60%, 99%, 0.75);--background075:hsla(153, 70%, 99%, 1);--color0:hsla(153, 70%, 10%, 1);--color025:hsla(153, 69%, 10%, 0.75);--color05:hsla(153, 69%, 10%, 0.5);--color075:hsla(153, 69%, 10%, 0.25);--background:hsla(153, 70%, 99%, 1);--backgroundHover:hsla(153, 70%, 93%, 1);--backgroundPress:hsla(153, 70%, 88%, 1);--backgroundFocus:hsla(153, 70%, 82%, 1);--color:hsla(153, 70%, 15%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 15%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 50%, 1);--borderColor:hsla(153, 70%, 82%, 1);--borderColorHover:hsla(153, 70%, 77%, 1);--borderColorFocus:hsla(153, 70%, 72%, 1);--borderColorPress:hsla(153, 70%, 77%, 1);--color1:hsla(153, 70%, 99%, 1);--color2:hsla(153, 70%, 93%, 1);--color3:hsla(153, 70%, 88%, 1);--color4:hsla(153, 70%, 82%, 1);--color5:hsla(153, 70%, 77%, 1);--color6:hsla(153, 70%, 72%, 1);--color7:hsla(153, 70%, 66%, 1);--color8:hsla(153, 70%, 61%, 1);--color9:hsla(153, 70%, 55%, 1);--color10:hsla(153, 70%, 50%, 1);--color11:hsla(153, 70%, 15%, 1);--color12:hsla(153, 70%, 10%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_success_Button, :root.t_dark .t_light .t_dark .t_light .t_success_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_success_Switch, :root.t_dark .t_light .t_dark .t_light .t_success_TooltipContent, :root.t_dark .t_light .t_success_Button, :root.t_dark .t_light .t_success_SliderTrack, :root.t_dark .t_light .t_success_Switch, :root.t_dark .t_light .t_success_TooltipContent, :root.t_light .t_dark .t_light .t_success_Button, :root.t_light .t_dark .t_light .t_success_SliderTrack, :root.t_light .t_dark .t_light .t_success_Switch, :root.t_light .t_dark .t_light .t_success_TooltipContent, :root.t_light .t_success_Button, :root.t_light .t_success_SliderTrack, :root.t_light .t_success_Switch, :root.t_light .t_success_TooltipContent {--background0:hsla(160, 60%, 99%, 0.75);--background025:hsla(153, 70%, 99%, 1);--background05:hsla(153, 70%, 93%, 1);--background075:hsla(153, 70%, 88%, 1);--color0:hsla(153, 70%, 50%, 1);--color025:hsla(153, 70%, 15%, 1);--color05:hsla(153, 70%, 10%, 1);--color075:hsla(153, 69%, 10%, 0.75);--background:hsla(153, 70%, 88%, 1);--backgroundHover:hsla(153, 70%, 82%, 1);--backgroundPress:hsla(153, 70%, 77%, 1);--backgroundFocus:hsla(153, 70%, 72%, 1);--color:hsla(153, 70%, 15%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 15%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 61%, 1);--borderColor:hsla(153, 70%, 72%, 1);--borderColorHover:hsla(153, 70%, 66%, 1);--borderColorFocus:hsla(153, 70%, 61%, 1);--borderColorPress:hsla(153, 70%, 66%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_success_Button, .t_dark .t_light .t_success_SliderTrack, .t_dark .t_light .t_success_Switch, .t_dark .t_light .t_success_TooltipContent, .t_success_Button, .t_success_SliderTrack, .t_success_Switch, .t_success_TooltipContent {--background0:hsla(160, 60%, 99%, 0.75);--background025:hsla(153, 70%, 99%, 1);--background05:hsla(153, 70%, 93%, 1);--background075:hsla(153, 70%, 88%, 1);--color0:hsla(153, 70%, 50%, 1);--color025:hsla(153, 70%, 15%, 1);--color05:hsla(153, 70%, 10%, 1);--color075:hsla(153, 69%, 10%, 0.75);--background:hsla(153, 70%, 88%, 1);--backgroundHover:hsla(153, 70%, 82%, 1);--backgroundPress:hsla(153, 70%, 77%, 1);--backgroundFocus:hsla(153, 70%, 72%, 1);--color:hsla(153, 70%, 15%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 15%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 61%, 1);--borderColor:hsla(153, 70%, 72%, 1);--borderColorHover:hsla(153, 70%, 66%, 1);--borderColorFocus:hsla(153, 70%, 61%, 1);--borderColorPress:hsla(153, 70%, 66%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_success_Card, :root.t_dark .t_light .t_dark .t_light .t_success_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_success_Progress, :root.t_dark .t_light .t_dark .t_light .t_success_TooltipArrow, :root.t_dark .t_light .t_success_Card, :root.t_dark .t_light .t_success_DrawerFrame, :root.t_dark .t_light .t_success_Progress, :root.t_dark .t_light .t_success_TooltipArrow, :root.t_light .t_dark .t_light .t_success_Card, :root.t_light .t_dark .t_light .t_success_DrawerFrame, :root.t_light .t_dark .t_light .t_success_Progress, :root.t_light .t_dark .t_light .t_success_TooltipArrow, :root.t_light .t_success_Card, :root.t_light .t_success_DrawerFrame, :root.t_light .t_success_Progress, :root.t_light .t_success_TooltipArrow {--background0:hsla(160, 60%, 99%, 0.5);--background025:hsla(160, 60%, 99%, 0.75);--background05:hsla(153, 70%, 99%, 1);--background075:hsla(153, 70%, 93%, 1);--color0:hsla(153, 70%, 15%, 1);--color025:hsla(153, 70%, 10%, 1);--color05:hsla(153, 69%, 10%, 0.75);--color075:hsla(153, 69%, 10%, 0.5);--background:hsla(153, 70%, 93%, 1);--backgroundHover:hsla(153, 70%, 88%, 1);--backgroundPress:hsla(153, 70%, 82%, 1);--backgroundFocus:hsla(153, 70%, 77%, 1);--color:hsla(153, 70%, 15%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 15%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 55%, 1);--borderColor:hsla(153, 70%, 77%, 1);--borderColorHover:hsla(153, 70%, 72%, 1);--borderColorFocus:hsla(153, 70%, 66%, 1);--borderColorPress:hsla(153, 70%, 72%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_success_Card, .t_dark .t_light .t_success_DrawerFrame, .t_dark .t_light .t_success_Progress, .t_dark .t_light .t_success_TooltipArrow, .t_success_Card, .t_success_DrawerFrame, .t_success_Progress, .t_success_TooltipArrow {--background0:hsla(160, 60%, 99%, 0.5);--background025:hsla(160, 60%, 99%, 0.75);--background05:hsla(153, 70%, 99%, 1);--background075:hsla(153, 70%, 93%, 1);--color0:hsla(153, 70%, 15%, 1);--color025:hsla(153, 70%, 10%, 1);--color05:hsla(153, 69%, 10%, 0.75);--color075:hsla(153, 69%, 10%, 0.5);--background:hsla(153, 70%, 93%, 1);--backgroundHover:hsla(153, 70%, 88%, 1);--backgroundPress:hsla(153, 70%, 82%, 1);--backgroundFocus:hsla(153, 70%, 77%, 1);--color:hsla(153, 70%, 15%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 15%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 55%, 1);--borderColor:hsla(153, 70%, 77%, 1);--borderColorHover:hsla(153, 70%, 72%, 1);--borderColorFocus:hsla(153, 70%, 66%, 1);--borderColorPress:hsla(153, 70%, 72%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_success_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_success_Input, :root.t_dark .t_light .t_dark .t_light .t_success_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_success_TextArea, :root.t_dark .t_light .t_success_Checkbox, :root.t_dark .t_light .t_success_Input, :root.t_dark .t_light .t_success_RadioGroupItem, :root.t_dark .t_light .t_success_TextArea, :root.t_light .t_dark .t_light .t_success_Checkbox, :root.t_light .t_dark .t_light .t_success_Input, :root.t_light .t_dark .t_light .t_success_RadioGroupItem, :root.t_light .t_dark .t_light .t_success_TextArea, :root.t_light .t_success_Checkbox, :root.t_light .t_success_Input, :root.t_light .t_success_RadioGroupItem, :root.t_light .t_success_TextArea {--accentBackground:hsla(160, 60%, 99%, 0);--accentColor:hsla(160, 60%, 99%, 0);--background0:hsla(160, 60%, 99%, 0.25);--background025:hsla(160, 60%, 99%, 0.5);--background05:hsla(160, 60%, 99%, 0.75);--background075:hsla(153, 70%, 99%, 1);--color0:hsla(153, 70%, 10%, 1);--color025:hsla(153, 69%, 10%, 0.75);--color05:hsla(153, 69%, 10%, 0.5);--color075:hsla(153, 69%, 10%, 0.25);--background:hsla(153, 70%, 99%, 1);--backgroundHover:hsla(153, 70%, 93%, 1);--backgroundPress:hsla(153, 70%, 88%, 1);--backgroundFocus:hsla(153, 70%, 82%, 1);--color:hsla(153, 70%, 15%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 15%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 50%, 1);--borderColor:hsla(153, 70%, 72%, 1);--borderColorHover:hsla(153, 70%, 66%, 1);--borderColorFocus:hsla(153, 70%, 61%, 1);--borderColorPress:hsla(153, 70%, 66%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_success_Checkbox, .t_dark .t_light .t_success_Input, .t_dark .t_light .t_success_RadioGroupItem, .t_dark .t_light .t_success_TextArea, .t_success_Checkbox, .t_success_Input, .t_success_RadioGroupItem, .t_success_TextArea {--accentBackground:hsla(160, 60%, 99%, 0);--accentColor:hsla(160, 60%, 99%, 0);--background0:hsla(160, 60%, 99%, 0.25);--background025:hsla(160, 60%, 99%, 0.5);--background05:hsla(160, 60%, 99%, 0.75);--background075:hsla(153, 70%, 99%, 1);--color0:hsla(153, 70%, 10%, 1);--color025:hsla(153, 69%, 10%, 0.75);--color05:hsla(153, 69%, 10%, 0.5);--color075:hsla(153, 69%, 10%, 0.25);--background:hsla(153, 70%, 99%, 1);--backgroundHover:hsla(153, 70%, 93%, 1);--backgroundPress:hsla(153, 70%, 88%, 1);--backgroundFocus:hsla(153, 70%, 82%, 1);--color:hsla(153, 70%, 15%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 15%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 50%, 1);--borderColor:hsla(153, 70%, 72%, 1);--borderColorHover:hsla(153, 70%, 66%, 1);--borderColorFocus:hsla(153, 70%, 61%, 1);--borderColorPress:hsla(153, 70%, 66%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_success_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_success_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_success_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_success_Tooltip, :root.t_dark .t_light .t_success_ProgressIndicator, :root.t_dark .t_light .t_success_SliderThumb, :root.t_dark .t_light .t_success_SwitchThumb, :root.t_dark .t_light .t_success_Tooltip, :root.t_light .t_dark .t_light .t_success_ProgressIndicator, :root.t_light .t_dark .t_light .t_success_SliderThumb, :root.t_light .t_dark .t_light .t_success_SwitchThumb, :root.t_light .t_dark .t_light .t_success_Tooltip, :root.t_light .t_success_ProgressIndicator, :root.t_light .t_success_SliderThumb, :root.t_light .t_success_SwitchThumb, :root.t_light .t_success_Tooltip {--accentBackground:hsla(160, 60%, 99%, 0);--accentColor:hsla(160, 60%, 99%, 0);--background0:hsla(153, 69%, 10%, 0.25);--background025:hsla(153, 69%, 10%, 0.5);--background05:hsla(153, 69%, 10%, 0.75);--background075:hsla(153, 70%, 10%, 1);--color0:hsla(153, 70%, 99%, 1);--color025:hsla(160, 60%, 99%, 0.75);--color05:hsla(160, 60%, 99%, 0.5);--color075:hsla(160, 60%, 99%, 0.25);--background:hsla(153, 70%, 10%, 1);--backgroundHover:hsla(153, 70%, 15%, 1);--backgroundPress:hsla(153, 70%, 50%, 1);--backgroundFocus:hsla(153, 70%, 55%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 88%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 88%, 1);--placeholderColor:hsla(153, 70%, 88%, 1);--borderColor:hsla(153, 70%, 55%, 1);--borderColorHover:hsla(153, 70%, 61%, 1);--borderColorFocus:hsla(153, 70%, 66%, 1);--borderColorPress:hsla(153, 70%, 61%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_success_ProgressIndicator, .t_dark .t_light .t_success_SliderThumb, .t_dark .t_light .t_success_SwitchThumb, .t_dark .t_light .t_success_Tooltip, .t_success_ProgressIndicator, .t_success_SliderThumb, .t_success_SwitchThumb, .t_success_Tooltip {--accentBackground:hsla(160, 60%, 99%, 0);--accentColor:hsla(160, 60%, 99%, 0);--background0:hsla(153, 69%, 10%, 0.25);--background025:hsla(153, 69%, 10%, 0.5);--background05:hsla(153, 69%, 10%, 0.75);--background075:hsla(153, 70%, 10%, 1);--color0:hsla(153, 70%, 99%, 1);--color025:hsla(160, 60%, 99%, 0.75);--color05:hsla(160, 60%, 99%, 0.5);--color075:hsla(160, 60%, 99%, 0.25);--background:hsla(153, 70%, 10%, 1);--backgroundHover:hsla(153, 70%, 15%, 1);--backgroundPress:hsla(153, 70%, 50%, 1);--backgroundFocus:hsla(153, 70%, 55%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 88%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 88%, 1);--placeholderColor:hsla(153, 70%, 88%, 1);--borderColor:hsla(153, 70%, 55%, 1);--borderColorHover:hsla(153, 70%, 61%, 1);--borderColorFocus:hsla(153, 70%, 66%, 1);--borderColorPress:hsla(153, 70%, 61%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_success_SliderTrackActive, :root.t_dark .t_light .t_success_SliderTrackActive, :root.t_light .t_dark .t_light .t_success_SliderTrackActive, :root.t_light .t_success_SliderTrackActive {--accentBackground:hsla(160, 60%, 99%, 0);--accentColor:hsla(160, 60%, 99%, 0);--background0:hsla(153, 69%, 10%, 0.75);--background025:hsla(153, 70%, 10%, 1);--background05:hsla(153, 70%, 15%, 1);--background075:hsla(153, 70%, 50%, 1);--color0:hsla(153, 70%, 88%, 1);--color025:hsla(153, 70%, 93%, 1);--color05:hsla(153, 70%, 99%, 1);--color075:hsla(160, 60%, 99%, 0.75);--background:hsla(153, 70%, 50%, 1);--backgroundHover:hsla(153, 70%, 55%, 1);--backgroundPress:hsla(153, 70%, 61%, 1);--backgroundFocus:hsla(153, 70%, 66%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 88%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 88%, 1);--placeholderColor:hsla(153, 70%, 77%, 1);--borderColor:hsla(153, 70%, 66%, 1);--borderColorHover:hsla(153, 70%, 72%, 1);--borderColorFocus:hsla(153, 70%, 77%, 1);--borderColorPress:hsla(153, 70%, 72%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_success_SliderTrackActive, .t_success_SliderTrackActive {--accentBackground:hsla(160, 60%, 99%, 0);--accentColor:hsla(160, 60%, 99%, 0);--background0:hsla(153, 69%, 10%, 0.75);--background025:hsla(153, 70%, 10%, 1);--background05:hsla(153, 70%, 15%, 1);--background075:hsla(153, 70%, 50%, 1);--color0:hsla(153, 70%, 88%, 1);--color025:hsla(153, 70%, 93%, 1);--color05:hsla(153, 70%, 99%, 1);--color075:hsla(160, 60%, 99%, 0.75);--background:hsla(153, 70%, 50%, 1);--backgroundHover:hsla(153, 70%, 55%, 1);--backgroundPress:hsla(153, 70%, 61%, 1);--backgroundFocus:hsla(153, 70%, 66%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 88%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 88%, 1);--placeholderColor:hsla(153, 70%, 77%, 1);--borderColor:hsla(153, 70%, 66%, 1);--borderColorHover:hsla(153, 70%, 72%, 1);--borderColorFocus:hsla(153, 70%, 77%, 1);--borderColorPress:hsla(153, 70%, 72%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_warning, :root.t_dark .t_light .t_warning, :root.t_light .t_dark .t_light .t_warning, :root.t_light .t_warning {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(60, 60%, 99%, 0.25);--background025:hsla(60, 60%, 99%, 0.5);--background05:hsla(60, 60%, 99%, 0.75);--background075:hsla(48, 70%, 99%, 1);--color0:hsla(48, 70%, 10%, 1);--color025:hsla(48, 69%, 10%, 0.75);--color05:hsla(48, 69%, 10%, 0.5);--color075:hsla(48, 69%, 10%, 0.25);--background:hsla(48, 70%, 99%, 1);--backgroundHover:hsla(48, 70%, 93%, 1);--backgroundPress:hsla(48, 70%, 88%, 1);--backgroundFocus:hsla(48, 70%, 82%, 1);--color:hsla(48, 70%, 15%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 15%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 50%, 1);--borderColor:hsla(48, 70%, 82%, 1);--borderColorHover:hsla(48, 70%, 77%, 1);--borderColorFocus:hsla(48, 70%, 72%, 1);--borderColorPress:hsla(48, 70%, 77%, 1);--color1:hsla(48, 70%, 99%, 1);--color2:hsla(48, 70%, 93%, 1);--color3:hsla(48, 70%, 88%, 1);--color4:hsla(48, 70%, 82%, 1);--color5:hsla(48, 70%, 77%, 1);--color6:hsla(48, 70%, 72%, 1);--color7:hsla(48, 70%, 66%, 1);--color8:hsla(48, 70%, 61%, 1);--color9:hsla(48, 70%, 55%, 1);--color10:hsla(48, 70%, 50%, 1);--color11:hsla(48, 70%, 15%, 1);--color12:hsla(48, 70%, 10%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_warning, .t_warning {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(60, 60%, 99%, 0.25);--background025:hsla(60, 60%, 99%, 0.5);--background05:hsla(60, 60%, 99%, 0.75);--background075:hsla(48, 70%, 99%, 1);--color0:hsla(48, 70%, 10%, 1);--color025:hsla(48, 69%, 10%, 0.75);--color05:hsla(48, 69%, 10%, 0.5);--color075:hsla(48, 69%, 10%, 0.25);--background:hsla(48, 70%, 99%, 1);--backgroundHover:hsla(48, 70%, 93%, 1);--backgroundPress:hsla(48, 70%, 88%, 1);--backgroundFocus:hsla(48, 70%, 82%, 1);--color:hsla(48, 70%, 15%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 15%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 50%, 1);--borderColor:hsla(48, 70%, 82%, 1);--borderColorHover:hsla(48, 70%, 77%, 1);--borderColorFocus:hsla(48, 70%, 72%, 1);--borderColorPress:hsla(48, 70%, 77%, 1);--color1:hsla(48, 70%, 99%, 1);--color2:hsla(48, 70%, 93%, 1);--color3:hsla(48, 70%, 88%, 1);--color4:hsla(48, 70%, 82%, 1);--color5:hsla(48, 70%, 77%, 1);--color6:hsla(48, 70%, 72%, 1);--color7:hsla(48, 70%, 66%, 1);--color8:hsla(48, 70%, 61%, 1);--color9:hsla(48, 70%, 55%, 1);--color10:hsla(48, 70%, 50%, 1);--color11:hsla(48, 70%, 15%, 1);--color12:hsla(48, 70%, 10%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_warning_Button, :root.t_dark .t_light .t_dark .t_light .t_warning_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_warning_Switch, :root.t_dark .t_light .t_dark .t_light .t_warning_TooltipContent, :root.t_dark .t_light .t_warning_Button, :root.t_dark .t_light .t_warning_SliderTrack, :root.t_dark .t_light .t_warning_Switch, :root.t_dark .t_light .t_warning_TooltipContent, :root.t_light .t_dark .t_light .t_warning_Button, :root.t_light .t_dark .t_light .t_warning_SliderTrack, :root.t_light .t_dark .t_light .t_warning_Switch, :root.t_light .t_dark .t_light .t_warning_TooltipContent, :root.t_light .t_warning_Button, :root.t_light .t_warning_SliderTrack, :root.t_light .t_warning_Switch, :root.t_light .t_warning_TooltipContent {--background0:hsla(60, 60%, 99%, 0.75);--background025:hsla(48, 70%, 99%, 1);--background05:hsla(48, 70%, 93%, 1);--background075:hsla(48, 70%, 88%, 1);--color0:hsla(48, 70%, 50%, 1);--color025:hsla(48, 70%, 15%, 1);--color05:hsla(48, 70%, 10%, 1);--color075:hsla(48, 69%, 10%, 0.75);--background:hsla(48, 70%, 88%, 1);--backgroundHover:hsla(48, 70%, 82%, 1);--backgroundPress:hsla(48, 70%, 77%, 1);--backgroundFocus:hsla(48, 70%, 72%, 1);--color:hsla(48, 70%, 15%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 15%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 61%, 1);--borderColor:hsla(48, 70%, 72%, 1);--borderColorHover:hsla(48, 70%, 66%, 1);--borderColorFocus:hsla(48, 70%, 61%, 1);--borderColorPress:hsla(48, 70%, 66%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_warning_Button, .t_dark .t_light .t_warning_SliderTrack, .t_dark .t_light .t_warning_Switch, .t_dark .t_light .t_warning_TooltipContent, .t_warning_Button, .t_warning_SliderTrack, .t_warning_Switch, .t_warning_TooltipContent {--background0:hsla(60, 60%, 99%, 0.75);--background025:hsla(48, 70%, 99%, 1);--background05:hsla(48, 70%, 93%, 1);--background075:hsla(48, 70%, 88%, 1);--color0:hsla(48, 70%, 50%, 1);--color025:hsla(48, 70%, 15%, 1);--color05:hsla(48, 70%, 10%, 1);--color075:hsla(48, 69%, 10%, 0.75);--background:hsla(48, 70%, 88%, 1);--backgroundHover:hsla(48, 70%, 82%, 1);--backgroundPress:hsla(48, 70%, 77%, 1);--backgroundFocus:hsla(48, 70%, 72%, 1);--color:hsla(48, 70%, 15%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 15%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 61%, 1);--borderColor:hsla(48, 70%, 72%, 1);--borderColorHover:hsla(48, 70%, 66%, 1);--borderColorFocus:hsla(48, 70%, 61%, 1);--borderColorPress:hsla(48, 70%, 66%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_warning_Card, :root.t_dark .t_light .t_dark .t_light .t_warning_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_warning_Progress, :root.t_dark .t_light .t_dark .t_light .t_warning_TooltipArrow, :root.t_dark .t_light .t_warning_Card, :root.t_dark .t_light .t_warning_DrawerFrame, :root.t_dark .t_light .t_warning_Progress, :root.t_dark .t_light .t_warning_TooltipArrow, :root.t_light .t_dark .t_light .t_warning_Card, :root.t_light .t_dark .t_light .t_warning_DrawerFrame, :root.t_light .t_dark .t_light .t_warning_Progress, :root.t_light .t_dark .t_light .t_warning_TooltipArrow, :root.t_light .t_warning_Card, :root.t_light .t_warning_DrawerFrame, :root.t_light .t_warning_Progress, :root.t_light .t_warning_TooltipArrow {--background0:hsla(60, 60%, 99%, 0.5);--background025:hsla(60, 60%, 99%, 0.75);--background05:hsla(48, 70%, 99%, 1);--background075:hsla(48, 70%, 93%, 1);--color0:hsla(48, 70%, 15%, 1);--color025:hsla(48, 70%, 10%, 1);--color05:hsla(48, 69%, 10%, 0.75);--color075:hsla(48, 69%, 10%, 0.5);--background:hsla(48, 70%, 93%, 1);--backgroundHover:hsla(48, 70%, 88%, 1);--backgroundPress:hsla(48, 70%, 82%, 1);--backgroundFocus:hsla(48, 70%, 77%, 1);--color:hsla(48, 70%, 15%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 15%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 55%, 1);--borderColor:hsla(48, 70%, 77%, 1);--borderColorHover:hsla(48, 70%, 72%, 1);--borderColorFocus:hsla(48, 70%, 66%, 1);--borderColorPress:hsla(48, 70%, 72%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_warning_Card, .t_dark .t_light .t_warning_DrawerFrame, .t_dark .t_light .t_warning_Progress, .t_dark .t_light .t_warning_TooltipArrow, .t_warning_Card, .t_warning_DrawerFrame, .t_warning_Progress, .t_warning_TooltipArrow {--background0:hsla(60, 60%, 99%, 0.5);--background025:hsla(60, 60%, 99%, 0.75);--background05:hsla(48, 70%, 99%, 1);--background075:hsla(48, 70%, 93%, 1);--color0:hsla(48, 70%, 15%, 1);--color025:hsla(48, 70%, 10%, 1);--color05:hsla(48, 69%, 10%, 0.75);--color075:hsla(48, 69%, 10%, 0.5);--background:hsla(48, 70%, 93%, 1);--backgroundHover:hsla(48, 70%, 88%, 1);--backgroundPress:hsla(48, 70%, 82%, 1);--backgroundFocus:hsla(48, 70%, 77%, 1);--color:hsla(48, 70%, 15%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 15%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 55%, 1);--borderColor:hsla(48, 70%, 77%, 1);--borderColorHover:hsla(48, 70%, 72%, 1);--borderColorFocus:hsla(48, 70%, 66%, 1);--borderColorPress:hsla(48, 70%, 72%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_warning_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_warning_Input, :root.t_dark .t_light .t_dark .t_light .t_warning_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_warning_TextArea, :root.t_dark .t_light .t_warning_Checkbox, :root.t_dark .t_light .t_warning_Input, :root.t_dark .t_light .t_warning_RadioGroupItem, :root.t_dark .t_light .t_warning_TextArea, :root.t_light .t_dark .t_light .t_warning_Checkbox, :root.t_light .t_dark .t_light .t_warning_Input, :root.t_light .t_dark .t_light .t_warning_RadioGroupItem, :root.t_light .t_dark .t_light .t_warning_TextArea, :root.t_light .t_warning_Checkbox, :root.t_light .t_warning_Input, :root.t_light .t_warning_RadioGroupItem, :root.t_light .t_warning_TextArea {--accentBackground:hsla(60, 60%, 99%, 0);--accentColor:hsla(60, 60%, 99%, 0);--background0:hsla(60, 60%, 99%, 0.25);--background025:hsla(60, 60%, 99%, 0.5);--background05:hsla(60, 60%, 99%, 0.75);--background075:hsla(48, 70%, 99%, 1);--color0:hsla(48, 70%, 10%, 1);--color025:hsla(48, 69%, 10%, 0.75);--color05:hsla(48, 69%, 10%, 0.5);--color075:hsla(48, 69%, 10%, 0.25);--background:hsla(48, 70%, 99%, 1);--backgroundHover:hsla(48, 70%, 93%, 1);--backgroundPress:hsla(48, 70%, 88%, 1);--backgroundFocus:hsla(48, 70%, 82%, 1);--color:hsla(48, 70%, 15%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 15%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 50%, 1);--borderColor:hsla(48, 70%, 72%, 1);--borderColorHover:hsla(48, 70%, 66%, 1);--borderColorFocus:hsla(48, 70%, 61%, 1);--borderColorPress:hsla(48, 70%, 66%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_warning_Checkbox, .t_dark .t_light .t_warning_Input, .t_dark .t_light .t_warning_RadioGroupItem, .t_dark .t_light .t_warning_TextArea, .t_warning_Checkbox, .t_warning_Input, .t_warning_RadioGroupItem, .t_warning_TextArea {--accentBackground:hsla(60, 60%, 99%, 0);--accentColor:hsla(60, 60%, 99%, 0);--background0:hsla(60, 60%, 99%, 0.25);--background025:hsla(60, 60%, 99%, 0.5);--background05:hsla(60, 60%, 99%, 0.75);--background075:hsla(48, 70%, 99%, 1);--color0:hsla(48, 70%, 10%, 1);--color025:hsla(48, 69%, 10%, 0.75);--color05:hsla(48, 69%, 10%, 0.5);--color075:hsla(48, 69%, 10%, 0.25);--background:hsla(48, 70%, 99%, 1);--backgroundHover:hsla(48, 70%, 93%, 1);--backgroundPress:hsla(48, 70%, 88%, 1);--backgroundFocus:hsla(48, 70%, 82%, 1);--color:hsla(48, 70%, 15%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 15%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 50%, 1);--borderColor:hsla(48, 70%, 72%, 1);--borderColorHover:hsla(48, 70%, 66%, 1);--borderColorFocus:hsla(48, 70%, 61%, 1);--borderColorPress:hsla(48, 70%, 66%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_warning_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_warning_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_warning_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_warning_Tooltip, :root.t_dark .t_light .t_warning_ProgressIndicator, :root.t_dark .t_light .t_warning_SliderThumb, :root.t_dark .t_light .t_warning_SwitchThumb, :root.t_dark .t_light .t_warning_Tooltip, :root.t_light .t_dark .t_light .t_warning_ProgressIndicator, :root.t_light .t_dark .t_light .t_warning_SliderThumb, :root.t_light .t_dark .t_light .t_warning_SwitchThumb, :root.t_light .t_dark .t_light .t_warning_Tooltip, :root.t_light .t_warning_ProgressIndicator, :root.t_light .t_warning_SliderThumb, :root.t_light .t_warning_SwitchThumb, :root.t_light .t_warning_Tooltip {--accentBackground:hsla(60, 60%, 99%, 0);--accentColor:hsla(60, 60%, 99%, 0);--background0:hsla(48, 69%, 10%, 0.25);--background025:hsla(48, 69%, 10%, 0.5);--background05:hsla(48, 69%, 10%, 0.75);--background075:hsla(48, 70%, 10%, 1);--color0:hsla(48, 70%, 99%, 1);--color025:hsla(60, 60%, 99%, 0.75);--color05:hsla(60, 60%, 99%, 0.5);--color075:hsla(60, 60%, 99%, 0.25);--background:hsla(48, 70%, 10%, 1);--backgroundHover:hsla(48, 70%, 15%, 1);--backgroundPress:hsla(48, 70%, 50%, 1);--backgroundFocus:hsla(48, 70%, 55%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 88%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 88%, 1);--placeholderColor:hsla(48, 70%, 88%, 1);--borderColor:hsla(48, 70%, 55%, 1);--borderColorHover:hsla(48, 70%, 61%, 1);--borderColorFocus:hsla(48, 70%, 66%, 1);--borderColorPress:hsla(48, 70%, 61%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_warning_ProgressIndicator, .t_dark .t_light .t_warning_SliderThumb, .t_dark .t_light .t_warning_SwitchThumb, .t_dark .t_light .t_warning_Tooltip, .t_warning_ProgressIndicator, .t_warning_SliderThumb, .t_warning_SwitchThumb, .t_warning_Tooltip {--accentBackground:hsla(60, 60%, 99%, 0);--accentColor:hsla(60, 60%, 99%, 0);--background0:hsla(48, 69%, 10%, 0.25);--background025:hsla(48, 69%, 10%, 0.5);--background05:hsla(48, 69%, 10%, 0.75);--background075:hsla(48, 70%, 10%, 1);--color0:hsla(48, 70%, 99%, 1);--color025:hsla(60, 60%, 99%, 0.75);--color05:hsla(60, 60%, 99%, 0.5);--color075:hsla(60, 60%, 99%, 0.25);--background:hsla(48, 70%, 10%, 1);--backgroundHover:hsla(48, 70%, 15%, 1);--backgroundPress:hsla(48, 70%, 50%, 1);--backgroundFocus:hsla(48, 70%, 55%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 88%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 88%, 1);--placeholderColor:hsla(48, 70%, 88%, 1);--borderColor:hsla(48, 70%, 55%, 1);--borderColorHover:hsla(48, 70%, 61%, 1);--borderColorFocus:hsla(48, 70%, 66%, 1);--borderColorPress:hsla(48, 70%, 61%, 1);} - } -:root.t_dark .t_light .t_dark .t_light .t_warning_SliderTrackActive, :root.t_dark .t_light .t_warning_SliderTrackActive, :root.t_light .t_dark .t_light .t_warning_SliderTrackActive, :root.t_light .t_warning_SliderTrackActive {--accentBackground:hsla(60, 60%, 99%, 0);--accentColor:hsla(60, 60%, 99%, 0);--background0:hsla(48, 69%, 10%, 0.75);--background025:hsla(48, 70%, 10%, 1);--background05:hsla(48, 70%, 15%, 1);--background075:hsla(48, 70%, 50%, 1);--color0:hsla(48, 70%, 88%, 1);--color025:hsla(48, 70%, 93%, 1);--color05:hsla(48, 70%, 99%, 1);--color075:hsla(60, 60%, 99%, 0.75);--background:hsla(48, 70%, 50%, 1);--backgroundHover:hsla(48, 70%, 55%, 1);--backgroundPress:hsla(48, 70%, 61%, 1);--backgroundFocus:hsla(48, 70%, 66%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 88%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 88%, 1);--placeholderColor:hsla(48, 70%, 77%, 1);--borderColor:hsla(48, 70%, 66%, 1);--borderColorHover:hsla(48, 70%, 72%, 1);--borderColorFocus:hsla(48, 70%, 77%, 1);--borderColorPress:hsla(48, 70%, 72%, 1);} -@media(prefers-color-scheme:light){ - body{background:var(--background);color:var(--color)} - .t_dark .t_light .t_warning_SliderTrackActive, .t_warning_SliderTrackActive {--accentBackground:hsla(60, 60%, 99%, 0);--accentColor:hsla(60, 60%, 99%, 0);--background0:hsla(48, 69%, 10%, 0.75);--background025:hsla(48, 70%, 10%, 1);--background05:hsla(48, 70%, 15%, 1);--background075:hsla(48, 70%, 50%, 1);--color0:hsla(48, 70%, 88%, 1);--color025:hsla(48, 70%, 93%, 1);--color05:hsla(48, 70%, 99%, 1);--color075:hsla(60, 60%, 99%, 0.75);--background:hsla(48, 70%, 50%, 1);--backgroundHover:hsla(48, 70%, 55%, 1);--backgroundPress:hsla(48, 70%, 61%, 1);--backgroundFocus:hsla(48, 70%, 66%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 88%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 88%, 1);--placeholderColor:hsla(48, 70%, 77%, 1);--borderColor:hsla(48, 70%, 66%, 1);--borderColorHover:hsla(48, 70%, 72%, 1);--borderColorFocus:hsla(48, 70%, 77%, 1);--borderColorPress:hsla(48, 70%, 72%, 1);} +._ovs-contain { + overscroll-behavior: contain; +} + +.is_Text .is_Text { + display: inline-flex; +} + +._dsp_contents { + display: contents; +} + +:root { + --color-1: hsl(206, 100%, 99.2%); + --color-2: hsl(210, 100%, 98.0%); + --color-3: hsl(209, 100%, 96.5%); + --color-4: hsl(210, 98.8%, 94.0%); + --color-5: hsl(209, 95.0%, 90.1%); + --color-6: hsl(209, 81.2%, 84.5%); + --color-7: hsl(208, 77.5%, 76.9%); + --color-8: hsl(206, 81.9%, 65.3%); + --color-9: hsl(206, 100%, 50.0%); + --color-10: hsl(208, 100%, 47.3%); + --color-11: hsl(211, 100%, 43.2%); + --color-12: hsl(211, 100%, 15.0%); + --color-13: hsl(0, 0%, 99.0%); + --color-14: hsl(0, 0%, 97.3%); + --color-15: hsl(0, 0%, 95.1%); + --color-16: hsl(0, 0%, 93.0%); + --color-17: hsl(0, 0%, 90.9%); + --color-18: hsl(0, 0%, 88.7%); + --color-19: hsl(0, 0%, 85.8%); + --color-20: hsl(0, 0%, 78.0%); + --color-21: hsl(0, 0%, 56.1%); + --color-22: hsl(0, 0%, 52.3%); + --color-23: hsl(0, 0%, 43.5%); + --color-24: hsl(0, 0%, 9.0%); + --color-25: hsl(136, 50.0%, 98.9%); + --color-26: hsl(138, 62.5%, 96.9%); + --color-27: hsl(139, 55.2%, 94.5%); + --color-28: hsl(140, 48.7%, 91.0%); + --color-29: hsl(141, 43.7%, 86.0%); + --color-30: hsl(143, 40.3%, 79.0%); + --color-31: hsl(146, 38.5%, 69.0%); + --color-32: hsl(151, 40.2%, 54.1%); + --color-33: hsl(151, 55.0%, 41.5%); + --color-34: hsl(152, 57.5%, 37.6%); + --color-35: hsl(153, 67.0%, 28.5%); + --color-36: hsl(155, 40.0%, 14.0%); + --color-37: hsl(24, 70.0%, 99.0%); + --color-38: hsl(24, 83.3%, 97.6%); + --color-39: hsl(24, 100%, 95.3%); + --color-40: hsl(25, 100%, 92.2%); + --color-41: hsl(25, 100%, 88.2%); + --color-42: hsl(25, 100%, 82.8%); + --color-43: hsl(24, 100%, 75.3%); + --color-44: hsl(24, 94.5%, 64.3%); + --color-45: hsl(24, 94.0%, 50.0%); + --color-46: hsl(24, 100%, 46.5%); + --color-47: hsl(24, 100%, 37.0%); + --color-48: hsl(15, 60.0%, 17.0%); + --color-49: hsl(322, 100%, 99.4%); + --color-50: hsl(323, 100%, 98.4%); + --color-51: hsl(323, 86.3%, 96.5%); + --color-52: hsl(323, 78.7%, 94.2%); + --color-53: hsl(323, 72.2%, 91.1%); + --color-54: hsl(323, 66.3%, 86.6%); + --color-55: hsl(323, 62.0%, 80.1%); + --color-56: hsl(323, 60.3%, 72.4%); + --color-57: hsl(322, 65.0%, 54.5%); + --color-58: hsl(322, 63.9%, 50.7%); + --color-59: hsl(322, 75.0%, 46.0%); + --color-60: hsl(320, 70.0%, 13.5%); + --color-61: hsl(280, 65.0%, 99.4%); + --color-62: hsl(276, 100%, 99.0%); + --color-63: hsl(276, 83.1%, 97.0%); + --color-64: hsl(275, 76.4%, 94.7%); + --color-65: hsl(275, 70.8%, 91.8%); + --color-66: hsl(274, 65.4%, 87.8%); + --color-67: hsl(273, 61.0%, 81.7%); + --color-68: hsl(272, 60.0%, 73.5%); + --color-69: hsl(272, 51.0%, 54.0%); + --color-70: hsl(272, 46.8%, 50.3%); + --color-71: hsl(272, 50.0%, 45.8%); + --color-72: hsl(272, 66.0%, 16.0%); + --color-73: hsl(359, 100%, 99.4%); + --color-74: hsl(359, 100%, 98.6%); + --color-75: hsl(360, 100%, 96.8%); + --color-76: hsl(360, 97.9%, 94.8%); + --color-77: hsl(360, 90.2%, 91.9%); + --color-78: hsl(360, 81.7%, 87.8%); + --color-79: hsl(359, 74.2%, 81.7%); + --color-80: hsl(359, 69.5%, 74.3%); + --color-81: hsl(358, 75.0%, 59.0%); + --color-82: hsl(358, 69.4%, 55.2%); + --color-83: hsl(358, 65.0%, 48.7%); + --color-84: hsl(354, 50.0%, 14.6%); + --color-85: hsl(60, 54.0%, 98.5%); + --color-86: hsl(52, 100%, 95.5%); + --color-87: hsl(55, 100%, 90.9%); + --color-88: hsl(54, 100%, 86.6%); + --color-89: hsl(52, 97.9%, 82.0%); + --color-90: hsl(50, 89.4%, 76.1%); + --color-91: hsl(47, 80.4%, 68.0%); + --color-92: hsl(48, 100%, 46.1%); + --color-93: hsl(53, 92.0%, 50.0%); + --color-94: hsl(50, 100%, 48.5%); + --color-95: hsl(42, 100%, 29.0%); + --color-96: hsl(40, 55.0%, 13.5%); + --color-97: hsl(50, 20.0%, 99.1%); + --color-98: hsl(47, 52.9%, 96.7%); + --color-99: hsl(46, 38.2%, 93.7%); + --color-100: hsl(44, 32.7%, 90.1%); + --color-101: hsl(43, 29.9%, 85.7%); + --color-102: hsl(41, 28.3%, 79.8%); + --color-103: hsl(39, 27.6%, 71.9%); + --color-104: hsl(36, 27.2%, 61.8%); + --color-105: hsl(36, 20.0%, 49.5%); + --color-106: hsl(36, 19.8%, 45.7%); + --color-107: hsl(36, 20.0%, 39.0%); + --color-108: hsl(36, 16.0%, 20.0%); + --color-109: hsla(125, 96%, 40%, 0.5); + --color-110: hsla(125, 96%, 40%, 0.75); + --color-111: hsla(125, 96%, 40%, 1); + --color-112: hsla(125, 96%, 42%, 1); + --color-113: hsla(125, 96%, 45%, 1); + --color-114: hsla(125, 96%, 47%, 1); + --color-115: hsla(125, 96%, 50%, 1); + --color-116: hsla(125, 96%, 52%, 1); + --color-117: hsla(125, 96%, 55%, 1); + --color-118: hsla(125, 96%, 57%, 1); + --color-119: hsla(125, 96%, 59%, 1); + --color-120: hsla(125, 96%, 62%, 1); + --color-121: hsl(212, 35.0%, 9.2%); + --color-122: hsl(216, 50.0%, 11.8%); + --color-123: hsl(214, 59.4%, 15.3%); + --color-124: hsl(214, 65.8%, 17.9%); + --color-125: hsl(213, 71.2%, 20.2%); + --color-126: hsl(212, 77.4%, 23.1%); + --color-127: hsl(211, 85.1%, 27.4%); + --color-128: hsl(211, 89.7%, 34.1%); + --color-129: hsl(206, 100%, 50.0%); + --color-130: hsl(209, 100%, 60.6%); + --color-131: hsl(210, 100%, 66.1%); + --color-132: hsl(206, 98.0%, 95.8%); + --color-133: hsl(0, 0%, 8.5%); + --color-134: hsl(0, 0%, 11.0%); + --color-135: hsl(0, 0%, 13.6%); + --color-136: hsl(0, 0%, 15.8%); + --color-137: hsl(0, 0%, 17.9%); + --color-138: hsl(0, 0%, 20.5%); + --color-139: hsl(0, 0%, 24.3%); + --color-140: hsl(0, 0%, 31.2%); + --color-141: hsl(0, 0%, 43.9%); + --color-142: hsl(0, 0%, 49.4%); + --color-143: hsl(0, 0%, 62.8%); + --color-144: hsl(0, 0%, 93.0%); + --color-145: hsl(146, 30.0%, 7.4%); + --color-146: hsl(155, 44.2%, 8.4%); + --color-147: hsl(155, 46.7%, 10.9%); + --color-148: hsl(154, 48.4%, 12.9%); + --color-149: hsl(154, 49.7%, 14.9%); + --color-150: hsl(154, 50.9%, 17.6%); + --color-151: hsl(153, 51.8%, 21.8%); + --color-152: hsl(151, 51.7%, 28.4%); + --color-153: hsl(151, 55.0%, 41.5%); + --color-154: hsl(151, 49.3%, 46.5%); + --color-155: hsl(151, 50.0%, 53.2%); + --color-156: hsl(137, 72.0%, 94.0%); + --color-157: hsl(30, 70.0%, 7.2%); + --color-158: hsl(28, 100%, 8.4%); + --color-159: hsl(26, 91.1%, 11.6%); + --color-160: hsl(25, 88.3%, 14.1%); + --color-161: hsl(24, 87.6%, 16.6%); + --color-162: hsl(24, 88.6%, 19.8%); + --color-163: hsl(24, 92.4%, 24.0%); + --color-164: hsl(25, 100%, 29.0%); + --color-165: hsl(24, 94.0%, 50.0%); + --color-166: hsl(24, 100%, 58.5%); + --color-167: hsl(24, 100%, 62.2%); + --color-168: hsl(24, 97.0%, 93.2%); + --color-169: hsl(318, 25.0%, 9.6%); + --color-170: hsl(319, 32.2%, 11.6%); + --color-171: hsl(319, 41.0%, 16.0%); + --color-172: hsl(320, 45.4%, 18.7%); + --color-173: hsl(320, 49.0%, 21.1%); + --color-174: hsl(321, 53.6%, 24.4%); + --color-175: hsl(321, 61.1%, 29.7%); + --color-176: hsl(322, 74.9%, 37.5%); + --color-177: hsl(322, 65.0%, 54.5%); + --color-178: hsl(323, 72.8%, 59.2%); + --color-179: hsl(325, 90.0%, 66.4%); + --color-180: hsl(322, 90.0%, 95.8%); + --color-181: hsl(284, 20.0%, 9.6%); + --color-182: hsl(283, 30.0%, 11.8%); + --color-183: hsl(281, 37.5%, 16.5%); + --color-184: hsl(280, 41.2%, 20.0%); + --color-185: hsl(279, 43.8%, 23.3%); + --color-186: hsl(277, 46.4%, 27.5%); + --color-187: hsl(275, 49.3%, 34.6%); + --color-188: hsl(272, 52.1%, 45.9%); + --color-189: hsl(272, 51.0%, 54.0%); + --color-190: hsl(273, 57.3%, 59.1%); + --color-191: hsl(275, 80.0%, 71.0%); + --color-192: hsl(279, 75.0%, 95.7%); + --color-193: hsl(353, 23.0%, 9.8%); + --color-194: hsl(357, 34.4%, 12.0%); + --color-195: hsl(356, 43.4%, 16.4%); + --color-196: hsl(356, 47.6%, 19.2%); + --color-197: hsl(356, 51.1%, 21.9%); + --color-198: hsl(356, 55.2%, 25.9%); + --color-199: hsl(357, 60.2%, 31.8%); + --color-200: hsl(358, 65.0%, 40.4%); + --color-201: hsl(358, 75.0%, 59.0%); + --color-202: hsl(358, 85.3%, 64.0%); + --color-203: hsl(358, 100%, 69.5%); + --color-204: hsl(351, 89.0%, 96.0%); + --color-205: hsl(45, 100%, 5.5%); + --color-206: hsl(46, 100%, 6.7%); + --color-207: hsl(45, 100%, 8.7%); + --color-208: hsl(45, 100%, 10.4%); + --color-209: hsl(47, 100%, 12.1%); + --color-210: hsl(49, 100%, 14.3%); + --color-211: hsl(49, 90.3%, 18.4%); + --color-212: hsl(50, 100%, 22.0%); + --color-213: hsl(53, 92.0%, 50.0%); + --color-214: hsl(54, 100%, 68.0%); + --color-215: hsl(48, 100%, 47.0%); + --color-216: hsl(53, 100%, 91.0%); + --color-217: hsl(44, 9.0%, 8.3%); + --color-218: hsl(43, 14.3%, 9.6%); + --color-219: hsl(42, 15.5%, 13.0%); + --color-220: hsl(41, 16.4%, 15.6%); + --color-221: hsl(41, 16.9%, 17.8%); + --color-222: hsl(40, 17.6%, 20.8%); + --color-223: hsl(38, 18.5%, 26.4%); + --color-224: hsl(36, 19.6%, 35.1%); + --color-225: hsl(36, 20.0%, 49.5%); + --color-226: hsl(36, 22.3%, 54.5%); + --color-227: hsl(35, 30.0%, 64.0%); + --color-228: hsl(49, 52.0%, 93.8%); + --color-229: hsla(125, 96%, 40%, 0.5); + --color-230: hsla(125, 96%, 40%, 0.75); + --color-231: hsla(125, 96%, 40%, 1); + --color-232: hsla(125, 96%, 42%, 1); + --color-233: hsla(125, 96%, 45%, 1); + --color-234: hsla(125, 96%, 47%, 1); + --color-235: hsla(125, 96%, 50%, 1); + --color-236: hsla(125, 96%, 52%, 1); + --color-237: hsla(125, 96%, 55%, 1); + --color-238: hsla(125, 96%, 57%, 1); + --color-239: hsla(125, 96%, 59%, 1); + --color-240: hsla(125, 96%, 62%, 1); + --color-241: #40FB50; + --color-242: #FFFFFF; + --color-243: #000000; + --color-244: #F5F6FC; + --color-245: #E8ECFB; + --color-246: #D2D9EE; + --color-247: #B8C0DC; + --color-248: #A6AFCA; + --color-249: #98A1C0; + --color-250: #888FAB; + --color-251: #7780A0; + --color-252: #6B7594; + --color-253: #5D6785; + --color-254: #505A78; + --color-255: #404A67; + --color-256: #333D59; + --color-257: #293249; + --color-258: #1B2236; + --color-259: #131A2A; + --color-260: #0E1524; + --color-261: #0D111C; + --color-262: #FFF2F7; + --color-263: #FFD9E4; + --color-264: #FBA4C0; + --color-265: #FF6FA3; + --color-266: #FB118E; + --color-267: #C41A69; + --color-268: #8C0F49; + --color-269: #55072A; + --color-270: #39061B; + --color-271: #2B000B; + --color-272: #F51A70; + --color-273: #FEF0EE; + --color-274: #FED5CF; + --color-275: #FEA79B; + --color-276: #FD766B; + --color-277: #FA2B39; + --color-278: #C4292F; + --color-279: #891E20; + --color-280: #530F0F; + --color-281: #380A03; + --color-282: #240800; + --color-283: #F14544; + --color-284: #FEF8C4; + --color-285: #F0E49A; + --color-286: #DBBC19; + --color-287: #BB9F13; + --color-288: #A08116; + --color-289: #866311; + --color-290: #5D4204; + --color-291: #3E2B04; + --color-292: #231902; + --color-293: #180F02; + --color-294: #FAF40A; + --color-295: #FFF5E8; + --color-296: #F8DEB6; + --color-297: #EEB317; + --color-298: #DB900B; + --color-299: #B17900; + --color-300: #905C10; + --color-301: #643F07; + --color-302: #3F2208; + --color-303: #29160F; + --color-304: #161007; + --color-305: #FEB239; + --color-306: #EDFDF0; + --color-307: #BFEECA; + --color-308: #76D191; + --color-309: #40B66B; + --color-310: #209853; + --color-311: #0B783E; + --color-312: #0C522A; + --color-313: #053117; + --color-314: #091F10; + --color-315: #09130B; + --color-316: #5CFE9D; + --color-317: #F3F5FE; + --color-318: #DEE1FF; + --color-319: #ADBCFF; + --color-320: #869EFF; + --color-321: #4C82FB; + --color-322: #1267D6; + --color-323: #1D4294; + --color-324: #09265E; + --color-325: #0B193F; + --color-326: #040E34; + --color-327: #587BFF; + --color-328: #F2FEDB; + --color-329: #D3EBA3; + --color-330: #9BCD46; + --color-331: #7BB10C; + --color-332: #649205; + --color-333: #527318; + --color-334: #344F00; + --color-335: #233401; + --color-336: #171D00; + --color-337: #0E1300; + --color-338: #B1F13C; + --color-339: #FEEDE5; + --color-340: #FCD9C8; + --color-341: #FBAA7F; + --color-342: #F67E3E; + --color-343: #DC5B14; + --color-344: #AF460A; + --color-345: #76330F; + --color-346: #4D220B; + --color-347: #2A1505; + --color-348: #1C0E03; + --color-349: #FF6F1E; + --color-350: #FFF1FE; + --color-351: #FAD8F8; + --color-352: #F5A1F5; + --color-353: #F06DF3; + --color-354: #DC39E3; + --color-355: #AF2EB4; + --color-356: #7A1C7D; + --color-357: #550D56; + --color-358: #330733; + --color-359: #250225; + --color-360: #FC72FF; + --color-361: #F1EFFE; + --color-362: #E2DEFD; + --color-363: #BDB8FA; + --color-364: #9D99F5; + --color-365: #7A7BEB; + --color-366: #515EDC; + --color-367: #343F9E; + --color-368: #232969; + --color-369: #121643; + --color-370: #0E0D30; + --color-371: #5065FD; + --color-372: #D6F5FE; + --color-373: #B0EDFE; + --color-374: #63CDE8; + --color-375: #2FB0CC; + --color-376: #2092AB; + --color-377: #117489; + --color-378: #014F5F; + --color-379: #003540; + --color-380: #011E26; + --color-381: #011418; + --color-382: #36DBFF; + --color-383: #F1FCEF; + --color-384: #DAE6D8; + --color-385: #B8C3B7; + --color-386: #9AA498; + --color-387: #7E887D; + --color-388: #646B62; + --color-389: #434942; + --color-390: #2C302C; + --color-391: #181B18; + --color-392: #0F120E; + --color-393: #7E887D; + --color-394: #393939; + --color-395: #e6e6e6; + --color-396: #FA2B39; + --color-397: #a26af3; + --color-398: #28A0F0; + --color-399: #2151F5; + --color-400: #F0B90B; + --color-401: #FB36D0; + --color-402: #9f7750; + --color-403: #C3B29E; + --color-404: #1D1D20; + --color-405: #86AE80; + --radius-1: 0px; + --radius-2: 3px; + --radius-3: 5px; + --radius-4: 7px; + --radius-5: 9px; + --radius-6: 10px; + --radius-7: 16px; + --radius-8: 19px; + --radius-9: 22px; + --radius-10: 26px; + --radius-11: 34px; + --radius-12: 42px; + --radius-13: 50px; + --radius-14: 16px; + --zIndex-1: 0; + --zIndex-2: 100; + --zIndex-3: 200; + --zIndex-4: 300; + --zIndex-5: 400; + --zIndex-6: 500; + --space-1: 0px; + --space-6: 2px; + --space-8: 7px; + --space-10: 13px; + --space-12: 18px; + --space-15: 24px; + --space-16: 32px; + --space-17: 39px; + --space-18: 46px; + --space-19: 53px; + --space-20: 60px; + --space-21: 74px; + --space-22: 88px; + --space-23: 102px; + --space-24: 116px; + --space-25: 130px; + --space-26: 144px; + --space-27: 144px; + --space-28: 158px; + --space-29: 172px; + --space-30: 186px; + --space-31: 249px; + --space-32: 284px; + --space-2: 0.5px; + --space-3: 1px; + --space-4: 1.5px; + --space-5: 5px; + --space-7: 4px; + --space-9: 10px; + --space-11: 16px; + --space-13: 18px; + --space-14: 21px; + --space-33: -0.5px; + --space-34: -1px; + --space-35: -1.5px; + --space-36: -5px; + --space-37: -2px; + --space-38: -4px; + --space-39: -7px; + --space-40: -10px; + --space-41: -13px; + --space-42: -16px; + --space-43: -18px; + --space-44: -18px; + --space-45: -21px; + --space-46: -24px; + --space-47: -32px; + --space-48: -39px; + --space-49: -46px; + --space-50: -53px; + --space-51: -60px; + --space-52: -74px; + --space-53: -88px; + --space-54: -102px; + --space-55: -116px; + --space-56: -130px; + --space-57: -144px; + --space-58: -144px; + --space-59: -158px; + --space-60: -172px; + --space-61: -186px; + --space-62: -249px; + --space-63: -284px; + --size-1: 0px; + --size-6: 20px; + --size-8: 28px; + --size-10: 36px; + --size-12: 44px; + --size-15: 52px; + --size-16: 64px; + --size-17: 74px; + --size-18: 84px; + --size-19: 94px; + --size-20: 104px; + --size-21: 124px; + --size-22: 144px; + --size-23: 164px; + --size-24: 184px; + --size-25: 204px; + --size-26: 224px; + --size-27: 224px; + --size-28: 244px; + --size-29: 264px; + --size-30: 284px; + --size-31: 374px; + --size-32: 424px; + --size-2: 2px; + --size-3: 4px; + --size-4: 8px; + --size-5: 16px; + --size-7: 24px; + --size-9: 32px; + --size-11: 40px; + --size-13: 44px; + --size-14: 48px +} + +:root .font_heading, +:root .t_lang-heading-default .font_heading { + --f-fa: Inter, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; + --f-li-1: 21px; + --f-li-2: 22px; + --f-li-3: 23px; + --f-li-4: 24px; + --f-li-5: 26px; + --f-li-6: 25px; + --f-li-7: 30px; + --f-li-8: 33px; + --f-li-9: 40px; + --f-li-10: 56px; + --f-li-11: 65px; + --f-li-12: 72px; + --f-li-13: 82px; + --f-li-14: 102px; + --f-li-15: 111px; + --f-li-16: 144px; + --f-li-17: 24px; + --f-we-1: 400; + --f-we-2: 400; + --f-we-3: 400; + --f-we-4: 400; + --f-we-5: 400; + --f-we-6: 400; + --f-we-7: 700; + --f-we-8: 700; + --f-we-9: 700; + --f-we-10: 700; + --f-we-11: 700; + --f-we-12: 700; + --f-we-13: 700; + --f-we-14: 700; + --f-we-15: 700; + --f-we-16: 700; + --f-we-17: 700; + --f-21-1: 2px; + --f-21-2: 2px; + --f-21-3: 2px; + --f-21-4: 2px; + --f-21-5: 2px; + --f-21-6: 1px; + --f-21-7: 0px; + --f-21-8: -1px; + --f-21-9: -2px; + --f-21-10: -3px; + --f-21-11: -3px; + --f-21-12: -4px; + --f-21-13: -4px; + --f-21-14: -5px; + --f-21-15: -6px; + --f-21-16: -6px; + --f-21-17: -6px; + --f-si-1: 11px; + --f-si-2: 12px; + --f-si-3: 13px; + --f-si-4: 14px; + --f-si-5: 16px; + --f-si-6: 15px; + --f-si-7: 20px; + --f-si-8: 23px; + --f-si-9: 30px; + --f-si-10: 46px; + --f-si-11: 55px; + --f-si-12: 62px; + --f-si-13: 72px; + --f-si-14: 92px; + --f-si-15: 101px; + --f-si-16: 134px; + --f-si-17: 14px; + --f-tr-1: uppercase; + --f-tr-2: uppercase; + --f-tr-3: uppercase; + --f-tr-4: uppercase; + --f-tr-5: uppercase; + --f-tr-6: uppercase; + --f-tr-7: none; + --f-tr-8: none; + --f-tr-9: none; + --f-tr-10: none; + --f-tr-11: none; + --f-tr-12: none; + --f-tr-13: none; + --f-tr-14: none; + --f-tr-15: none; + --f-tr-16: none; + --f-tr-17: none +} + +:root .font_body, +:root .t_lang-body-default .font_body { + --f-fa: Inter, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; + --f-li-1: 23px; + --f-li-2: 24px; + --f-li-3: 25px; + --f-li-4: 27px; + --f-li-5: 30px; + --f-li-6: 32px; + --f-li-7: 34px; + --f-li-8: 38px; + --f-li-9: 46px; + --f-li-10: 66px; + --f-li-11: 77px; + --f-li-12: 85px; + --f-li-13: 97px; + --f-li-14: 121px; + --f-li-15: 148px; + --f-li-16: 172px; + --f-li-17: 27px; + --f-we-1: 300; + --f-we-2: 300; + --f-we-3: 300; + --f-we-4: 300; + --f-we-5: 300; + --f-we-6: 300; + --f-we-7: 300; + --f-we-8: 300; + --f-we-9: 300; + --f-we-10: 300; + --f-we-11: 300; + --f-we-12: 300; + --f-we-13: 300; + --f-we-14: 300; + --f-we-15: 300; + --f-we-16: 300; + --f-we-17: 300; + --f-21-1: 0px; + --f-21-2: 0px; + --f-21-3: 0px; + --f-21-4: 0px; + --f-21-5: 0px; + --f-21-6: 0px; + --f-21-7: 0px; + --f-21-8: 0px; + --f-21-9: 0px; + --f-21-10: 0px; + --f-21-11: 0px; + --f-21-12: 0px; + --f-21-13: 0px; + --f-21-14: 0px; + --f-21-15: 0px; + --f-21-16: 0px; + --f-21-17: 0px; + --f-si-1: 12px; + --f-si-2: 13px; + --f-si-3: 14px; + --f-si-4: 15px; + --f-si-5: 18px; + --f-si-6: 20px; + --f-si-7: 22px; + --f-si-8: 25px; + --f-si-9: 33px; + --f-si-10: 51px; + --f-si-11: 61px; + --f-si-12: 68px; + --f-si-13: 79px; + --f-si-14: 101px; + --f-si-15: 125px; + --f-si-16: 147px; + --f-si-17: 15px +} + +:root.t_dark, +:root.t_dark .t_light .t_dark, +:root.t_light .t_dark, +:root.t_light .t_dark .t_light .t_dark { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(191, 33%, 10%, 0.25); + --background025: hsla(191, 33%, 10%, 0.5); + --background05: hsla(191, 33%, 10%, 0.75); + --background075: hsla(191, 32%, 10%, 1); + --color0: hsla(112, 22%, 100%, 1); + --color025: hsla(0, 0%, 100%, 0.75); + --color05: hsla(0, 0%, 100%, 0.5); + --color075: hsla(0, 0%, 100%, 0.25); + --background: hsla(191, 32%, 10%, 1); + --backgroundHover: hsla(191, 32%, 15%, 1); + --backgroundPress: hsla(191, 32%, 19%, 1); + --backgroundFocus: hsla(191, 32%, 24%, 1); + --color: hsla(112, 22%, 59%, 1); + --colorHover: hsla(191, 32%, 50%, 1); + --colorPress: hsla(112, 22%, 59%, 1); + --colorFocus: hsla(191, 32%, 50%, 1); + --placeholderColor: hsla(191, 32%, 50%, 1); + --borderColor: hsla(191, 32%, 24%, 1); + --borderColorHover: hsla(191, 32%, 28%, 1); + --borderColorFocus: hsla(191, 32%, 32%, 1); + --borderColorPress: hsla(191, 32%, 28%, 1); + --color1: hsla(191, 32%, 10%, 1); + --color2: hsla(191, 32%, 15%, 1); + --color3: hsla(191, 32%, 19%, 1); + --color4: hsla(191, 32%, 24%, 1); + --color5: hsla(191, 32%, 28%, 1); + --color6: hsla(191, 32%, 32%, 1); + --color7: hsla(191, 32%, 37%, 1); + --color8: hsla(191, 32%, 41%, 1); + --color9: hsla(191, 32%, 46%, 1); + --color10: hsla(191, 32%, 50%, 1); + --color11: hsla(112, 22%, 59%, 1); + --color12: hsla(112, 22%, 100%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) } + + :root, + .t_light .t_dark { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(191, 33%, 10%, 0.25); + --background025: hsla(191, 33%, 10%, 0.5); + --background05: hsla(191, 33%, 10%, 0.75); + --background075: hsla(191, 32%, 10%, 1); + --color0: hsla(112, 22%, 100%, 1); + --color025: hsla(0, 0%, 100%, 0.75); + --color05: hsla(0, 0%, 100%, 0.5); + --color075: hsla(0, 0%, 100%, 0.25); + --background: hsla(191, 32%, 10%, 1); + --backgroundHover: hsla(191, 32%, 15%, 1); + --backgroundPress: hsla(191, 32%, 19%, 1); + --backgroundFocus: hsla(191, 32%, 24%, 1); + --color: hsla(112, 22%, 59%, 1); + --colorHover: hsla(191, 32%, 50%, 1); + --colorPress: hsla(112, 22%, 59%, 1); + --colorFocus: hsla(191, 32%, 50%, 1); + --placeholderColor: hsla(191, 32%, 50%, 1); + --borderColor: hsla(191, 32%, 24%, 1); + --borderColorHover: hsla(191, 32%, 28%, 1); + --borderColorFocus: hsla(191, 32%, 32%, 1); + --borderColorPress: hsla(191, 32%, 28%, 1); + --color1: hsla(191, 32%, 10%, 1); + --color2: hsla(191, 32%, 15%, 1); + --color3: hsla(191, 32%, 19%, 1); + --color4: hsla(191, 32%, 24%, 1); + --color5: hsla(191, 32%, 28%, 1); + --color6: hsla(191, 32%, 32%, 1); + --color7: hsla(191, 32%, 37%, 1); + --color8: hsla(191, 32%, 41%, 1); + --color9: hsla(191, 32%, 46%, 1); + --color10: hsla(191, 32%, 50%, 1); + --color11: hsla(112, 22%, 59%, 1); + --color12: hsla(112, 22%, 100%, 1); + } +} + +:root.t_dark .t_Button, +:root.t_dark .t_light .t_dark .t_Button, +:root.t_dark .t_light .t_dark .t_SliderTrack, +:root.t_dark .t_light .t_dark .t_Switch, +:root.t_dark .t_light .t_dark .t_TooltipContent, +:root.t_dark .t_SliderTrack, +:root.t_dark .t_Switch, +:root.t_dark .t_TooltipContent, +:root.t_light .t_dark .t_Button, +:root.t_light .t_dark .t_light .t_dark .t_Button, +:root.t_light .t_dark .t_light .t_dark .t_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_Switch, +:root.t_light .t_dark .t_light .t_dark .t_TooltipContent, +:root.t_light .t_dark .t_SliderTrack, +:root.t_light .t_dark .t_Switch, +:root.t_light .t_dark .t_TooltipContent { + --background0: hsla(191, 33%, 10%, 0.75); + --background025: hsla(191, 32%, 10%, 1); + --background05: hsla(191, 32%, 15%, 1); + --background075: hsla(191, 32%, 19%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(112, 22%, 59%, 1); + --color05: hsla(112, 22%, 100%, 1); + --color075: hsla(0, 0%, 100%, 0.75); + --background: hsla(191, 32%, 19%, 1); + --backgroundHover: hsla(191, 32%, 24%, 1); + --backgroundPress: hsla(191, 32%, 28%, 1); + --backgroundFocus: hsla(191, 32%, 32%, 1); + --color: hsla(112, 22%, 59%, 1); + --colorHover: hsla(191, 32%, 50%, 1); + --colorPress: hsla(112, 22%, 59%, 1); + --colorFocus: hsla(191, 32%, 50%, 1); + --placeholderColor: hsla(191, 32%, 41%, 1); + --borderColor: hsla(191, 32%, 32%, 1); + --borderColorHover: hsla(191, 32%, 37%, 1); + --borderColorFocus: hsla(191, 32%, 41%, 1); + --borderColorPress: hsla(191, 32%, 37%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_Button, + .t_light .t_dark .t_Button, + .t_light .t_dark .t_SliderTrack, + .t_light .t_dark .t_Switch, + .t_light .t_dark .t_TooltipContent, + .t_SliderTrack, + .t_Switch, + .t_TooltipContent { + --background0: hsla(191, 33%, 10%, 0.75); + --background025: hsla(191, 32%, 10%, 1); + --background05: hsla(191, 32%, 15%, 1); + --background075: hsla(191, 32%, 19%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(112, 22%, 59%, 1); + --color05: hsla(112, 22%, 100%, 1); + --color075: hsla(0, 0%, 100%, 0.75); + --background: hsla(191, 32%, 19%, 1); + --backgroundHover: hsla(191, 32%, 24%, 1); + --backgroundPress: hsla(191, 32%, 28%, 1); + --backgroundFocus: hsla(191, 32%, 32%, 1); + --color: hsla(112, 22%, 59%, 1); + --colorHover: hsla(191, 32%, 50%, 1); + --colorPress: hsla(112, 22%, 59%, 1); + --colorFocus: hsla(191, 32%, 50%, 1); + --placeholderColor: hsla(191, 32%, 41%, 1); + --borderColor: hsla(191, 32%, 32%, 1); + --borderColorHover: hsla(191, 32%, 37%, 1); + --borderColorFocus: hsla(191, 32%, 41%, 1); + --borderColorPress: hsla(191, 32%, 37%, 1); + } +} + +:root.t_dark .t_Card, +:root.t_dark .t_DrawerFrame, +:root.t_dark .t_light .t_dark .t_Card, +:root.t_dark .t_light .t_dark .t_DrawerFrame, +:root.t_dark .t_light .t_dark .t_Progress, +:root.t_dark .t_light .t_dark .t_TooltipArrow, +:root.t_dark .t_Progress, +:root.t_dark .t_TooltipArrow, +:root.t_light .t_dark .t_Card, +:root.t_light .t_dark .t_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_Card, +:root.t_light .t_dark .t_light .t_dark .t_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_Progress, +:root.t_light .t_dark .t_light .t_dark .t_TooltipArrow, +:root.t_light .t_dark .t_Progress, +:root.t_light .t_dark .t_TooltipArrow { + --background0: hsla(191, 33%, 10%, 0.5); + --background025: hsla(191, 33%, 10%, 0.75); + --background05: hsla(191, 32%, 10%, 1); + --background075: hsla(191, 32%, 15%, 1); + --color0: hsla(112, 22%, 59%, 1); + --color025: hsla(112, 22%, 100%, 1); + --color05: hsla(0, 0%, 100%, 0.75); + --color075: hsla(0, 0%, 100%, 0.5); + --background: hsla(191, 32%, 15%, 1); + --backgroundHover: hsla(191, 32%, 19%, 1); + --backgroundPress: hsla(191, 32%, 24%, 1); + --backgroundFocus: hsla(191, 32%, 28%, 1); + --color: hsla(112, 22%, 59%, 1); + --colorHover: hsla(191, 32%, 50%, 1); + --colorPress: hsla(112, 22%, 59%, 1); + --colorFocus: hsla(191, 32%, 50%, 1); + --placeholderColor: hsla(191, 32%, 46%, 1); + --borderColor: hsla(191, 32%, 28%, 1); + --borderColorHover: hsla(191, 32%, 32%, 1); + --borderColorFocus: hsla(191, 32%, 37%, 1); + --borderColorPress: hsla(191, 32%, 32%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_Card, + .t_DrawerFrame, + .t_light .t_dark .t_Card, + .t_light .t_dark .t_DrawerFrame, + .t_light .t_dark .t_Progress, + .t_light .t_dark .t_TooltipArrow, + .t_Progress, + .t_TooltipArrow { + --background0: hsla(191, 33%, 10%, 0.5); + --background025: hsla(191, 33%, 10%, 0.75); + --background05: hsla(191, 32%, 10%, 1); + --background075: hsla(191, 32%, 15%, 1); + --color0: hsla(112, 22%, 59%, 1); + --color025: hsla(112, 22%, 100%, 1); + --color05: hsla(0, 0%, 100%, 0.75); + --color075: hsla(0, 0%, 100%, 0.5); + --background: hsla(191, 32%, 15%, 1); + --backgroundHover: hsla(191, 32%, 19%, 1); + --backgroundPress: hsla(191, 32%, 24%, 1); + --backgroundFocus: hsla(191, 32%, 28%, 1); + --color: hsla(112, 22%, 59%, 1); + --colorHover: hsla(191, 32%, 50%, 1); + --colorPress: hsla(112, 22%, 59%, 1); + --colorFocus: hsla(191, 32%, 50%, 1); + --placeholderColor: hsla(191, 32%, 46%, 1); + --borderColor: hsla(191, 32%, 28%, 1); + --borderColorHover: hsla(191, 32%, 32%, 1); + --borderColorFocus: hsla(191, 32%, 37%, 1); + --borderColorPress: hsla(191, 32%, 32%, 1); + } +} + +:root.t_dark .t_Checkbox, +:root.t_dark .t_Input, +:root.t_dark .t_light .t_dark .t_Checkbox, +:root.t_dark .t_light .t_dark .t_Input, +:root.t_dark .t_light .t_dark .t_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_TextArea, +:root.t_dark .t_RadioGroupItem, +:root.t_dark .t_TextArea, +:root.t_light .t_dark .t_Checkbox, +:root.t_light .t_dark .t_Input, +:root.t_light .t_dark .t_light .t_dark .t_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_Input, +:root.t_light .t_dark .t_light .t_dark .t_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_TextArea, +:root.t_light .t_dark .t_RadioGroupItem, +:root.t_light .t_dark .t_TextArea { + --accentBackground: hsla(191, 33%, 10%, 0); + --accentColor: hsla(191, 33%, 10%, 0); + --background0: hsla(191, 33%, 10%, 0.25); + --background025: hsla(191, 33%, 10%, 0.5); + --background05: hsla(191, 33%, 10%, 0.75); + --background075: hsla(191, 32%, 10%, 1); + --color0: hsla(112, 22%, 100%, 1); + --color025: hsla(0, 0%, 100%, 0.75); + --color05: hsla(0, 0%, 100%, 0.5); + --color075: hsla(0, 0%, 100%, 0.25); + --background: hsla(191, 32%, 10%, 1); + --backgroundHover: hsla(191, 32%, 15%, 1); + --backgroundPress: hsla(191, 32%, 19%, 1); + --backgroundFocus: hsla(191, 32%, 24%, 1); + --color: hsla(112, 22%, 59%, 1); + --colorHover: hsla(191, 32%, 50%, 1); + --colorPress: hsla(112, 22%, 59%, 1); + --colorFocus: hsla(191, 32%, 50%, 1); + --placeholderColor: hsla(191, 32%, 50%, 1); + --borderColor: hsla(191, 32%, 32%, 1); + --borderColorHover: hsla(191, 32%, 37%, 1); + --borderColorFocus: hsla(191, 32%, 41%, 1); + --borderColorPress: hsla(191, 32%, 37%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_Checkbox, + .t_Input, + .t_light .t_dark .t_Checkbox, + .t_light .t_dark .t_Input, + .t_light .t_dark .t_RadioGroupItem, + .t_light .t_dark .t_TextArea, + .t_RadioGroupItem, + .t_TextArea { + --accentBackground: hsla(191, 33%, 10%, 0); + --accentColor: hsla(191, 33%, 10%, 0); + --background0: hsla(191, 33%, 10%, 0.25); + --background025: hsla(191, 33%, 10%, 0.5); + --background05: hsla(191, 33%, 10%, 0.75); + --background075: hsla(191, 32%, 10%, 1); + --color0: hsla(112, 22%, 100%, 1); + --color025: hsla(0, 0%, 100%, 0.75); + --color05: hsla(0, 0%, 100%, 0.5); + --color075: hsla(0, 0%, 100%, 0.25); + --background: hsla(191, 32%, 10%, 1); + --backgroundHover: hsla(191, 32%, 15%, 1); + --backgroundPress: hsla(191, 32%, 19%, 1); + --backgroundFocus: hsla(191, 32%, 24%, 1); + --color: hsla(112, 22%, 59%, 1); + --colorHover: hsla(191, 32%, 50%, 1); + --colorPress: hsla(112, 22%, 59%, 1); + --colorFocus: hsla(191, 32%, 50%, 1); + --placeholderColor: hsla(191, 32%, 50%, 1); + --borderColor: hsla(191, 32%, 32%, 1); + --borderColorHover: hsla(191, 32%, 37%, 1); + --borderColorFocus: hsla(191, 32%, 41%, 1); + --borderColorPress: hsla(191, 32%, 37%, 1); + } +} + +:root.t_dark .t_accent_DialogOverlay, +:root.t_dark .t_accent_ModalOverlay, +:root.t_dark .t_accent_SheetOverlay, +:root.t_dark .t_active_accent_DialogOverlay, +:root.t_dark .t_active_accent_ModalOverlay, +:root.t_dark .t_active_accent_SheetOverlay, +:root.t_dark .t_active_DialogOverlay, +:root.t_dark .t_active_ModalOverlay, +:root.t_dark .t_active_SheetOverlay, +:root.t_dark .t_alt1_accent_DialogOverlay, +:root.t_dark .t_alt1_accent_ModalOverlay, +:root.t_dark .t_alt1_accent_SheetOverlay, +:root.t_dark .t_alt1_DialogOverlay, +:root.t_dark .t_alt1_ModalOverlay, +:root.t_dark .t_alt1_SheetOverlay, +:root.t_dark .t_alt2_accent_DialogOverlay, +:root.t_dark .t_alt2_accent_ModalOverlay, +:root.t_dark .t_alt2_accent_SheetOverlay, +:root.t_dark .t_alt2_DialogOverlay, +:root.t_dark .t_alt2_ModalOverlay, +:root.t_dark .t_alt2_SheetOverlay, +:root.t_dark .t_DialogOverlay, +:root.t_dark .t_dim_accent_DialogOverlay, +:root.t_dark .t_dim_accent_ModalOverlay, +:root.t_dark .t_dim_accent_SheetOverlay, +:root.t_dark .t_dim_DialogOverlay, +:root.t_dark .t_dim_ModalOverlay, +:root.t_dark .t_dim_SheetOverlay, +:root.t_dark .t_disabled_accent_DialogOverlay, +:root.t_dark .t_disabled_accent_ModalOverlay, +:root.t_dark .t_disabled_accent_SheetOverlay, +:root.t_dark .t_disabled_DialogOverlay, +:root.t_dark .t_disabled_ModalOverlay, +:root.t_dark .t_disabled_SheetOverlay, +:root.t_dark .t_error_accent_DialogOverlay, +:root.t_dark .t_error_accent_ModalOverlay, +:root.t_dark .t_error_accent_SheetOverlay, +:root.t_dark .t_error_DialogOverlay, +:root.t_dark .t_error_ModalOverlay, +:root.t_dark .t_error_SheetOverlay, +:root.t_dark .t_light .t_dark .t_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_active_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_active_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_active_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_active_DialogOverlay, +:root.t_dark .t_light .t_dark .t_active_ModalOverlay, +:root.t_dark .t_light .t_dark .t_active_SheetOverlay, +:root.t_dark .t_light .t_dark .t_alt1_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_alt1_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_alt1_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_alt1_DialogOverlay, +:root.t_dark .t_light .t_dark .t_alt1_ModalOverlay, +:root.t_dark .t_light .t_dark .t_alt1_SheetOverlay, +:root.t_dark .t_light .t_dark .t_alt2_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_alt2_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_alt2_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_alt2_DialogOverlay, +:root.t_dark .t_light .t_dark .t_alt2_ModalOverlay, +:root.t_dark .t_light .t_dark .t_alt2_SheetOverlay, +:root.t_dark .t_light .t_dark .t_DialogOverlay, +:root.t_dark .t_light .t_dark .t_dim_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_dim_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_dim_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_dim_DialogOverlay, +:root.t_dark .t_light .t_dark .t_dim_ModalOverlay, +:root.t_dark .t_light .t_dark .t_dim_SheetOverlay, +:root.t_dark .t_light .t_dark .t_disabled_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_disabled_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_disabled_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_disabled_DialogOverlay, +:root.t_dark .t_light .t_dark .t_disabled_ModalOverlay, +:root.t_dark .t_light .t_dark .t_disabled_SheetOverlay, +:root.t_dark .t_light .t_dark .t_error_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_error_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_error_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_error_DialogOverlay, +:root.t_dark .t_light .t_dark .t_error_ModalOverlay, +:root.t_dark .t_light .t_dark .t_error_SheetOverlay, +:root.t_dark .t_light .t_dark .t_ModalOverlay, +:root.t_dark .t_light .t_dark .t_red_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_red_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_red_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_red_DialogOverlay, +:root.t_dark .t_light .t_dark .t_red_ModalOverlay, +:root.t_dark .t_light .t_dark .t_red_SheetOverlay, +:root.t_dark .t_light .t_dark .t_SheetOverlay, +:root.t_dark .t_light .t_dark .t_success_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_success_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_success_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_success_DialogOverlay, +:root.t_dark .t_light .t_dark .t_success_ModalOverlay, +:root.t_dark .t_light .t_dark .t_success_SheetOverlay, +:root.t_dark .t_light .t_dark .t_warning_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_warning_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_warning_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_warning_DialogOverlay, +:root.t_dark .t_light .t_dark .t_warning_ModalOverlay, +:root.t_dark .t_light .t_dark .t_warning_SheetOverlay, +:root.t_dark .t_ModalOverlay, +:root.t_dark .t_red_accent_DialogOverlay, +:root.t_dark .t_red_accent_ModalOverlay, +:root.t_dark .t_red_accent_SheetOverlay, +:root.t_dark .t_red_DialogOverlay, +:root.t_dark .t_red_ModalOverlay, +:root.t_dark .t_red_SheetOverlay, +:root.t_dark .t_SheetOverlay, +:root.t_dark .t_success_accent_DialogOverlay, +:root.t_dark .t_success_accent_ModalOverlay, +:root.t_dark .t_success_accent_SheetOverlay, +:root.t_dark .t_success_DialogOverlay, +:root.t_dark .t_success_ModalOverlay, +:root.t_dark .t_success_SheetOverlay, +:root.t_dark .t_warning_accent_DialogOverlay, +:root.t_dark .t_warning_accent_ModalOverlay, +:root.t_dark .t_warning_accent_SheetOverlay, +:root.t_dark .t_warning_DialogOverlay, +:root.t_dark .t_warning_ModalOverlay, +:root.t_dark .t_warning_SheetOverlay, +:root.t_light .t_dark .t_accent_DialogOverlay, +:root.t_light .t_dark .t_accent_ModalOverlay, +:root.t_light .t_dark .t_accent_SheetOverlay, +:root.t_light .t_dark .t_active_accent_DialogOverlay, +:root.t_light .t_dark .t_active_accent_ModalOverlay, +:root.t_light .t_dark .t_active_accent_SheetOverlay, +:root.t_light .t_dark .t_active_DialogOverlay, +:root.t_light .t_dark .t_active_ModalOverlay, +:root.t_light .t_dark .t_active_SheetOverlay, +:root.t_light .t_dark .t_alt1_accent_DialogOverlay, +:root.t_light .t_dark .t_alt1_accent_ModalOverlay, +:root.t_light .t_dark .t_alt1_accent_SheetOverlay, +:root.t_light .t_dark .t_alt1_DialogOverlay, +:root.t_light .t_dark .t_alt1_ModalOverlay, +:root.t_light .t_dark .t_alt1_SheetOverlay, +:root.t_light .t_dark .t_alt2_accent_DialogOverlay, +:root.t_light .t_dark .t_alt2_accent_ModalOverlay, +:root.t_light .t_dark .t_alt2_accent_SheetOverlay, +:root.t_light .t_dark .t_alt2_DialogOverlay, +:root.t_light .t_dark .t_alt2_ModalOverlay, +:root.t_light .t_dark .t_alt2_SheetOverlay, +:root.t_light .t_dark .t_DialogOverlay, +:root.t_light .t_dark .t_dim_accent_DialogOverlay, +:root.t_light .t_dark .t_dim_accent_ModalOverlay, +:root.t_light .t_dark .t_dim_accent_SheetOverlay, +:root.t_light .t_dark .t_dim_DialogOverlay, +:root.t_light .t_dark .t_dim_ModalOverlay, +:root.t_light .t_dark .t_dim_SheetOverlay, +:root.t_light .t_dark .t_disabled_accent_DialogOverlay, +:root.t_light .t_dark .t_disabled_accent_ModalOverlay, +:root.t_light .t_dark .t_disabled_accent_SheetOverlay, +:root.t_light .t_dark .t_disabled_DialogOverlay, +:root.t_light .t_dark .t_disabled_ModalOverlay, +:root.t_light .t_dark .t_disabled_SheetOverlay, +:root.t_light .t_dark .t_error_accent_DialogOverlay, +:root.t_light .t_dark .t_error_accent_ModalOverlay, +:root.t_light .t_dark .t_error_accent_SheetOverlay, +:root.t_light .t_dark .t_error_DialogOverlay, +:root.t_light .t_dark .t_error_ModalOverlay, +:root.t_light .t_dark .t_error_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_active_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_active_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_active_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_alt1_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_alt1_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_alt1_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_alt2_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_alt2_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_alt2_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_dim_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_dim_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_dim_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_disabled_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_disabled_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_disabled_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_error_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_error_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_error_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_red_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_red_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_red_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_success_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_success_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_success_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_dark .t_warning_DialogOverlay, +:root.t_light .t_dark .t_light .t_dark .t_warning_ModalOverlay, +:root.t_light .t_dark .t_light .t_dark .t_warning_SheetOverlay, +:root.t_light .t_dark .t_ModalOverlay, +:root.t_light .t_dark .t_red_accent_DialogOverlay, +:root.t_light .t_dark .t_red_accent_ModalOverlay, +:root.t_light .t_dark .t_red_accent_SheetOverlay, +:root.t_light .t_dark .t_red_DialogOverlay, +:root.t_light .t_dark .t_red_ModalOverlay, +:root.t_light .t_dark .t_red_SheetOverlay, +:root.t_light .t_dark .t_SheetOverlay, +:root.t_light .t_dark .t_success_accent_DialogOverlay, +:root.t_light .t_dark .t_success_accent_ModalOverlay, +:root.t_light .t_dark .t_success_accent_SheetOverlay, +:root.t_light .t_dark .t_success_DialogOverlay, +:root.t_light .t_dark .t_success_ModalOverlay, +:root.t_light .t_dark .t_success_SheetOverlay, +:root.t_light .t_dark .t_warning_accent_DialogOverlay, +:root.t_light .t_dark .t_warning_accent_ModalOverlay, +:root.t_light .t_dark .t_warning_accent_SheetOverlay, +:root.t_light .t_dark .t_warning_DialogOverlay, +:root.t_light .t_dark .t_warning_ModalOverlay, +:root.t_light .t_dark .t_warning_SheetOverlay { + --background: rgba(0, 0, 0, 0.9); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + } + + .t_accent_DialogOverlay, + .t_accent_ModalOverlay, + .t_accent_SheetOverlay, + .t_active_accent_DialogOverlay, + .t_active_accent_ModalOverlay, + .t_active_accent_SheetOverlay, + .t_active_DialogOverlay, + .t_active_ModalOverlay, + .t_active_SheetOverlay, + .t_alt1_accent_DialogOverlay, + .t_alt1_accent_ModalOverlay, + .t_alt1_accent_SheetOverlay, + .t_alt1_DialogOverlay, + .t_alt1_ModalOverlay, + .t_alt1_SheetOverlay, + .t_alt2_accent_DialogOverlay, + .t_alt2_accent_ModalOverlay, + .t_alt2_accent_SheetOverlay, + .t_alt2_DialogOverlay, + .t_alt2_ModalOverlay, + .t_alt2_SheetOverlay, + .t_DialogOverlay, + .t_dim_accent_DialogOverlay, + .t_dim_accent_ModalOverlay, + .t_dim_accent_SheetOverlay, + .t_dim_DialogOverlay, + .t_dim_ModalOverlay, + .t_dim_SheetOverlay, + .t_disabled_accent_DialogOverlay, + .t_disabled_accent_ModalOverlay, + .t_disabled_accent_SheetOverlay, + .t_disabled_DialogOverlay, + .t_disabled_ModalOverlay, + .t_disabled_SheetOverlay, + .t_error_accent_DialogOverlay, + .t_error_accent_ModalOverlay, + .t_error_accent_SheetOverlay, + .t_error_DialogOverlay, + .t_error_ModalOverlay, + .t_error_SheetOverlay, + .t_light .t_dark .t_accent_DialogOverlay, + .t_light .t_dark .t_accent_ModalOverlay, + .t_light .t_dark .t_accent_SheetOverlay, + .t_light .t_dark .t_active_accent_DialogOverlay, + .t_light .t_dark .t_active_accent_ModalOverlay, + .t_light .t_dark .t_active_accent_SheetOverlay, + .t_light .t_dark .t_active_DialogOverlay, + .t_light .t_dark .t_active_ModalOverlay, + .t_light .t_dark .t_active_SheetOverlay, + .t_light .t_dark .t_alt1_accent_DialogOverlay, + .t_light .t_dark .t_alt1_accent_ModalOverlay, + .t_light .t_dark .t_alt1_accent_SheetOverlay, + .t_light .t_dark .t_alt1_DialogOverlay, + .t_light .t_dark .t_alt1_ModalOverlay, + .t_light .t_dark .t_alt1_SheetOverlay, + .t_light .t_dark .t_alt2_accent_DialogOverlay, + .t_light .t_dark .t_alt2_accent_ModalOverlay, + .t_light .t_dark .t_alt2_accent_SheetOverlay, + .t_light .t_dark .t_alt2_DialogOverlay, + .t_light .t_dark .t_alt2_ModalOverlay, + .t_light .t_dark .t_alt2_SheetOverlay, + .t_light .t_dark .t_DialogOverlay, + .t_light .t_dark .t_dim_accent_DialogOverlay, + .t_light .t_dark .t_dim_accent_ModalOverlay, + .t_light .t_dark .t_dim_accent_SheetOverlay, + .t_light .t_dark .t_dim_DialogOverlay, + .t_light .t_dark .t_dim_ModalOverlay, + .t_light .t_dark .t_dim_SheetOverlay, + .t_light .t_dark .t_disabled_accent_DialogOverlay, + .t_light .t_dark .t_disabled_accent_ModalOverlay, + .t_light .t_dark .t_disabled_accent_SheetOverlay, + .t_light .t_dark .t_disabled_DialogOverlay, + .t_light .t_dark .t_disabled_ModalOverlay, + .t_light .t_dark .t_disabled_SheetOverlay, + .t_light .t_dark .t_error_accent_DialogOverlay, + .t_light .t_dark .t_error_accent_ModalOverlay, + .t_light .t_dark .t_error_accent_SheetOverlay, + .t_light .t_dark .t_error_DialogOverlay, + .t_light .t_dark .t_error_ModalOverlay, + .t_light .t_dark .t_error_SheetOverlay, + .t_light .t_dark .t_ModalOverlay, + .t_light .t_dark .t_red_accent_DialogOverlay, + .t_light .t_dark .t_red_accent_ModalOverlay, + .t_light .t_dark .t_red_accent_SheetOverlay, + .t_light .t_dark .t_red_DialogOverlay, + .t_light .t_dark .t_red_ModalOverlay, + .t_light .t_dark .t_red_SheetOverlay, + .t_light .t_dark .t_SheetOverlay, + .t_light .t_dark .t_success_accent_DialogOverlay, + .t_light .t_dark .t_success_accent_ModalOverlay, + .t_light .t_dark .t_success_accent_SheetOverlay, + .t_light .t_dark .t_success_DialogOverlay, + .t_light .t_dark .t_success_ModalOverlay, + .t_light .t_dark .t_success_SheetOverlay, + .t_light .t_dark .t_warning_accent_DialogOverlay, + .t_light .t_dark .t_warning_accent_ModalOverlay, + .t_light .t_dark .t_warning_accent_SheetOverlay, + .t_light .t_dark .t_warning_DialogOverlay, + .t_light .t_dark .t_warning_ModalOverlay, + .t_light .t_dark .t_warning_SheetOverlay, + .t_ModalOverlay, + .t_red_accent_DialogOverlay, + .t_red_accent_ModalOverlay, + .t_red_accent_SheetOverlay, + .t_red_DialogOverlay, + .t_red_ModalOverlay, + .t_red_SheetOverlay, + .t_SheetOverlay, + .t_success_accent_DialogOverlay, + .t_success_accent_ModalOverlay, + .t_success_accent_SheetOverlay, + .t_success_DialogOverlay, + .t_success_ModalOverlay, + .t_success_SheetOverlay, + .t_warning_accent_DialogOverlay, + .t_warning_accent_ModalOverlay, + .t_warning_accent_SheetOverlay, + .t_warning_DialogOverlay, + .t_warning_ModalOverlay, + .t_warning_SheetOverlay { + --background: rgba(0, 0, 0, 0.9); + } +} + +:root.t_dark .t_light .t_dark .t_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_SliderThumb, +:root.t_dark .t_light .t_dark .t_SwitchThumb, +:root.t_dark .t_light .t_dark .t_Tooltip, +:root.t_dark .t_ProgressIndicator, +:root.t_dark .t_SliderThumb, +:root.t_dark .t_SwitchThumb, +:root.t_dark .t_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_Tooltip, +:root.t_light .t_dark .t_ProgressIndicator, +:root.t_light .t_dark .t_SliderThumb, +:root.t_light .t_dark .t_SwitchThumb, +:root.t_light .t_dark .t_Tooltip { + --accentBackground: hsla(191, 33%, 10%, 0); + --accentColor: hsla(191, 33%, 10%, 0); + --background0: hsla(0, 0%, 100%, 0.25); + --background025: hsla(0, 0%, 100%, 0.5); + --background05: hsla(0, 0%, 100%, 0.75); + --background075: hsla(112, 22%, 100%, 1); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 33%, 10%, 0.75); + --color05: hsla(191, 33%, 10%, 0.5); + --color075: hsla(191, 33%, 10%, 0.25); + --background: hsla(112, 22%, 100%, 1); + --backgroundHover: hsla(112, 22%, 59%, 1); + --backgroundPress: hsla(191, 32%, 50%, 1); + --backgroundFocus: hsla(191, 32%, 46%, 1); + --color: hsla(191, 32%, 15%, 1); + --colorHover: hsla(191, 32%, 19%, 1); + --colorPress: hsla(191, 32%, 15%, 1); + --colorFocus: hsla(191, 32%, 19%, 1); + --placeholderColor: hsla(191, 32%, 19%, 1); + --borderColor: hsla(191, 32%, 46%, 1); + --borderColorHover: hsla(191, 32%, 41%, 1); + --borderColorFocus: hsla(191, 32%, 37%, 1); + --borderColorPress: hsla(191, 32%, 41%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_light .t_dark .t_ProgressIndicator, + .t_light .t_dark .t_SliderThumb, + .t_light .t_dark .t_SwitchThumb, + .t_light .t_dark .t_Tooltip, + .t_ProgressIndicator, + .t_SliderThumb, + .t_SwitchThumb, + .t_Tooltip { + --accentBackground: hsla(191, 33%, 10%, 0); + --accentColor: hsla(191, 33%, 10%, 0); + --background0: hsla(0, 0%, 100%, 0.25); + --background025: hsla(0, 0%, 100%, 0.5); + --background05: hsla(0, 0%, 100%, 0.75); + --background075: hsla(112, 22%, 100%, 1); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 33%, 10%, 0.75); + --color05: hsla(191, 33%, 10%, 0.5); + --color075: hsla(191, 33%, 10%, 0.25); + --background: hsla(112, 22%, 100%, 1); + --backgroundHover: hsla(112, 22%, 59%, 1); + --backgroundPress: hsla(191, 32%, 50%, 1); + --backgroundFocus: hsla(191, 32%, 46%, 1); + --color: hsla(191, 32%, 15%, 1); + --colorHover: hsla(191, 32%, 19%, 1); + --colorPress: hsla(191, 32%, 15%, 1); + --colorFocus: hsla(191, 32%, 19%, 1); + --placeholderColor: hsla(191, 32%, 19%, 1); + --borderColor: hsla(191, 32%, 46%, 1); + --borderColorHover: hsla(191, 32%, 41%, 1); + --borderColorFocus: hsla(191, 32%, 37%, 1); + --borderColorPress: hsla(191, 32%, 41%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_SliderTrackActive, +:root.t_dark .t_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_SliderTrackActive, +:root.t_light .t_dark .t_SliderTrackActive { + --accentBackground: hsla(191, 33%, 10%, 0); + --accentColor: hsla(191, 33%, 10%, 0); + --background0: hsla(0, 0%, 100%, 0.75); + --background025: hsla(112, 22%, 100%, 1); + --background05: hsla(112, 22%, 59%, 1); + --background075: hsla(191, 32%, 50%, 1); + --color0: hsla(191, 32%, 19%, 1); + --color025: hsla(191, 32%, 15%, 1); + --color05: hsla(191, 32%, 10%, 1); + --color075: hsla(191, 33%, 10%, 0.75); + --background: hsla(191, 32%, 50%, 1); + --backgroundHover: hsla(191, 32%, 46%, 1); + --backgroundPress: hsla(191, 32%, 41%, 1); + --backgroundFocus: hsla(191, 32%, 37%, 1); + --color: hsla(191, 32%, 15%, 1); + --colorHover: hsla(191, 32%, 19%, 1); + --colorPress: hsla(191, 32%, 15%, 1); + --colorFocus: hsla(191, 32%, 19%, 1); + --placeholderColor: hsla(191, 32%, 28%, 1); + --borderColor: hsla(191, 32%, 37%, 1); + --borderColorHover: hsla(191, 32%, 32%, 1); + --borderColorFocus: hsla(191, 32%, 28%, 1); + --borderColorPress: hsla(191, 32%, 32%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_light .t_dark .t_SliderTrackActive, + .t_SliderTrackActive { + --accentBackground: hsla(191, 33%, 10%, 0); + --accentColor: hsla(191, 33%, 10%, 0); + --background0: hsla(0, 0%, 100%, 0.75); + --background025: hsla(112, 22%, 100%, 1); + --background05: hsla(112, 22%, 59%, 1); + --background075: hsla(191, 32%, 50%, 1); + --color0: hsla(191, 32%, 19%, 1); + --color025: hsla(191, 32%, 15%, 1); + --color05: hsla(191, 32%, 10%, 1); + --color075: hsla(191, 33%, 10%, 0.75); + --background: hsla(191, 32%, 50%, 1); + --backgroundHover: hsla(191, 32%, 46%, 1); + --backgroundPress: hsla(191, 32%, 41%, 1); + --backgroundFocus: hsla(191, 32%, 37%, 1); + --color: hsla(191, 32%, 15%, 1); + --colorHover: hsla(191, 32%, 19%, 1); + --colorPress: hsla(191, 32%, 15%, 1); + --colorFocus: hsla(191, 32%, 19%, 1); + --placeholderColor: hsla(191, 32%, 28%, 1); + --borderColor: hsla(191, 32%, 37%, 1); + --borderColorHover: hsla(191, 32%, 32%, 1); + --borderColorFocus: hsla(191, 32%, 28%, 1); + --borderColorPress: hsla(191, 32%, 32%, 1); + } +} + +:root.t_dark .t_accent, +:root.t_dark .t_active_accent, +:root.t_dark .t_alt1_accent, +:root.t_dark .t_alt2_accent, +:root.t_dark .t_dim_accent, +:root.t_dark .t_disabled_accent, +:root.t_dark .t_error_accent, +:root.t_dark .t_light .t_dark .t_accent, +:root.t_dark .t_light .t_dark .t_active_accent, +:root.t_dark .t_light .t_dark .t_alt1_accent, +:root.t_dark .t_light .t_dark .t_alt2_accent, +:root.t_dark .t_light .t_dark .t_dim_accent, +:root.t_dark .t_light .t_dark .t_disabled_accent, +:root.t_dark .t_light .t_dark .t_error_accent, +:root.t_dark .t_light .t_dark .t_red_accent, +:root.t_dark .t_light .t_dark .t_success_accent, +:root.t_dark .t_light .t_dark .t_warning_accent, +:root.t_dark .t_red_accent, +:root.t_dark .t_success_accent, +:root.t_dark .t_warning_accent, +:root.t_light .t_dark .t_accent, +:root.t_light .t_dark .t_active_accent, +:root.t_light .t_dark .t_alt1_accent, +:root.t_light .t_dark .t_alt2_accent, +:root.t_light .t_dark .t_dim_accent, +:root.t_light .t_dark .t_disabled_accent, +:root.t_light .t_dark .t_error_accent, +:root.t_light .t_dark .t_light .t_dark .t_accent, +:root.t_light .t_dark .t_light .t_dark .t_active_accent, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent, +:root.t_light .t_dark .t_light .t_dark .t_error_accent, +:root.t_light .t_dark .t_light .t_dark .t_red_accent, +:root.t_light .t_dark .t_light .t_dark .t_success_accent, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent, +:root.t_light .t_dark .t_red_accent, +:root.t_light .t_dark .t_success_accent, +:root.t_light .t_dark .t_warning_accent { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(125, 96%, 40%, 0.25); + --background025: var(--color-229); + --background05: var(--color-230); + --background075: var(--color-231); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 33%, 10%, 0.75); + --color05: hsla(191, 33%, 10%, 0.5); + --color075: hsla(191, 33%, 10%, 0.25); + --background: var(--color-231); + --backgroundHover: var(--color-232); + --backgroundPress: var(--color-233); + --backgroundFocus: var(--color-234); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-240); + --borderColor: var(--color-234); + --borderColorHover: var(--color-235); + --borderColorFocus: var(--color-236); + --borderColorPress: var(--color-235); + --color1: var(--color-231); + --color2: var(--color-232); + --color3: var(--color-233); + --color4: var(--color-234); + --color5: var(--color-235); + --color6: var(--color-236); + --color7: var(--color-237); + --color8: var(--color-238); + --color9: var(--color-239); + --color10: var(--color-240); + --color11: hsla(191, 32%, 10%, 1); + --color12: hsla(191, 32%, 10%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_accent, + .t_active_accent, + .t_alt1_accent, + .t_alt2_accent, + .t_dim_accent, + .t_disabled_accent, + .t_error_accent, + .t_light .t_dark .t_accent, + .t_light .t_dark .t_active_accent, + .t_light .t_dark .t_alt1_accent, + .t_light .t_dark .t_alt2_accent, + .t_light .t_dark .t_dim_accent, + .t_light .t_dark .t_disabled_accent, + .t_light .t_dark .t_error_accent, + .t_light .t_dark .t_red_accent, + .t_light .t_dark .t_success_accent, + .t_light .t_dark .t_warning_accent, + .t_red_accent, + .t_success_accent, + .t_warning_accent { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(125, 96%, 40%, 0.25); + --background025: var(--color-229); + --background05: var(--color-230); + --background075: var(--color-231); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 33%, 10%, 0.75); + --color05: hsla(191, 33%, 10%, 0.5); + --color075: hsla(191, 33%, 10%, 0.25); + --background: var(--color-231); + --backgroundHover: var(--color-232); + --backgroundPress: var(--color-233); + --backgroundFocus: var(--color-234); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-240); + --borderColor: var(--color-234); + --borderColorHover: var(--color-235); + --borderColorFocus: var(--color-236); + --borderColorPress: var(--color-235); + --color1: var(--color-231); + --color2: var(--color-232); + --color3: var(--color-233); + --color4: var(--color-234); + --color5: var(--color-235); + --color6: var(--color-236); + --color7: var(--color-237); + --color8: var(--color-238); + --color9: var(--color-239); + --color10: var(--color-240); + --color11: hsla(191, 32%, 10%, 1); + --color12: hsla(191, 32%, 10%, 1); + } +} + +:root.t_dark .t_accent_Button, +:root.t_dark .t_accent_Switch, +:root.t_dark .t_light .t_dark .t_accent_Button, +:root.t_dark .t_light .t_dark .t_accent_Switch, +:root.t_light .t_dark .t_accent_Button, +:root.t_light .t_dark .t_accent_Switch, +:root.t_light .t_dark .t_light .t_dark .t_accent_Button, +:root.t_light .t_dark .t_light .t_dark .t_accent_Switch { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(125, 96%, 40%, 0.25); + --background025: var(--color-229); + --background05: var(--color-230); + --background075: var(--color-231); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 33%, 10%, 0.75); + --color05: hsla(191, 33%, 10%, 0.5); + --color075: hsla(191, 33%, 10%, 0.25); + --background: var(--color-234); + --backgroundHover: var(--color-235); + --backgroundPress: var(--color-236); + --backgroundFocus: var(--color-237); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-240); + --borderColor: var(--color-237); + --borderColorHover: var(--color-238); + --borderColorFocus: var(--color-239); + --borderColorPress: var(--color-238); + --color1: var(--color-231); + --color2: var(--color-232); + --color3: var(--color-233); + --color4: var(--color-234); + --color5: var(--color-235); + --color6: var(--color-236); + --color7: var(--color-237); + --color8: var(--color-238); + --color9: var(--color-239); + --color10: var(--color-240); + --color11: hsla(191, 32%, 10%, 1); + --color12: hsla(191, 32%, 10%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_accent_Button, + .t_accent_Switch, + .t_light .t_dark .t_accent_Button, + .t_light .t_dark .t_accent_Switch { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(125, 96%, 40%, 0.25); + --background025: var(--color-229); + --background05: var(--color-230); + --background075: var(--color-231); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 33%, 10%, 0.75); + --color05: hsla(191, 33%, 10%, 0.5); + --color075: hsla(191, 33%, 10%, 0.25); + --background: var(--color-234); + --backgroundHover: var(--color-235); + --backgroundPress: var(--color-236); + --backgroundFocus: var(--color-237); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-240); + --borderColor: var(--color-237); + --borderColorHover: var(--color-238); + --borderColorFocus: var(--color-239); + --borderColorPress: var(--color-238); + --color1: var(--color-231); + --color2: var(--color-232); + --color3: var(--color-233); + --color4: var(--color-234); + --color5: var(--color-235); + --color6: var(--color-236); + --color7: var(--color-237); + --color8: var(--color-238); + --color9: var(--color-239); + --color10: var(--color-240); + --color11: hsla(191, 32%, 10%, 1); + --color12: hsla(191, 32%, 10%, 1); + } +} + +:root.t_dark .t_accent_Card, +:root.t_dark .t_accent_DrawerFrame, +:root.t_dark .t_accent_Progress, +:root.t_dark .t_accent_TooltipArrow, +:root.t_dark .t_active_accent_Card, +:root.t_dark .t_active_accent_DrawerFrame, +:root.t_dark .t_active_accent_Progress, +:root.t_dark .t_active_accent_TooltipArrow, +:root.t_dark .t_alt1_accent_Card, +:root.t_dark .t_alt1_accent_DrawerFrame, +:root.t_dark .t_alt1_accent_Progress, +:root.t_dark .t_alt1_accent_TooltipArrow, +:root.t_dark .t_alt2_accent_Card, +:root.t_dark .t_alt2_accent_DrawerFrame, +:root.t_dark .t_alt2_accent_Progress, +:root.t_dark .t_alt2_accent_TooltipArrow, +:root.t_dark .t_dim_accent_Card, +:root.t_dark .t_dim_accent_DrawerFrame, +:root.t_dark .t_dim_accent_Progress, +:root.t_dark .t_dim_accent_TooltipArrow, +:root.t_dark .t_disabled_accent_Card, +:root.t_dark .t_disabled_accent_DrawerFrame, +:root.t_dark .t_disabled_accent_Progress, +:root.t_dark .t_disabled_accent_TooltipArrow, +:root.t_dark .t_error_accent_Card, +:root.t_dark .t_error_accent_DrawerFrame, +:root.t_dark .t_error_accent_Progress, +:root.t_dark .t_error_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_accent_Card, +:root.t_dark .t_light .t_dark .t_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_accent_Progress, +:root.t_dark .t_light .t_dark .t_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_active_accent_Card, +:root.t_dark .t_light .t_dark .t_active_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_active_accent_Progress, +:root.t_dark .t_light .t_dark .t_active_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_alt1_accent_Card, +:root.t_dark .t_light .t_dark .t_alt1_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_alt1_accent_Progress, +:root.t_dark .t_light .t_dark .t_alt1_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_alt2_accent_Card, +:root.t_dark .t_light .t_dark .t_alt2_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_alt2_accent_Progress, +:root.t_dark .t_light .t_dark .t_alt2_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_dim_accent_Card, +:root.t_dark .t_light .t_dark .t_dim_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_dim_accent_Progress, +:root.t_dark .t_light .t_dark .t_dim_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_disabled_accent_Card, +:root.t_dark .t_light .t_dark .t_disabled_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_disabled_accent_Progress, +:root.t_dark .t_light .t_dark .t_disabled_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_error_accent_Card, +:root.t_dark .t_light .t_dark .t_error_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_error_accent_Progress, +:root.t_dark .t_light .t_dark .t_error_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_red_accent_Card, +:root.t_dark .t_light .t_dark .t_red_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_red_accent_Progress, +:root.t_dark .t_light .t_dark .t_red_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_success_accent_Card, +:root.t_dark .t_light .t_dark .t_success_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_success_accent_Progress, +:root.t_dark .t_light .t_dark .t_success_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_warning_accent_Card, +:root.t_dark .t_light .t_dark .t_warning_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_warning_accent_Progress, +:root.t_dark .t_light .t_dark .t_warning_accent_TooltipArrow, +:root.t_dark .t_red_accent_Card, +:root.t_dark .t_red_accent_DrawerFrame, +:root.t_dark .t_red_accent_Progress, +:root.t_dark .t_red_accent_TooltipArrow, +:root.t_dark .t_success_accent_Card, +:root.t_dark .t_success_accent_DrawerFrame, +:root.t_dark .t_success_accent_Progress, +:root.t_dark .t_success_accent_TooltipArrow, +:root.t_dark .t_warning_accent_Card, +:root.t_dark .t_warning_accent_DrawerFrame, +:root.t_dark .t_warning_accent_Progress, +:root.t_dark .t_warning_accent_TooltipArrow, +:root.t_light .t_dark .t_accent_Card, +:root.t_light .t_dark .t_accent_DrawerFrame, +:root.t_light .t_dark .t_accent_Progress, +:root.t_light .t_dark .t_accent_TooltipArrow, +:root.t_light .t_dark .t_active_accent_Card, +:root.t_light .t_dark .t_active_accent_DrawerFrame, +:root.t_light .t_dark .t_active_accent_Progress, +:root.t_light .t_dark .t_active_accent_TooltipArrow, +:root.t_light .t_dark .t_alt1_accent_Card, +:root.t_light .t_dark .t_alt1_accent_DrawerFrame, +:root.t_light .t_dark .t_alt1_accent_Progress, +:root.t_light .t_dark .t_alt1_accent_TooltipArrow, +:root.t_light .t_dark .t_alt2_accent_Card, +:root.t_light .t_dark .t_alt2_accent_DrawerFrame, +:root.t_light .t_dark .t_alt2_accent_Progress, +:root.t_light .t_dark .t_alt2_accent_TooltipArrow, +:root.t_light .t_dark .t_dim_accent_Card, +:root.t_light .t_dark .t_dim_accent_DrawerFrame, +:root.t_light .t_dark .t_dim_accent_Progress, +:root.t_light .t_dark .t_dim_accent_TooltipArrow, +:root.t_light .t_dark .t_disabled_accent_Card, +:root.t_light .t_dark .t_disabled_accent_DrawerFrame, +:root.t_light .t_dark .t_disabled_accent_Progress, +:root.t_light .t_dark .t_disabled_accent_TooltipArrow, +:root.t_light .t_dark .t_error_accent_Card, +:root.t_light .t_dark .t_error_accent_DrawerFrame, +:root.t_light .t_dark .t_error_accent_Progress, +:root.t_light .t_dark .t_error_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_accent_Card, +:root.t_light .t_dark .t_light .t_dark .t_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_accent_Progress, +:root.t_light .t_dark .t_light .t_dark .t_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_Card, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_Progress, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Card, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Progress, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Card, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Progress, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_Card, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_Progress, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Card, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Progress, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_Card, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_Progress, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_Card, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_Progress, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_Card, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_Progress, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_Card, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_Progress, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_TooltipArrow, +:root.t_light .t_dark .t_red_accent_Card, +:root.t_light .t_dark .t_red_accent_DrawerFrame, +:root.t_light .t_dark .t_red_accent_Progress, +:root.t_light .t_dark .t_red_accent_TooltipArrow, +:root.t_light .t_dark .t_success_accent_Card, +:root.t_light .t_dark .t_success_accent_DrawerFrame, +:root.t_light .t_dark .t_success_accent_Progress, +:root.t_light .t_dark .t_success_accent_TooltipArrow, +:root.t_light .t_dark .t_warning_accent_Card, +:root.t_light .t_dark .t_warning_accent_DrawerFrame, +:root.t_light .t_dark .t_warning_accent_Progress, +:root.t_light .t_dark .t_warning_accent_TooltipArrow { + --background0: var(--color-229); + --background025: var(--color-230); + --background05: var(--color-231); + --background075: var(--color-232); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 32%, 10%, 1); + --color05: hsla(191, 33%, 10%, 0.75); + --color075: hsla(191, 33%, 10%, 0.5); + --background: var(--color-232); + --backgroundHover: var(--color-233); + --backgroundPress: var(--color-234); + --backgroundFocus: var(--color-235); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-239); + --borderColor: var(--color-235); + --borderColorHover: var(--color-236); + --borderColorFocus: var(--color-237); + --borderColorPress: var(--color-236); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_accent_Card, + .t_accent_DrawerFrame, + .t_accent_Progress, + .t_accent_TooltipArrow, + .t_active_accent_Card, + .t_active_accent_DrawerFrame, + .t_active_accent_Progress, + .t_active_accent_TooltipArrow, + .t_alt1_accent_Card, + .t_alt1_accent_DrawerFrame, + .t_alt1_accent_Progress, + .t_alt1_accent_TooltipArrow, + .t_alt2_accent_Card, + .t_alt2_accent_DrawerFrame, + .t_alt2_accent_Progress, + .t_alt2_accent_TooltipArrow, + .t_dim_accent_Card, + .t_dim_accent_DrawerFrame, + .t_dim_accent_Progress, + .t_dim_accent_TooltipArrow, + .t_disabled_accent_Card, + .t_disabled_accent_DrawerFrame, + .t_disabled_accent_Progress, + .t_disabled_accent_TooltipArrow, + .t_error_accent_Card, + .t_error_accent_DrawerFrame, + .t_error_accent_Progress, + .t_error_accent_TooltipArrow, + .t_light .t_dark .t_accent_Card, + .t_light .t_dark .t_accent_DrawerFrame, + .t_light .t_dark .t_accent_Progress, + .t_light .t_dark .t_accent_TooltipArrow, + .t_light .t_dark .t_active_accent_Card, + .t_light .t_dark .t_active_accent_DrawerFrame, + .t_light .t_dark .t_active_accent_Progress, + .t_light .t_dark .t_active_accent_TooltipArrow, + .t_light .t_dark .t_alt1_accent_Card, + .t_light .t_dark .t_alt1_accent_DrawerFrame, + .t_light .t_dark .t_alt1_accent_Progress, + .t_light .t_dark .t_alt1_accent_TooltipArrow, + .t_light .t_dark .t_alt2_accent_Card, + .t_light .t_dark .t_alt2_accent_DrawerFrame, + .t_light .t_dark .t_alt2_accent_Progress, + .t_light .t_dark .t_alt2_accent_TooltipArrow, + .t_light .t_dark .t_dim_accent_Card, + .t_light .t_dark .t_dim_accent_DrawerFrame, + .t_light .t_dark .t_dim_accent_Progress, + .t_light .t_dark .t_dim_accent_TooltipArrow, + .t_light .t_dark .t_disabled_accent_Card, + .t_light .t_dark .t_disabled_accent_DrawerFrame, + .t_light .t_dark .t_disabled_accent_Progress, + .t_light .t_dark .t_disabled_accent_TooltipArrow, + .t_light .t_dark .t_error_accent_Card, + .t_light .t_dark .t_error_accent_DrawerFrame, + .t_light .t_dark .t_error_accent_Progress, + .t_light .t_dark .t_error_accent_TooltipArrow, + .t_light .t_dark .t_red_accent_Card, + .t_light .t_dark .t_red_accent_DrawerFrame, + .t_light .t_dark .t_red_accent_Progress, + .t_light .t_dark .t_red_accent_TooltipArrow, + .t_light .t_dark .t_success_accent_Card, + .t_light .t_dark .t_success_accent_DrawerFrame, + .t_light .t_dark .t_success_accent_Progress, + .t_light .t_dark .t_success_accent_TooltipArrow, + .t_light .t_dark .t_warning_accent_Card, + .t_light .t_dark .t_warning_accent_DrawerFrame, + .t_light .t_dark .t_warning_accent_Progress, + .t_light .t_dark .t_warning_accent_TooltipArrow, + .t_red_accent_Card, + .t_red_accent_DrawerFrame, + .t_red_accent_Progress, + .t_red_accent_TooltipArrow, + .t_success_accent_Card, + .t_success_accent_DrawerFrame, + .t_success_accent_Progress, + .t_success_accent_TooltipArrow, + .t_warning_accent_Card, + .t_warning_accent_DrawerFrame, + .t_warning_accent_Progress, + .t_warning_accent_TooltipArrow { + --background0: var(--color-229); + --background025: var(--color-230); + --background05: var(--color-231); + --background075: var(--color-232); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 32%, 10%, 1); + --color05: hsla(191, 33%, 10%, 0.75); + --color075: hsla(191, 33%, 10%, 0.5); + --background: var(--color-232); + --backgroundHover: var(--color-233); + --backgroundPress: var(--color-234); + --backgroundFocus: var(--color-235); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-239); + --borderColor: var(--color-235); + --borderColorHover: var(--color-236); + --borderColorFocus: var(--color-237); + --borderColorPress: var(--color-236); + } +} + +:root.t_dark .t_accent_Checkbox, +:root.t_dark .t_accent_Input, +:root.t_dark .t_accent_RadioGroupItem, +:root.t_dark .t_accent_TextArea, +:root.t_dark .t_active_accent_Checkbox, +:root.t_dark .t_active_accent_Input, +:root.t_dark .t_active_accent_RadioGroupItem, +:root.t_dark .t_active_accent_TextArea, +:root.t_dark .t_alt1_accent_Checkbox, +:root.t_dark .t_alt1_accent_Input, +:root.t_dark .t_alt1_accent_RadioGroupItem, +:root.t_dark .t_alt1_accent_TextArea, +:root.t_dark .t_alt2_accent_Checkbox, +:root.t_dark .t_alt2_accent_Input, +:root.t_dark .t_alt2_accent_RadioGroupItem, +:root.t_dark .t_alt2_accent_TextArea, +:root.t_dark .t_dim_accent_Checkbox, +:root.t_dark .t_dim_accent_Input, +:root.t_dark .t_dim_accent_RadioGroupItem, +:root.t_dark .t_dim_accent_TextArea, +:root.t_dark .t_disabled_accent_Checkbox, +:root.t_dark .t_disabled_accent_Input, +:root.t_dark .t_disabled_accent_RadioGroupItem, +:root.t_dark .t_disabled_accent_TextArea, +:root.t_dark .t_error_accent_Checkbox, +:root.t_dark .t_error_accent_Input, +:root.t_dark .t_error_accent_RadioGroupItem, +:root.t_dark .t_error_accent_TextArea, +:root.t_dark .t_light .t_dark .t_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_accent_Input, +:root.t_dark .t_light .t_dark .t_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_accent_TextArea, +:root.t_dark .t_light .t_dark .t_active_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_active_accent_Input, +:root.t_dark .t_light .t_dark .t_active_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_active_accent_TextArea, +:root.t_dark .t_light .t_dark .t_alt1_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_alt1_accent_Input, +:root.t_dark .t_light .t_dark .t_alt1_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_alt1_accent_TextArea, +:root.t_dark .t_light .t_dark .t_alt2_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_alt2_accent_Input, +:root.t_dark .t_light .t_dark .t_alt2_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_alt2_accent_TextArea, +:root.t_dark .t_light .t_dark .t_dim_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_dim_accent_Input, +:root.t_dark .t_light .t_dark .t_dim_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_dim_accent_TextArea, +:root.t_dark .t_light .t_dark .t_disabled_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_disabled_accent_Input, +:root.t_dark .t_light .t_dark .t_disabled_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_disabled_accent_TextArea, +:root.t_dark .t_light .t_dark .t_error_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_error_accent_Input, +:root.t_dark .t_light .t_dark .t_error_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_error_accent_TextArea, +:root.t_dark .t_light .t_dark .t_red_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_red_accent_Input, +:root.t_dark .t_light .t_dark .t_red_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_red_accent_TextArea, +:root.t_dark .t_light .t_dark .t_success_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_success_accent_Input, +:root.t_dark .t_light .t_dark .t_success_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_success_accent_TextArea, +:root.t_dark .t_light .t_dark .t_warning_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_warning_accent_Input, +:root.t_dark .t_light .t_dark .t_warning_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_warning_accent_TextArea, +:root.t_dark .t_red_accent_Checkbox, +:root.t_dark .t_red_accent_Input, +:root.t_dark .t_red_accent_RadioGroupItem, +:root.t_dark .t_red_accent_TextArea, +:root.t_dark .t_success_accent_Checkbox, +:root.t_dark .t_success_accent_Input, +:root.t_dark .t_success_accent_RadioGroupItem, +:root.t_dark .t_success_accent_TextArea, +:root.t_dark .t_warning_accent_Checkbox, +:root.t_dark .t_warning_accent_Input, +:root.t_dark .t_warning_accent_RadioGroupItem, +:root.t_dark .t_warning_accent_TextArea, +:root.t_light .t_dark .t_accent_Checkbox, +:root.t_light .t_dark .t_accent_Input, +:root.t_light .t_dark .t_accent_RadioGroupItem, +:root.t_light .t_dark .t_accent_TextArea, +:root.t_light .t_dark .t_active_accent_Checkbox, +:root.t_light .t_dark .t_active_accent_Input, +:root.t_light .t_dark .t_active_accent_RadioGroupItem, +:root.t_light .t_dark .t_active_accent_TextArea, +:root.t_light .t_dark .t_alt1_accent_Checkbox, +:root.t_light .t_dark .t_alt1_accent_Input, +:root.t_light .t_dark .t_alt1_accent_RadioGroupItem, +:root.t_light .t_dark .t_alt1_accent_TextArea, +:root.t_light .t_dark .t_alt2_accent_Checkbox, +:root.t_light .t_dark .t_alt2_accent_Input, +:root.t_light .t_dark .t_alt2_accent_RadioGroupItem, +:root.t_light .t_dark .t_alt2_accent_TextArea, +:root.t_light .t_dark .t_dim_accent_Checkbox, +:root.t_light .t_dark .t_dim_accent_Input, +:root.t_light .t_dark .t_dim_accent_RadioGroupItem, +:root.t_light .t_dark .t_dim_accent_TextArea, +:root.t_light .t_dark .t_disabled_accent_Checkbox, +:root.t_light .t_dark .t_disabled_accent_Input, +:root.t_light .t_dark .t_disabled_accent_RadioGroupItem, +:root.t_light .t_dark .t_disabled_accent_TextArea, +:root.t_light .t_dark .t_error_accent_Checkbox, +:root.t_light .t_dark .t_error_accent_Input, +:root.t_light .t_dark .t_error_accent_RadioGroupItem, +:root.t_light .t_dark .t_error_accent_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_accent_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_accent_Input, +:root.t_light .t_dark .t_light .t_dark .t_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_accent_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_Input, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Input, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Input, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_Input, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Input, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_Input, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_Input, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_Input, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_Input, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_TextArea, +:root.t_light .t_dark .t_red_accent_Checkbox, +:root.t_light .t_dark .t_red_accent_Input, +:root.t_light .t_dark .t_red_accent_RadioGroupItem, +:root.t_light .t_dark .t_red_accent_TextArea, +:root.t_light .t_dark .t_success_accent_Checkbox, +:root.t_light .t_dark .t_success_accent_Input, +:root.t_light .t_dark .t_success_accent_RadioGroupItem, +:root.t_light .t_dark .t_success_accent_TextArea, +:root.t_light .t_dark .t_warning_accent_Checkbox, +:root.t_light .t_dark .t_warning_accent_Input, +:root.t_light .t_dark .t_warning_accent_RadioGroupItem, +:root.t_light .t_dark .t_warning_accent_TextArea { + --accentBackground: hsla(125, 96%, 40%, 0); + --accentColor: hsla(125, 96%, 40%, 0); + --background0: hsla(125, 96%, 40%, 0.25); + --background025: var(--color-229); + --background05: var(--color-230); + --background075: var(--color-231); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 33%, 10%, 0.75); + --color05: hsla(191, 33%, 10%, 0.5); + --color075: hsla(191, 33%, 10%, 0.25); + --background: var(--color-231); + --backgroundHover: var(--color-232); + --backgroundPress: var(--color-233); + --backgroundFocus: var(--color-234); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-240); + --borderColor: var(--color-236); + --borderColorHover: var(--color-237); + --borderColorFocus: var(--color-238); + --borderColorPress: var(--color-237); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_accent_Checkbox, + .t_accent_Input, + .t_accent_RadioGroupItem, + .t_accent_TextArea, + .t_active_accent_Checkbox, + .t_active_accent_Input, + .t_active_accent_RadioGroupItem, + .t_active_accent_TextArea, + .t_alt1_accent_Checkbox, + .t_alt1_accent_Input, + .t_alt1_accent_RadioGroupItem, + .t_alt1_accent_TextArea, + .t_alt2_accent_Checkbox, + .t_alt2_accent_Input, + .t_alt2_accent_RadioGroupItem, + .t_alt2_accent_TextArea, + .t_dim_accent_Checkbox, + .t_dim_accent_Input, + .t_dim_accent_RadioGroupItem, + .t_dim_accent_TextArea, + .t_disabled_accent_Checkbox, + .t_disabled_accent_Input, + .t_disabled_accent_RadioGroupItem, + .t_disabled_accent_TextArea, + .t_error_accent_Checkbox, + .t_error_accent_Input, + .t_error_accent_RadioGroupItem, + .t_error_accent_TextArea, + .t_light .t_dark .t_accent_Checkbox, + .t_light .t_dark .t_accent_Input, + .t_light .t_dark .t_accent_RadioGroupItem, + .t_light .t_dark .t_accent_TextArea, + .t_light .t_dark .t_active_accent_Checkbox, + .t_light .t_dark .t_active_accent_Input, + .t_light .t_dark .t_active_accent_RadioGroupItem, + .t_light .t_dark .t_active_accent_TextArea, + .t_light .t_dark .t_alt1_accent_Checkbox, + .t_light .t_dark .t_alt1_accent_Input, + .t_light .t_dark .t_alt1_accent_RadioGroupItem, + .t_light .t_dark .t_alt1_accent_TextArea, + .t_light .t_dark .t_alt2_accent_Checkbox, + .t_light .t_dark .t_alt2_accent_Input, + .t_light .t_dark .t_alt2_accent_RadioGroupItem, + .t_light .t_dark .t_alt2_accent_TextArea, + .t_light .t_dark .t_dim_accent_Checkbox, + .t_light .t_dark .t_dim_accent_Input, + .t_light .t_dark .t_dim_accent_RadioGroupItem, + .t_light .t_dark .t_dim_accent_TextArea, + .t_light .t_dark .t_disabled_accent_Checkbox, + .t_light .t_dark .t_disabled_accent_Input, + .t_light .t_dark .t_disabled_accent_RadioGroupItem, + .t_light .t_dark .t_disabled_accent_TextArea, + .t_light .t_dark .t_error_accent_Checkbox, + .t_light .t_dark .t_error_accent_Input, + .t_light .t_dark .t_error_accent_RadioGroupItem, + .t_light .t_dark .t_error_accent_TextArea, + .t_light .t_dark .t_red_accent_Checkbox, + .t_light .t_dark .t_red_accent_Input, + .t_light .t_dark .t_red_accent_RadioGroupItem, + .t_light .t_dark .t_red_accent_TextArea, + .t_light .t_dark .t_success_accent_Checkbox, + .t_light .t_dark .t_success_accent_Input, + .t_light .t_dark .t_success_accent_RadioGroupItem, + .t_light .t_dark .t_success_accent_TextArea, + .t_light .t_dark .t_warning_accent_Checkbox, + .t_light .t_dark .t_warning_accent_Input, + .t_light .t_dark .t_warning_accent_RadioGroupItem, + .t_light .t_dark .t_warning_accent_TextArea, + .t_red_accent_Checkbox, + .t_red_accent_Input, + .t_red_accent_RadioGroupItem, + .t_red_accent_TextArea, + .t_success_accent_Checkbox, + .t_success_accent_Input, + .t_success_accent_RadioGroupItem, + .t_success_accent_TextArea, + .t_warning_accent_Checkbox, + .t_warning_accent_Input, + .t_warning_accent_RadioGroupItem, + .t_warning_accent_TextArea { + --accentBackground: hsla(125, 96%, 40%, 0); + --accentColor: hsla(125, 96%, 40%, 0); + --background0: hsla(125, 96%, 40%, 0.25); + --background025: var(--color-229); + --background05: var(--color-230); + --background075: var(--color-231); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 33%, 10%, 0.75); + --color05: hsla(191, 33%, 10%, 0.5); + --color075: hsla(191, 33%, 10%, 0.25); + --background: var(--color-231); + --backgroundHover: var(--color-232); + --backgroundPress: var(--color-233); + --backgroundFocus: var(--color-234); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-240); + --borderColor: var(--color-236); + --borderColorHover: var(--color-237); + --borderColorFocus: var(--color-238); + --borderColorPress: var(--color-237); + } +} + +:root.t_dark .t_accent_ProgressIndicator, +:root.t_dark .t_accent_SliderThumb, +:root.t_dark .t_accent_SwitchThumb, +:root.t_dark .t_accent_Tooltip, +:root.t_dark .t_active_accent_ProgressIndicator, +:root.t_dark .t_active_accent_SliderThumb, +:root.t_dark .t_active_accent_SwitchThumb, +:root.t_dark .t_active_accent_Tooltip, +:root.t_dark .t_alt1_accent_ProgressIndicator, +:root.t_dark .t_alt1_accent_SliderThumb, +:root.t_dark .t_alt1_accent_SwitchThumb, +:root.t_dark .t_alt1_accent_Tooltip, +:root.t_dark .t_alt2_accent_ProgressIndicator, +:root.t_dark .t_alt2_accent_SliderThumb, +:root.t_dark .t_alt2_accent_SwitchThumb, +:root.t_dark .t_alt2_accent_Tooltip, +:root.t_dark .t_dim_accent_ProgressIndicator, +:root.t_dark .t_dim_accent_SliderThumb, +:root.t_dark .t_dim_accent_SwitchThumb, +:root.t_dark .t_dim_accent_Tooltip, +:root.t_dark .t_disabled_accent_ProgressIndicator, +:root.t_dark .t_disabled_accent_SliderThumb, +:root.t_dark .t_disabled_accent_SwitchThumb, +:root.t_dark .t_disabled_accent_Tooltip, +:root.t_dark .t_error_accent_ProgressIndicator, +:root.t_dark .t_error_accent_SliderThumb, +:root.t_dark .t_error_accent_SwitchThumb, +:root.t_dark .t_error_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_active_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_active_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_active_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_active_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_alt1_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_alt1_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_alt1_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_alt1_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_alt2_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_alt2_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_alt2_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_alt2_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_dim_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_dim_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_dim_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_dim_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_disabled_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_disabled_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_disabled_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_disabled_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_error_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_error_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_error_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_error_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_red_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_red_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_red_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_red_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_success_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_success_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_success_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_success_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_warning_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_warning_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_warning_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_warning_accent_Tooltip, +:root.t_dark .t_red_accent_ProgressIndicator, +:root.t_dark .t_red_accent_SliderThumb, +:root.t_dark .t_red_accent_SwitchThumb, +:root.t_dark .t_red_accent_Tooltip, +:root.t_dark .t_success_accent_ProgressIndicator, +:root.t_dark .t_success_accent_SliderThumb, +:root.t_dark .t_success_accent_SwitchThumb, +:root.t_dark .t_success_accent_Tooltip, +:root.t_dark .t_warning_accent_ProgressIndicator, +:root.t_dark .t_warning_accent_SliderThumb, +:root.t_dark .t_warning_accent_SwitchThumb, +:root.t_dark .t_warning_accent_Tooltip, +:root.t_light .t_dark .t_accent_ProgressIndicator, +:root.t_light .t_dark .t_accent_SliderThumb, +:root.t_light .t_dark .t_accent_SwitchThumb, +:root.t_light .t_dark .t_accent_Tooltip, +:root.t_light .t_dark .t_active_accent_ProgressIndicator, +:root.t_light .t_dark .t_active_accent_SliderThumb, +:root.t_light .t_dark .t_active_accent_SwitchThumb, +:root.t_light .t_dark .t_active_accent_Tooltip, +:root.t_light .t_dark .t_alt1_accent_ProgressIndicator, +:root.t_light .t_dark .t_alt1_accent_SliderThumb, +:root.t_light .t_dark .t_alt1_accent_SwitchThumb, +:root.t_light .t_dark .t_alt1_accent_Tooltip, +:root.t_light .t_dark .t_alt2_accent_ProgressIndicator, +:root.t_light .t_dark .t_alt2_accent_SliderThumb, +:root.t_light .t_dark .t_alt2_accent_SwitchThumb, +:root.t_light .t_dark .t_alt2_accent_Tooltip, +:root.t_light .t_dark .t_dim_accent_ProgressIndicator, +:root.t_light .t_dark .t_dim_accent_SliderThumb, +:root.t_light .t_dark .t_dim_accent_SwitchThumb, +:root.t_light .t_dark .t_dim_accent_Tooltip, +:root.t_light .t_dark .t_disabled_accent_ProgressIndicator, +:root.t_light .t_dark .t_disabled_accent_SliderThumb, +:root.t_light .t_dark .t_disabled_accent_SwitchThumb, +:root.t_light .t_dark .t_disabled_accent_Tooltip, +:root.t_light .t_dark .t_error_accent_ProgressIndicator, +:root.t_light .t_dark .t_error_accent_SliderThumb, +:root.t_light .t_dark .t_error_accent_SwitchThumb, +:root.t_light .t_dark .t_error_accent_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_accent_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_Tooltip, +:root.t_light .t_dark .t_red_accent_ProgressIndicator, +:root.t_light .t_dark .t_red_accent_SliderThumb, +:root.t_light .t_dark .t_red_accent_SwitchThumb, +:root.t_light .t_dark .t_red_accent_Tooltip, +:root.t_light .t_dark .t_success_accent_ProgressIndicator, +:root.t_light .t_dark .t_success_accent_SliderThumb, +:root.t_light .t_dark .t_success_accent_SwitchThumb, +:root.t_light .t_dark .t_success_accent_Tooltip, +:root.t_light .t_dark .t_warning_accent_ProgressIndicator, +:root.t_light .t_dark .t_warning_accent_SliderThumb, +:root.t_light .t_dark .t_warning_accent_SwitchThumb, +:root.t_light .t_dark .t_warning_accent_Tooltip { + --accentBackground: hsla(125, 96%, 40%, 0); + --accentColor: hsla(125, 96%, 40%, 0); + --background0: hsla(191, 33%, 10%, 0.25); + --background025: hsla(191, 33%, 10%, 0.5); + --background05: hsla(191, 33%, 10%, 0.75); + --background075: hsla(191, 32%, 10%, 1); + --color0: var(--color-231); + --color025: var(--color-230); + --color05: var(--color-229); + --color075: hsla(125, 96%, 40%, 0.25); + --background: hsla(191, 32%, 10%, 1); + --backgroundHover: hsla(191, 32%, 10%, 1); + --backgroundPress: var(--color-240); + --backgroundFocus: var(--color-239); + --color: var(--color-232); + --colorHover: var(--color-233); + --colorPress: var(--color-232); + --colorFocus: var(--color-233); + --placeholderColor: var(--color-233); + --borderColor: var(--color-239); + --borderColorHover: var(--color-238); + --borderColorFocus: var(--color-237); + --borderColorPress: var(--color-238); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_accent_ProgressIndicator, + .t_accent_SliderThumb, + .t_accent_SwitchThumb, + .t_accent_Tooltip, + .t_active_accent_ProgressIndicator, + .t_active_accent_SliderThumb, + .t_active_accent_SwitchThumb, + .t_active_accent_Tooltip, + .t_alt1_accent_ProgressIndicator, + .t_alt1_accent_SliderThumb, + .t_alt1_accent_SwitchThumb, + .t_alt1_accent_Tooltip, + .t_alt2_accent_ProgressIndicator, + .t_alt2_accent_SliderThumb, + .t_alt2_accent_SwitchThumb, + .t_alt2_accent_Tooltip, + .t_dim_accent_ProgressIndicator, + .t_dim_accent_SliderThumb, + .t_dim_accent_SwitchThumb, + .t_dim_accent_Tooltip, + .t_disabled_accent_ProgressIndicator, + .t_disabled_accent_SliderThumb, + .t_disabled_accent_SwitchThumb, + .t_disabled_accent_Tooltip, + .t_error_accent_ProgressIndicator, + .t_error_accent_SliderThumb, + .t_error_accent_SwitchThumb, + .t_error_accent_Tooltip, + .t_light .t_dark .t_accent_ProgressIndicator, + .t_light .t_dark .t_accent_SliderThumb, + .t_light .t_dark .t_accent_SwitchThumb, + .t_light .t_dark .t_accent_Tooltip, + .t_light .t_dark .t_active_accent_ProgressIndicator, + .t_light .t_dark .t_active_accent_SliderThumb, + .t_light .t_dark .t_active_accent_SwitchThumb, + .t_light .t_dark .t_active_accent_Tooltip, + .t_light .t_dark .t_alt1_accent_ProgressIndicator, + .t_light .t_dark .t_alt1_accent_SliderThumb, + .t_light .t_dark .t_alt1_accent_SwitchThumb, + .t_light .t_dark .t_alt1_accent_Tooltip, + .t_light .t_dark .t_alt2_accent_ProgressIndicator, + .t_light .t_dark .t_alt2_accent_SliderThumb, + .t_light .t_dark .t_alt2_accent_SwitchThumb, + .t_light .t_dark .t_alt2_accent_Tooltip, + .t_light .t_dark .t_dim_accent_ProgressIndicator, + .t_light .t_dark .t_dim_accent_SliderThumb, + .t_light .t_dark .t_dim_accent_SwitchThumb, + .t_light .t_dark .t_dim_accent_Tooltip, + .t_light .t_dark .t_disabled_accent_ProgressIndicator, + .t_light .t_dark .t_disabled_accent_SliderThumb, + .t_light .t_dark .t_disabled_accent_SwitchThumb, + .t_light .t_dark .t_disabled_accent_Tooltip, + .t_light .t_dark .t_error_accent_ProgressIndicator, + .t_light .t_dark .t_error_accent_SliderThumb, + .t_light .t_dark .t_error_accent_SwitchThumb, + .t_light .t_dark .t_error_accent_Tooltip, + .t_light .t_dark .t_red_accent_ProgressIndicator, + .t_light .t_dark .t_red_accent_SliderThumb, + .t_light .t_dark .t_red_accent_SwitchThumb, + .t_light .t_dark .t_red_accent_Tooltip, + .t_light .t_dark .t_success_accent_ProgressIndicator, + .t_light .t_dark .t_success_accent_SliderThumb, + .t_light .t_dark .t_success_accent_SwitchThumb, + .t_light .t_dark .t_success_accent_Tooltip, + .t_light .t_dark .t_warning_accent_ProgressIndicator, + .t_light .t_dark .t_warning_accent_SliderThumb, + .t_light .t_dark .t_warning_accent_SwitchThumb, + .t_light .t_dark .t_warning_accent_Tooltip, + .t_red_accent_ProgressIndicator, + .t_red_accent_SliderThumb, + .t_red_accent_SwitchThumb, + .t_red_accent_Tooltip, + .t_success_accent_ProgressIndicator, + .t_success_accent_SliderThumb, + .t_success_accent_SwitchThumb, + .t_success_accent_Tooltip, + .t_warning_accent_ProgressIndicator, + .t_warning_accent_SliderThumb, + .t_warning_accent_SwitchThumb, + .t_warning_accent_Tooltip { + --accentBackground: hsla(125, 96%, 40%, 0); + --accentColor: hsla(125, 96%, 40%, 0); + --background0: hsla(191, 33%, 10%, 0.25); + --background025: hsla(191, 33%, 10%, 0.5); + --background05: hsla(191, 33%, 10%, 0.75); + --background075: hsla(191, 32%, 10%, 1); + --color0: var(--color-231); + --color025: var(--color-230); + --color05: var(--color-229); + --color075: hsla(125, 96%, 40%, 0.25); + --background: hsla(191, 32%, 10%, 1); + --backgroundHover: hsla(191, 32%, 10%, 1); + --backgroundPress: var(--color-240); + --backgroundFocus: var(--color-239); + --color: var(--color-232); + --colorHover: var(--color-233); + --colorPress: var(--color-232); + --colorFocus: var(--color-233); + --placeholderColor: var(--color-233); + --borderColor: var(--color-239); + --borderColorHover: var(--color-238); + --borderColorFocus: var(--color-237); + --borderColorPress: var(--color-238); + } +} + +:root.t_dark .t_accent_SliderTrack, +:root.t_dark .t_accent_TooltipContent, +:root.t_dark .t_active_accent_Button, +:root.t_dark .t_active_accent_SliderTrack, +:root.t_dark .t_active_accent_Switch, +:root.t_dark .t_active_accent_TooltipContent, +:root.t_dark .t_alt1_accent_Button, +:root.t_dark .t_alt1_accent_SliderTrack, +:root.t_dark .t_alt1_accent_Switch, +:root.t_dark .t_alt1_accent_TooltipContent, +:root.t_dark .t_alt2_accent_Button, +:root.t_dark .t_alt2_accent_SliderTrack, +:root.t_dark .t_alt2_accent_Switch, +:root.t_dark .t_alt2_accent_TooltipContent, +:root.t_dark .t_dim_accent_Button, +:root.t_dark .t_dim_accent_SliderTrack, +:root.t_dark .t_dim_accent_Switch, +:root.t_dark .t_dim_accent_TooltipContent, +:root.t_dark .t_disabled_accent_Button, +:root.t_dark .t_disabled_accent_SliderTrack, +:root.t_dark .t_disabled_accent_Switch, +:root.t_dark .t_disabled_accent_TooltipContent, +:root.t_dark .t_error_accent_Button, +:root.t_dark .t_error_accent_SliderTrack, +:root.t_dark .t_error_accent_Switch, +:root.t_dark .t_error_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_active_accent_Button, +:root.t_dark .t_light .t_dark .t_active_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_active_accent_Switch, +:root.t_dark .t_light .t_dark .t_active_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_alt1_accent_Button, +:root.t_dark .t_light .t_dark .t_alt1_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_alt1_accent_Switch, +:root.t_dark .t_light .t_dark .t_alt1_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_alt2_accent_Button, +:root.t_dark .t_light .t_dark .t_alt2_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_alt2_accent_Switch, +:root.t_dark .t_light .t_dark .t_alt2_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_dim_accent_Button, +:root.t_dark .t_light .t_dark .t_dim_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_dim_accent_Switch, +:root.t_dark .t_light .t_dark .t_dim_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_disabled_accent_Button, +:root.t_dark .t_light .t_dark .t_disabled_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_disabled_accent_Switch, +:root.t_dark .t_light .t_dark .t_disabled_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_error_accent_Button, +:root.t_dark .t_light .t_dark .t_error_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_error_accent_Switch, +:root.t_dark .t_light .t_dark .t_error_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_red_accent_Button, +:root.t_dark .t_light .t_dark .t_red_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_red_accent_Switch, +:root.t_dark .t_light .t_dark .t_red_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_success_accent_Button, +:root.t_dark .t_light .t_dark .t_success_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_success_accent_Switch, +:root.t_dark .t_light .t_dark .t_success_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_warning_accent_Button, +:root.t_dark .t_light .t_dark .t_warning_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_warning_accent_Switch, +:root.t_dark .t_light .t_dark .t_warning_accent_TooltipContent, +:root.t_dark .t_red_accent_Button, +:root.t_dark .t_red_accent_SliderTrack, +:root.t_dark .t_red_accent_Switch, +:root.t_dark .t_red_accent_TooltipContent, +:root.t_dark .t_success_accent_Button, +:root.t_dark .t_success_accent_SliderTrack, +:root.t_dark .t_success_accent_Switch, +:root.t_dark .t_success_accent_TooltipContent, +:root.t_dark .t_warning_accent_Button, +:root.t_dark .t_warning_accent_SliderTrack, +:root.t_dark .t_warning_accent_Switch, +:root.t_dark .t_warning_accent_TooltipContent, +:root.t_light .t_dark .t_accent_SliderTrack, +:root.t_light .t_dark .t_accent_TooltipContent, +:root.t_light .t_dark .t_active_accent_Button, +:root.t_light .t_dark .t_active_accent_SliderTrack, +:root.t_light .t_dark .t_active_accent_Switch, +:root.t_light .t_dark .t_active_accent_TooltipContent, +:root.t_light .t_dark .t_alt1_accent_Button, +:root.t_light .t_dark .t_alt1_accent_SliderTrack, +:root.t_light .t_dark .t_alt1_accent_Switch, +:root.t_light .t_dark .t_alt1_accent_TooltipContent, +:root.t_light .t_dark .t_alt2_accent_Button, +:root.t_light .t_dark .t_alt2_accent_SliderTrack, +:root.t_light .t_dark .t_alt2_accent_Switch, +:root.t_light .t_dark .t_alt2_accent_TooltipContent, +:root.t_light .t_dark .t_dim_accent_Button, +:root.t_light .t_dark .t_dim_accent_SliderTrack, +:root.t_light .t_dark .t_dim_accent_Switch, +:root.t_light .t_dark .t_dim_accent_TooltipContent, +:root.t_light .t_dark .t_disabled_accent_Button, +:root.t_light .t_dark .t_disabled_accent_SliderTrack, +:root.t_light .t_dark .t_disabled_accent_Switch, +:root.t_light .t_dark .t_disabled_accent_TooltipContent, +:root.t_light .t_dark .t_error_accent_Button, +:root.t_light .t_dark .t_error_accent_SliderTrack, +:root.t_light .t_dark .t_error_accent_Switch, +:root.t_light .t_dark .t_error_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_Button, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_Switch, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Button, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Switch, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Button, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Switch, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_Button, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_Switch, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Button, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Switch, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_Button, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_Switch, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_Button, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_Switch, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_Button, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_Switch, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_Button, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_Switch, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_TooltipContent, +:root.t_light .t_dark .t_red_accent_Button, +:root.t_light .t_dark .t_red_accent_SliderTrack, +:root.t_light .t_dark .t_red_accent_Switch, +:root.t_light .t_dark .t_red_accent_TooltipContent, +:root.t_light .t_dark .t_success_accent_Button, +:root.t_light .t_dark .t_success_accent_SliderTrack, +:root.t_light .t_dark .t_success_accent_Switch, +:root.t_light .t_dark .t_success_accent_TooltipContent, +:root.t_light .t_dark .t_warning_accent_Button, +:root.t_light .t_dark .t_warning_accent_SliderTrack, +:root.t_light .t_dark .t_warning_accent_Switch, +:root.t_light .t_dark .t_warning_accent_TooltipContent { + --background0: var(--color-230); + --background025: var(--color-231); + --background05: var(--color-232); + --background075: var(--color-233); + --color0: var(--color-240); + --color025: hsla(191, 32%, 10%, 1); + --color05: hsla(191, 32%, 10%, 1); + --color075: hsla(191, 33%, 10%, 0.75); + --background: var(--color-233); + --backgroundHover: var(--color-234); + --backgroundPress: var(--color-235); + --backgroundFocus: var(--color-236); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-238); + --borderColor: var(--color-236); + --borderColorHover: var(--color-237); + --borderColorFocus: var(--color-238); + --borderColorPress: var(--color-237); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_accent_SliderTrack, + .t_accent_TooltipContent, + .t_active_accent_Button, + .t_active_accent_SliderTrack, + .t_active_accent_Switch, + .t_active_accent_TooltipContent, + .t_alt1_accent_Button, + .t_alt1_accent_SliderTrack, + .t_alt1_accent_Switch, + .t_alt1_accent_TooltipContent, + .t_alt2_accent_Button, + .t_alt2_accent_SliderTrack, + .t_alt2_accent_Switch, + .t_alt2_accent_TooltipContent, + .t_dim_accent_Button, + .t_dim_accent_SliderTrack, + .t_dim_accent_Switch, + .t_dim_accent_TooltipContent, + .t_disabled_accent_Button, + .t_disabled_accent_SliderTrack, + .t_disabled_accent_Switch, + .t_disabled_accent_TooltipContent, + .t_error_accent_Button, + .t_error_accent_SliderTrack, + .t_error_accent_Switch, + .t_error_accent_TooltipContent, + .t_light .t_dark .t_accent_SliderTrack, + .t_light .t_dark .t_accent_TooltipContent, + .t_light .t_dark .t_active_accent_Button, + .t_light .t_dark .t_active_accent_SliderTrack, + .t_light .t_dark .t_active_accent_Switch, + .t_light .t_dark .t_active_accent_TooltipContent, + .t_light .t_dark .t_alt1_accent_Button, + .t_light .t_dark .t_alt1_accent_SliderTrack, + .t_light .t_dark .t_alt1_accent_Switch, + .t_light .t_dark .t_alt1_accent_TooltipContent, + .t_light .t_dark .t_alt2_accent_Button, + .t_light .t_dark .t_alt2_accent_SliderTrack, + .t_light .t_dark .t_alt2_accent_Switch, + .t_light .t_dark .t_alt2_accent_TooltipContent, + .t_light .t_dark .t_dim_accent_Button, + .t_light .t_dark .t_dim_accent_SliderTrack, + .t_light .t_dark .t_dim_accent_Switch, + .t_light .t_dark .t_dim_accent_TooltipContent, + .t_light .t_dark .t_disabled_accent_Button, + .t_light .t_dark .t_disabled_accent_SliderTrack, + .t_light .t_dark .t_disabled_accent_Switch, + .t_light .t_dark .t_disabled_accent_TooltipContent, + .t_light .t_dark .t_error_accent_Button, + .t_light .t_dark .t_error_accent_SliderTrack, + .t_light .t_dark .t_error_accent_Switch, + .t_light .t_dark .t_error_accent_TooltipContent, + .t_light .t_dark .t_red_accent_Button, + .t_light .t_dark .t_red_accent_SliderTrack, + .t_light .t_dark .t_red_accent_Switch, + .t_light .t_dark .t_red_accent_TooltipContent, + .t_light .t_dark .t_success_accent_Button, + .t_light .t_dark .t_success_accent_SliderTrack, + .t_light .t_dark .t_success_accent_Switch, + .t_light .t_dark .t_success_accent_TooltipContent, + .t_light .t_dark .t_warning_accent_Button, + .t_light .t_dark .t_warning_accent_SliderTrack, + .t_light .t_dark .t_warning_accent_Switch, + .t_light .t_dark .t_warning_accent_TooltipContent, + .t_red_accent_Button, + .t_red_accent_SliderTrack, + .t_red_accent_Switch, + .t_red_accent_TooltipContent, + .t_success_accent_Button, + .t_success_accent_SliderTrack, + .t_success_accent_Switch, + .t_success_accent_TooltipContent, + .t_warning_accent_Button, + .t_warning_accent_SliderTrack, + .t_warning_accent_Switch, + .t_warning_accent_TooltipContent { + --background0: var(--color-230); + --background025: var(--color-231); + --background05: var(--color-232); + --background075: var(--color-233); + --color0: var(--color-240); + --color025: hsla(191, 32%, 10%, 1); + --color05: hsla(191, 32%, 10%, 1); + --color075: hsla(191, 33%, 10%, 0.75); + --background: var(--color-233); + --backgroundHover: var(--color-234); + --backgroundPress: var(--color-235); + --backgroundFocus: var(--color-236); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-238); + --borderColor: var(--color-236); + --borderColorHover: var(--color-237); + --borderColorFocus: var(--color-238); + --borderColorPress: var(--color-237); + } +} + +:root.t_dark .t_accent_SliderTrackActive, +:root.t_dark .t_active_accent_SliderTrackActive, +:root.t_dark .t_alt1_accent_SliderTrackActive, +:root.t_dark .t_alt2_accent_SliderTrackActive, +:root.t_dark .t_dim_accent_SliderTrackActive, +:root.t_dark .t_disabled_accent_SliderTrackActive, +:root.t_dark .t_error_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_active_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_alt1_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_alt2_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_dim_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_disabled_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_error_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_red_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_success_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_warning_accent_SliderTrackActive, +:root.t_dark .t_red_accent_SliderTrackActive, +:root.t_dark .t_success_accent_SliderTrackActive, +:root.t_dark .t_warning_accent_SliderTrackActive, +:root.t_light .t_dark .t_accent_SliderTrackActive, +:root.t_light .t_dark .t_active_accent_SliderTrackActive, +:root.t_light .t_dark .t_alt1_accent_SliderTrackActive, +:root.t_light .t_dark .t_alt2_accent_SliderTrackActive, +:root.t_light .t_dark .t_dim_accent_SliderTrackActive, +:root.t_light .t_dark .t_disabled_accent_SliderTrackActive, +:root.t_light .t_dark .t_error_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_active_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_dim_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_error_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_red_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_success_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_warning_accent_SliderTrackActive, +:root.t_light .t_dark .t_red_accent_SliderTrackActive, +:root.t_light .t_dark .t_success_accent_SliderTrackActive, +:root.t_light .t_dark .t_warning_accent_SliderTrackActive { + --accentBackground: hsla(125, 96%, 40%, 0); + --accentColor: hsla(125, 96%, 40%, 0); + --background0: hsla(191, 33%, 10%, 0.75); + --background025: hsla(191, 32%, 10%, 1); + --background05: hsla(191, 32%, 10%, 1); + --background075: var(--color-240); + --color0: var(--color-233); + --color025: var(--color-232); + --color05: var(--color-231); + --color075: var(--color-230); + --background: var(--color-240); + --backgroundHover: var(--color-239); + --backgroundPress: var(--color-238); + --backgroundFocus: var(--color-237); + --color: var(--color-232); + --colorHover: var(--color-233); + --colorPress: var(--color-232); + --colorFocus: var(--color-233); + --placeholderColor: var(--color-235); + --borderColor: var(--color-237); + --borderColorHover: var(--color-236); + --borderColorFocus: var(--color-235); + --borderColorPress: var(--color-236); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_accent_SliderTrackActive, + .t_active_accent_SliderTrackActive, + .t_alt1_accent_SliderTrackActive, + .t_alt2_accent_SliderTrackActive, + .t_dim_accent_SliderTrackActive, + .t_disabled_accent_SliderTrackActive, + .t_error_accent_SliderTrackActive, + .t_light .t_dark .t_accent_SliderTrackActive, + .t_light .t_dark .t_active_accent_SliderTrackActive, + .t_light .t_dark .t_alt1_accent_SliderTrackActive, + .t_light .t_dark .t_alt2_accent_SliderTrackActive, + .t_light .t_dark .t_dim_accent_SliderTrackActive, + .t_light .t_dark .t_disabled_accent_SliderTrackActive, + .t_light .t_dark .t_error_accent_SliderTrackActive, + .t_light .t_dark .t_red_accent_SliderTrackActive, + .t_light .t_dark .t_success_accent_SliderTrackActive, + .t_light .t_dark .t_warning_accent_SliderTrackActive, + .t_red_accent_SliderTrackActive, + .t_success_accent_SliderTrackActive, + .t_warning_accent_SliderTrackActive { + --accentBackground: hsla(125, 96%, 40%, 0); + --accentColor: hsla(125, 96%, 40%, 0); + --background0: hsla(191, 33%, 10%, 0.75); + --background025: hsla(191, 32%, 10%, 1); + --background05: hsla(191, 32%, 10%, 1); + --background075: var(--color-240); + --color0: var(--color-233); + --color025: var(--color-232); + --color05: var(--color-231); + --color075: var(--color-230); + --background: var(--color-240); + --backgroundHover: var(--color-239); + --backgroundPress: var(--color-238); + --backgroundFocus: var(--color-237); + --color: var(--color-232); + --colorHover: var(--color-233); + --colorPress: var(--color-232); + --colorFocus: var(--color-233); + --placeholderColor: var(--color-235); + --borderColor: var(--color-237); + --borderColorHover: var(--color-236); + --borderColorFocus: var(--color-235); + --borderColorPress: var(--color-236); + } +} + +:root.t_dark .t_active, +:root.t_dark .t_light .t_dark .t_active, +:root.t_light .t_dark .t_active, +:root.t_light .t_dark .t_light .t_dark .t_active { + --background0: hsla(191, 33%, 10%, 0); + --background025: hsla(191, 33%, 10%, 0.25); + --background05: hsla(191, 33%, 10%, 0.5); + --background075: hsla(191, 33%, 10%, 0.75); + --color0: hsla(0, 0%, 100%, 0.75); + --color025: hsla(0, 0%, 100%, 0.5); + --color05: hsla(0, 0%, 100%, 0.25); + --color075: hsla(0, 0%, 100%, 0); + --background: hsla(191, 33%, 10%, 0.75); + --backgroundHover: hsla(191, 32%, 10%, 1); + --backgroundPress: hsla(191, 32%, 15%, 1); + --backgroundFocus: hsla(191, 32%, 19%, 1); + --colorHover: hsla(112, 22%, 59%, 1); + --colorPress: hsla(112, 22%, 100%, 1); + --colorFocus: hsla(112, 22%, 59%, 1); + --placeholderColor: hsla(112, 22%, 59%, 1); + --borderColor: hsla(191, 32%, 19%, 1); + --borderColorHover: hsla(191, 32%, 24%, 1); + --borderColorFocus: hsla(191, 32%, 28%, 1); + --borderColorPress: hsla(191, 32%, 24%, 1); + --color1: hsla(191, 33%, 10%, 0.75); + --color2: hsla(191, 32%, 10%, 1); + --color3: hsla(191, 32%, 15%, 1); + --color4: hsla(191, 32%, 19%, 1); + --color5: hsla(191, 32%, 24%, 1); + --color6: hsla(191, 32%, 28%, 1); + --color7: hsla(191, 32%, 32%, 1); + --color8: hsla(191, 32%, 37%, 1); + --color9: hsla(191, 32%, 41%, 1); + --color10: hsla(191, 32%, 46%, 1); + --color11: hsla(191, 32%, 50%, 1); + --color12: hsla(112, 22%, 59%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + } + + .t_active, + .t_light .t_dark .t_active { + --background0: hsla(191, 33%, 10%, 0); + --background025: hsla(191, 33%, 10%, 0.25); + --background05: hsla(191, 33%, 10%, 0.5); + --background075: hsla(191, 33%, 10%, 0.75); + --color0: hsla(0, 0%, 100%, 0.75); + --color025: hsla(0, 0%, 100%, 0.5); + --color05: hsla(0, 0%, 100%, 0.25); + --color075: hsla(0, 0%, 100%, 0); + --background: hsla(191, 33%, 10%, 0.75); + --backgroundHover: hsla(191, 32%, 10%, 1); + --backgroundPress: hsla(191, 32%, 15%, 1); + --backgroundFocus: hsla(191, 32%, 19%, 1); + --colorHover: hsla(112, 22%, 59%, 1); + --colorPress: hsla(112, 22%, 100%, 1); + --colorFocus: hsla(112, 22%, 59%, 1); + --placeholderColor: hsla(112, 22%, 59%, 1); + --borderColor: hsla(191, 32%, 19%, 1); + --borderColorHover: hsla(191, 32%, 24%, 1); + --borderColorFocus: hsla(191, 32%, 28%, 1); + --borderColorPress: hsla(191, 32%, 24%, 1); + --color1: hsla(191, 33%, 10%, 0.75); + --color2: hsla(191, 32%, 10%, 1); + --color3: hsla(191, 32%, 15%, 1); + --color4: hsla(191, 32%, 19%, 1); + --color5: hsla(191, 32%, 24%, 1); + --color6: hsla(191, 32%, 28%, 1); + --color7: hsla(191, 32%, 32%, 1); + --color8: hsla(191, 32%, 37%, 1); + --color9: hsla(191, 32%, 41%, 1); + --color10: hsla(191, 32%, 46%, 1); + --color11: hsla(191, 32%, 50%, 1); + --color12: hsla(112, 22%, 59%, 1); + } +} + +:root.t_dark .t_active_Button, +:root.t_dark .t_active_SliderTrack, +:root.t_dark .t_active_Switch, +:root.t_dark .t_active_TooltipContent, +:root.t_dark .t_light .t_dark .t_active_Button, +:root.t_dark .t_light .t_dark .t_active_SliderTrack, +:root.t_dark .t_light .t_dark .t_active_Switch, +:root.t_dark .t_light .t_dark .t_active_TooltipContent, +:root.t_light .t_dark .t_active_Button, +:root.t_light .t_dark .t_active_SliderTrack, +:root.t_light .t_dark .t_active_Switch, +:root.t_light .t_dark .t_active_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_active_Button, +:root.t_light .t_dark .t_light .t_dark .t_active_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_active_Switch, +:root.t_light .t_dark .t_light .t_dark .t_active_TooltipContent { + --background0: hsla(191, 33%, 10%, 0.5); + --background025: hsla(191, 33%, 10%, 0.75); + --background05: hsla(191, 32%, 10%, 1); + --background075: hsla(191, 32%, 15%, 1); + --color0: hsla(112, 22%, 59%, 1); + --color025: hsla(112, 22%, 100%, 1); + --color05: hsla(0, 0%, 100%, 0.75); + --color075: hsla(0, 0%, 100%, 0.5); + --background: hsla(191, 32%, 15%, 1); + --backgroundHover: hsla(191, 32%, 19%, 1); + --backgroundPress: hsla(191, 32%, 24%, 1); + --backgroundFocus: hsla(191, 32%, 28%, 1); + --colorHover: hsla(112, 22%, 59%, 1); + --colorPress: hsla(112, 22%, 100%, 1); + --colorFocus: hsla(112, 22%, 59%, 1); + --placeholderColor: hsla(191, 32%, 46%, 1); + --borderColor: hsla(191, 32%, 28%, 1); + --borderColorHover: hsla(191, 32%, 32%, 1); + --borderColorFocus: hsla(191, 32%, 37%, 1); + --borderColorPress: hsla(191, 32%, 32%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + } + + .t_active_Button, + .t_active_SliderTrack, + .t_active_Switch, + .t_active_TooltipContent, + .t_light .t_dark .t_active_Button, + .t_light .t_dark .t_active_SliderTrack, + .t_light .t_dark .t_active_Switch, + .t_light .t_dark .t_active_TooltipContent { + --background0: hsla(191, 33%, 10%, 0.5); + --background025: hsla(191, 33%, 10%, 0.75); + --background05: hsla(191, 32%, 10%, 1); + --background075: hsla(191, 32%, 15%, 1); + --color0: hsla(112, 22%, 59%, 1); + --color025: hsla(112, 22%, 100%, 1); + --color05: hsla(0, 0%, 100%, 0.75); + --color075: hsla(0, 0%, 100%, 0.5); + --background: hsla(191, 32%, 15%, 1); + --backgroundHover: hsla(191, 32%, 19%, 1); + --backgroundPress: hsla(191, 32%, 24%, 1); + --backgroundFocus: hsla(191, 32%, 28%, 1); + --colorHover: hsla(112, 22%, 59%, 1); + --colorPress: hsla(112, 22%, 100%, 1); + --colorFocus: hsla(112, 22%, 59%, 1); + --placeholderColor: hsla(191, 32%, 46%, 1); + --borderColor: hsla(191, 32%, 28%, 1); + --borderColorHover: hsla(191, 32%, 32%, 1); + --borderColorFocus: hsla(191, 32%, 37%, 1); + --borderColorPress: hsla(191, 32%, 32%, 1); + } +} + +:root.t_dark .t_active_Card, +:root.t_dark .t_active_DrawerFrame, +:root.t_dark .t_active_Progress, +:root.t_dark .t_active_TooltipArrow, +:root.t_dark .t_light .t_dark .t_active_Card, +:root.t_dark .t_light .t_dark .t_active_DrawerFrame, +:root.t_dark .t_light .t_dark .t_active_Progress, +:root.t_dark .t_light .t_dark .t_active_TooltipArrow, +:root.t_light .t_dark .t_active_Card, +:root.t_light .t_dark .t_active_DrawerFrame, +:root.t_light .t_dark .t_active_Progress, +:root.t_light .t_dark .t_active_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_active_Card, +:root.t_light .t_dark .t_light .t_dark .t_active_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_active_Progress, +:root.t_light .t_dark .t_light .t_dark .t_active_TooltipArrow { + --background0: hsla(191, 33%, 10%, 0.25); + --background025: hsla(191, 33%, 10%, 0.5); + --background05: hsla(191, 33%, 10%, 0.75); + --background075: hsla(191, 32%, 10%, 1); + --color0: hsla(112, 22%, 100%, 1); + --color025: hsla(0, 0%, 100%, 0.75); + --color05: hsla(0, 0%, 100%, 0.5); + --color075: hsla(0, 0%, 100%, 0.25); + --background: hsla(191, 32%, 10%, 1); + --backgroundHover: hsla(191, 32%, 15%, 1); + --backgroundPress: hsla(191, 32%, 19%, 1); + --backgroundFocus: hsla(191, 32%, 24%, 1); + --colorHover: hsla(112, 22%, 59%, 1); + --colorPress: hsla(112, 22%, 100%, 1); + --colorFocus: hsla(112, 22%, 59%, 1); + --placeholderColor: hsla(191, 32%, 50%, 1); + --borderColor: hsla(191, 32%, 24%, 1); + --borderColorHover: hsla(191, 32%, 28%, 1); + --borderColorFocus: hsla(191, 32%, 32%, 1); + --borderColorPress: hsla(191, 32%, 28%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + } + + .t_active_Card, + .t_active_DrawerFrame, + .t_active_Progress, + .t_active_TooltipArrow, + .t_light .t_dark .t_active_Card, + .t_light .t_dark .t_active_DrawerFrame, + .t_light .t_dark .t_active_Progress, + .t_light .t_dark .t_active_TooltipArrow { + --background0: hsla(191, 33%, 10%, 0.25); + --background025: hsla(191, 33%, 10%, 0.5); + --background05: hsla(191, 33%, 10%, 0.75); + --background075: hsla(191, 32%, 10%, 1); + --color0: hsla(112, 22%, 100%, 1); + --color025: hsla(0, 0%, 100%, 0.75); + --color05: hsla(0, 0%, 100%, 0.5); + --color075: hsla(0, 0%, 100%, 0.25); + --background: hsla(191, 32%, 10%, 1); + --backgroundHover: hsla(191, 32%, 15%, 1); + --backgroundPress: hsla(191, 32%, 19%, 1); + --backgroundFocus: hsla(191, 32%, 24%, 1); + --colorHover: hsla(112, 22%, 59%, 1); + --colorPress: hsla(112, 22%, 100%, 1); + --colorFocus: hsla(112, 22%, 59%, 1); + --placeholderColor: hsla(191, 32%, 50%, 1); + --borderColor: hsla(191, 32%, 24%, 1); + --borderColorHover: hsla(191, 32%, 28%, 1); + --borderColorFocus: hsla(191, 32%, 32%, 1); + --borderColorPress: hsla(191, 32%, 28%, 1); + } +} + +:root.t_dark .t_active_Checkbox, +:root.t_dark .t_active_Input, +:root.t_dark .t_active_RadioGroupItem, +:root.t_dark .t_active_TextArea, +:root.t_dark .t_light .t_dark .t_active_Checkbox, +:root.t_dark .t_light .t_dark .t_active_Input, +:root.t_dark .t_light .t_dark .t_active_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_active_TextArea, +:root.t_light .t_dark .t_active_Checkbox, +:root.t_light .t_dark .t_active_Input, +:root.t_light .t_dark .t_active_RadioGroupItem, +:root.t_light .t_dark .t_active_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_active_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_active_Input, +:root.t_light .t_dark .t_light .t_dark .t_active_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_active_TextArea { + --background0: hsla(191, 33%, 10%, 0); + --background025: hsla(191, 33%, 10%, 0.25); + --background05: hsla(191, 33%, 10%, 0.5); + --background075: hsla(191, 33%, 10%, 0.75); + --color0: hsla(0, 0%, 100%, 0.75); + --color025: hsla(0, 0%, 100%, 0.5); + --color05: hsla(0, 0%, 100%, 0.25); + --color075: hsla(0, 0%, 100%, 0); + --background: hsla(191, 33%, 10%, 0.75); + --backgroundHover: hsla(191, 32%, 10%, 1); + --backgroundPress: hsla(191, 32%, 15%, 1); + --backgroundFocus: hsla(191, 32%, 19%, 1); + --colorHover: hsla(112, 22%, 59%, 1); + --colorPress: hsla(112, 22%, 100%, 1); + --colorFocus: hsla(112, 22%, 59%, 1); + --placeholderColor: hsla(112, 22%, 59%, 1); + --borderColor: hsla(191, 32%, 28%, 1); + --borderColorHover: hsla(191, 32%, 32%, 1); + --borderColorFocus: hsla(191, 32%, 37%, 1); + --borderColorPress: hsla(191, 32%, 32%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + } + + .t_active_Checkbox, + .t_active_Input, + .t_active_RadioGroupItem, + .t_active_TextArea, + .t_light .t_dark .t_active_Checkbox, + .t_light .t_dark .t_active_Input, + .t_light .t_dark .t_active_RadioGroupItem, + .t_light .t_dark .t_active_TextArea { + --background0: hsla(191, 33%, 10%, 0); + --background025: hsla(191, 33%, 10%, 0.25); + --background05: hsla(191, 33%, 10%, 0.5); + --background075: hsla(191, 33%, 10%, 0.75); + --color0: hsla(0, 0%, 100%, 0.75); + --color025: hsla(0, 0%, 100%, 0.5); + --color05: hsla(0, 0%, 100%, 0.25); + --color075: hsla(0, 0%, 100%, 0); + --background: hsla(191, 33%, 10%, 0.75); + --backgroundHover: hsla(191, 32%, 10%, 1); + --backgroundPress: hsla(191, 32%, 15%, 1); + --backgroundFocus: hsla(191, 32%, 19%, 1); + --colorHover: hsla(112, 22%, 59%, 1); + --colorPress: hsla(112, 22%, 100%, 1); + --colorFocus: hsla(112, 22%, 59%, 1); + --placeholderColor: hsla(112, 22%, 59%, 1); + --borderColor: hsla(191, 32%, 28%, 1); + --borderColorHover: hsla(191, 32%, 32%, 1); + --borderColorFocus: hsla(191, 32%, 37%, 1); + --borderColorPress: hsla(191, 32%, 32%, 1); + } +} + +:root.t_dark .t_active_ProgressIndicator, +:root.t_dark .t_active_SliderThumb, +:root.t_dark .t_active_SwitchThumb, +:root.t_dark .t_active_Tooltip, +:root.t_dark .t_light .t_dark .t_active_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_active_SliderThumb, +:root.t_dark .t_light .t_dark .t_active_SwitchThumb, +:root.t_dark .t_light .t_dark .t_active_Tooltip, +:root.t_light .t_dark .t_active_ProgressIndicator, +:root.t_light .t_dark .t_active_SliderThumb, +:root.t_light .t_dark .t_active_SwitchThumb, +:root.t_light .t_dark .t_active_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_active_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_active_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_active_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_active_Tooltip { + --background0: hsla(0, 0%, 100%, 0); + --background025: hsla(0, 0%, 100%, 0.25); + --background05: hsla(0, 0%, 100%, 0.5); + --background075: hsla(0, 0%, 100%, 0.75); + --color0: hsla(191, 33%, 10%, 0.75); + --color025: hsla(191, 33%, 10%, 0.5); + --color05: hsla(191, 33%, 10%, 0.25); + --color075: hsla(191, 33%, 10%, 0); + --background: hsla(0, 0%, 100%, 0.75); + --backgroundHover: hsla(112, 22%, 100%, 1); + --backgroundPress: hsla(112, 22%, 59%, 1); + --backgroundFocus: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 15%, 1); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: hsla(191, 32%, 15%, 1); + --placeholderColor: hsla(191, 32%, 15%, 1); + --borderColor: hsla(191, 32%, 50%, 1); + --borderColorHover: hsla(191, 32%, 46%, 1); + --borderColorFocus: hsla(191, 32%, 41%, 1); + --borderColorPress: hsla(191, 32%, 46%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + } + + .t_active_ProgressIndicator, + .t_active_SliderThumb, + .t_active_SwitchThumb, + .t_active_Tooltip, + .t_light .t_dark .t_active_ProgressIndicator, + .t_light .t_dark .t_active_SliderThumb, + .t_light .t_dark .t_active_SwitchThumb, + .t_light .t_dark .t_active_Tooltip { + --background0: hsla(0, 0%, 100%, 0); + --background025: hsla(0, 0%, 100%, 0.25); + --background05: hsla(0, 0%, 100%, 0.5); + --background075: hsla(0, 0%, 100%, 0.75); + --color0: hsla(191, 33%, 10%, 0.75); + --color025: hsla(191, 33%, 10%, 0.5); + --color05: hsla(191, 33%, 10%, 0.25); + --color075: hsla(191, 33%, 10%, 0); + --background: hsla(0, 0%, 100%, 0.75); + --backgroundHover: hsla(112, 22%, 100%, 1); + --backgroundPress: hsla(112, 22%, 59%, 1); + --backgroundFocus: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 15%, 1); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: hsla(191, 32%, 15%, 1); + --placeholderColor: hsla(191, 32%, 15%, 1); + --borderColor: hsla(191, 32%, 50%, 1); + --borderColorHover: hsla(191, 32%, 46%, 1); + --borderColorFocus: hsla(191, 32%, 41%, 1); + --borderColorPress: hsla(191, 32%, 46%, 1); + } +} + +:root.t_dark .t_active_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_active_SliderTrackActive, +:root.t_light .t_dark .t_active_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_active_SliderTrackActive { + --background0: hsla(0, 0%, 100%, 0.5); + --background025: hsla(0, 0%, 100%, 0.75); + --background05: hsla(112, 22%, 100%, 1); + --background075: hsla(112, 22%, 59%, 1); + --color0: hsla(191, 32%, 15%, 1); + --color025: hsla(191, 32%, 10%, 1); + --color05: hsla(191, 33%, 10%, 0.75); + --color075: hsla(191, 33%, 10%, 0.5); + --background: hsla(112, 22%, 59%, 1); + --backgroundHover: hsla(191, 32%, 50%, 1); + --backgroundPress: hsla(191, 32%, 46%, 1); + --backgroundFocus: hsla(191, 32%, 41%, 1); + --colorHover: hsla(191, 32%, 15%, 1); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: hsla(191, 32%, 15%, 1); + --placeholderColor: hsla(191, 32%, 24%, 1); + --borderColor: hsla(191, 32%, 41%, 1); + --borderColorHover: hsla(191, 32%, 37%, 1); + --borderColorFocus: hsla(191, 32%, 32%, 1); + --borderColorPress: hsla(191, 32%, 37%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + } + + .t_active_SliderTrackActive, + .t_light .t_dark .t_active_SliderTrackActive { + --background0: hsla(0, 0%, 100%, 0.5); + --background025: hsla(0, 0%, 100%, 0.75); + --background05: hsla(112, 22%, 100%, 1); + --background075: hsla(112, 22%, 59%, 1); + --color0: hsla(191, 32%, 15%, 1); + --color025: hsla(191, 32%, 10%, 1); + --color05: hsla(191, 33%, 10%, 0.75); + --color075: hsla(191, 33%, 10%, 0.5); + --background: hsla(112, 22%, 59%, 1); + --backgroundHover: hsla(191, 32%, 50%, 1); + --backgroundPress: hsla(191, 32%, 46%, 1); + --backgroundFocus: hsla(191, 32%, 41%, 1); + --colorHover: hsla(191, 32%, 15%, 1); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: hsla(191, 32%, 15%, 1); + --placeholderColor: hsla(191, 32%, 24%, 1); + --borderColor: hsla(191, 32%, 41%, 1); + --borderColorHover: hsla(191, 32%, 37%, 1); + --borderColorFocus: hsla(191, 32%, 32%, 1); + --borderColorPress: hsla(191, 32%, 37%, 1); + } +} + +:root.t_dark .t_alt1, +:root.t_dark .t_light .t_dark .t_alt1, +:root.t_light .t_dark .t_alt1, +:root.t_light .t_dark .t_light .t_dark .t_alt1 { + --background0: hsla(191, 33%, 10%, 0.5); + --background025: hsla(191, 33%, 10%, 0.75); + --background05: hsla(191, 32%, 10%, 1); + --background075: hsla(191, 32%, 15%, 1); + --color0: hsla(112, 22%, 59%, 1); + --color025: hsla(112, 22%, 100%, 1); + --color05: hsla(0, 0%, 100%, 0.75); + --color075: hsla(0, 0%, 100%, 0.5); + --background: hsla(191, 32%, 15%, 1); + --backgroundHover: hsla(191, 32%, 19%, 1); + --backgroundPress: hsla(191, 32%, 24%, 1); + --backgroundFocus: hsla(191, 32%, 28%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 46%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 46%, 1); + --placeholderColor: hsla(191, 32%, 46%, 1); + --borderColor: hsla(191, 32%, 28%, 1); + --borderColorHover: hsla(191, 32%, 32%, 1); + --borderColorFocus: hsla(191, 32%, 37%, 1); + --borderColorPress: hsla(191, 32%, 32%, 1); + --color1: hsla(191, 32%, 15%, 1); + --color2: hsla(191, 32%, 19%, 1); + --color3: hsla(191, 32%, 24%, 1); + --color4: hsla(191, 32%, 28%, 1); + --color5: hsla(191, 32%, 32%, 1); + --color6: hsla(191, 32%, 37%, 1); + --color7: hsla(191, 32%, 41%, 1); + --color8: hsla(191, 32%, 46%, 1); + --color9: hsla(191, 32%, 46%, 1); + --color10: hsla(191, 32%, 46%, 1); + --color11: hsla(191, 32%, 46%, 1); + --color12: hsla(191, 32%, 46%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt1, + .t_light .t_dark .t_alt1 { + --background0: hsla(191, 33%, 10%, 0.5); + --background025: hsla(191, 33%, 10%, 0.75); + --background05: hsla(191, 32%, 10%, 1); + --background075: hsla(191, 32%, 15%, 1); + --color0: hsla(112, 22%, 59%, 1); + --color025: hsla(112, 22%, 100%, 1); + --color05: hsla(0, 0%, 100%, 0.75); + --color075: hsla(0, 0%, 100%, 0.5); + --background: hsla(191, 32%, 15%, 1); + --backgroundHover: hsla(191, 32%, 19%, 1); + --backgroundPress: hsla(191, 32%, 24%, 1); + --backgroundFocus: hsla(191, 32%, 28%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 46%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 46%, 1); + --placeholderColor: hsla(191, 32%, 46%, 1); + --borderColor: hsla(191, 32%, 28%, 1); + --borderColorHover: hsla(191, 32%, 32%, 1); + --borderColorFocus: hsla(191, 32%, 37%, 1); + --borderColorPress: hsla(191, 32%, 32%, 1); + --color1: hsla(191, 32%, 15%, 1); + --color2: hsla(191, 32%, 19%, 1); + --color3: hsla(191, 32%, 24%, 1); + --color4: hsla(191, 32%, 28%, 1); + --color5: hsla(191, 32%, 32%, 1); + --color6: hsla(191, 32%, 37%, 1); + --color7: hsla(191, 32%, 41%, 1); + --color8: hsla(191, 32%, 46%, 1); + --color9: hsla(191, 32%, 46%, 1); + --color10: hsla(191, 32%, 46%, 1); + --color11: hsla(191, 32%, 46%, 1); + --color12: hsla(191, 32%, 46%, 1); + } +} + +:root.t_dark .t_alt1_Button, +:root.t_dark .t_alt1_SliderTrack, +:root.t_dark .t_alt1_Switch, +:root.t_dark .t_alt1_TooltipContent, +:root.t_dark .t_dim_Button, +:root.t_dark .t_dim_SliderTrack, +:root.t_dark .t_dim_Switch, +:root.t_dark .t_dim_TooltipContent, +:root.t_dark .t_light .t_dark .t_alt1_Button, +:root.t_dark .t_light .t_dark .t_alt1_SliderTrack, +:root.t_dark .t_light .t_dark .t_alt1_Switch, +:root.t_dark .t_light .t_dark .t_alt1_TooltipContent, +:root.t_dark .t_light .t_dark .t_dim_Button, +:root.t_dark .t_light .t_dark .t_dim_SliderTrack, +:root.t_dark .t_light .t_dark .t_dim_Switch, +:root.t_dark .t_light .t_dark .t_dim_TooltipContent, +:root.t_light .t_dark .t_alt1_Button, +:root.t_light .t_dark .t_alt1_SliderTrack, +:root.t_light .t_dark .t_alt1_Switch, +:root.t_light .t_dark .t_alt1_TooltipContent, +:root.t_light .t_dark .t_dim_Button, +:root.t_light .t_dark .t_dim_SliderTrack, +:root.t_light .t_dark .t_dim_Switch, +:root.t_light .t_dark .t_dim_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_alt1_Button, +:root.t_light .t_dark .t_light .t_dark .t_alt1_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_alt1_Switch, +:root.t_light .t_dark .t_light .t_dark .t_alt1_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_dim_Button, +:root.t_light .t_dark .t_light .t_dark .t_dim_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_dim_Switch, +:root.t_light .t_dark .t_light .t_dark .t_dim_TooltipContent { + --background0: hsla(191, 32%, 10%, 1); + --background025: hsla(191, 32%, 15%, 1); + --background05: hsla(191, 32%, 19%, 1); + --background075: hsla(191, 32%, 24%, 1); + --color0: hsla(191, 32%, 46%, 1); + --color025: hsla(191, 32%, 50%, 1); + --color05: hsla(112, 22%, 59%, 1); + --color075: hsla(112, 22%, 100%, 1); + --background: hsla(191, 32%, 24%, 1); + --backgroundHover: hsla(191, 32%, 28%, 1); + --backgroundPress: hsla(191, 32%, 32%, 1); + --backgroundFocus: hsla(191, 32%, 37%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 46%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 46%, 1); + --placeholderColor: hsla(191, 32%, 37%, 1); + --borderColor: hsla(191, 32%, 37%, 1); + --borderColorHover: hsla(191, 32%, 41%, 1); + --borderColorFocus: hsla(191, 32%, 46%, 1); + --borderColorPress: hsla(191, 32%, 41%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt1_Button, + .t_alt1_SliderTrack, + .t_alt1_Switch, + .t_alt1_TooltipContent, + .t_dim_Button, + .t_dim_SliderTrack, + .t_dim_Switch, + .t_dim_TooltipContent, + .t_light .t_dark .t_alt1_Button, + .t_light .t_dark .t_alt1_SliderTrack, + .t_light .t_dark .t_alt1_Switch, + .t_light .t_dark .t_alt1_TooltipContent, + .t_light .t_dark .t_dim_Button, + .t_light .t_dark .t_dim_SliderTrack, + .t_light .t_dark .t_dim_Switch, + .t_light .t_dark .t_dim_TooltipContent { + --background0: hsla(191, 32%, 10%, 1); + --background025: hsla(191, 32%, 15%, 1); + --background05: hsla(191, 32%, 19%, 1); + --background075: hsla(191, 32%, 24%, 1); + --color0: hsla(191, 32%, 46%, 1); + --color025: hsla(191, 32%, 50%, 1); + --color05: hsla(112, 22%, 59%, 1); + --color075: hsla(112, 22%, 100%, 1); + --background: hsla(191, 32%, 24%, 1); + --backgroundHover: hsla(191, 32%, 28%, 1); + --backgroundPress: hsla(191, 32%, 32%, 1); + --backgroundFocus: hsla(191, 32%, 37%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 46%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 46%, 1); + --placeholderColor: hsla(191, 32%, 37%, 1); + --borderColor: hsla(191, 32%, 37%, 1); + --borderColorHover: hsla(191, 32%, 41%, 1); + --borderColorFocus: hsla(191, 32%, 46%, 1); + --borderColorPress: hsla(191, 32%, 41%, 1); + } +} + +:root.t_dark .t_alt1_Card, +:root.t_dark .t_alt1_DrawerFrame, +:root.t_dark .t_alt1_Progress, +:root.t_dark .t_alt1_TooltipArrow, +:root.t_dark .t_dim_Card, +:root.t_dark .t_dim_DrawerFrame, +:root.t_dark .t_dim_Progress, +:root.t_dark .t_dim_TooltipArrow, +:root.t_dark .t_light .t_dark .t_alt1_Card, +:root.t_dark .t_light .t_dark .t_alt1_DrawerFrame, +:root.t_dark .t_light .t_dark .t_alt1_Progress, +:root.t_dark .t_light .t_dark .t_alt1_TooltipArrow, +:root.t_dark .t_light .t_dark .t_dim_Card, +:root.t_dark .t_light .t_dark .t_dim_DrawerFrame, +:root.t_dark .t_light .t_dark .t_dim_Progress, +:root.t_dark .t_light .t_dark .t_dim_TooltipArrow, +:root.t_light .t_dark .t_alt1_Card, +:root.t_light .t_dark .t_alt1_DrawerFrame, +:root.t_light .t_dark .t_alt1_Progress, +:root.t_light .t_dark .t_alt1_TooltipArrow, +:root.t_light .t_dark .t_dim_Card, +:root.t_light .t_dark .t_dim_DrawerFrame, +:root.t_light .t_dark .t_dim_Progress, +:root.t_light .t_dark .t_dim_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_alt1_Card, +:root.t_light .t_dark .t_light .t_dark .t_alt1_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_alt1_Progress, +:root.t_light .t_dark .t_light .t_dark .t_alt1_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_dim_Card, +:root.t_light .t_dark .t_light .t_dark .t_dim_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_dim_Progress, +:root.t_light .t_dark .t_light .t_dark .t_dim_TooltipArrow { + --background0: hsla(191, 33%, 10%, 0.75); + --background025: hsla(191, 32%, 10%, 1); + --background05: hsla(191, 32%, 15%, 1); + --background075: hsla(191, 32%, 19%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(112, 22%, 59%, 1); + --color05: hsla(112, 22%, 100%, 1); + --color075: hsla(0, 0%, 100%, 0.75); + --background: hsla(191, 32%, 19%, 1); + --backgroundHover: hsla(191, 32%, 24%, 1); + --backgroundPress: hsla(191, 32%, 28%, 1); + --backgroundFocus: hsla(191, 32%, 32%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 46%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 46%, 1); + --placeholderColor: hsla(191, 32%, 41%, 1); + --borderColor: hsla(191, 32%, 32%, 1); + --borderColorHover: hsla(191, 32%, 37%, 1); + --borderColorFocus: hsla(191, 32%, 41%, 1); + --borderColorPress: hsla(191, 32%, 37%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt1_Card, + .t_alt1_DrawerFrame, + .t_alt1_Progress, + .t_alt1_TooltipArrow, + .t_dim_Card, + .t_dim_DrawerFrame, + .t_dim_Progress, + .t_dim_TooltipArrow, + .t_light .t_dark .t_alt1_Card, + .t_light .t_dark .t_alt1_DrawerFrame, + .t_light .t_dark .t_alt1_Progress, + .t_light .t_dark .t_alt1_TooltipArrow, + .t_light .t_dark .t_dim_Card, + .t_light .t_dark .t_dim_DrawerFrame, + .t_light .t_dark .t_dim_Progress, + .t_light .t_dark .t_dim_TooltipArrow { + --background0: hsla(191, 33%, 10%, 0.75); + --background025: hsla(191, 32%, 10%, 1); + --background05: hsla(191, 32%, 15%, 1); + --background075: hsla(191, 32%, 19%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(112, 22%, 59%, 1); + --color05: hsla(112, 22%, 100%, 1); + --color075: hsla(0, 0%, 100%, 0.75); + --background: hsla(191, 32%, 19%, 1); + --backgroundHover: hsla(191, 32%, 24%, 1); + --backgroundPress: hsla(191, 32%, 28%, 1); + --backgroundFocus: hsla(191, 32%, 32%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 46%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 46%, 1); + --placeholderColor: hsla(191, 32%, 41%, 1); + --borderColor: hsla(191, 32%, 32%, 1); + --borderColorHover: hsla(191, 32%, 37%, 1); + --borderColorFocus: hsla(191, 32%, 41%, 1); + --borderColorPress: hsla(191, 32%, 37%, 1); + } +} + +:root.t_dark .t_alt1_Checkbox, +:root.t_dark .t_alt1_Input, +:root.t_dark .t_alt1_RadioGroupItem, +:root.t_dark .t_alt1_TextArea, +:root.t_dark .t_dim_Checkbox, +:root.t_dark .t_dim_Input, +:root.t_dark .t_dim_RadioGroupItem, +:root.t_dark .t_dim_TextArea, +:root.t_dark .t_light .t_dark .t_alt1_Checkbox, +:root.t_dark .t_light .t_dark .t_alt1_Input, +:root.t_dark .t_light .t_dark .t_alt1_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_alt1_TextArea, +:root.t_dark .t_light .t_dark .t_dim_Checkbox, +:root.t_dark .t_light .t_dark .t_dim_Input, +:root.t_dark .t_light .t_dark .t_dim_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_dim_TextArea, +:root.t_light .t_dark .t_alt1_Checkbox, +:root.t_light .t_dark .t_alt1_Input, +:root.t_light .t_dark .t_alt1_RadioGroupItem, +:root.t_light .t_dark .t_alt1_TextArea, +:root.t_light .t_dark .t_dim_Checkbox, +:root.t_light .t_dark .t_dim_Input, +:root.t_light .t_dark .t_dim_RadioGroupItem, +:root.t_light .t_dark .t_dim_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_alt1_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_alt1_Input, +:root.t_light .t_dark .t_light .t_dark .t_alt1_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_alt1_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_dim_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_dim_Input, +:root.t_light .t_dark .t_light .t_dark .t_dim_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_dim_TextArea { + --background0: hsla(191, 33%, 10%, 0.5); + --background025: hsla(191, 33%, 10%, 0.75); + --background05: hsla(191, 32%, 10%, 1); + --background075: hsla(191, 32%, 15%, 1); + --color0: hsla(112, 22%, 59%, 1); + --color025: hsla(112, 22%, 100%, 1); + --color05: hsla(0, 0%, 100%, 0.75); + --color075: hsla(0, 0%, 100%, 0.5); + --background: hsla(191, 32%, 15%, 1); + --backgroundHover: hsla(191, 32%, 19%, 1); + --backgroundPress: hsla(191, 32%, 24%, 1); + --backgroundFocus: hsla(191, 32%, 28%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 46%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 46%, 1); + --placeholderColor: hsla(191, 32%, 46%, 1); + --borderColor: hsla(191, 32%, 37%, 1); + --borderColorHover: hsla(191, 32%, 41%, 1); + --borderColorFocus: hsla(191, 32%, 46%, 1); + --borderColorPress: hsla(191, 32%, 41%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt1_Checkbox, + .t_alt1_Input, + .t_alt1_RadioGroupItem, + .t_alt1_TextArea, + .t_dim_Checkbox, + .t_dim_Input, + .t_dim_RadioGroupItem, + .t_dim_TextArea, + .t_light .t_dark .t_alt1_Checkbox, + .t_light .t_dark .t_alt1_Input, + .t_light .t_dark .t_alt1_RadioGroupItem, + .t_light .t_dark .t_alt1_TextArea, + .t_light .t_dark .t_dim_Checkbox, + .t_light .t_dark .t_dim_Input, + .t_light .t_dark .t_dim_RadioGroupItem, + .t_light .t_dark .t_dim_TextArea { + --background0: hsla(191, 33%, 10%, 0.5); + --background025: hsla(191, 33%, 10%, 0.75); + --background05: hsla(191, 32%, 10%, 1); + --background075: hsla(191, 32%, 15%, 1); + --color0: hsla(112, 22%, 59%, 1); + --color025: hsla(112, 22%, 100%, 1); + --color05: hsla(0, 0%, 100%, 0.75); + --color075: hsla(0, 0%, 100%, 0.5); + --background: hsla(191, 32%, 15%, 1); + --backgroundHover: hsla(191, 32%, 19%, 1); + --backgroundPress: hsla(191, 32%, 24%, 1); + --backgroundFocus: hsla(191, 32%, 28%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 46%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 46%, 1); + --placeholderColor: hsla(191, 32%, 46%, 1); + --borderColor: hsla(191, 32%, 37%, 1); + --borderColorHover: hsla(191, 32%, 41%, 1); + --borderColorFocus: hsla(191, 32%, 46%, 1); + --borderColorPress: hsla(191, 32%, 41%, 1); + } +} + +:root.t_dark .t_alt1_ProgressIndicator, +:root.t_dark .t_alt1_SliderThumb, +:root.t_dark .t_alt1_SwitchThumb, +:root.t_dark .t_alt1_Tooltip, +:root.t_dark .t_dim_ProgressIndicator, +:root.t_dark .t_dim_SliderThumb, +:root.t_dark .t_dim_SwitchThumb, +:root.t_dark .t_dim_Tooltip, +:root.t_dark .t_light .t_dark .t_alt1_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_alt1_SliderThumb, +:root.t_dark .t_light .t_dark .t_alt1_SwitchThumb, +:root.t_dark .t_light .t_dark .t_alt1_Tooltip, +:root.t_dark .t_light .t_dark .t_dim_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_dim_SliderThumb, +:root.t_dark .t_light .t_dark .t_dim_SwitchThumb, +:root.t_dark .t_light .t_dark .t_dim_Tooltip, +:root.t_light .t_dark .t_alt1_ProgressIndicator, +:root.t_light .t_dark .t_alt1_SliderThumb, +:root.t_light .t_dark .t_alt1_SwitchThumb, +:root.t_light .t_dark .t_alt1_Tooltip, +:root.t_light .t_dark .t_dim_ProgressIndicator, +:root.t_light .t_dark .t_dim_SliderThumb, +:root.t_light .t_dark .t_dim_SwitchThumb, +:root.t_light .t_dark .t_dim_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_alt1_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_alt1_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_alt1_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_alt1_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_dim_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_dim_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_dim_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_dim_Tooltip { + --background0: hsla(0, 0%, 100%, 0.5); + --background025: hsla(0, 0%, 100%, 0.75); + --background05: hsla(112, 22%, 100%, 1); + --background075: hsla(112, 22%, 59%, 1); + --color0: hsla(191, 32%, 15%, 1); + --color025: hsla(191, 32%, 10%, 1); + --color05: hsla(191, 33%, 10%, 0.75); + --color075: hsla(191, 33%, 10%, 0.5); + --background: hsla(112, 22%, 59%, 1); + --backgroundHover: hsla(191, 32%, 50%, 1); + --backgroundPress: hsla(191, 32%, 46%, 1); + --backgroundFocus: hsla(191, 32%, 41%, 1); + --color: hsla(191, 32%, 19%, 1); + --colorHover: hsla(191, 32%, 24%, 1); + --colorPress: hsla(191, 32%, 19%, 1); + --colorFocus: hsla(191, 32%, 24%, 1); + --placeholderColor: hsla(191, 32%, 24%, 1); + --borderColor: hsla(191, 32%, 41%, 1); + --borderColorHover: hsla(191, 32%, 37%, 1); + --borderColorFocus: hsla(191, 32%, 32%, 1); + --borderColorPress: hsla(191, 32%, 37%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt1_ProgressIndicator, + .t_alt1_SliderThumb, + .t_alt1_SwitchThumb, + .t_alt1_Tooltip, + .t_dim_ProgressIndicator, + .t_dim_SliderThumb, + .t_dim_SwitchThumb, + .t_dim_Tooltip, + .t_light .t_dark .t_alt1_ProgressIndicator, + .t_light .t_dark .t_alt1_SliderThumb, + .t_light .t_dark .t_alt1_SwitchThumb, + .t_light .t_dark .t_alt1_Tooltip, + .t_light .t_dark .t_dim_ProgressIndicator, + .t_light .t_dark .t_dim_SliderThumb, + .t_light .t_dark .t_dim_SwitchThumb, + .t_light .t_dark .t_dim_Tooltip { + --background0: hsla(0, 0%, 100%, 0.5); + --background025: hsla(0, 0%, 100%, 0.75); + --background05: hsla(112, 22%, 100%, 1); + --background075: hsla(112, 22%, 59%, 1); + --color0: hsla(191, 32%, 15%, 1); + --color025: hsla(191, 32%, 10%, 1); + --color05: hsla(191, 33%, 10%, 0.75); + --color075: hsla(191, 33%, 10%, 0.5); + --background: hsla(112, 22%, 59%, 1); + --backgroundHover: hsla(191, 32%, 50%, 1); + --backgroundPress: hsla(191, 32%, 46%, 1); + --backgroundFocus: hsla(191, 32%, 41%, 1); + --color: hsla(191, 32%, 19%, 1); + --colorHover: hsla(191, 32%, 24%, 1); + --colorPress: hsla(191, 32%, 19%, 1); + --colorFocus: hsla(191, 32%, 24%, 1); + --placeholderColor: hsla(191, 32%, 24%, 1); + --borderColor: hsla(191, 32%, 41%, 1); + --borderColorHover: hsla(191, 32%, 37%, 1); + --borderColorFocus: hsla(191, 32%, 32%, 1); + --borderColorPress: hsla(191, 32%, 37%, 1); + } +} + +:root.t_dark .t_alt1_SliderTrackActive, +:root.t_dark .t_dim_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_alt1_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_dim_SliderTrackActive, +:root.t_light .t_dark .t_alt1_SliderTrackActive, +:root.t_light .t_dark .t_dim_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_alt1_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_dim_SliderTrackActive { + --background0: hsla(112, 22%, 100%, 1); + --background025: hsla(112, 22%, 59%, 1); + --background05: hsla(191, 32%, 50%, 1); + --background075: hsla(191, 32%, 46%, 1); + --color0: hsla(191, 32%, 24%, 1); + --color025: hsla(191, 32%, 19%, 1); + --color05: hsla(191, 32%, 15%, 1); + --color075: hsla(191, 32%, 10%, 1); + --background: hsla(191, 32%, 46%, 1); + --backgroundHover: hsla(191, 32%, 41%, 1); + --backgroundPress: hsla(191, 32%, 37%, 1); + --backgroundFocus: hsla(191, 32%, 32%, 1); + --color: hsla(191, 32%, 19%, 1); + --colorHover: hsla(191, 32%, 24%, 1); + --colorPress: hsla(191, 32%, 19%, 1); + --colorFocus: hsla(191, 32%, 24%, 1); + --placeholderColor: hsla(191, 32%, 32%, 1); + --borderColor: hsla(191, 32%, 32%, 1); + --borderColorHover: hsla(191, 32%, 28%, 1); + --borderColorFocus: hsla(191, 32%, 24%, 1); + --borderColorPress: hsla(191, 32%, 28%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt1_SliderTrackActive, + .t_dim_SliderTrackActive, + .t_light .t_dark .t_alt1_SliderTrackActive, + .t_light .t_dark .t_dim_SliderTrackActive { + --background0: hsla(112, 22%, 100%, 1); + --background025: hsla(112, 22%, 59%, 1); + --background05: hsla(191, 32%, 50%, 1); + --background075: hsla(191, 32%, 46%, 1); + --color0: hsla(191, 32%, 24%, 1); + --color025: hsla(191, 32%, 19%, 1); + --color05: hsla(191, 32%, 15%, 1); + --color075: hsla(191, 32%, 10%, 1); + --background: hsla(191, 32%, 46%, 1); + --backgroundHover: hsla(191, 32%, 41%, 1); + --backgroundPress: hsla(191, 32%, 37%, 1); + --backgroundFocus: hsla(191, 32%, 32%, 1); + --color: hsla(191, 32%, 19%, 1); + --colorHover: hsla(191, 32%, 24%, 1); + --colorPress: hsla(191, 32%, 19%, 1); + --colorFocus: hsla(191, 32%, 24%, 1); + --placeholderColor: hsla(191, 32%, 32%, 1); + --borderColor: hsla(191, 32%, 32%, 1); + --borderColorHover: hsla(191, 32%, 28%, 1); + --borderColorFocus: hsla(191, 32%, 24%, 1); + --borderColorPress: hsla(191, 32%, 28%, 1); + } +} + +:root.t_dark .t_alt2, +:root.t_dark .t_light .t_dark .t_alt2, +:root.t_light .t_dark .t_alt2, +:root.t_light .t_dark .t_light .t_dark .t_alt2 { + --background0: hsla(191, 33%, 10%, 0.75); + --background025: hsla(191, 32%, 10%, 1); + --background05: hsla(191, 32%, 15%, 1); + --background075: hsla(191, 32%, 19%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(112, 22%, 59%, 1); + --color05: hsla(112, 22%, 100%, 1); + --color075: hsla(0, 0%, 100%, 0.75); + --background: hsla(191, 32%, 19%, 1); + --backgroundHover: hsla(191, 32%, 24%, 1); + --backgroundPress: hsla(191, 32%, 28%, 1); + --backgroundFocus: hsla(191, 32%, 32%, 1); + --color: hsla(191, 32%, 46%, 1); + --colorHover: hsla(191, 32%, 41%, 1); + --colorPress: hsla(191, 32%, 46%, 1); + --colorFocus: hsla(191, 32%, 41%, 1); + --placeholderColor: hsla(191, 32%, 41%, 1); + --borderColor: hsla(191, 32%, 32%, 1); + --borderColorHover: hsla(191, 32%, 37%, 1); + --borderColorFocus: hsla(191, 32%, 41%, 1); + --borderColorPress: hsla(191, 32%, 37%, 1); + --color1: hsla(191, 32%, 19%, 1); + --color2: hsla(191, 32%, 24%, 1); + --color3: hsla(191, 32%, 28%, 1); + --color4: hsla(191, 32%, 32%, 1); + --color5: hsla(191, 32%, 37%, 1); + --color6: hsla(191, 32%, 41%, 1); + --color7: hsla(191, 32%, 46%, 1); + --color8: hsla(191, 32%, 46%, 1); + --color9: hsla(191, 32%, 46%, 1); + --color10: hsla(191, 32%, 46%, 1); + --color11: hsla(191, 32%, 46%, 1); + --color12: hsla(191, 32%, 46%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt2, + .t_light .t_dark .t_alt2 { + --background0: hsla(191, 33%, 10%, 0.75); + --background025: hsla(191, 32%, 10%, 1); + --background05: hsla(191, 32%, 15%, 1); + --background075: hsla(191, 32%, 19%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(112, 22%, 59%, 1); + --color05: hsla(112, 22%, 100%, 1); + --color075: hsla(0, 0%, 100%, 0.75); + --background: hsla(191, 32%, 19%, 1); + --backgroundHover: hsla(191, 32%, 24%, 1); + --backgroundPress: hsla(191, 32%, 28%, 1); + --backgroundFocus: hsla(191, 32%, 32%, 1); + --color: hsla(191, 32%, 46%, 1); + --colorHover: hsla(191, 32%, 41%, 1); + --colorPress: hsla(191, 32%, 46%, 1); + --colorFocus: hsla(191, 32%, 41%, 1); + --placeholderColor: hsla(191, 32%, 41%, 1); + --borderColor: hsla(191, 32%, 32%, 1); + --borderColorHover: hsla(191, 32%, 37%, 1); + --borderColorFocus: hsla(191, 32%, 41%, 1); + --borderColorPress: hsla(191, 32%, 37%, 1); + --color1: hsla(191, 32%, 19%, 1); + --color2: hsla(191, 32%, 24%, 1); + --color3: hsla(191, 32%, 28%, 1); + --color4: hsla(191, 32%, 32%, 1); + --color5: hsla(191, 32%, 37%, 1); + --color6: hsla(191, 32%, 41%, 1); + --color7: hsla(191, 32%, 46%, 1); + --color8: hsla(191, 32%, 46%, 1); + --color9: hsla(191, 32%, 46%, 1); + --color10: hsla(191, 32%, 46%, 1); + --color11: hsla(191, 32%, 46%, 1); + --color12: hsla(191, 32%, 46%, 1); + } +} + +:root.t_dark .t_alt2_Button, +:root.t_dark .t_alt2_SliderTrack, +:root.t_dark .t_alt2_Switch, +:root.t_dark .t_alt2_TooltipContent, +:root.t_dark .t_disabled_Button, +:root.t_dark .t_disabled_SliderTrack, +:root.t_dark .t_disabled_Switch, +:root.t_dark .t_disabled_TooltipContent, +:root.t_dark .t_light .t_dark .t_alt2_Button, +:root.t_dark .t_light .t_dark .t_alt2_SliderTrack, +:root.t_dark .t_light .t_dark .t_alt2_Switch, +:root.t_dark .t_light .t_dark .t_alt2_TooltipContent, +:root.t_dark .t_light .t_dark .t_disabled_Button, +:root.t_dark .t_light .t_dark .t_disabled_SliderTrack, +:root.t_dark .t_light .t_dark .t_disabled_Switch, +:root.t_dark .t_light .t_dark .t_disabled_TooltipContent, +:root.t_light .t_dark .t_alt2_Button, +:root.t_light .t_dark .t_alt2_SliderTrack, +:root.t_light .t_dark .t_alt2_Switch, +:root.t_light .t_dark .t_alt2_TooltipContent, +:root.t_light .t_dark .t_disabled_Button, +:root.t_light .t_dark .t_disabled_SliderTrack, +:root.t_light .t_dark .t_disabled_Switch, +:root.t_light .t_dark .t_disabled_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_alt2_Button, +:root.t_light .t_dark .t_light .t_dark .t_alt2_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_alt2_Switch, +:root.t_light .t_dark .t_light .t_dark .t_alt2_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_disabled_Button, +:root.t_light .t_dark .t_light .t_dark .t_disabled_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_disabled_Switch, +:root.t_light .t_dark .t_light .t_dark .t_disabled_TooltipContent { + --background0: hsla(191, 32%, 15%, 1); + --background025: hsla(191, 32%, 19%, 1); + --background05: hsla(191, 32%, 24%, 1); + --background075: hsla(191, 32%, 28%, 1); + --color0: hsla(191, 32%, 41%, 1); + --color025: hsla(191, 32%, 46%, 1); + --color05: hsla(191, 32%, 50%, 1); + --color075: hsla(112, 22%, 59%, 1); + --background: hsla(191, 32%, 28%, 1); + --backgroundHover: hsla(191, 32%, 32%, 1); + --backgroundPress: hsla(191, 32%, 37%, 1); + --backgroundFocus: hsla(191, 32%, 41%, 1); + --color: hsla(191, 32%, 46%, 1); + --colorHover: hsla(191, 32%, 41%, 1); + --colorPress: hsla(191, 32%, 46%, 1); + --colorFocus: hsla(191, 32%, 41%, 1); + --placeholderColor: hsla(191, 32%, 32%, 1); + --borderColor: hsla(191, 32%, 41%, 1); + --borderColorHover: hsla(191, 32%, 46%, 1); + --borderColorFocus: hsla(191, 32%, 50%, 1); + --borderColorPress: hsla(191, 32%, 46%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt2_Button, + .t_alt2_SliderTrack, + .t_alt2_Switch, + .t_alt2_TooltipContent, + .t_disabled_Button, + .t_disabled_SliderTrack, + .t_disabled_Switch, + .t_disabled_TooltipContent, + .t_light .t_dark .t_alt2_Button, + .t_light .t_dark .t_alt2_SliderTrack, + .t_light .t_dark .t_alt2_Switch, + .t_light .t_dark .t_alt2_TooltipContent, + .t_light .t_dark .t_disabled_Button, + .t_light .t_dark .t_disabled_SliderTrack, + .t_light .t_dark .t_disabled_Switch, + .t_light .t_dark .t_disabled_TooltipContent { + --background0: hsla(191, 32%, 15%, 1); + --background025: hsla(191, 32%, 19%, 1); + --background05: hsla(191, 32%, 24%, 1); + --background075: hsla(191, 32%, 28%, 1); + --color0: hsla(191, 32%, 41%, 1); + --color025: hsla(191, 32%, 46%, 1); + --color05: hsla(191, 32%, 50%, 1); + --color075: hsla(112, 22%, 59%, 1); + --background: hsla(191, 32%, 28%, 1); + --backgroundHover: hsla(191, 32%, 32%, 1); + --backgroundPress: hsla(191, 32%, 37%, 1); + --backgroundFocus: hsla(191, 32%, 41%, 1); + --color: hsla(191, 32%, 46%, 1); + --colorHover: hsla(191, 32%, 41%, 1); + --colorPress: hsla(191, 32%, 46%, 1); + --colorFocus: hsla(191, 32%, 41%, 1); + --placeholderColor: hsla(191, 32%, 32%, 1); + --borderColor: hsla(191, 32%, 41%, 1); + --borderColorHover: hsla(191, 32%, 46%, 1); + --borderColorFocus: hsla(191, 32%, 50%, 1); + --borderColorPress: hsla(191, 32%, 46%, 1); + } +} + +:root.t_dark .t_alt2_Card, +:root.t_dark .t_alt2_DrawerFrame, +:root.t_dark .t_alt2_Progress, +:root.t_dark .t_alt2_TooltipArrow, +:root.t_dark .t_disabled_Card, +:root.t_dark .t_disabled_DrawerFrame, +:root.t_dark .t_disabled_Progress, +:root.t_dark .t_disabled_TooltipArrow, +:root.t_dark .t_light .t_dark .t_alt2_Card, +:root.t_dark .t_light .t_dark .t_alt2_DrawerFrame, +:root.t_dark .t_light .t_dark .t_alt2_Progress, +:root.t_dark .t_light .t_dark .t_alt2_TooltipArrow, +:root.t_dark .t_light .t_dark .t_disabled_Card, +:root.t_dark .t_light .t_dark .t_disabled_DrawerFrame, +:root.t_dark .t_light .t_dark .t_disabled_Progress, +:root.t_dark .t_light .t_dark .t_disabled_TooltipArrow, +:root.t_light .t_dark .t_alt2_Card, +:root.t_light .t_dark .t_alt2_DrawerFrame, +:root.t_light .t_dark .t_alt2_Progress, +:root.t_light .t_dark .t_alt2_TooltipArrow, +:root.t_light .t_dark .t_disabled_Card, +:root.t_light .t_dark .t_disabled_DrawerFrame, +:root.t_light .t_dark .t_disabled_Progress, +:root.t_light .t_dark .t_disabled_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_alt2_Card, +:root.t_light .t_dark .t_light .t_dark .t_alt2_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_alt2_Progress, +:root.t_light .t_dark .t_light .t_dark .t_alt2_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_disabled_Card, +:root.t_light .t_dark .t_light .t_dark .t_disabled_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_disabled_Progress, +:root.t_light .t_dark .t_light .t_dark .t_disabled_TooltipArrow { + --background0: hsla(191, 32%, 10%, 1); + --background025: hsla(191, 32%, 15%, 1); + --background05: hsla(191, 32%, 19%, 1); + --background075: hsla(191, 32%, 24%, 1); + --color0: hsla(191, 32%, 46%, 1); + --color025: hsla(191, 32%, 50%, 1); + --color05: hsla(112, 22%, 59%, 1); + --color075: hsla(112, 22%, 100%, 1); + --background: hsla(191, 32%, 24%, 1); + --backgroundHover: hsla(191, 32%, 28%, 1); + --backgroundPress: hsla(191, 32%, 32%, 1); + --backgroundFocus: hsla(191, 32%, 37%, 1); + --color: hsla(191, 32%, 46%, 1); + --colorHover: hsla(191, 32%, 41%, 1); + --colorPress: hsla(191, 32%, 46%, 1); + --colorFocus: hsla(191, 32%, 41%, 1); + --placeholderColor: hsla(191, 32%, 37%, 1); + --borderColor: hsla(191, 32%, 37%, 1); + --borderColorHover: hsla(191, 32%, 41%, 1); + --borderColorFocus: hsla(191, 32%, 46%, 1); + --borderColorPress: hsla(191, 32%, 41%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt2_Card, + .t_alt2_DrawerFrame, + .t_alt2_Progress, + .t_alt2_TooltipArrow, + .t_disabled_Card, + .t_disabled_DrawerFrame, + .t_disabled_Progress, + .t_disabled_TooltipArrow, + .t_light .t_dark .t_alt2_Card, + .t_light .t_dark .t_alt2_DrawerFrame, + .t_light .t_dark .t_alt2_Progress, + .t_light .t_dark .t_alt2_TooltipArrow, + .t_light .t_dark .t_disabled_Card, + .t_light .t_dark .t_disabled_DrawerFrame, + .t_light .t_dark .t_disabled_Progress, + .t_light .t_dark .t_disabled_TooltipArrow { + --background0: hsla(191, 32%, 10%, 1); + --background025: hsla(191, 32%, 15%, 1); + --background05: hsla(191, 32%, 19%, 1); + --background075: hsla(191, 32%, 24%, 1); + --color0: hsla(191, 32%, 46%, 1); + --color025: hsla(191, 32%, 50%, 1); + --color05: hsla(112, 22%, 59%, 1); + --color075: hsla(112, 22%, 100%, 1); + --background: hsla(191, 32%, 24%, 1); + --backgroundHover: hsla(191, 32%, 28%, 1); + --backgroundPress: hsla(191, 32%, 32%, 1); + --backgroundFocus: hsla(191, 32%, 37%, 1); + --color: hsla(191, 32%, 46%, 1); + --colorHover: hsla(191, 32%, 41%, 1); + --colorPress: hsla(191, 32%, 46%, 1); + --colorFocus: hsla(191, 32%, 41%, 1); + --placeholderColor: hsla(191, 32%, 37%, 1); + --borderColor: hsla(191, 32%, 37%, 1); + --borderColorHover: hsla(191, 32%, 41%, 1); + --borderColorFocus: hsla(191, 32%, 46%, 1); + --borderColorPress: hsla(191, 32%, 41%, 1); + } +} + +:root.t_dark .t_alt2_Checkbox, +:root.t_dark .t_alt2_Input, +:root.t_dark .t_alt2_RadioGroupItem, +:root.t_dark .t_alt2_TextArea, +:root.t_dark .t_disabled_Checkbox, +:root.t_dark .t_disabled_Input, +:root.t_dark .t_disabled_RadioGroupItem, +:root.t_dark .t_disabled_TextArea, +:root.t_dark .t_light .t_dark .t_alt2_Checkbox, +:root.t_dark .t_light .t_dark .t_alt2_Input, +:root.t_dark .t_light .t_dark .t_alt2_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_alt2_TextArea, +:root.t_dark .t_light .t_dark .t_disabled_Checkbox, +:root.t_dark .t_light .t_dark .t_disabled_Input, +:root.t_dark .t_light .t_dark .t_disabled_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_disabled_TextArea, +:root.t_light .t_dark .t_alt2_Checkbox, +:root.t_light .t_dark .t_alt2_Input, +:root.t_light .t_dark .t_alt2_RadioGroupItem, +:root.t_light .t_dark .t_alt2_TextArea, +:root.t_light .t_dark .t_disabled_Checkbox, +:root.t_light .t_dark .t_disabled_Input, +:root.t_light .t_dark .t_disabled_RadioGroupItem, +:root.t_light .t_dark .t_disabled_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_alt2_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_alt2_Input, +:root.t_light .t_dark .t_light .t_dark .t_alt2_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_alt2_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_disabled_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_disabled_Input, +:root.t_light .t_dark .t_light .t_dark .t_disabled_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_disabled_TextArea { + --background0: hsla(191, 33%, 10%, 0.75); + --background025: hsla(191, 32%, 10%, 1); + --background05: hsla(191, 32%, 15%, 1); + --background075: hsla(191, 32%, 19%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(112, 22%, 59%, 1); + --color05: hsla(112, 22%, 100%, 1); + --color075: hsla(0, 0%, 100%, 0.75); + --background: hsla(191, 32%, 19%, 1); + --backgroundHover: hsla(191, 32%, 24%, 1); + --backgroundPress: hsla(191, 32%, 28%, 1); + --backgroundFocus: hsla(191, 32%, 32%, 1); + --color: hsla(191, 32%, 46%, 1); + --colorHover: hsla(191, 32%, 41%, 1); + --colorPress: hsla(191, 32%, 46%, 1); + --colorFocus: hsla(191, 32%, 41%, 1); + --placeholderColor: hsla(191, 32%, 41%, 1); + --borderColor: hsla(191, 32%, 41%, 1); + --borderColorHover: hsla(191, 32%, 46%, 1); + --borderColorFocus: hsla(191, 32%, 50%, 1); + --borderColorPress: hsla(191, 32%, 46%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt2_Checkbox, + .t_alt2_Input, + .t_alt2_RadioGroupItem, + .t_alt2_TextArea, + .t_disabled_Checkbox, + .t_disabled_Input, + .t_disabled_RadioGroupItem, + .t_disabled_TextArea, + .t_light .t_dark .t_alt2_Checkbox, + .t_light .t_dark .t_alt2_Input, + .t_light .t_dark .t_alt2_RadioGroupItem, + .t_light .t_dark .t_alt2_TextArea, + .t_light .t_dark .t_disabled_Checkbox, + .t_light .t_dark .t_disabled_Input, + .t_light .t_dark .t_disabled_RadioGroupItem, + .t_light .t_dark .t_disabled_TextArea { + --background0: hsla(191, 33%, 10%, 0.75); + --background025: hsla(191, 32%, 10%, 1); + --background05: hsla(191, 32%, 15%, 1); + --background075: hsla(191, 32%, 19%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(112, 22%, 59%, 1); + --color05: hsla(112, 22%, 100%, 1); + --color075: hsla(0, 0%, 100%, 0.75); + --background: hsla(191, 32%, 19%, 1); + --backgroundHover: hsla(191, 32%, 24%, 1); + --backgroundPress: hsla(191, 32%, 28%, 1); + --backgroundFocus: hsla(191, 32%, 32%, 1); + --color: hsla(191, 32%, 46%, 1); + --colorHover: hsla(191, 32%, 41%, 1); + --colorPress: hsla(191, 32%, 46%, 1); + --colorFocus: hsla(191, 32%, 41%, 1); + --placeholderColor: hsla(191, 32%, 41%, 1); + --borderColor: hsla(191, 32%, 41%, 1); + --borderColorHover: hsla(191, 32%, 46%, 1); + --borderColorFocus: hsla(191, 32%, 50%, 1); + --borderColorPress: hsla(191, 32%, 46%, 1); + } +} + +:root.t_dark .t_alt2_ProgressIndicator, +:root.t_dark .t_alt2_SliderThumb, +:root.t_dark .t_alt2_SwitchThumb, +:root.t_dark .t_alt2_Tooltip, +:root.t_dark .t_disabled_ProgressIndicator, +:root.t_dark .t_disabled_SliderThumb, +:root.t_dark .t_disabled_SwitchThumb, +:root.t_dark .t_disabled_Tooltip, +:root.t_dark .t_light .t_dark .t_alt2_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_alt2_SliderThumb, +:root.t_dark .t_light .t_dark .t_alt2_SwitchThumb, +:root.t_dark .t_light .t_dark .t_alt2_Tooltip, +:root.t_dark .t_light .t_dark .t_disabled_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_disabled_SliderThumb, +:root.t_dark .t_light .t_dark .t_disabled_SwitchThumb, +:root.t_dark .t_light .t_dark .t_disabled_Tooltip, +:root.t_light .t_dark .t_alt2_ProgressIndicator, +:root.t_light .t_dark .t_alt2_SliderThumb, +:root.t_light .t_dark .t_alt2_SwitchThumb, +:root.t_light .t_dark .t_alt2_Tooltip, +:root.t_light .t_dark .t_disabled_ProgressIndicator, +:root.t_light .t_dark .t_disabled_SliderThumb, +:root.t_light .t_dark .t_disabled_SwitchThumb, +:root.t_light .t_dark .t_disabled_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_alt2_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_alt2_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_alt2_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_alt2_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_disabled_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_disabled_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_disabled_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_disabled_Tooltip { + --background0: hsla(0, 0%, 100%, 0.75); + --background025: hsla(112, 22%, 100%, 1); + --background05: hsla(112, 22%, 59%, 1); + --background075: hsla(191, 32%, 50%, 1); + --color0: hsla(191, 32%, 19%, 1); + --color025: hsla(191, 32%, 15%, 1); + --color05: hsla(191, 32%, 10%, 1); + --color075: hsla(191, 33%, 10%, 0.75); + --background: hsla(191, 32%, 50%, 1); + --backgroundHover: hsla(191, 32%, 46%, 1); + --backgroundPress: hsla(191, 32%, 41%, 1); + --backgroundFocus: hsla(191, 32%, 37%, 1); + --color: hsla(191, 32%, 24%, 1); + --colorHover: hsla(191, 32%, 28%, 1); + --colorPress: hsla(191, 32%, 24%, 1); + --colorFocus: hsla(191, 32%, 28%, 1); + --placeholderColor: hsla(191, 32%, 28%, 1); + --borderColor: hsla(191, 32%, 37%, 1); + --borderColorHover: hsla(191, 32%, 32%, 1); + --borderColorFocus: hsla(191, 32%, 28%, 1); + --borderColorPress: hsla(191, 32%, 32%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt2_ProgressIndicator, + .t_alt2_SliderThumb, + .t_alt2_SwitchThumb, + .t_alt2_Tooltip, + .t_disabled_ProgressIndicator, + .t_disabled_SliderThumb, + .t_disabled_SwitchThumb, + .t_disabled_Tooltip, + .t_light .t_dark .t_alt2_ProgressIndicator, + .t_light .t_dark .t_alt2_SliderThumb, + .t_light .t_dark .t_alt2_SwitchThumb, + .t_light .t_dark .t_alt2_Tooltip, + .t_light .t_dark .t_disabled_ProgressIndicator, + .t_light .t_dark .t_disabled_SliderThumb, + .t_light .t_dark .t_disabled_SwitchThumb, + .t_light .t_dark .t_disabled_Tooltip { + --background0: hsla(0, 0%, 100%, 0.75); + --background025: hsla(112, 22%, 100%, 1); + --background05: hsla(112, 22%, 59%, 1); + --background075: hsla(191, 32%, 50%, 1); + --color0: hsla(191, 32%, 19%, 1); + --color025: hsla(191, 32%, 15%, 1); + --color05: hsla(191, 32%, 10%, 1); + --color075: hsla(191, 33%, 10%, 0.75); + --background: hsla(191, 32%, 50%, 1); + --backgroundHover: hsla(191, 32%, 46%, 1); + --backgroundPress: hsla(191, 32%, 41%, 1); + --backgroundFocus: hsla(191, 32%, 37%, 1); + --color: hsla(191, 32%, 24%, 1); + --colorHover: hsla(191, 32%, 28%, 1); + --colorPress: hsla(191, 32%, 24%, 1); + --colorFocus: hsla(191, 32%, 28%, 1); + --placeholderColor: hsla(191, 32%, 28%, 1); + --borderColor: hsla(191, 32%, 37%, 1); + --borderColorHover: hsla(191, 32%, 32%, 1); + --borderColorFocus: hsla(191, 32%, 28%, 1); + --borderColorPress: hsla(191, 32%, 32%, 1); + } +} + +:root.t_dark .t_alt2_SliderTrackActive, +:root.t_dark .t_disabled_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_alt2_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_disabled_SliderTrackActive, +:root.t_light .t_dark .t_alt2_SliderTrackActive, +:root.t_light .t_dark .t_disabled_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_alt2_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_disabled_SliderTrackActive { + --background0: hsla(112, 22%, 59%, 1); + --background025: hsla(191, 32%, 50%, 1); + --background05: hsla(191, 32%, 46%, 1); + --background075: hsla(191, 32%, 41%, 1); + --color0: hsla(191, 32%, 28%, 1); + --color025: hsla(191, 32%, 24%, 1); + --color05: hsla(191, 32%, 19%, 1); + --color075: hsla(191, 32%, 15%, 1); + --background: hsla(191, 32%, 41%, 1); + --backgroundHover: hsla(191, 32%, 37%, 1); + --backgroundPress: hsla(191, 32%, 32%, 1); + --backgroundFocus: hsla(191, 32%, 28%, 1); + --color: hsla(191, 32%, 24%, 1); + --colorHover: hsla(191, 32%, 28%, 1); + --colorPress: hsla(191, 32%, 24%, 1); + --colorFocus: hsla(191, 32%, 28%, 1); + --placeholderColor: hsla(191, 32%, 37%, 1); + --borderColor: hsla(191, 32%, 28%, 1); + --borderColorHover: hsla(191, 32%, 24%, 1); + --borderColorFocus: hsla(191, 32%, 19%, 1); + --borderColorPress: hsla(191, 32%, 24%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt2_SliderTrackActive, + .t_disabled_SliderTrackActive, + .t_light .t_dark .t_alt2_SliderTrackActive, + .t_light .t_dark .t_disabled_SliderTrackActive { + --background0: hsla(112, 22%, 59%, 1); + --background025: hsla(191, 32%, 50%, 1); + --background05: hsla(191, 32%, 46%, 1); + --background075: hsla(191, 32%, 41%, 1); + --color0: hsla(191, 32%, 28%, 1); + --color025: hsla(191, 32%, 24%, 1); + --color05: hsla(191, 32%, 19%, 1); + --color075: hsla(191, 32%, 15%, 1); + --background: hsla(191, 32%, 41%, 1); + --backgroundHover: hsla(191, 32%, 37%, 1); + --backgroundPress: hsla(191, 32%, 32%, 1); + --backgroundFocus: hsla(191, 32%, 28%, 1); + --color: hsla(191, 32%, 24%, 1); + --colorHover: hsla(191, 32%, 28%, 1); + --colorPress: hsla(191, 32%, 24%, 1); + --colorFocus: hsla(191, 32%, 28%, 1); + --placeholderColor: hsla(191, 32%, 37%, 1); + --borderColor: hsla(191, 32%, 28%, 1); + --borderColorHover: hsla(191, 32%, 24%, 1); + --borderColorFocus: hsla(191, 32%, 19%, 1); + --borderColorPress: hsla(191, 32%, 24%, 1); + } +} + +:root.t_dark .t_dim, +:root.t_dark .t_light .t_dark .t_dim, +:root.t_light .t_dark .t_dim, +:root.t_light .t_dark .t_light .t_dark .t_dim { + --background0: hsla(191, 33%, 10%, 0.5); + --background025: hsla(191, 33%, 10%, 0.75); + --background05: hsla(191, 32%, 10%, 1); + --background075: hsla(191, 32%, 15%, 1); + --color0: hsla(112, 22%, 59%, 1); + --color025: hsla(112, 22%, 100%, 1); + --color05: hsla(0, 0%, 100%, 0.75); + --color075: hsla(0, 0%, 100%, 0.5); + --background: hsla(191, 32%, 15%, 1); + --backgroundHover: hsla(191, 32%, 19%, 1); + --backgroundPress: hsla(191, 32%, 24%, 1); + --backgroundFocus: hsla(191, 32%, 28%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 46%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 46%, 1); + --placeholderColor: hsla(191, 32%, 46%, 1); + --borderColor: hsla(191, 32%, 28%, 1); + --borderColorHover: hsla(191, 32%, 32%, 1); + --borderColorFocus: hsla(191, 32%, 37%, 1); + --borderColorPress: hsla(191, 32%, 32%, 1); + --color1: hsla(191, 32%, 15%, 1); + --color2: hsla(191, 32%, 19%, 1); + --color3: hsla(191, 32%, 24%, 1); + --color4: hsla(191, 32%, 28%, 1); + --color5: hsla(191, 32%, 32%, 1); + --color6: hsla(191, 32%, 37%, 1); + --color7: hsla(191, 32%, 41%, 1); + --color8: hsla(191, 32%, 46%, 1); + --color9: hsla(191, 32%, 50%, 1); + --color10: hsla(112, 22%, 59%, 1); + --color11: hsla(112, 22%, 100%, 1); + --color12: hsla(0, 0%, 100%, 0.75); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_dim, + .t_light .t_dark .t_dim { + --background0: hsla(191, 33%, 10%, 0.5); + --background025: hsla(191, 33%, 10%, 0.75); + --background05: hsla(191, 32%, 10%, 1); + --background075: hsla(191, 32%, 15%, 1); + --color0: hsla(112, 22%, 59%, 1); + --color025: hsla(112, 22%, 100%, 1); + --color05: hsla(0, 0%, 100%, 0.75); + --color075: hsla(0, 0%, 100%, 0.5); + --background: hsla(191, 32%, 15%, 1); + --backgroundHover: hsla(191, 32%, 19%, 1); + --backgroundPress: hsla(191, 32%, 24%, 1); + --backgroundFocus: hsla(191, 32%, 28%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 46%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 46%, 1); + --placeholderColor: hsla(191, 32%, 46%, 1); + --borderColor: hsla(191, 32%, 28%, 1); + --borderColorHover: hsla(191, 32%, 32%, 1); + --borderColorFocus: hsla(191, 32%, 37%, 1); + --borderColorPress: hsla(191, 32%, 32%, 1); + --color1: hsla(191, 32%, 15%, 1); + --color2: hsla(191, 32%, 19%, 1); + --color3: hsla(191, 32%, 24%, 1); + --color4: hsla(191, 32%, 28%, 1); + --color5: hsla(191, 32%, 32%, 1); + --color6: hsla(191, 32%, 37%, 1); + --color7: hsla(191, 32%, 41%, 1); + --color8: hsla(191, 32%, 46%, 1); + --color9: hsla(191, 32%, 50%, 1); + --color10: hsla(112, 22%, 59%, 1); + --color11: hsla(112, 22%, 100%, 1); + --color12: hsla(0, 0%, 100%, 0.75); + } +} + +:root.t_dark .t_disabled, +:root.t_dark .t_light .t_dark .t_disabled, +:root.t_light .t_dark .t_disabled, +:root.t_light .t_dark .t_light .t_dark .t_disabled { + --background0: hsla(191, 33%, 10%, 0.75); + --background025: hsla(191, 32%, 10%, 1); + --background05: hsla(191, 32%, 15%, 1); + --background075: hsla(191, 32%, 19%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(112, 22%, 59%, 1); + --color05: hsla(112, 22%, 100%, 1); + --color075: hsla(0, 0%, 100%, 0.75); + --background: hsla(191, 32%, 19%, 1); + --backgroundHover: hsla(191, 32%, 24%, 1); + --backgroundPress: hsla(191, 32%, 28%, 1); + --backgroundFocus: hsla(191, 32%, 32%, 1); + --color: hsla(191, 32%, 46%, 1); + --colorHover: hsla(191, 32%, 41%, 1); + --colorPress: hsla(191, 32%, 46%, 1); + --colorFocus: hsla(191, 32%, 41%, 1); + --placeholderColor: hsla(191, 32%, 41%, 1); + --borderColor: hsla(191, 32%, 32%, 1); + --borderColorHover: hsla(191, 32%, 37%, 1); + --borderColorFocus: hsla(191, 32%, 41%, 1); + --borderColorPress: hsla(191, 32%, 37%, 1); + --color1: hsla(191, 32%, 19%, 1); + --color2: hsla(191, 32%, 24%, 1); + --color3: hsla(191, 32%, 28%, 1); + --color4: hsla(191, 32%, 32%, 1); + --color5: hsla(191, 32%, 37%, 1); + --color6: hsla(191, 32%, 41%, 1); + --color7: hsla(191, 32%, 46%, 1); + --color8: hsla(191, 32%, 50%, 1); + --color9: hsla(112, 22%, 59%, 1); + --color10: hsla(112, 22%, 100%, 1); + --color11: hsla(0, 0%, 100%, 0.75); + --color12: hsla(0, 0%, 100%, 0.5); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_disabled, + .t_light .t_dark .t_disabled { + --background0: hsla(191, 33%, 10%, 0.75); + --background025: hsla(191, 32%, 10%, 1); + --background05: hsla(191, 32%, 15%, 1); + --background075: hsla(191, 32%, 19%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(112, 22%, 59%, 1); + --color05: hsla(112, 22%, 100%, 1); + --color075: hsla(0, 0%, 100%, 0.75); + --background: hsla(191, 32%, 19%, 1); + --backgroundHover: hsla(191, 32%, 24%, 1); + --backgroundPress: hsla(191, 32%, 28%, 1); + --backgroundFocus: hsla(191, 32%, 32%, 1); + --color: hsla(191, 32%, 46%, 1); + --colorHover: hsla(191, 32%, 41%, 1); + --colorPress: hsla(191, 32%, 46%, 1); + --colorFocus: hsla(191, 32%, 41%, 1); + --placeholderColor: hsla(191, 32%, 41%, 1); + --borderColor: hsla(191, 32%, 32%, 1); + --borderColorHover: hsla(191, 32%, 37%, 1); + --borderColorFocus: hsla(191, 32%, 41%, 1); + --borderColorPress: hsla(191, 32%, 37%, 1); + --color1: hsla(191, 32%, 19%, 1); + --color2: hsla(191, 32%, 24%, 1); + --color3: hsla(191, 32%, 28%, 1); + --color4: hsla(191, 32%, 32%, 1); + --color5: hsla(191, 32%, 37%, 1); + --color6: hsla(191, 32%, 41%, 1); + --color7: hsla(191, 32%, 46%, 1); + --color8: hsla(191, 32%, 50%, 1); + --color9: hsla(112, 22%, 59%, 1); + --color10: hsla(112, 22%, 100%, 1); + --color11: hsla(0, 0%, 100%, 0.75); + --color12: hsla(0, 0%, 100%, 0.5); + } +} + +:root.t_dark .t_error, +:root.t_dark .t_light .t_dark .t_error, +:root.t_dark .t_light .t_dark .t_red, +:root.t_dark .t_red, +:root.t_light .t_dark .t_error, +:root.t_light .t_dark .t_light .t_dark .t_error, +:root.t_light .t_dark .t_light .t_dark .t_red, +:root.t_light .t_dark .t_red { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(0, 69%, 10%, 0.25); + --background025: hsla(0, 69%, 10%, 0.5); + --background05: hsla(0, 69%, 10%, 0.75); + --background075: hsla(0, 70%, 10%, 1); + --color0: hsla(0, 70%, 95%, 1); + --color025: hsla(0, 69%, 95%, 0.75); + --color05: hsla(0, 69%, 95%, 0.5); + --color075: hsla(0, 69%, 95%, 0.25); + --background: hsla(0, 70%, 10%, 1); + --backgroundHover: hsla(0, 70%, 14%, 1); + --backgroundPress: hsla(0, 70%, 19%, 1); + --backgroundFocus: hsla(0, 70%, 23%, 1); + --color: hsla(0, 70%, 93%, 1); + --colorHover: hsla(0, 70%, 50%, 1); + --colorPress: hsla(0, 70%, 93%, 1); + --colorFocus: hsla(0, 70%, 50%, 1); + --placeholderColor: hsla(0, 70%, 50%, 1); + --borderColor: hsla(0, 70%, 23%, 1); + --borderColorHover: hsla(0, 70%, 28%, 1); + --borderColorFocus: hsla(0, 70%, 32%, 1); + --borderColorPress: hsla(0, 70%, 28%, 1); + --color1: hsla(0, 70%, 10%, 1); + --color2: hsla(0, 70%, 14%, 1); + --color3: hsla(0, 70%, 19%, 1); + --color4: hsla(0, 70%, 23%, 1); + --color5: hsla(0, 70%, 28%, 1); + --color6: hsla(0, 70%, 32%, 1); + --color7: hsla(0, 70%, 37%, 1); + --color8: hsla(0, 70%, 41%, 1); + --color9: hsla(0, 70%, 46%, 1); + --color10: hsla(0, 70%, 50%, 1); + --color11: hsla(0, 70%, 93%, 1); + --color12: hsla(0, 70%, 95%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_error, + .t_light .t_dark .t_error, + .t_light .t_dark .t_red, + .t_red { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(0, 69%, 10%, 0.25); + --background025: hsla(0, 69%, 10%, 0.5); + --background05: hsla(0, 69%, 10%, 0.75); + --background075: hsla(0, 70%, 10%, 1); + --color0: hsla(0, 70%, 95%, 1); + --color025: hsla(0, 69%, 95%, 0.75); + --color05: hsla(0, 69%, 95%, 0.5); + --color075: hsla(0, 69%, 95%, 0.25); + --background: hsla(0, 70%, 10%, 1); + --backgroundHover: hsla(0, 70%, 14%, 1); + --backgroundPress: hsla(0, 70%, 19%, 1); + --backgroundFocus: hsla(0, 70%, 23%, 1); + --color: hsla(0, 70%, 93%, 1); + --colorHover: hsla(0, 70%, 50%, 1); + --colorPress: hsla(0, 70%, 93%, 1); + --colorFocus: hsla(0, 70%, 50%, 1); + --placeholderColor: hsla(0, 70%, 50%, 1); + --borderColor: hsla(0, 70%, 23%, 1); + --borderColorHover: hsla(0, 70%, 28%, 1); + --borderColorFocus: hsla(0, 70%, 32%, 1); + --borderColorPress: hsla(0, 70%, 28%, 1); + --color1: hsla(0, 70%, 10%, 1); + --color2: hsla(0, 70%, 14%, 1); + --color3: hsla(0, 70%, 19%, 1); + --color4: hsla(0, 70%, 23%, 1); + --color5: hsla(0, 70%, 28%, 1); + --color6: hsla(0, 70%, 32%, 1); + --color7: hsla(0, 70%, 37%, 1); + --color8: hsla(0, 70%, 41%, 1); + --color9: hsla(0, 70%, 46%, 1); + --color10: hsla(0, 70%, 50%, 1); + --color11: hsla(0, 70%, 93%, 1); + --color12: hsla(0, 70%, 95%, 1); + } +} + +:root.t_dark .t_error_Button, +:root.t_dark .t_error_SliderTrack, +:root.t_dark .t_error_Switch, +:root.t_dark .t_error_TooltipContent, +:root.t_dark .t_light .t_dark .t_error_Button, +:root.t_dark .t_light .t_dark .t_error_SliderTrack, +:root.t_dark .t_light .t_dark .t_error_Switch, +:root.t_dark .t_light .t_dark .t_error_TooltipContent, +:root.t_dark .t_light .t_dark .t_red_Button, +:root.t_dark .t_light .t_dark .t_red_SliderTrack, +:root.t_dark .t_light .t_dark .t_red_Switch, +:root.t_dark .t_light .t_dark .t_red_TooltipContent, +:root.t_dark .t_red_Button, +:root.t_dark .t_red_SliderTrack, +:root.t_dark .t_red_Switch, +:root.t_dark .t_red_TooltipContent, +:root.t_light .t_dark .t_error_Button, +:root.t_light .t_dark .t_error_SliderTrack, +:root.t_light .t_dark .t_error_Switch, +:root.t_light .t_dark .t_error_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_error_Button, +:root.t_light .t_dark .t_light .t_dark .t_error_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_error_Switch, +:root.t_light .t_dark .t_light .t_dark .t_error_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_red_Button, +:root.t_light .t_dark .t_light .t_dark .t_red_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_red_Switch, +:root.t_light .t_dark .t_light .t_dark .t_red_TooltipContent, +:root.t_light .t_dark .t_red_Button, +:root.t_light .t_dark .t_red_SliderTrack, +:root.t_light .t_dark .t_red_Switch, +:root.t_light .t_dark .t_red_TooltipContent { + --background0: hsla(0, 69%, 10%, 0.75); + --background025: hsla(0, 70%, 10%, 1); + --background05: hsla(0, 70%, 14%, 1); + --background075: hsla(0, 70%, 19%, 1); + --color0: hsla(0, 70%, 50%, 1); + --color025: hsla(0, 70%, 93%, 1); + --color05: hsla(0, 70%, 95%, 1); + --color075: hsla(0, 69%, 95%, 0.75); + --background: hsla(0, 70%, 19%, 1); + --backgroundHover: hsla(0, 70%, 23%, 1); + --backgroundPress: hsla(0, 70%, 28%, 1); + --backgroundFocus: hsla(0, 70%, 32%, 1); + --color: hsla(0, 70%, 93%, 1); + --colorHover: hsla(0, 70%, 50%, 1); + --colorPress: hsla(0, 70%, 93%, 1); + --colorFocus: hsla(0, 70%, 50%, 1); + --placeholderColor: hsla(0, 70%, 41%, 1); + --borderColor: hsla(0, 70%, 32%, 1); + --borderColorHover: hsla(0, 70%, 37%, 1); + --borderColorFocus: hsla(0, 70%, 41%, 1); + --borderColorPress: hsla(0, 70%, 37%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_error_Button, + .t_error_SliderTrack, + .t_error_Switch, + .t_error_TooltipContent, + .t_light .t_dark .t_error_Button, + .t_light .t_dark .t_error_SliderTrack, + .t_light .t_dark .t_error_Switch, + .t_light .t_dark .t_error_TooltipContent, + .t_light .t_dark .t_red_Button, + .t_light .t_dark .t_red_SliderTrack, + .t_light .t_dark .t_red_Switch, + .t_light .t_dark .t_red_TooltipContent, + .t_red_Button, + .t_red_SliderTrack, + .t_red_Switch, + .t_red_TooltipContent { + --background0: hsla(0, 69%, 10%, 0.75); + --background025: hsla(0, 70%, 10%, 1); + --background05: hsla(0, 70%, 14%, 1); + --background075: hsla(0, 70%, 19%, 1); + --color0: hsla(0, 70%, 50%, 1); + --color025: hsla(0, 70%, 93%, 1); + --color05: hsla(0, 70%, 95%, 1); + --color075: hsla(0, 69%, 95%, 0.75); + --background: hsla(0, 70%, 19%, 1); + --backgroundHover: hsla(0, 70%, 23%, 1); + --backgroundPress: hsla(0, 70%, 28%, 1); + --backgroundFocus: hsla(0, 70%, 32%, 1); + --color: hsla(0, 70%, 93%, 1); + --colorHover: hsla(0, 70%, 50%, 1); + --colorPress: hsla(0, 70%, 93%, 1); + --colorFocus: hsla(0, 70%, 50%, 1); + --placeholderColor: hsla(0, 70%, 41%, 1); + --borderColor: hsla(0, 70%, 32%, 1); + --borderColorHover: hsla(0, 70%, 37%, 1); + --borderColorFocus: hsla(0, 70%, 41%, 1); + --borderColorPress: hsla(0, 70%, 37%, 1); + } +} + +:root.t_dark .t_error_Card, +:root.t_dark .t_error_DrawerFrame, +:root.t_dark .t_error_Progress, +:root.t_dark .t_error_TooltipArrow, +:root.t_dark .t_light .t_dark .t_error_Card, +:root.t_dark .t_light .t_dark .t_error_DrawerFrame, +:root.t_dark .t_light .t_dark .t_error_Progress, +:root.t_dark .t_light .t_dark .t_error_TooltipArrow, +:root.t_dark .t_light .t_dark .t_red_Card, +:root.t_dark .t_light .t_dark .t_red_DrawerFrame, +:root.t_dark .t_light .t_dark .t_red_Progress, +:root.t_dark .t_light .t_dark .t_red_TooltipArrow, +:root.t_dark .t_red_Card, +:root.t_dark .t_red_DrawerFrame, +:root.t_dark .t_red_Progress, +:root.t_dark .t_red_TooltipArrow, +:root.t_light .t_dark .t_error_Card, +:root.t_light .t_dark .t_error_DrawerFrame, +:root.t_light .t_dark .t_error_Progress, +:root.t_light .t_dark .t_error_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_error_Card, +:root.t_light .t_dark .t_light .t_dark .t_error_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_error_Progress, +:root.t_light .t_dark .t_light .t_dark .t_error_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_red_Card, +:root.t_light .t_dark .t_light .t_dark .t_red_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_red_Progress, +:root.t_light .t_dark .t_light .t_dark .t_red_TooltipArrow, +:root.t_light .t_dark .t_red_Card, +:root.t_light .t_dark .t_red_DrawerFrame, +:root.t_light .t_dark .t_red_Progress, +:root.t_light .t_dark .t_red_TooltipArrow { + --background0: hsla(0, 69%, 10%, 0.5); + --background025: hsla(0, 69%, 10%, 0.75); + --background05: hsla(0, 70%, 10%, 1); + --background075: hsla(0, 70%, 14%, 1); + --color0: hsla(0, 70%, 93%, 1); + --color025: hsla(0, 70%, 95%, 1); + --color05: hsla(0, 69%, 95%, 0.75); + --color075: hsla(0, 69%, 95%, 0.5); + --background: hsla(0, 70%, 14%, 1); + --backgroundHover: hsla(0, 70%, 19%, 1); + --backgroundPress: hsla(0, 70%, 23%, 1); + --backgroundFocus: hsla(0, 70%, 28%, 1); + --color: hsla(0, 70%, 93%, 1); + --colorHover: hsla(0, 70%, 50%, 1); + --colorPress: hsla(0, 70%, 93%, 1); + --colorFocus: hsla(0, 70%, 50%, 1); + --placeholderColor: hsla(0, 70%, 46%, 1); + --borderColor: hsla(0, 70%, 28%, 1); + --borderColorHover: hsla(0, 70%, 32%, 1); + --borderColorFocus: hsla(0, 70%, 37%, 1); + --borderColorPress: hsla(0, 70%, 32%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_error_Card, + .t_error_DrawerFrame, + .t_error_Progress, + .t_error_TooltipArrow, + .t_light .t_dark .t_error_Card, + .t_light .t_dark .t_error_DrawerFrame, + .t_light .t_dark .t_error_Progress, + .t_light .t_dark .t_error_TooltipArrow, + .t_light .t_dark .t_red_Card, + .t_light .t_dark .t_red_DrawerFrame, + .t_light .t_dark .t_red_Progress, + .t_light .t_dark .t_red_TooltipArrow, + .t_red_Card, + .t_red_DrawerFrame, + .t_red_Progress, + .t_red_TooltipArrow { + --background0: hsla(0, 69%, 10%, 0.5); + --background025: hsla(0, 69%, 10%, 0.75); + --background05: hsla(0, 70%, 10%, 1); + --background075: hsla(0, 70%, 14%, 1); + --color0: hsla(0, 70%, 93%, 1); + --color025: hsla(0, 70%, 95%, 1); + --color05: hsla(0, 69%, 95%, 0.75); + --color075: hsla(0, 69%, 95%, 0.5); + --background: hsla(0, 70%, 14%, 1); + --backgroundHover: hsla(0, 70%, 19%, 1); + --backgroundPress: hsla(0, 70%, 23%, 1); + --backgroundFocus: hsla(0, 70%, 28%, 1); + --color: hsla(0, 70%, 93%, 1); + --colorHover: hsla(0, 70%, 50%, 1); + --colorPress: hsla(0, 70%, 93%, 1); + --colorFocus: hsla(0, 70%, 50%, 1); + --placeholderColor: hsla(0, 70%, 46%, 1); + --borderColor: hsla(0, 70%, 28%, 1); + --borderColorHover: hsla(0, 70%, 32%, 1); + --borderColorFocus: hsla(0, 70%, 37%, 1); + --borderColorPress: hsla(0, 70%, 32%, 1); + } +} + +:root.t_dark .t_error_Checkbox, +:root.t_dark .t_error_Input, +:root.t_dark .t_error_RadioGroupItem, +:root.t_dark .t_error_TextArea, +:root.t_dark .t_light .t_dark .t_error_Checkbox, +:root.t_dark .t_light .t_dark .t_error_Input, +:root.t_dark .t_light .t_dark .t_error_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_error_TextArea, +:root.t_dark .t_light .t_dark .t_red_Checkbox, +:root.t_dark .t_light .t_dark .t_red_Input, +:root.t_dark .t_light .t_dark .t_red_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_red_TextArea, +:root.t_dark .t_red_Checkbox, +:root.t_dark .t_red_Input, +:root.t_dark .t_red_RadioGroupItem, +:root.t_dark .t_red_TextArea, +:root.t_light .t_dark .t_error_Checkbox, +:root.t_light .t_dark .t_error_Input, +:root.t_light .t_dark .t_error_RadioGroupItem, +:root.t_light .t_dark .t_error_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_error_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_error_Input, +:root.t_light .t_dark .t_light .t_dark .t_error_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_error_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_red_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_red_Input, +:root.t_light .t_dark .t_light .t_dark .t_red_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_red_TextArea, +:root.t_light .t_dark .t_red_Checkbox, +:root.t_light .t_dark .t_red_Input, +:root.t_light .t_dark .t_red_RadioGroupItem, +:root.t_light .t_dark .t_red_TextArea { + --accentBackground: hsla(0, 69%, 10%, 0); + --accentColor: hsla(0, 69%, 10%, 0); + --background0: hsla(0, 69%, 10%, 0.25); + --background025: hsla(0, 69%, 10%, 0.5); + --background05: hsla(0, 69%, 10%, 0.75); + --background075: hsla(0, 70%, 10%, 1); + --color0: hsla(0, 70%, 95%, 1); + --color025: hsla(0, 69%, 95%, 0.75); + --color05: hsla(0, 69%, 95%, 0.5); + --color075: hsla(0, 69%, 95%, 0.25); + --background: hsla(0, 70%, 10%, 1); + --backgroundHover: hsla(0, 70%, 14%, 1); + --backgroundPress: hsla(0, 70%, 19%, 1); + --backgroundFocus: hsla(0, 70%, 23%, 1); + --color: hsla(0, 70%, 93%, 1); + --colorHover: hsla(0, 70%, 50%, 1); + --colorPress: hsla(0, 70%, 93%, 1); + --colorFocus: hsla(0, 70%, 50%, 1); + --placeholderColor: hsla(0, 70%, 50%, 1); + --borderColor: hsla(0, 70%, 32%, 1); + --borderColorHover: hsla(0, 70%, 37%, 1); + --borderColorFocus: hsla(0, 70%, 41%, 1); + --borderColorPress: hsla(0, 70%, 37%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_error_Checkbox, + .t_error_Input, + .t_error_RadioGroupItem, + .t_error_TextArea, + .t_light .t_dark .t_error_Checkbox, + .t_light .t_dark .t_error_Input, + .t_light .t_dark .t_error_RadioGroupItem, + .t_light .t_dark .t_error_TextArea, + .t_light .t_dark .t_red_Checkbox, + .t_light .t_dark .t_red_Input, + .t_light .t_dark .t_red_RadioGroupItem, + .t_light .t_dark .t_red_TextArea, + .t_red_Checkbox, + .t_red_Input, + .t_red_RadioGroupItem, + .t_red_TextArea { + --accentBackground: hsla(0, 69%, 10%, 0); + --accentColor: hsla(0, 69%, 10%, 0); + --background0: hsla(0, 69%, 10%, 0.25); + --background025: hsla(0, 69%, 10%, 0.5); + --background05: hsla(0, 69%, 10%, 0.75); + --background075: hsla(0, 70%, 10%, 1); + --color0: hsla(0, 70%, 95%, 1); + --color025: hsla(0, 69%, 95%, 0.75); + --color05: hsla(0, 69%, 95%, 0.5); + --color075: hsla(0, 69%, 95%, 0.25); + --background: hsla(0, 70%, 10%, 1); + --backgroundHover: hsla(0, 70%, 14%, 1); + --backgroundPress: hsla(0, 70%, 19%, 1); + --backgroundFocus: hsla(0, 70%, 23%, 1); + --color: hsla(0, 70%, 93%, 1); + --colorHover: hsla(0, 70%, 50%, 1); + --colorPress: hsla(0, 70%, 93%, 1); + --colorFocus: hsla(0, 70%, 50%, 1); + --placeholderColor: hsla(0, 70%, 50%, 1); + --borderColor: hsla(0, 70%, 32%, 1); + --borderColorHover: hsla(0, 70%, 37%, 1); + --borderColorFocus: hsla(0, 70%, 41%, 1); + --borderColorPress: hsla(0, 70%, 37%, 1); + } +} + +:root.t_dark .t_error_ProgressIndicator, +:root.t_dark .t_error_SliderThumb, +:root.t_dark .t_error_SwitchThumb, +:root.t_dark .t_error_Tooltip, +:root.t_dark .t_light .t_dark .t_error_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_error_SliderThumb, +:root.t_dark .t_light .t_dark .t_error_SwitchThumb, +:root.t_dark .t_light .t_dark .t_error_Tooltip, +:root.t_dark .t_light .t_dark .t_red_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_red_SliderThumb, +:root.t_dark .t_light .t_dark .t_red_SwitchThumb, +:root.t_dark .t_light .t_dark .t_red_Tooltip, +:root.t_dark .t_red_ProgressIndicator, +:root.t_dark .t_red_SliderThumb, +:root.t_dark .t_red_SwitchThumb, +:root.t_dark .t_red_Tooltip, +:root.t_light .t_dark .t_error_ProgressIndicator, +:root.t_light .t_dark .t_error_SliderThumb, +:root.t_light .t_dark .t_error_SwitchThumb, +:root.t_light .t_dark .t_error_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_error_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_error_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_error_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_error_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_red_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_red_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_red_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_red_Tooltip, +:root.t_light .t_dark .t_red_ProgressIndicator, +:root.t_light .t_dark .t_red_SliderThumb, +:root.t_light .t_dark .t_red_SwitchThumb, +:root.t_light .t_dark .t_red_Tooltip { + --accentBackground: hsla(0, 69%, 10%, 0); + --accentColor: hsla(0, 69%, 10%, 0); + --background0: hsla(0, 69%, 95%, 0.25); + --background025: hsla(0, 69%, 95%, 0.5); + --background05: hsla(0, 69%, 95%, 0.75); + --background075: hsla(0, 70%, 95%, 1); + --color0: hsla(0, 70%, 10%, 1); + --color025: hsla(0, 69%, 10%, 0.75); + --color05: hsla(0, 69%, 10%, 0.5); + --color075: hsla(0, 69%, 10%, 0.25); + --background: hsla(0, 70%, 95%, 1); + --backgroundHover: hsla(0, 70%, 93%, 1); + --backgroundPress: hsla(0, 70%, 50%, 1); + --backgroundFocus: hsla(0, 70%, 46%, 1); + --color: hsla(0, 70%, 14%, 1); + --colorHover: hsla(0, 70%, 19%, 1); + --colorPress: hsla(0, 70%, 14%, 1); + --colorFocus: hsla(0, 70%, 19%, 1); + --placeholderColor: hsla(0, 70%, 19%, 1); + --borderColor: hsla(0, 70%, 46%, 1); + --borderColorHover: hsla(0, 70%, 41%, 1); + --borderColorFocus: hsla(0, 70%, 37%, 1); + --borderColorPress: hsla(0, 70%, 41%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_error_ProgressIndicator, + .t_error_SliderThumb, + .t_error_SwitchThumb, + .t_error_Tooltip, + .t_light .t_dark .t_error_ProgressIndicator, + .t_light .t_dark .t_error_SliderThumb, + .t_light .t_dark .t_error_SwitchThumb, + .t_light .t_dark .t_error_Tooltip, + .t_light .t_dark .t_red_ProgressIndicator, + .t_light .t_dark .t_red_SliderThumb, + .t_light .t_dark .t_red_SwitchThumb, + .t_light .t_dark .t_red_Tooltip, + .t_red_ProgressIndicator, + .t_red_SliderThumb, + .t_red_SwitchThumb, + .t_red_Tooltip { + --accentBackground: hsla(0, 69%, 10%, 0); + --accentColor: hsla(0, 69%, 10%, 0); + --background0: hsla(0, 69%, 95%, 0.25); + --background025: hsla(0, 69%, 95%, 0.5); + --background05: hsla(0, 69%, 95%, 0.75); + --background075: hsla(0, 70%, 95%, 1); + --color0: hsla(0, 70%, 10%, 1); + --color025: hsla(0, 69%, 10%, 0.75); + --color05: hsla(0, 69%, 10%, 0.5); + --color075: hsla(0, 69%, 10%, 0.25); + --background: hsla(0, 70%, 95%, 1); + --backgroundHover: hsla(0, 70%, 93%, 1); + --backgroundPress: hsla(0, 70%, 50%, 1); + --backgroundFocus: hsla(0, 70%, 46%, 1); + --color: hsla(0, 70%, 14%, 1); + --colorHover: hsla(0, 70%, 19%, 1); + --colorPress: hsla(0, 70%, 14%, 1); + --colorFocus: hsla(0, 70%, 19%, 1); + --placeholderColor: hsla(0, 70%, 19%, 1); + --borderColor: hsla(0, 70%, 46%, 1); + --borderColorHover: hsla(0, 70%, 41%, 1); + --borderColorFocus: hsla(0, 70%, 37%, 1); + --borderColorPress: hsla(0, 70%, 41%, 1); + } +} + +:root.t_dark .t_error_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_error_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_red_SliderTrackActive, +:root.t_dark .t_red_SliderTrackActive, +:root.t_light .t_dark .t_error_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_error_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_red_SliderTrackActive, +:root.t_light .t_dark .t_red_SliderTrackActive { + --accentBackground: hsla(0, 69%, 10%, 0); + --accentColor: hsla(0, 69%, 10%, 0); + --background0: hsla(0, 69%, 95%, 0.75); + --background025: hsla(0, 70%, 95%, 1); + --background05: hsla(0, 70%, 93%, 1); + --background075: hsla(0, 70%, 50%, 1); + --color0: hsla(0, 70%, 19%, 1); + --color025: hsla(0, 70%, 14%, 1); + --color05: hsla(0, 70%, 10%, 1); + --color075: hsla(0, 69%, 10%, 0.75); + --background: hsla(0, 70%, 50%, 1); + --backgroundHover: hsla(0, 70%, 46%, 1); + --backgroundPress: hsla(0, 70%, 41%, 1); + --backgroundFocus: hsla(0, 70%, 37%, 1); + --color: hsla(0, 70%, 14%, 1); + --colorHover: hsla(0, 70%, 19%, 1); + --colorPress: hsla(0, 70%, 14%, 1); + --colorFocus: hsla(0, 70%, 19%, 1); + --placeholderColor: hsla(0, 70%, 28%, 1); + --borderColor: hsla(0, 70%, 37%, 1); + --borderColorHover: hsla(0, 70%, 32%, 1); + --borderColorFocus: hsla(0, 70%, 28%, 1); + --borderColorPress: hsla(0, 70%, 32%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_error_SliderTrackActive, + .t_light .t_dark .t_error_SliderTrackActive, + .t_light .t_dark .t_red_SliderTrackActive, + .t_red_SliderTrackActive { + --accentBackground: hsla(0, 69%, 10%, 0); + --accentColor: hsla(0, 69%, 10%, 0); + --background0: hsla(0, 69%, 95%, 0.75); + --background025: hsla(0, 70%, 95%, 1); + --background05: hsla(0, 70%, 93%, 1); + --background075: hsla(0, 70%, 50%, 1); + --color0: hsla(0, 70%, 19%, 1); + --color025: hsla(0, 70%, 14%, 1); + --color05: hsla(0, 70%, 10%, 1); + --color075: hsla(0, 69%, 10%, 0.75); + --background: hsla(0, 70%, 50%, 1); + --backgroundHover: hsla(0, 70%, 46%, 1); + --backgroundPress: hsla(0, 70%, 41%, 1); + --backgroundFocus: hsla(0, 70%, 37%, 1); + --color: hsla(0, 70%, 14%, 1); + --colorHover: hsla(0, 70%, 19%, 1); + --colorPress: hsla(0, 70%, 14%, 1); + --colorFocus: hsla(0, 70%, 19%, 1); + --placeholderColor: hsla(0, 70%, 28%, 1); + --borderColor: hsla(0, 70%, 37%, 1); + --borderColorHover: hsla(0, 70%, 32%, 1); + --borderColorFocus: hsla(0, 70%, 28%, 1); + --borderColorPress: hsla(0, 70%, 32%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_success, +:root.t_dark .t_success, +:root.t_light .t_dark .t_light .t_dark .t_success, +:root.t_light .t_dark .t_success { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(153, 69%, 10%, 0.25); + --background025: hsla(153, 69%, 10%, 0.5); + --background05: hsla(153, 69%, 10%, 0.75); + --background075: hsla(153, 70%, 10%, 1); + --color0: hsla(153, 70%, 95%, 1); + --color025: hsla(153, 69%, 95%, 0.75); + --color05: hsla(153, 69%, 95%, 0.5); + --color075: hsla(153, 69%, 95%, 0.25); + --background: hsla(153, 70%, 10%, 1); + --backgroundHover: hsla(153, 70%, 14%, 1); + --backgroundPress: hsla(153, 70%, 19%, 1); + --backgroundFocus: hsla(153, 70%, 23%, 1); + --color: hsla(153, 70%, 93%, 1); + --colorHover: hsla(153, 70%, 50%, 1); + --colorPress: hsla(153, 70%, 93%, 1); + --colorFocus: hsla(153, 70%, 50%, 1); + --placeholderColor: hsla(153, 70%, 50%, 1); + --borderColor: hsla(153, 70%, 23%, 1); + --borderColorHover: hsla(153, 70%, 28%, 1); + --borderColorFocus: hsla(153, 70%, 32%, 1); + --borderColorPress: hsla(153, 70%, 28%, 1); + --color1: hsla(153, 70%, 10%, 1); + --color2: hsla(153, 70%, 14%, 1); + --color3: hsla(153, 70%, 19%, 1); + --color4: hsla(153, 70%, 23%, 1); + --color5: hsla(153, 70%, 28%, 1); + --color6: hsla(153, 70%, 32%, 1); + --color7: hsla(153, 70%, 37%, 1); + --color8: hsla(153, 70%, 41%, 1); + --color9: hsla(153, 70%, 46%, 1); + --color10: hsla(153, 70%, 50%, 1); + --color11: hsla(153, 70%, 93%, 1); + --color12: hsla(153, 70%, 95%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_light .t_dark .t_success, + .t_success { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(153, 69%, 10%, 0.25); + --background025: hsla(153, 69%, 10%, 0.5); + --background05: hsla(153, 69%, 10%, 0.75); + --background075: hsla(153, 70%, 10%, 1); + --color0: hsla(153, 70%, 95%, 1); + --color025: hsla(153, 69%, 95%, 0.75); + --color05: hsla(153, 69%, 95%, 0.5); + --color075: hsla(153, 69%, 95%, 0.25); + --background: hsla(153, 70%, 10%, 1); + --backgroundHover: hsla(153, 70%, 14%, 1); + --backgroundPress: hsla(153, 70%, 19%, 1); + --backgroundFocus: hsla(153, 70%, 23%, 1); + --color: hsla(153, 70%, 93%, 1); + --colorHover: hsla(153, 70%, 50%, 1); + --colorPress: hsla(153, 70%, 93%, 1); + --colorFocus: hsla(153, 70%, 50%, 1); + --placeholderColor: hsla(153, 70%, 50%, 1); + --borderColor: hsla(153, 70%, 23%, 1); + --borderColorHover: hsla(153, 70%, 28%, 1); + --borderColorFocus: hsla(153, 70%, 32%, 1); + --borderColorPress: hsla(153, 70%, 28%, 1); + --color1: hsla(153, 70%, 10%, 1); + --color2: hsla(153, 70%, 14%, 1); + --color3: hsla(153, 70%, 19%, 1); + --color4: hsla(153, 70%, 23%, 1); + --color5: hsla(153, 70%, 28%, 1); + --color6: hsla(153, 70%, 32%, 1); + --color7: hsla(153, 70%, 37%, 1); + --color8: hsla(153, 70%, 41%, 1); + --color9: hsla(153, 70%, 46%, 1); + --color10: hsla(153, 70%, 50%, 1); + --color11: hsla(153, 70%, 93%, 1); + --color12: hsla(153, 70%, 95%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_success_Button, +:root.t_dark .t_light .t_dark .t_success_SliderTrack, +:root.t_dark .t_light .t_dark .t_success_Switch, +:root.t_dark .t_light .t_dark .t_success_TooltipContent, +:root.t_dark .t_success_Button, +:root.t_dark .t_success_SliderTrack, +:root.t_dark .t_success_Switch, +:root.t_dark .t_success_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_success_Button, +:root.t_light .t_dark .t_light .t_dark .t_success_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_success_Switch, +:root.t_light .t_dark .t_light .t_dark .t_success_TooltipContent, +:root.t_light .t_dark .t_success_Button, +:root.t_light .t_dark .t_success_SliderTrack, +:root.t_light .t_dark .t_success_Switch, +:root.t_light .t_dark .t_success_TooltipContent { + --background0: hsla(153, 69%, 10%, 0.75); + --background025: hsla(153, 70%, 10%, 1); + --background05: hsla(153, 70%, 14%, 1); + --background075: hsla(153, 70%, 19%, 1); + --color0: hsla(153, 70%, 50%, 1); + --color025: hsla(153, 70%, 93%, 1); + --color05: hsla(153, 70%, 95%, 1); + --color075: hsla(153, 69%, 95%, 0.75); + --background: hsla(153, 70%, 19%, 1); + --backgroundHover: hsla(153, 70%, 23%, 1); + --backgroundPress: hsla(153, 70%, 28%, 1); + --backgroundFocus: hsla(153, 70%, 32%, 1); + --color: hsla(153, 70%, 93%, 1); + --colorHover: hsla(153, 70%, 50%, 1); + --colorPress: hsla(153, 70%, 93%, 1); + --colorFocus: hsla(153, 70%, 50%, 1); + --placeholderColor: hsla(153, 70%, 41%, 1); + --borderColor: hsla(153, 70%, 32%, 1); + --borderColorHover: hsla(153, 70%, 37%, 1); + --borderColorFocus: hsla(153, 70%, 41%, 1); + --borderColorPress: hsla(153, 70%, 37%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_light .t_dark .t_success_Button, + .t_light .t_dark .t_success_SliderTrack, + .t_light .t_dark .t_success_Switch, + .t_light .t_dark .t_success_TooltipContent, + .t_success_Button, + .t_success_SliderTrack, + .t_success_Switch, + .t_success_TooltipContent { + --background0: hsla(153, 69%, 10%, 0.75); + --background025: hsla(153, 70%, 10%, 1); + --background05: hsla(153, 70%, 14%, 1); + --background075: hsla(153, 70%, 19%, 1); + --color0: hsla(153, 70%, 50%, 1); + --color025: hsla(153, 70%, 93%, 1); + --color05: hsla(153, 70%, 95%, 1); + --color075: hsla(153, 69%, 95%, 0.75); + --background: hsla(153, 70%, 19%, 1); + --backgroundHover: hsla(153, 70%, 23%, 1); + --backgroundPress: hsla(153, 70%, 28%, 1); + --backgroundFocus: hsla(153, 70%, 32%, 1); + --color: hsla(153, 70%, 93%, 1); + --colorHover: hsla(153, 70%, 50%, 1); + --colorPress: hsla(153, 70%, 93%, 1); + --colorFocus: hsla(153, 70%, 50%, 1); + --placeholderColor: hsla(153, 70%, 41%, 1); + --borderColor: hsla(153, 70%, 32%, 1); + --borderColorHover: hsla(153, 70%, 37%, 1); + --borderColorFocus: hsla(153, 70%, 41%, 1); + --borderColorPress: hsla(153, 70%, 37%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_success_Card, +:root.t_dark .t_light .t_dark .t_success_DrawerFrame, +:root.t_dark .t_light .t_dark .t_success_Progress, +:root.t_dark .t_light .t_dark .t_success_TooltipArrow, +:root.t_dark .t_success_Card, +:root.t_dark .t_success_DrawerFrame, +:root.t_dark .t_success_Progress, +:root.t_dark .t_success_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_success_Card, +:root.t_light .t_dark .t_light .t_dark .t_success_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_success_Progress, +:root.t_light .t_dark .t_light .t_dark .t_success_TooltipArrow, +:root.t_light .t_dark .t_success_Card, +:root.t_light .t_dark .t_success_DrawerFrame, +:root.t_light .t_dark .t_success_Progress, +:root.t_light .t_dark .t_success_TooltipArrow { + --background0: hsla(153, 69%, 10%, 0.5); + --background025: hsla(153, 69%, 10%, 0.75); + --background05: hsla(153, 70%, 10%, 1); + --background075: hsla(153, 70%, 14%, 1); + --color0: hsla(153, 70%, 93%, 1); + --color025: hsla(153, 70%, 95%, 1); + --color05: hsla(153, 69%, 95%, 0.75); + --color075: hsla(153, 69%, 95%, 0.5); + --background: hsla(153, 70%, 14%, 1); + --backgroundHover: hsla(153, 70%, 19%, 1); + --backgroundPress: hsla(153, 70%, 23%, 1); + --backgroundFocus: hsla(153, 70%, 28%, 1); + --color: hsla(153, 70%, 93%, 1); + --colorHover: hsla(153, 70%, 50%, 1); + --colorPress: hsla(153, 70%, 93%, 1); + --colorFocus: hsla(153, 70%, 50%, 1); + --placeholderColor: hsla(153, 70%, 46%, 1); + --borderColor: hsla(153, 70%, 28%, 1); + --borderColorHover: hsla(153, 70%, 32%, 1); + --borderColorFocus: hsla(153, 70%, 37%, 1); + --borderColorPress: hsla(153, 70%, 32%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_light .t_dark .t_success_Card, + .t_light .t_dark .t_success_DrawerFrame, + .t_light .t_dark .t_success_Progress, + .t_light .t_dark .t_success_TooltipArrow, + .t_success_Card, + .t_success_DrawerFrame, + .t_success_Progress, + .t_success_TooltipArrow { + --background0: hsla(153, 69%, 10%, 0.5); + --background025: hsla(153, 69%, 10%, 0.75); + --background05: hsla(153, 70%, 10%, 1); + --background075: hsla(153, 70%, 14%, 1); + --color0: hsla(153, 70%, 93%, 1); + --color025: hsla(153, 70%, 95%, 1); + --color05: hsla(153, 69%, 95%, 0.75); + --color075: hsla(153, 69%, 95%, 0.5); + --background: hsla(153, 70%, 14%, 1); + --backgroundHover: hsla(153, 70%, 19%, 1); + --backgroundPress: hsla(153, 70%, 23%, 1); + --backgroundFocus: hsla(153, 70%, 28%, 1); + --color: hsla(153, 70%, 93%, 1); + --colorHover: hsla(153, 70%, 50%, 1); + --colorPress: hsla(153, 70%, 93%, 1); + --colorFocus: hsla(153, 70%, 50%, 1); + --placeholderColor: hsla(153, 70%, 46%, 1); + --borderColor: hsla(153, 70%, 28%, 1); + --borderColorHover: hsla(153, 70%, 32%, 1); + --borderColorFocus: hsla(153, 70%, 37%, 1); + --borderColorPress: hsla(153, 70%, 32%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_success_Checkbox, +:root.t_dark .t_light .t_dark .t_success_Input, +:root.t_dark .t_light .t_dark .t_success_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_success_TextArea, +:root.t_dark .t_success_Checkbox, +:root.t_dark .t_success_Input, +:root.t_dark .t_success_RadioGroupItem, +:root.t_dark .t_success_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_success_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_success_Input, +:root.t_light .t_dark .t_light .t_dark .t_success_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_success_TextArea, +:root.t_light .t_dark .t_success_Checkbox, +:root.t_light .t_dark .t_success_Input, +:root.t_light .t_dark .t_success_RadioGroupItem, +:root.t_light .t_dark .t_success_TextArea { + --accentBackground: hsla(153, 69%, 10%, 0); + --accentColor: hsla(153, 69%, 10%, 0); + --background0: hsla(153, 69%, 10%, 0.25); + --background025: hsla(153, 69%, 10%, 0.5); + --background05: hsla(153, 69%, 10%, 0.75); + --background075: hsla(153, 70%, 10%, 1); + --color0: hsla(153, 70%, 95%, 1); + --color025: hsla(153, 69%, 95%, 0.75); + --color05: hsla(153, 69%, 95%, 0.5); + --color075: hsla(153, 69%, 95%, 0.25); + --background: hsla(153, 70%, 10%, 1); + --backgroundHover: hsla(153, 70%, 14%, 1); + --backgroundPress: hsla(153, 70%, 19%, 1); + --backgroundFocus: hsla(153, 70%, 23%, 1); + --color: hsla(153, 70%, 93%, 1); + --colorHover: hsla(153, 70%, 50%, 1); + --colorPress: hsla(153, 70%, 93%, 1); + --colorFocus: hsla(153, 70%, 50%, 1); + --placeholderColor: hsla(153, 70%, 50%, 1); + --borderColor: hsla(153, 70%, 32%, 1); + --borderColorHover: hsla(153, 70%, 37%, 1); + --borderColorFocus: hsla(153, 70%, 41%, 1); + --borderColorPress: hsla(153, 70%, 37%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_light .t_dark .t_success_Checkbox, + .t_light .t_dark .t_success_Input, + .t_light .t_dark .t_success_RadioGroupItem, + .t_light .t_dark .t_success_TextArea, + .t_success_Checkbox, + .t_success_Input, + .t_success_RadioGroupItem, + .t_success_TextArea { + --accentBackground: hsla(153, 69%, 10%, 0); + --accentColor: hsla(153, 69%, 10%, 0); + --background0: hsla(153, 69%, 10%, 0.25); + --background025: hsla(153, 69%, 10%, 0.5); + --background05: hsla(153, 69%, 10%, 0.75); + --background075: hsla(153, 70%, 10%, 1); + --color0: hsla(153, 70%, 95%, 1); + --color025: hsla(153, 69%, 95%, 0.75); + --color05: hsla(153, 69%, 95%, 0.5); + --color075: hsla(153, 69%, 95%, 0.25); + --background: hsla(153, 70%, 10%, 1); + --backgroundHover: hsla(153, 70%, 14%, 1); + --backgroundPress: hsla(153, 70%, 19%, 1); + --backgroundFocus: hsla(153, 70%, 23%, 1); + --color: hsla(153, 70%, 93%, 1); + --colorHover: hsla(153, 70%, 50%, 1); + --colorPress: hsla(153, 70%, 93%, 1); + --colorFocus: hsla(153, 70%, 50%, 1); + --placeholderColor: hsla(153, 70%, 50%, 1); + --borderColor: hsla(153, 70%, 32%, 1); + --borderColorHover: hsla(153, 70%, 37%, 1); + --borderColorFocus: hsla(153, 70%, 41%, 1); + --borderColorPress: hsla(153, 70%, 37%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_success_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_success_SliderThumb, +:root.t_dark .t_light .t_dark .t_success_SwitchThumb, +:root.t_dark .t_light .t_dark .t_success_Tooltip, +:root.t_dark .t_success_ProgressIndicator, +:root.t_dark .t_success_SliderThumb, +:root.t_dark .t_success_SwitchThumb, +:root.t_dark .t_success_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_success_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_success_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_success_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_success_Tooltip, +:root.t_light .t_dark .t_success_ProgressIndicator, +:root.t_light .t_dark .t_success_SliderThumb, +:root.t_light .t_dark .t_success_SwitchThumb, +:root.t_light .t_dark .t_success_Tooltip { + --accentBackground: hsla(153, 69%, 10%, 0); + --accentColor: hsla(153, 69%, 10%, 0); + --background0: hsla(153, 69%, 95%, 0.25); + --background025: hsla(153, 69%, 95%, 0.5); + --background05: hsla(153, 69%, 95%, 0.75); + --background075: hsla(153, 70%, 95%, 1); + --color0: hsla(153, 70%, 10%, 1); + --color025: hsla(153, 69%, 10%, 0.75); + --color05: hsla(153, 69%, 10%, 0.5); + --color075: hsla(153, 69%, 10%, 0.25); + --background: hsla(153, 70%, 95%, 1); + --backgroundHover: hsla(153, 70%, 93%, 1); + --backgroundPress: hsla(153, 70%, 50%, 1); + --backgroundFocus: hsla(153, 70%, 46%, 1); + --color: hsla(153, 70%, 14%, 1); + --colorHover: hsla(153, 70%, 19%, 1); + --colorPress: hsla(153, 70%, 14%, 1); + --colorFocus: hsla(153, 70%, 19%, 1); + --placeholderColor: hsla(153, 70%, 19%, 1); + --borderColor: hsla(153, 70%, 46%, 1); + --borderColorHover: hsla(153, 70%, 41%, 1); + --borderColorFocus: hsla(153, 70%, 37%, 1); + --borderColorPress: hsla(153, 70%, 41%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_light .t_dark .t_success_ProgressIndicator, + .t_light .t_dark .t_success_SliderThumb, + .t_light .t_dark .t_success_SwitchThumb, + .t_light .t_dark .t_success_Tooltip, + .t_success_ProgressIndicator, + .t_success_SliderThumb, + .t_success_SwitchThumb, + .t_success_Tooltip { + --accentBackground: hsla(153, 69%, 10%, 0); + --accentColor: hsla(153, 69%, 10%, 0); + --background0: hsla(153, 69%, 95%, 0.25); + --background025: hsla(153, 69%, 95%, 0.5); + --background05: hsla(153, 69%, 95%, 0.75); + --background075: hsla(153, 70%, 95%, 1); + --color0: hsla(153, 70%, 10%, 1); + --color025: hsla(153, 69%, 10%, 0.75); + --color05: hsla(153, 69%, 10%, 0.5); + --color075: hsla(153, 69%, 10%, 0.25); + --background: hsla(153, 70%, 95%, 1); + --backgroundHover: hsla(153, 70%, 93%, 1); + --backgroundPress: hsla(153, 70%, 50%, 1); + --backgroundFocus: hsla(153, 70%, 46%, 1); + --color: hsla(153, 70%, 14%, 1); + --colorHover: hsla(153, 70%, 19%, 1); + --colorPress: hsla(153, 70%, 14%, 1); + --colorFocus: hsla(153, 70%, 19%, 1); + --placeholderColor: hsla(153, 70%, 19%, 1); + --borderColor: hsla(153, 70%, 46%, 1); + --borderColorHover: hsla(153, 70%, 41%, 1); + --borderColorFocus: hsla(153, 70%, 37%, 1); + --borderColorPress: hsla(153, 70%, 41%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_success_SliderTrackActive, +:root.t_dark .t_success_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_success_SliderTrackActive, +:root.t_light .t_dark .t_success_SliderTrackActive { + --accentBackground: hsla(153, 69%, 10%, 0); + --accentColor: hsla(153, 69%, 10%, 0); + --background0: hsla(153, 69%, 95%, 0.75); + --background025: hsla(153, 70%, 95%, 1); + --background05: hsla(153, 70%, 93%, 1); + --background075: hsla(153, 70%, 50%, 1); + --color0: hsla(153, 70%, 19%, 1); + --color025: hsla(153, 70%, 14%, 1); + --color05: hsla(153, 70%, 10%, 1); + --color075: hsla(153, 69%, 10%, 0.75); + --background: hsla(153, 70%, 50%, 1); + --backgroundHover: hsla(153, 70%, 46%, 1); + --backgroundPress: hsla(153, 70%, 41%, 1); + --backgroundFocus: hsla(153, 70%, 37%, 1); + --color: hsla(153, 70%, 14%, 1); + --colorHover: hsla(153, 70%, 19%, 1); + --colorPress: hsla(153, 70%, 14%, 1); + --colorFocus: hsla(153, 70%, 19%, 1); + --placeholderColor: hsla(153, 70%, 28%, 1); + --borderColor: hsla(153, 70%, 37%, 1); + --borderColorHover: hsla(153, 70%, 32%, 1); + --borderColorFocus: hsla(153, 70%, 28%, 1); + --borderColorPress: hsla(153, 70%, 32%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_light .t_dark .t_success_SliderTrackActive, + .t_success_SliderTrackActive { + --accentBackground: hsla(153, 69%, 10%, 0); + --accentColor: hsla(153, 69%, 10%, 0); + --background0: hsla(153, 69%, 95%, 0.75); + --background025: hsla(153, 70%, 95%, 1); + --background05: hsla(153, 70%, 93%, 1); + --background075: hsla(153, 70%, 50%, 1); + --color0: hsla(153, 70%, 19%, 1); + --color025: hsla(153, 70%, 14%, 1); + --color05: hsla(153, 70%, 10%, 1); + --color075: hsla(153, 69%, 10%, 0.75); + --background: hsla(153, 70%, 50%, 1); + --backgroundHover: hsla(153, 70%, 46%, 1); + --backgroundPress: hsla(153, 70%, 41%, 1); + --backgroundFocus: hsla(153, 70%, 37%, 1); + --color: hsla(153, 70%, 14%, 1); + --colorHover: hsla(153, 70%, 19%, 1); + --colorPress: hsla(153, 70%, 14%, 1); + --colorFocus: hsla(153, 70%, 19%, 1); + --placeholderColor: hsla(153, 70%, 28%, 1); + --borderColor: hsla(153, 70%, 37%, 1); + --borderColorHover: hsla(153, 70%, 32%, 1); + --borderColorFocus: hsla(153, 70%, 28%, 1); + --borderColorPress: hsla(153, 70%, 32%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_warning, +:root.t_dark .t_warning, +:root.t_light .t_dark .t_light .t_dark .t_warning, +:root.t_light .t_dark .t_warning { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(48, 69%, 10%, 0.25); + --background025: hsla(48, 69%, 10%, 0.5); + --background05: hsla(48, 69%, 10%, 0.75); + --background075: hsla(48, 70%, 10%, 1); + --color0: hsla(48, 70%, 95%, 1); + --color025: hsla(50, 69%, 95%, 0.75); + --color05: hsla(50, 69%, 95%, 0.5); + --color075: hsla(50, 69%, 95%, 0.25); + --background: hsla(48, 70%, 10%, 1); + --backgroundHover: hsla(48, 70%, 14%, 1); + --backgroundPress: hsla(48, 70%, 19%, 1); + --backgroundFocus: hsla(48, 70%, 23%, 1); + --color: hsla(48, 70%, 93%, 1); + --colorHover: hsla(48, 70%, 50%, 1); + --colorPress: hsla(48, 70%, 93%, 1); + --colorFocus: hsla(48, 70%, 50%, 1); + --placeholderColor: hsla(48, 70%, 50%, 1); + --borderColor: hsla(48, 70%, 23%, 1); + --borderColorHover: hsla(48, 70%, 28%, 1); + --borderColorFocus: hsla(48, 70%, 32%, 1); + --borderColorPress: hsla(48, 70%, 28%, 1); + --color1: hsla(48, 70%, 10%, 1); + --color2: hsla(48, 70%, 14%, 1); + --color3: hsla(48, 70%, 19%, 1); + --color4: hsla(48, 70%, 23%, 1); + --color5: hsla(48, 70%, 28%, 1); + --color6: hsla(48, 70%, 32%, 1); + --color7: hsla(48, 70%, 37%, 1); + --color8: hsla(48, 70%, 41%, 1); + --color9: hsla(48, 70%, 46%, 1); + --color10: hsla(48, 70%, 50%, 1); + --color11: hsla(48, 70%, 93%, 1); + --color12: hsla(48, 70%, 95%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_light .t_dark .t_warning, + .t_warning { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(48, 69%, 10%, 0.25); + --background025: hsla(48, 69%, 10%, 0.5); + --background05: hsla(48, 69%, 10%, 0.75); + --background075: hsla(48, 70%, 10%, 1); + --color0: hsla(48, 70%, 95%, 1); + --color025: hsla(50, 69%, 95%, 0.75); + --color05: hsla(50, 69%, 95%, 0.5); + --color075: hsla(50, 69%, 95%, 0.25); + --background: hsla(48, 70%, 10%, 1); + --backgroundHover: hsla(48, 70%, 14%, 1); + --backgroundPress: hsla(48, 70%, 19%, 1); + --backgroundFocus: hsla(48, 70%, 23%, 1); + --color: hsla(48, 70%, 93%, 1); + --colorHover: hsla(48, 70%, 50%, 1); + --colorPress: hsla(48, 70%, 93%, 1); + --colorFocus: hsla(48, 70%, 50%, 1); + --placeholderColor: hsla(48, 70%, 50%, 1); + --borderColor: hsla(48, 70%, 23%, 1); + --borderColorHover: hsla(48, 70%, 28%, 1); + --borderColorFocus: hsla(48, 70%, 32%, 1); + --borderColorPress: hsla(48, 70%, 28%, 1); + --color1: hsla(48, 70%, 10%, 1); + --color2: hsla(48, 70%, 14%, 1); + --color3: hsla(48, 70%, 19%, 1); + --color4: hsla(48, 70%, 23%, 1); + --color5: hsla(48, 70%, 28%, 1); + --color6: hsla(48, 70%, 32%, 1); + --color7: hsla(48, 70%, 37%, 1); + --color8: hsla(48, 70%, 41%, 1); + --color9: hsla(48, 70%, 46%, 1); + --color10: hsla(48, 70%, 50%, 1); + --color11: hsla(48, 70%, 93%, 1); + --color12: hsla(48, 70%, 95%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_warning_Button, +:root.t_dark .t_light .t_dark .t_warning_SliderTrack, +:root.t_dark .t_light .t_dark .t_warning_Switch, +:root.t_dark .t_light .t_dark .t_warning_TooltipContent, +:root.t_dark .t_warning_Button, +:root.t_dark .t_warning_SliderTrack, +:root.t_dark .t_warning_Switch, +:root.t_dark .t_warning_TooltipContent, +:root.t_light .t_dark .t_light .t_dark .t_warning_Button, +:root.t_light .t_dark .t_light .t_dark .t_warning_SliderTrack, +:root.t_light .t_dark .t_light .t_dark .t_warning_Switch, +:root.t_light .t_dark .t_light .t_dark .t_warning_TooltipContent, +:root.t_light .t_dark .t_warning_Button, +:root.t_light .t_dark .t_warning_SliderTrack, +:root.t_light .t_dark .t_warning_Switch, +:root.t_light .t_dark .t_warning_TooltipContent { + --background0: hsla(48, 69%, 10%, 0.75); + --background025: hsla(48, 70%, 10%, 1); + --background05: hsla(48, 70%, 14%, 1); + --background075: hsla(48, 70%, 19%, 1); + --color0: hsla(48, 70%, 50%, 1); + --color025: hsla(48, 70%, 93%, 1); + --color05: hsla(48, 70%, 95%, 1); + --color075: hsla(50, 69%, 95%, 0.75); + --background: hsla(48, 70%, 19%, 1); + --backgroundHover: hsla(48, 70%, 23%, 1); + --backgroundPress: hsla(48, 70%, 28%, 1); + --backgroundFocus: hsla(48, 70%, 32%, 1); + --color: hsla(48, 70%, 93%, 1); + --colorHover: hsla(48, 70%, 50%, 1); + --colorPress: hsla(48, 70%, 93%, 1); + --colorFocus: hsla(48, 70%, 50%, 1); + --placeholderColor: hsla(48, 70%, 41%, 1); + --borderColor: hsla(48, 70%, 32%, 1); + --borderColorHover: hsla(48, 70%, 37%, 1); + --borderColorFocus: hsla(48, 70%, 41%, 1); + --borderColorPress: hsla(48, 70%, 37%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_light .t_dark .t_warning_Button, + .t_light .t_dark .t_warning_SliderTrack, + .t_light .t_dark .t_warning_Switch, + .t_light .t_dark .t_warning_TooltipContent, + .t_warning_Button, + .t_warning_SliderTrack, + .t_warning_Switch, + .t_warning_TooltipContent { + --background0: hsla(48, 69%, 10%, 0.75); + --background025: hsla(48, 70%, 10%, 1); + --background05: hsla(48, 70%, 14%, 1); + --background075: hsla(48, 70%, 19%, 1); + --color0: hsla(48, 70%, 50%, 1); + --color025: hsla(48, 70%, 93%, 1); + --color05: hsla(48, 70%, 95%, 1); + --color075: hsla(50, 69%, 95%, 0.75); + --background: hsla(48, 70%, 19%, 1); + --backgroundHover: hsla(48, 70%, 23%, 1); + --backgroundPress: hsla(48, 70%, 28%, 1); + --backgroundFocus: hsla(48, 70%, 32%, 1); + --color: hsla(48, 70%, 93%, 1); + --colorHover: hsla(48, 70%, 50%, 1); + --colorPress: hsla(48, 70%, 93%, 1); + --colorFocus: hsla(48, 70%, 50%, 1); + --placeholderColor: hsla(48, 70%, 41%, 1); + --borderColor: hsla(48, 70%, 32%, 1); + --borderColorHover: hsla(48, 70%, 37%, 1); + --borderColorFocus: hsla(48, 70%, 41%, 1); + --borderColorPress: hsla(48, 70%, 37%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_warning_Card, +:root.t_dark .t_light .t_dark .t_warning_DrawerFrame, +:root.t_dark .t_light .t_dark .t_warning_Progress, +:root.t_dark .t_light .t_dark .t_warning_TooltipArrow, +:root.t_dark .t_warning_Card, +:root.t_dark .t_warning_DrawerFrame, +:root.t_dark .t_warning_Progress, +:root.t_dark .t_warning_TooltipArrow, +:root.t_light .t_dark .t_light .t_dark .t_warning_Card, +:root.t_light .t_dark .t_light .t_dark .t_warning_DrawerFrame, +:root.t_light .t_dark .t_light .t_dark .t_warning_Progress, +:root.t_light .t_dark .t_light .t_dark .t_warning_TooltipArrow, +:root.t_light .t_dark .t_warning_Card, +:root.t_light .t_dark .t_warning_DrawerFrame, +:root.t_light .t_dark .t_warning_Progress, +:root.t_light .t_dark .t_warning_TooltipArrow { + --background0: hsla(48, 69%, 10%, 0.5); + --background025: hsla(48, 69%, 10%, 0.75); + --background05: hsla(48, 70%, 10%, 1); + --background075: hsla(48, 70%, 14%, 1); + --color0: hsla(48, 70%, 93%, 1); + --color025: hsla(48, 70%, 95%, 1); + --color05: hsla(50, 69%, 95%, 0.75); + --color075: hsla(50, 69%, 95%, 0.5); + --background: hsla(48, 70%, 14%, 1); + --backgroundHover: hsla(48, 70%, 19%, 1); + --backgroundPress: hsla(48, 70%, 23%, 1); + --backgroundFocus: hsla(48, 70%, 28%, 1); + --color: hsla(48, 70%, 93%, 1); + --colorHover: hsla(48, 70%, 50%, 1); + --colorPress: hsla(48, 70%, 93%, 1); + --colorFocus: hsla(48, 70%, 50%, 1); + --placeholderColor: hsla(48, 70%, 46%, 1); + --borderColor: hsla(48, 70%, 28%, 1); + --borderColorHover: hsla(48, 70%, 32%, 1); + --borderColorFocus: hsla(48, 70%, 37%, 1); + --borderColorPress: hsla(48, 70%, 32%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_light .t_dark .t_warning_Card, + .t_light .t_dark .t_warning_DrawerFrame, + .t_light .t_dark .t_warning_Progress, + .t_light .t_dark .t_warning_TooltipArrow, + .t_warning_Card, + .t_warning_DrawerFrame, + .t_warning_Progress, + .t_warning_TooltipArrow { + --background0: hsla(48, 69%, 10%, 0.5); + --background025: hsla(48, 69%, 10%, 0.75); + --background05: hsla(48, 70%, 10%, 1); + --background075: hsla(48, 70%, 14%, 1); + --color0: hsla(48, 70%, 93%, 1); + --color025: hsla(48, 70%, 95%, 1); + --color05: hsla(50, 69%, 95%, 0.75); + --color075: hsla(50, 69%, 95%, 0.5); + --background: hsla(48, 70%, 14%, 1); + --backgroundHover: hsla(48, 70%, 19%, 1); + --backgroundPress: hsla(48, 70%, 23%, 1); + --backgroundFocus: hsla(48, 70%, 28%, 1); + --color: hsla(48, 70%, 93%, 1); + --colorHover: hsla(48, 70%, 50%, 1); + --colorPress: hsla(48, 70%, 93%, 1); + --colorFocus: hsla(48, 70%, 50%, 1); + --placeholderColor: hsla(48, 70%, 46%, 1); + --borderColor: hsla(48, 70%, 28%, 1); + --borderColorHover: hsla(48, 70%, 32%, 1); + --borderColorFocus: hsla(48, 70%, 37%, 1); + --borderColorPress: hsla(48, 70%, 32%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_warning_Checkbox, +:root.t_dark .t_light .t_dark .t_warning_Input, +:root.t_dark .t_light .t_dark .t_warning_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_warning_TextArea, +:root.t_dark .t_warning_Checkbox, +:root.t_dark .t_warning_Input, +:root.t_dark .t_warning_RadioGroupItem, +:root.t_dark .t_warning_TextArea, +:root.t_light .t_dark .t_light .t_dark .t_warning_Checkbox, +:root.t_light .t_dark .t_light .t_dark .t_warning_Input, +:root.t_light .t_dark .t_light .t_dark .t_warning_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dark .t_warning_TextArea, +:root.t_light .t_dark .t_warning_Checkbox, +:root.t_light .t_dark .t_warning_Input, +:root.t_light .t_dark .t_warning_RadioGroupItem, +:root.t_light .t_dark .t_warning_TextArea { + --accentBackground: hsla(48, 69%, 10%, 0); + --accentColor: hsla(48, 69%, 10%, 0); + --background0: hsla(48, 69%, 10%, 0.25); + --background025: hsla(48, 69%, 10%, 0.5); + --background05: hsla(48, 69%, 10%, 0.75); + --background075: hsla(48, 70%, 10%, 1); + --color0: hsla(48, 70%, 95%, 1); + --color025: hsla(50, 69%, 95%, 0.75); + --color05: hsla(50, 69%, 95%, 0.5); + --color075: hsla(50, 69%, 95%, 0.25); + --background: hsla(48, 70%, 10%, 1); + --backgroundHover: hsla(48, 70%, 14%, 1); + --backgroundPress: hsla(48, 70%, 19%, 1); + --backgroundFocus: hsla(48, 70%, 23%, 1); + --color: hsla(48, 70%, 93%, 1); + --colorHover: hsla(48, 70%, 50%, 1); + --colorPress: hsla(48, 70%, 93%, 1); + --colorFocus: hsla(48, 70%, 50%, 1); + --placeholderColor: hsla(48, 70%, 50%, 1); + --borderColor: hsla(48, 70%, 32%, 1); + --borderColorHover: hsla(48, 70%, 37%, 1); + --borderColorFocus: hsla(48, 70%, 41%, 1); + --borderColorPress: hsla(48, 70%, 37%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_light .t_dark .t_warning_Checkbox, + .t_light .t_dark .t_warning_Input, + .t_light .t_dark .t_warning_RadioGroupItem, + .t_light .t_dark .t_warning_TextArea, + .t_warning_Checkbox, + .t_warning_Input, + .t_warning_RadioGroupItem, + .t_warning_TextArea { + --accentBackground: hsla(48, 69%, 10%, 0); + --accentColor: hsla(48, 69%, 10%, 0); + --background0: hsla(48, 69%, 10%, 0.25); + --background025: hsla(48, 69%, 10%, 0.5); + --background05: hsla(48, 69%, 10%, 0.75); + --background075: hsla(48, 70%, 10%, 1); + --color0: hsla(48, 70%, 95%, 1); + --color025: hsla(50, 69%, 95%, 0.75); + --color05: hsla(50, 69%, 95%, 0.5); + --color075: hsla(50, 69%, 95%, 0.25); + --background: hsla(48, 70%, 10%, 1); + --backgroundHover: hsla(48, 70%, 14%, 1); + --backgroundPress: hsla(48, 70%, 19%, 1); + --backgroundFocus: hsla(48, 70%, 23%, 1); + --color: hsla(48, 70%, 93%, 1); + --colorHover: hsla(48, 70%, 50%, 1); + --colorPress: hsla(48, 70%, 93%, 1); + --colorFocus: hsla(48, 70%, 50%, 1); + --placeholderColor: hsla(48, 70%, 50%, 1); + --borderColor: hsla(48, 70%, 32%, 1); + --borderColorHover: hsla(48, 70%, 37%, 1); + --borderColorFocus: hsla(48, 70%, 41%, 1); + --borderColorPress: hsla(48, 70%, 37%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_warning_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_warning_SliderThumb, +:root.t_dark .t_light .t_dark .t_warning_SwitchThumb, +:root.t_dark .t_light .t_dark .t_warning_Tooltip, +:root.t_dark .t_warning_ProgressIndicator, +:root.t_dark .t_warning_SliderThumb, +:root.t_dark .t_warning_SwitchThumb, +:root.t_dark .t_warning_Tooltip, +:root.t_light .t_dark .t_light .t_dark .t_warning_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dark .t_warning_SliderThumb, +:root.t_light .t_dark .t_light .t_dark .t_warning_SwitchThumb, +:root.t_light .t_dark .t_light .t_dark .t_warning_Tooltip, +:root.t_light .t_dark .t_warning_ProgressIndicator, +:root.t_light .t_dark .t_warning_SliderThumb, +:root.t_light .t_dark .t_warning_SwitchThumb, +:root.t_light .t_dark .t_warning_Tooltip { + --accentBackground: hsla(48, 69%, 10%, 0); + --accentColor: hsla(48, 69%, 10%, 0); + --background0: hsla(50, 69%, 95%, 0.25); + --background025: hsla(50, 69%, 95%, 0.5); + --background05: hsla(50, 69%, 95%, 0.75); + --background075: hsla(48, 70%, 95%, 1); + --color0: hsla(48, 70%, 10%, 1); + --color025: hsla(48, 69%, 10%, 0.75); + --color05: hsla(48, 69%, 10%, 0.5); + --color075: hsla(48, 69%, 10%, 0.25); + --background: hsla(48, 70%, 95%, 1); + --backgroundHover: hsla(48, 70%, 93%, 1); + --backgroundPress: hsla(48, 70%, 50%, 1); + --backgroundFocus: hsla(48, 70%, 46%, 1); + --color: hsla(48, 70%, 14%, 1); + --colorHover: hsla(48, 70%, 19%, 1); + --colorPress: hsla(48, 70%, 14%, 1); + --colorFocus: hsla(48, 70%, 19%, 1); + --placeholderColor: hsla(48, 70%, 19%, 1); + --borderColor: hsla(48, 70%, 46%, 1); + --borderColorHover: hsla(48, 70%, 41%, 1); + --borderColorFocus: hsla(48, 70%, 37%, 1); + --borderColorPress: hsla(48, 70%, 41%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_light .t_dark .t_warning_ProgressIndicator, + .t_light .t_dark .t_warning_SliderThumb, + .t_light .t_dark .t_warning_SwitchThumb, + .t_light .t_dark .t_warning_Tooltip, + .t_warning_ProgressIndicator, + .t_warning_SliderThumb, + .t_warning_SwitchThumb, + .t_warning_Tooltip { + --accentBackground: hsla(48, 69%, 10%, 0); + --accentColor: hsla(48, 69%, 10%, 0); + --background0: hsla(50, 69%, 95%, 0.25); + --background025: hsla(50, 69%, 95%, 0.5); + --background05: hsla(50, 69%, 95%, 0.75); + --background075: hsla(48, 70%, 95%, 1); + --color0: hsla(48, 70%, 10%, 1); + --color025: hsla(48, 69%, 10%, 0.75); + --color05: hsla(48, 69%, 10%, 0.5); + --color075: hsla(48, 69%, 10%, 0.25); + --background: hsla(48, 70%, 95%, 1); + --backgroundHover: hsla(48, 70%, 93%, 1); + --backgroundPress: hsla(48, 70%, 50%, 1); + --backgroundFocus: hsla(48, 70%, 46%, 1); + --color: hsla(48, 70%, 14%, 1); + --colorHover: hsla(48, 70%, 19%, 1); + --colorPress: hsla(48, 70%, 14%, 1); + --colorFocus: hsla(48, 70%, 19%, 1); + --placeholderColor: hsla(48, 70%, 19%, 1); + --borderColor: hsla(48, 70%, 46%, 1); + --borderColorHover: hsla(48, 70%, 41%, 1); + --borderColorFocus: hsla(48, 70%, 37%, 1); + --borderColorPress: hsla(48, 70%, 41%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_warning_SliderTrackActive, +:root.t_dark .t_warning_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dark .t_warning_SliderTrackActive, +:root.t_light .t_dark .t_warning_SliderTrackActive { + --accentBackground: hsla(48, 69%, 10%, 0); + --accentColor: hsla(48, 69%, 10%, 0); + --background0: hsla(50, 69%, 95%, 0.75); + --background025: hsla(48, 70%, 95%, 1); + --background05: hsla(48, 70%, 93%, 1); + --background075: hsla(48, 70%, 50%, 1); + --color0: hsla(48, 70%, 19%, 1); + --color025: hsla(48, 70%, 14%, 1); + --color05: hsla(48, 70%, 10%, 1); + --color075: hsla(48, 69%, 10%, 0.75); + --background: hsla(48, 70%, 50%, 1); + --backgroundHover: hsla(48, 70%, 46%, 1); + --backgroundPress: hsla(48, 70%, 41%, 1); + --backgroundFocus: hsla(48, 70%, 37%, 1); + --color: hsla(48, 70%, 14%, 1); + --colorHover: hsla(48, 70%, 19%, 1); + --colorPress: hsla(48, 70%, 14%, 1); + --colorFocus: hsla(48, 70%, 19%, 1); + --placeholderColor: hsla(48, 70%, 28%, 1); + --borderColor: hsla(48, 70%, 37%, 1); + --borderColorHover: hsla(48, 70%, 32%, 1); + --borderColorFocus: hsla(48, 70%, 28%, 1); + --borderColorPress: hsla(48, 70%, 32%, 1); +} + +@media(prefers-color-scheme:dark) { + body { + background: var(--background); + color: var(--color) + } + + .t_light .t_dark .t_warning_SliderTrackActive, + .t_warning_SliderTrackActive { + --accentBackground: hsla(48, 69%, 10%, 0); + --accentColor: hsla(48, 69%, 10%, 0); + --background0: hsla(50, 69%, 95%, 0.75); + --background025: hsla(48, 70%, 95%, 1); + --background05: hsla(48, 70%, 93%, 1); + --background075: hsla(48, 70%, 50%, 1); + --color0: hsla(48, 70%, 19%, 1); + --color025: hsla(48, 70%, 14%, 1); + --color05: hsla(48, 70%, 10%, 1); + --color075: hsla(48, 69%, 10%, 0.75); + --background: hsla(48, 70%, 50%, 1); + --backgroundHover: hsla(48, 70%, 46%, 1); + --backgroundPress: hsla(48, 70%, 41%, 1); + --backgroundFocus: hsla(48, 70%, 37%, 1); + --color: hsla(48, 70%, 14%, 1); + --colorHover: hsla(48, 70%, 19%, 1); + --colorPress: hsla(48, 70%, 14%, 1); + --colorFocus: hsla(48, 70%, 19%, 1); + --placeholderColor: hsla(48, 70%, 28%, 1); + --borderColor: hsla(48, 70%, 37%, 1); + --borderColorHover: hsla(48, 70%, 32%, 1); + --borderColorFocus: hsla(48, 70%, 28%, 1); + --borderColorPress: hsla(48, 70%, 32%, 1); + } +} + +:root.t_dark .t_light, +:root.t_dark .t_light .t_dark .t_light, +:root.t_light, +:root.t_light .t_dark .t_light { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(180, 20%, 99%, 0.25); + --background025: hsla(180, 20%, 99%, 0.5); + --background05: hsla(180, 20%, 99%, 0.75); + --background075: hsla(191, 32%, 99%, 1); + --color0: hsla(112, 22%, 0%, 1); + --color025: hsla(0, 0%, 0%, 0.75); + --color05: hsla(0, 0%, 0%, 0.5); + --color075: hsla(0, 0%, 0%, 0.25); + --background: hsla(191, 32%, 99%, 1); + --backgroundHover: hsla(191, 32%, 93%, 1); + --backgroundPress: hsla(191, 32%, 88%, 1); + --backgroundFocus: hsla(191, 32%, 83%, 1); + --color: hsla(96, 16%, 25%, 1); + --colorHover: hsla(191, 32%, 50%, 1); + --colorPress: hsla(96, 16%, 25%, 1); + --colorFocus: hsla(191, 32%, 50%, 1); + --placeholderColor: hsla(191, 32%, 50%, 1); + --borderColor: hsla(191, 32%, 83%, 1); + --borderColorHover: hsla(191, 32%, 77%, 1); + --borderColorFocus: hsla(191, 32%, 72%, 1); + --borderColorPress: hsla(191, 32%, 77%, 1); + --color1: hsla(191, 32%, 99%, 1); + --color2: hsla(191, 32%, 93%, 1); + --color3: hsla(191, 32%, 88%, 1); + --color4: hsla(191, 32%, 83%, 1); + --color5: hsla(191, 32%, 77%, 1); + --color6: hsla(191, 32%, 72%, 1); + --color7: hsla(191, 32%, 66%, 1); + --color8: hsla(191, 32%, 61%, 1); + --color9: hsla(191, 32%, 55%, 1); + --color10: hsla(191, 32%, 50%, 1); + --color11: hsla(96, 16%, 25%, 1); + --color12: hsla(112, 22%, 0%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + :root, + .t_dark .t_light { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(180, 20%, 99%, 0.25); + --background025: hsla(180, 20%, 99%, 0.5); + --background05: hsla(180, 20%, 99%, 0.75); + --background075: hsla(191, 32%, 99%, 1); + --color0: hsla(112, 22%, 0%, 1); + --color025: hsla(0, 0%, 0%, 0.75); + --color05: hsla(0, 0%, 0%, 0.5); + --color075: hsla(0, 0%, 0%, 0.25); + --background: hsla(191, 32%, 99%, 1); + --backgroundHover: hsla(191, 32%, 93%, 1); + --backgroundPress: hsla(191, 32%, 88%, 1); + --backgroundFocus: hsla(191, 32%, 83%, 1); + --color: hsla(96, 16%, 25%, 1); + --colorHover: hsla(191, 32%, 50%, 1); + --colorPress: hsla(96, 16%, 25%, 1); + --colorFocus: hsla(191, 32%, 50%, 1); + --placeholderColor: hsla(191, 32%, 50%, 1); + --borderColor: hsla(191, 32%, 83%, 1); + --borderColorHover: hsla(191, 32%, 77%, 1); + --borderColorFocus: hsla(191, 32%, 72%, 1); + --borderColorPress: hsla(191, 32%, 77%, 1); + --color1: hsla(191, 32%, 99%, 1); + --color2: hsla(191, 32%, 93%, 1); + --color3: hsla(191, 32%, 88%, 1); + --color4: hsla(191, 32%, 83%, 1); + --color5: hsla(191, 32%, 77%, 1); + --color6: hsla(191, 32%, 72%, 1); + --color7: hsla(191, 32%, 66%, 1); + --color8: hsla(191, 32%, 61%, 1); + --color9: hsla(191, 32%, 55%, 1); + --color10: hsla(191, 32%, 50%, 1); + --color11: hsla(96, 16%, 25%, 1); + --color12: hsla(112, 22%, 0%, 1); + } +} + +:root.t_dark .t_light .t_Button, +:root.t_dark .t_light .t_dark .t_light .t_Button, +:root.t_dark .t_light .t_dark .t_light .t_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_Switch, +:root.t_dark .t_light .t_dark .t_light .t_TooltipContent, +:root.t_dark .t_light .t_SliderTrack, +:root.t_dark .t_light .t_Switch, +:root.t_dark .t_light .t_TooltipContent, +:root.t_light .t_Button, +:root.t_light .t_dark .t_light .t_Button, +:root.t_light .t_dark .t_light .t_SliderTrack, +:root.t_light .t_dark .t_light .t_Switch, +:root.t_light .t_dark .t_light .t_TooltipContent, +:root.t_light .t_SliderTrack, +:root.t_light .t_Switch, +:root.t_light .t_TooltipContent { + --background0: hsla(180, 20%, 99%, 0.75); + --background025: hsla(191, 32%, 99%, 1); + --background05: hsla(191, 32%, 93%, 1); + --background075: hsla(191, 32%, 88%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(96, 16%, 25%, 1); + --color05: hsla(112, 22%, 0%, 1); + --color075: hsla(0, 0%, 0%, 0.75); + --background: hsla(191, 32%, 88%, 1); + --backgroundHover: hsla(191, 32%, 83%, 1); + --backgroundPress: hsla(191, 32%, 77%, 1); + --backgroundFocus: hsla(191, 32%, 72%, 1); + --color: hsla(96, 16%, 25%, 1); + --colorHover: hsla(191, 32%, 50%, 1); + --colorPress: hsla(96, 16%, 25%, 1); + --colorFocus: hsla(191, 32%, 50%, 1); + --placeholderColor: hsla(191, 32%, 61%, 1); + --borderColor: hsla(191, 32%, 72%, 1); + --borderColorHover: hsla(191, 32%, 66%, 1); + --borderColorFocus: hsla(191, 32%, 61%, 1); + --borderColorPress: hsla(191, 32%, 66%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_Button, + .t_dark .t_light .t_Button, + .t_dark .t_light .t_SliderTrack, + .t_dark .t_light .t_Switch, + .t_dark .t_light .t_TooltipContent, + .t_SliderTrack, + .t_Switch, + .t_TooltipContent { + --background0: hsla(180, 20%, 99%, 0.75); + --background025: hsla(191, 32%, 99%, 1); + --background05: hsla(191, 32%, 93%, 1); + --background075: hsla(191, 32%, 88%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(96, 16%, 25%, 1); + --color05: hsla(112, 22%, 0%, 1); + --color075: hsla(0, 0%, 0%, 0.75); + --background: hsla(191, 32%, 88%, 1); + --backgroundHover: hsla(191, 32%, 83%, 1); + --backgroundPress: hsla(191, 32%, 77%, 1); + --backgroundFocus: hsla(191, 32%, 72%, 1); + --color: hsla(96, 16%, 25%, 1); + --colorHover: hsla(191, 32%, 50%, 1); + --colorPress: hsla(96, 16%, 25%, 1); + --colorFocus: hsla(191, 32%, 50%, 1); + --placeholderColor: hsla(191, 32%, 61%, 1); + --borderColor: hsla(191, 32%, 72%, 1); + --borderColorHover: hsla(191, 32%, 66%, 1); + --borderColorFocus: hsla(191, 32%, 61%, 1); + --borderColorPress: hsla(191, 32%, 66%, 1); + } +} + +:root.t_dark .t_light .t_Card, +:root.t_dark .t_light .t_dark .t_light .t_Card, +:root.t_dark .t_light .t_dark .t_light .t_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_Progress, +:root.t_dark .t_light .t_dark .t_light .t_TooltipArrow, +:root.t_dark .t_light .t_DrawerFrame, +:root.t_dark .t_light .t_Progress, +:root.t_dark .t_light .t_TooltipArrow, +:root.t_light .t_Card, +:root.t_light .t_dark .t_light .t_Card, +:root.t_light .t_dark .t_light .t_DrawerFrame, +:root.t_light .t_dark .t_light .t_Progress, +:root.t_light .t_dark .t_light .t_TooltipArrow, +:root.t_light .t_DrawerFrame, +:root.t_light .t_Progress, +:root.t_light .t_TooltipArrow { + --background0: hsla(180, 20%, 99%, 0.5); + --background025: hsla(180, 20%, 99%, 0.75); + --background05: hsla(191, 32%, 99%, 1); + --background075: hsla(191, 32%, 93%, 1); + --color0: hsla(96, 16%, 25%, 1); + --color025: hsla(112, 22%, 0%, 1); + --color05: hsla(0, 0%, 0%, 0.75); + --color075: hsla(0, 0%, 0%, 0.5); + --background: hsla(191, 32%, 93%, 1); + --backgroundHover: hsla(191, 32%, 88%, 1); + --backgroundPress: hsla(191, 32%, 83%, 1); + --backgroundFocus: hsla(191, 32%, 77%, 1); + --color: hsla(96, 16%, 25%, 1); + --colorHover: hsla(191, 32%, 50%, 1); + --colorPress: hsla(96, 16%, 25%, 1); + --colorFocus: hsla(191, 32%, 50%, 1); + --placeholderColor: hsla(191, 32%, 55%, 1); + --borderColor: hsla(191, 32%, 77%, 1); + --borderColorHover: hsla(191, 32%, 72%, 1); + --borderColorFocus: hsla(191, 32%, 66%, 1); + --borderColorPress: hsla(191, 32%, 72%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_Card, + .t_dark .t_light .t_Card, + .t_dark .t_light .t_DrawerFrame, + .t_dark .t_light .t_Progress, + .t_dark .t_light .t_TooltipArrow, + .t_DrawerFrame, + .t_Progress, + .t_TooltipArrow { + --background0: hsla(180, 20%, 99%, 0.5); + --background025: hsla(180, 20%, 99%, 0.75); + --background05: hsla(191, 32%, 99%, 1); + --background075: hsla(191, 32%, 93%, 1); + --color0: hsla(96, 16%, 25%, 1); + --color025: hsla(112, 22%, 0%, 1); + --color05: hsla(0, 0%, 0%, 0.75); + --color075: hsla(0, 0%, 0%, 0.5); + --background: hsla(191, 32%, 93%, 1); + --backgroundHover: hsla(191, 32%, 88%, 1); + --backgroundPress: hsla(191, 32%, 83%, 1); + --backgroundFocus: hsla(191, 32%, 77%, 1); + --color: hsla(96, 16%, 25%, 1); + --colorHover: hsla(191, 32%, 50%, 1); + --colorPress: hsla(96, 16%, 25%, 1); + --colorFocus: hsla(191, 32%, 50%, 1); + --placeholderColor: hsla(191, 32%, 55%, 1); + --borderColor: hsla(191, 32%, 77%, 1); + --borderColorHover: hsla(191, 32%, 72%, 1); + --borderColorFocus: hsla(191, 32%, 66%, 1); + --borderColorPress: hsla(191, 32%, 72%, 1); + } +} + +:root.t_dark .t_light .t_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_Input, +:root.t_dark .t_light .t_dark .t_light .t_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_TextArea, +:root.t_dark .t_light .t_Input, +:root.t_dark .t_light .t_RadioGroupItem, +:root.t_dark .t_light .t_TextArea, +:root.t_light .t_Checkbox, +:root.t_light .t_dark .t_light .t_Checkbox, +:root.t_light .t_dark .t_light .t_Input, +:root.t_light .t_dark .t_light .t_RadioGroupItem, +:root.t_light .t_dark .t_light .t_TextArea, +:root.t_light .t_Input, +:root.t_light .t_RadioGroupItem, +:root.t_light .t_TextArea { + --accentBackground: hsla(180, 20%, 99%, 0); + --accentColor: hsla(180, 20%, 99%, 0); + --background0: hsla(180, 20%, 99%, 0.25); + --background025: hsla(180, 20%, 99%, 0.5); + --background05: hsla(180, 20%, 99%, 0.75); + --background075: hsla(191, 32%, 99%, 1); + --color0: hsla(112, 22%, 0%, 1); + --color025: hsla(0, 0%, 0%, 0.75); + --color05: hsla(0, 0%, 0%, 0.5); + --color075: hsla(0, 0%, 0%, 0.25); + --background: hsla(191, 32%, 99%, 1); + --backgroundHover: hsla(191, 32%, 93%, 1); + --backgroundPress: hsla(191, 32%, 88%, 1); + --backgroundFocus: hsla(191, 32%, 83%, 1); + --color: hsla(96, 16%, 25%, 1); + --colorHover: hsla(191, 32%, 50%, 1); + --colorPress: hsla(96, 16%, 25%, 1); + --colorFocus: hsla(191, 32%, 50%, 1); + --placeholderColor: hsla(191, 32%, 50%, 1); + --borderColor: hsla(191, 32%, 72%, 1); + --borderColorHover: hsla(191, 32%, 66%, 1); + --borderColorFocus: hsla(191, 32%, 61%, 1); + --borderColorPress: hsla(191, 32%, 66%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_Checkbox, + .t_dark .t_light .t_Checkbox, + .t_dark .t_light .t_Input, + .t_dark .t_light .t_RadioGroupItem, + .t_dark .t_light .t_TextArea, + .t_Input, + .t_RadioGroupItem, + .t_TextArea { + --accentBackground: hsla(180, 20%, 99%, 0); + --accentColor: hsla(180, 20%, 99%, 0); + --background0: hsla(180, 20%, 99%, 0.25); + --background025: hsla(180, 20%, 99%, 0.5); + --background05: hsla(180, 20%, 99%, 0.75); + --background075: hsla(191, 32%, 99%, 1); + --color0: hsla(112, 22%, 0%, 1); + --color025: hsla(0, 0%, 0%, 0.75); + --color05: hsla(0, 0%, 0%, 0.5); + --color075: hsla(0, 0%, 0%, 0.25); + --background: hsla(191, 32%, 99%, 1); + --backgroundHover: hsla(191, 32%, 93%, 1); + --backgroundPress: hsla(191, 32%, 88%, 1); + --backgroundFocus: hsla(191, 32%, 83%, 1); + --color: hsla(96, 16%, 25%, 1); + --colorHover: hsla(191, 32%, 50%, 1); + --colorPress: hsla(96, 16%, 25%, 1); + --colorFocus: hsla(191, 32%, 50%, 1); + --placeholderColor: hsla(191, 32%, 50%, 1); + --borderColor: hsla(191, 32%, 72%, 1); + --borderColorHover: hsla(191, 32%, 66%, 1); + --borderColorFocus: hsla(191, 32%, 61%, 1); + --borderColorPress: hsla(191, 32%, 66%, 1); + } +} + +:root.t_dark .t_light .t_accent_DialogOverlay, +:root.t_dark .t_light .t_accent_ModalOverlay, +:root.t_dark .t_light .t_accent_SheetOverlay, +:root.t_dark .t_light .t_active_accent_DialogOverlay, +:root.t_dark .t_light .t_active_accent_ModalOverlay, +:root.t_dark .t_light .t_active_accent_SheetOverlay, +:root.t_dark .t_light .t_active_DialogOverlay, +:root.t_dark .t_light .t_active_ModalOverlay, +:root.t_dark .t_light .t_active_SheetOverlay, +:root.t_dark .t_light .t_alt1_accent_DialogOverlay, +:root.t_dark .t_light .t_alt1_accent_ModalOverlay, +:root.t_dark .t_light .t_alt1_accent_SheetOverlay, +:root.t_dark .t_light .t_alt1_DialogOverlay, +:root.t_dark .t_light .t_alt1_ModalOverlay, +:root.t_dark .t_light .t_alt1_SheetOverlay, +:root.t_dark .t_light .t_alt2_accent_DialogOverlay, +:root.t_dark .t_light .t_alt2_accent_ModalOverlay, +:root.t_dark .t_light .t_alt2_accent_SheetOverlay, +:root.t_dark .t_light .t_alt2_DialogOverlay, +:root.t_dark .t_light .t_alt2_ModalOverlay, +:root.t_dark .t_light .t_alt2_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_active_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_active_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_active_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_alt1_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_alt1_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_alt1_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_alt2_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_alt2_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_alt2_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_dim_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_dim_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_dim_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_disabled_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_disabled_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_disabled_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_error_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_error_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_error_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_red_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_red_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_red_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_success_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_success_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_success_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_SheetOverlay, +:root.t_dark .t_light .t_dark .t_light .t_warning_DialogOverlay, +:root.t_dark .t_light .t_dark .t_light .t_warning_ModalOverlay, +:root.t_dark .t_light .t_dark .t_light .t_warning_SheetOverlay, +:root.t_dark .t_light .t_DialogOverlay, +:root.t_dark .t_light .t_dim_accent_DialogOverlay, +:root.t_dark .t_light .t_dim_accent_ModalOverlay, +:root.t_dark .t_light .t_dim_accent_SheetOverlay, +:root.t_dark .t_light .t_dim_DialogOverlay, +:root.t_dark .t_light .t_dim_ModalOverlay, +:root.t_dark .t_light .t_dim_SheetOverlay, +:root.t_dark .t_light .t_disabled_accent_DialogOverlay, +:root.t_dark .t_light .t_disabled_accent_ModalOverlay, +:root.t_dark .t_light .t_disabled_accent_SheetOverlay, +:root.t_dark .t_light .t_disabled_DialogOverlay, +:root.t_dark .t_light .t_disabled_ModalOverlay, +:root.t_dark .t_light .t_disabled_SheetOverlay, +:root.t_dark .t_light .t_error_accent_DialogOverlay, +:root.t_dark .t_light .t_error_accent_ModalOverlay, +:root.t_dark .t_light .t_error_accent_SheetOverlay, +:root.t_dark .t_light .t_error_DialogOverlay, +:root.t_dark .t_light .t_error_ModalOverlay, +:root.t_dark .t_light .t_error_SheetOverlay, +:root.t_dark .t_light .t_ModalOverlay, +:root.t_dark .t_light .t_red_accent_DialogOverlay, +:root.t_dark .t_light .t_red_accent_ModalOverlay, +:root.t_dark .t_light .t_red_accent_SheetOverlay, +:root.t_dark .t_light .t_red_DialogOverlay, +:root.t_dark .t_light .t_red_ModalOverlay, +:root.t_dark .t_light .t_red_SheetOverlay, +:root.t_dark .t_light .t_SheetOverlay, +:root.t_dark .t_light .t_success_accent_DialogOverlay, +:root.t_dark .t_light .t_success_accent_ModalOverlay, +:root.t_dark .t_light .t_success_accent_SheetOverlay, +:root.t_dark .t_light .t_success_DialogOverlay, +:root.t_dark .t_light .t_success_ModalOverlay, +:root.t_dark .t_light .t_success_SheetOverlay, +:root.t_dark .t_light .t_warning_accent_DialogOverlay, +:root.t_dark .t_light .t_warning_accent_ModalOverlay, +:root.t_dark .t_light .t_warning_accent_SheetOverlay, +:root.t_dark .t_light .t_warning_DialogOverlay, +:root.t_dark .t_light .t_warning_ModalOverlay, +:root.t_dark .t_light .t_warning_SheetOverlay, +:root.t_light .t_accent_DialogOverlay, +:root.t_light .t_accent_ModalOverlay, +:root.t_light .t_accent_SheetOverlay, +:root.t_light .t_active_accent_DialogOverlay, +:root.t_light .t_active_accent_ModalOverlay, +:root.t_light .t_active_accent_SheetOverlay, +:root.t_light .t_active_DialogOverlay, +:root.t_light .t_active_ModalOverlay, +:root.t_light .t_active_SheetOverlay, +:root.t_light .t_alt1_accent_DialogOverlay, +:root.t_light .t_alt1_accent_ModalOverlay, +:root.t_light .t_alt1_accent_SheetOverlay, +:root.t_light .t_alt1_DialogOverlay, +:root.t_light .t_alt1_ModalOverlay, +:root.t_light .t_alt1_SheetOverlay, +:root.t_light .t_alt2_accent_DialogOverlay, +:root.t_light .t_alt2_accent_ModalOverlay, +:root.t_light .t_alt2_accent_SheetOverlay, +:root.t_light .t_alt2_DialogOverlay, +:root.t_light .t_alt2_ModalOverlay, +:root.t_light .t_alt2_SheetOverlay, +:root.t_light .t_dark .t_light .t_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_active_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_active_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_active_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_active_DialogOverlay, +:root.t_light .t_dark .t_light .t_active_ModalOverlay, +:root.t_light .t_dark .t_light .t_active_SheetOverlay, +:root.t_light .t_dark .t_light .t_alt1_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_alt1_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_alt1_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_alt1_DialogOverlay, +:root.t_light .t_dark .t_light .t_alt1_ModalOverlay, +:root.t_light .t_dark .t_light .t_alt1_SheetOverlay, +:root.t_light .t_dark .t_light .t_alt2_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_alt2_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_alt2_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_alt2_DialogOverlay, +:root.t_light .t_dark .t_light .t_alt2_ModalOverlay, +:root.t_light .t_dark .t_light .t_alt2_SheetOverlay, +:root.t_light .t_dark .t_light .t_DialogOverlay, +:root.t_light .t_dark .t_light .t_dim_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_dim_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_dim_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_dim_DialogOverlay, +:root.t_light .t_dark .t_light .t_dim_ModalOverlay, +:root.t_light .t_dark .t_light .t_dim_SheetOverlay, +:root.t_light .t_dark .t_light .t_disabled_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_disabled_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_disabled_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_disabled_DialogOverlay, +:root.t_light .t_dark .t_light .t_disabled_ModalOverlay, +:root.t_light .t_dark .t_light .t_disabled_SheetOverlay, +:root.t_light .t_dark .t_light .t_error_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_error_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_error_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_error_DialogOverlay, +:root.t_light .t_dark .t_light .t_error_ModalOverlay, +:root.t_light .t_dark .t_light .t_error_SheetOverlay, +:root.t_light .t_dark .t_light .t_ModalOverlay, +:root.t_light .t_dark .t_light .t_red_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_red_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_red_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_red_DialogOverlay, +:root.t_light .t_dark .t_light .t_red_ModalOverlay, +:root.t_light .t_dark .t_light .t_red_SheetOverlay, +:root.t_light .t_dark .t_light .t_SheetOverlay, +:root.t_light .t_dark .t_light .t_success_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_success_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_success_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_success_DialogOverlay, +:root.t_light .t_dark .t_light .t_success_ModalOverlay, +:root.t_light .t_dark .t_light .t_success_SheetOverlay, +:root.t_light .t_dark .t_light .t_warning_accent_DialogOverlay, +:root.t_light .t_dark .t_light .t_warning_accent_ModalOverlay, +:root.t_light .t_dark .t_light .t_warning_accent_SheetOverlay, +:root.t_light .t_dark .t_light .t_warning_DialogOverlay, +:root.t_light .t_dark .t_light .t_warning_ModalOverlay, +:root.t_light .t_dark .t_light .t_warning_SheetOverlay, +:root.t_light .t_DialogOverlay, +:root.t_light .t_dim_accent_DialogOverlay, +:root.t_light .t_dim_accent_ModalOverlay, +:root.t_light .t_dim_accent_SheetOverlay, +:root.t_light .t_dim_DialogOverlay, +:root.t_light .t_dim_ModalOverlay, +:root.t_light .t_dim_SheetOverlay, +:root.t_light .t_disabled_accent_DialogOverlay, +:root.t_light .t_disabled_accent_ModalOverlay, +:root.t_light .t_disabled_accent_SheetOverlay, +:root.t_light .t_disabled_DialogOverlay, +:root.t_light .t_disabled_ModalOverlay, +:root.t_light .t_disabled_SheetOverlay, +:root.t_light .t_error_accent_DialogOverlay, +:root.t_light .t_error_accent_ModalOverlay, +:root.t_light .t_error_accent_SheetOverlay, +:root.t_light .t_error_DialogOverlay, +:root.t_light .t_error_ModalOverlay, +:root.t_light .t_error_SheetOverlay, +:root.t_light .t_ModalOverlay, +:root.t_light .t_red_accent_DialogOverlay, +:root.t_light .t_red_accent_ModalOverlay, +:root.t_light .t_red_accent_SheetOverlay, +:root.t_light .t_red_DialogOverlay, +:root.t_light .t_red_ModalOverlay, +:root.t_light .t_red_SheetOverlay, +:root.t_light .t_SheetOverlay, +:root.t_light .t_success_accent_DialogOverlay, +:root.t_light .t_success_accent_ModalOverlay, +:root.t_light .t_success_accent_SheetOverlay, +:root.t_light .t_success_DialogOverlay, +:root.t_light .t_success_ModalOverlay, +:root.t_light .t_success_SheetOverlay, +:root.t_light .t_warning_accent_DialogOverlay, +:root.t_light .t_warning_accent_ModalOverlay, +:root.t_light .t_warning_accent_SheetOverlay, +:root.t_light .t_warning_DialogOverlay, +:root.t_light .t_warning_ModalOverlay, +:root.t_light .t_warning_SheetOverlay { + --background: rgba(0, 0, 0, 0.5); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + } + + .t_accent_DialogOverlay, + .t_accent_ModalOverlay, + .t_accent_SheetOverlay, + .t_active_accent_DialogOverlay, + .t_active_accent_ModalOverlay, + .t_active_accent_SheetOverlay, + .t_active_DialogOverlay, + .t_active_ModalOverlay, + .t_active_SheetOverlay, + .t_alt1_accent_DialogOverlay, + .t_alt1_accent_ModalOverlay, + .t_alt1_accent_SheetOverlay, + .t_alt1_DialogOverlay, + .t_alt1_ModalOverlay, + .t_alt1_SheetOverlay, + .t_alt2_accent_DialogOverlay, + .t_alt2_accent_ModalOverlay, + .t_alt2_accent_SheetOverlay, + .t_alt2_DialogOverlay, + .t_alt2_ModalOverlay, + .t_alt2_SheetOverlay, + .t_dark .t_light .t_accent_DialogOverlay, + .t_dark .t_light .t_accent_ModalOverlay, + .t_dark .t_light .t_accent_SheetOverlay, + .t_dark .t_light .t_active_accent_DialogOverlay, + .t_dark .t_light .t_active_accent_ModalOverlay, + .t_dark .t_light .t_active_accent_SheetOverlay, + .t_dark .t_light .t_active_DialogOverlay, + .t_dark .t_light .t_active_ModalOverlay, + .t_dark .t_light .t_active_SheetOverlay, + .t_dark .t_light .t_alt1_accent_DialogOverlay, + .t_dark .t_light .t_alt1_accent_ModalOverlay, + .t_dark .t_light .t_alt1_accent_SheetOverlay, + .t_dark .t_light .t_alt1_DialogOverlay, + .t_dark .t_light .t_alt1_ModalOverlay, + .t_dark .t_light .t_alt1_SheetOverlay, + .t_dark .t_light .t_alt2_accent_DialogOverlay, + .t_dark .t_light .t_alt2_accent_ModalOverlay, + .t_dark .t_light .t_alt2_accent_SheetOverlay, + .t_dark .t_light .t_alt2_DialogOverlay, + .t_dark .t_light .t_alt2_ModalOverlay, + .t_dark .t_light .t_alt2_SheetOverlay, + .t_dark .t_light .t_DialogOverlay, + .t_dark .t_light .t_dim_accent_DialogOverlay, + .t_dark .t_light .t_dim_accent_ModalOverlay, + .t_dark .t_light .t_dim_accent_SheetOverlay, + .t_dark .t_light .t_dim_DialogOverlay, + .t_dark .t_light .t_dim_ModalOverlay, + .t_dark .t_light .t_dim_SheetOverlay, + .t_dark .t_light .t_disabled_accent_DialogOverlay, + .t_dark .t_light .t_disabled_accent_ModalOverlay, + .t_dark .t_light .t_disabled_accent_SheetOverlay, + .t_dark .t_light .t_disabled_DialogOverlay, + .t_dark .t_light .t_disabled_ModalOverlay, + .t_dark .t_light .t_disabled_SheetOverlay, + .t_dark .t_light .t_error_accent_DialogOverlay, + .t_dark .t_light .t_error_accent_ModalOverlay, + .t_dark .t_light .t_error_accent_SheetOverlay, + .t_dark .t_light .t_error_DialogOverlay, + .t_dark .t_light .t_error_ModalOverlay, + .t_dark .t_light .t_error_SheetOverlay, + .t_dark .t_light .t_ModalOverlay, + .t_dark .t_light .t_red_accent_DialogOverlay, + .t_dark .t_light .t_red_accent_ModalOverlay, + .t_dark .t_light .t_red_accent_SheetOverlay, + .t_dark .t_light .t_red_DialogOverlay, + .t_dark .t_light .t_red_ModalOverlay, + .t_dark .t_light .t_red_SheetOverlay, + .t_dark .t_light .t_SheetOverlay, + .t_dark .t_light .t_success_accent_DialogOverlay, + .t_dark .t_light .t_success_accent_ModalOverlay, + .t_dark .t_light .t_success_accent_SheetOverlay, + .t_dark .t_light .t_success_DialogOverlay, + .t_dark .t_light .t_success_ModalOverlay, + .t_dark .t_light .t_success_SheetOverlay, + .t_dark .t_light .t_warning_accent_DialogOverlay, + .t_dark .t_light .t_warning_accent_ModalOverlay, + .t_dark .t_light .t_warning_accent_SheetOverlay, + .t_dark .t_light .t_warning_DialogOverlay, + .t_dark .t_light .t_warning_ModalOverlay, + .t_dark .t_light .t_warning_SheetOverlay, + .t_DialogOverlay, + .t_dim_accent_DialogOverlay, + .t_dim_accent_ModalOverlay, + .t_dim_accent_SheetOverlay, + .t_dim_DialogOverlay, + .t_dim_ModalOverlay, + .t_dim_SheetOverlay, + .t_disabled_accent_DialogOverlay, + .t_disabled_accent_ModalOverlay, + .t_disabled_accent_SheetOverlay, + .t_disabled_DialogOverlay, + .t_disabled_ModalOverlay, + .t_disabled_SheetOverlay, + .t_error_accent_DialogOverlay, + .t_error_accent_ModalOverlay, + .t_error_accent_SheetOverlay, + .t_error_DialogOverlay, + .t_error_ModalOverlay, + .t_error_SheetOverlay, + .t_ModalOverlay, + .t_red_accent_DialogOverlay, + .t_red_accent_ModalOverlay, + .t_red_accent_SheetOverlay, + .t_red_DialogOverlay, + .t_red_ModalOverlay, + .t_red_SheetOverlay, + .t_SheetOverlay, + .t_success_accent_DialogOverlay, + .t_success_accent_ModalOverlay, + .t_success_accent_SheetOverlay, + .t_success_DialogOverlay, + .t_success_ModalOverlay, + .t_success_SheetOverlay, + .t_warning_accent_DialogOverlay, + .t_warning_accent_ModalOverlay, + .t_warning_accent_SheetOverlay, + .t_warning_DialogOverlay, + .t_warning_ModalOverlay, + .t_warning_SheetOverlay { + --background: rgba(0, 0, 0, 0.5); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_Tooltip, +:root.t_dark .t_light .t_ProgressIndicator, +:root.t_dark .t_light .t_SliderThumb, +:root.t_dark .t_light .t_SwitchThumb, +:root.t_dark .t_light .t_Tooltip, +:root.t_light .t_dark .t_light .t_ProgressIndicator, +:root.t_light .t_dark .t_light .t_SliderThumb, +:root.t_light .t_dark .t_light .t_SwitchThumb, +:root.t_light .t_dark .t_light .t_Tooltip, +:root.t_light .t_ProgressIndicator, +:root.t_light .t_SliderThumb, +:root.t_light .t_SwitchThumb, +:root.t_light .t_Tooltip { + --accentBackground: hsla(180, 20%, 99%, 0); + --accentColor: hsla(180, 20%, 99%, 0); + --background0: hsla(0, 0%, 0%, 0.25); + --background025: hsla(0, 0%, 0%, 0.5); + --background05: hsla(0, 0%, 0%, 0.75); + --background075: hsla(112, 22%, 0%, 1); + --color0: hsla(191, 32%, 99%, 1); + --color025: hsla(180, 20%, 99%, 0.75); + --color05: hsla(180, 20%, 99%, 0.5); + --color075: hsla(180, 20%, 99%, 0.25); + --background: hsla(112, 22%, 0%, 1); + --backgroundHover: hsla(96, 16%, 25%, 1); + --backgroundPress: hsla(191, 32%, 50%, 1); + --backgroundFocus: hsla(191, 32%, 55%, 1); + --color: hsla(191, 32%, 93%, 1); + --colorHover: hsla(191, 32%, 88%, 1); + --colorPress: hsla(191, 32%, 93%, 1); + --colorFocus: hsla(191, 32%, 88%, 1); + --placeholderColor: hsla(191, 32%, 88%, 1); + --borderColor: hsla(191, 32%, 55%, 1); + --borderColorHover: hsla(191, 32%, 61%, 1); + --borderColorFocus: hsla(191, 32%, 66%, 1); + --borderColorPress: hsla(191, 32%, 61%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_ProgressIndicator, + .t_dark .t_light .t_SliderThumb, + .t_dark .t_light .t_SwitchThumb, + .t_dark .t_light .t_Tooltip, + .t_ProgressIndicator, + .t_SliderThumb, + .t_SwitchThumb, + .t_Tooltip { + --accentBackground: hsla(180, 20%, 99%, 0); + --accentColor: hsla(180, 20%, 99%, 0); + --background0: hsla(0, 0%, 0%, 0.25); + --background025: hsla(0, 0%, 0%, 0.5); + --background05: hsla(0, 0%, 0%, 0.75); + --background075: hsla(112, 22%, 0%, 1); + --color0: hsla(191, 32%, 99%, 1); + --color025: hsla(180, 20%, 99%, 0.75); + --color05: hsla(180, 20%, 99%, 0.5); + --color075: hsla(180, 20%, 99%, 0.25); + --background: hsla(112, 22%, 0%, 1); + --backgroundHover: hsla(96, 16%, 25%, 1); + --backgroundPress: hsla(191, 32%, 50%, 1); + --backgroundFocus: hsla(191, 32%, 55%, 1); + --color: hsla(191, 32%, 93%, 1); + --colorHover: hsla(191, 32%, 88%, 1); + --colorPress: hsla(191, 32%, 93%, 1); + --colorFocus: hsla(191, 32%, 88%, 1); + --placeholderColor: hsla(191, 32%, 88%, 1); + --borderColor: hsla(191, 32%, 55%, 1); + --borderColorHover: hsla(191, 32%, 61%, 1); + --borderColorFocus: hsla(191, 32%, 66%, 1); + --borderColorPress: hsla(191, 32%, 61%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_SliderTrackActive, +:root.t_dark .t_light .t_SliderTrackActive, +:root.t_light .t_dark .t_light .t_SliderTrackActive, +:root.t_light .t_SliderTrackActive { + --accentBackground: hsla(180, 20%, 99%, 0); + --accentColor: hsla(180, 20%, 99%, 0); + --background0: hsla(0, 0%, 0%, 0.75); + --background025: hsla(112, 22%, 0%, 1); + --background05: hsla(96, 16%, 25%, 1); + --background075: hsla(191, 32%, 50%, 1); + --color0: hsla(191, 32%, 88%, 1); + --color025: hsla(191, 32%, 93%, 1); + --color05: hsla(191, 32%, 99%, 1); + --color075: hsla(180, 20%, 99%, 0.75); + --background: hsla(191, 32%, 50%, 1); + --backgroundHover: hsla(191, 32%, 55%, 1); + --backgroundPress: hsla(191, 32%, 61%, 1); + --backgroundFocus: hsla(191, 32%, 66%, 1); + --color: hsla(191, 32%, 93%, 1); + --colorHover: hsla(191, 32%, 88%, 1); + --colorPress: hsla(191, 32%, 93%, 1); + --colorFocus: hsla(191, 32%, 88%, 1); + --placeholderColor: hsla(191, 32%, 77%, 1); + --borderColor: hsla(191, 32%, 66%, 1); + --borderColorHover: hsla(191, 32%, 72%, 1); + --borderColorFocus: hsla(191, 32%, 77%, 1); + --borderColorPress: hsla(191, 32%, 72%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_SliderTrackActive, + .t_SliderTrackActive { + --accentBackground: hsla(180, 20%, 99%, 0); + --accentColor: hsla(180, 20%, 99%, 0); + --background0: hsla(0, 0%, 0%, 0.75); + --background025: hsla(112, 22%, 0%, 1); + --background05: hsla(96, 16%, 25%, 1); + --background075: hsla(191, 32%, 50%, 1); + --color0: hsla(191, 32%, 88%, 1); + --color025: hsla(191, 32%, 93%, 1); + --color05: hsla(191, 32%, 99%, 1); + --color075: hsla(180, 20%, 99%, 0.75); + --background: hsla(191, 32%, 50%, 1); + --backgroundHover: hsla(191, 32%, 55%, 1); + --backgroundPress: hsla(191, 32%, 61%, 1); + --backgroundFocus: hsla(191, 32%, 66%, 1); + --color: hsla(191, 32%, 93%, 1); + --colorHover: hsla(191, 32%, 88%, 1); + --colorPress: hsla(191, 32%, 93%, 1); + --colorFocus: hsla(191, 32%, 88%, 1); + --placeholderColor: hsla(191, 32%, 77%, 1); + --borderColor: hsla(191, 32%, 66%, 1); + --borderColorHover: hsla(191, 32%, 72%, 1); + --borderColorFocus: hsla(191, 32%, 77%, 1); + --borderColorPress: hsla(191, 32%, 72%, 1); + } +} + +:root.t_dark .t_light .t_accent, +:root.t_dark .t_light .t_active_accent, +:root.t_dark .t_light .t_alt1_accent, +:root.t_dark .t_light .t_alt2_accent, +:root.t_dark .t_light .t_dark .t_light .t_accent, +:root.t_dark .t_light .t_dark .t_light .t_active_accent, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent, +:root.t_dark .t_light .t_dark .t_light .t_error_accent, +:root.t_dark .t_light .t_dark .t_light .t_red_accent, +:root.t_dark .t_light .t_dark .t_light .t_success_accent, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent, +:root.t_dark .t_light .t_dim_accent, +:root.t_dark .t_light .t_disabled_accent, +:root.t_dark .t_light .t_error_accent, +:root.t_dark .t_light .t_red_accent, +:root.t_dark .t_light .t_success_accent, +:root.t_dark .t_light .t_warning_accent, +:root.t_light .t_accent, +:root.t_light .t_active_accent, +:root.t_light .t_alt1_accent, +:root.t_light .t_alt2_accent, +:root.t_light .t_dark .t_light .t_accent, +:root.t_light .t_dark .t_light .t_active_accent, +:root.t_light .t_dark .t_light .t_alt1_accent, +:root.t_light .t_dark .t_light .t_alt2_accent, +:root.t_light .t_dark .t_light .t_dim_accent, +:root.t_light .t_dark .t_light .t_disabled_accent, +:root.t_light .t_dark .t_light .t_error_accent, +:root.t_light .t_dark .t_light .t_red_accent, +:root.t_light .t_dark .t_light .t_success_accent, +:root.t_light .t_dark .t_light .t_warning_accent, +:root.t_light .t_dim_accent, +:root.t_light .t_disabled_accent, +:root.t_light .t_error_accent, +:root.t_light .t_red_accent, +:root.t_light .t_success_accent, +:root.t_light .t_warning_accent { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(125, 96%, 40%, 0.25); + --background025: var(--color-229); + --background05: var(--color-230); + --background075: var(--color-231); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 33%, 10%, 0.75); + --color05: hsla(191, 33%, 10%, 0.5); + --color075: hsla(191, 33%, 10%, 0.25); + --background: var(--color-231); + --backgroundHover: var(--color-232); + --backgroundPress: var(--color-233); + --backgroundFocus: var(--color-234); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-240); + --borderColor: var(--color-234); + --borderColorHover: var(--color-235); + --borderColorFocus: var(--color-236); + --borderColorPress: var(--color-235); + --color1: var(--color-231); + --color2: var(--color-232); + --color3: var(--color-233); + --color4: var(--color-234); + --color5: var(--color-235); + --color6: var(--color-236); + --color7: var(--color-237); + --color8: var(--color-238); + --color9: var(--color-239); + --color10: var(--color-240); + --color11: hsla(191, 32%, 10%, 1); + --color12: hsla(191, 32%, 10%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_accent, + .t_active_accent, + .t_alt1_accent, + .t_alt2_accent, + .t_dark .t_light .t_accent, + .t_dark .t_light .t_active_accent, + .t_dark .t_light .t_alt1_accent, + .t_dark .t_light .t_alt2_accent, + .t_dark .t_light .t_dim_accent, + .t_dark .t_light .t_disabled_accent, + .t_dark .t_light .t_error_accent, + .t_dark .t_light .t_red_accent, + .t_dark .t_light .t_success_accent, + .t_dark .t_light .t_warning_accent, + .t_dim_accent, + .t_disabled_accent, + .t_error_accent, + .t_red_accent, + .t_success_accent, + .t_warning_accent { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(125, 96%, 40%, 0.25); + --background025: var(--color-229); + --background05: var(--color-230); + --background075: var(--color-231); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 33%, 10%, 0.75); + --color05: hsla(191, 33%, 10%, 0.5); + --color075: hsla(191, 33%, 10%, 0.25); + --background: var(--color-231); + --backgroundHover: var(--color-232); + --backgroundPress: var(--color-233); + --backgroundFocus: var(--color-234); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-240); + --borderColor: var(--color-234); + --borderColorHover: var(--color-235); + --borderColorFocus: var(--color-236); + --borderColorPress: var(--color-235); + --color1: var(--color-231); + --color2: var(--color-232); + --color3: var(--color-233); + --color4: var(--color-234); + --color5: var(--color-235); + --color6: var(--color-236); + --color7: var(--color-237); + --color8: var(--color-238); + --color9: var(--color-239); + --color10: var(--color-240); + --color11: hsla(191, 32%, 10%, 1); + --color12: hsla(191, 32%, 10%, 1); + } +} + +:root.t_dark .t_light .t_accent_Button, +:root.t_dark .t_light .t_accent_Switch, +:root.t_dark .t_light .t_dark .t_light .t_accent_Button, +:root.t_dark .t_light .t_dark .t_light .t_accent_Switch, +:root.t_light .t_accent_Button, +:root.t_light .t_accent_Switch, +:root.t_light .t_dark .t_light .t_accent_Button, +:root.t_light .t_dark .t_light .t_accent_Switch { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(125, 96%, 40%, 0.25); + --background025: var(--color-229); + --background05: var(--color-230); + --background075: var(--color-231); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 33%, 10%, 0.75); + --color05: hsla(191, 33%, 10%, 0.5); + --color075: hsla(191, 33%, 10%, 0.25); + --background: var(--color-234); + --backgroundHover: var(--color-235); + --backgroundPress: var(--color-236); + --backgroundFocus: var(--color-237); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-240); + --borderColor: var(--color-237); + --borderColorHover: var(--color-238); + --borderColorFocus: var(--color-239); + --borderColorPress: var(--color-238); + --color1: var(--color-231); + --color2: var(--color-232); + --color3: var(--color-233); + --color4: var(--color-234); + --color5: var(--color-235); + --color6: var(--color-236); + --color7: var(--color-237); + --color8: var(--color-238); + --color9: var(--color-239); + --color10: var(--color-240); + --color11: hsla(191, 32%, 10%, 1); + --color12: hsla(191, 32%, 10%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_accent_Button, + .t_accent_Switch, + .t_dark .t_light .t_accent_Button, + .t_dark .t_light .t_accent_Switch { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(125, 96%, 40%, 0.25); + --background025: var(--color-229); + --background05: var(--color-230); + --background075: var(--color-231); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 33%, 10%, 0.75); + --color05: hsla(191, 33%, 10%, 0.5); + --color075: hsla(191, 33%, 10%, 0.25); + --background: var(--color-234); + --backgroundHover: var(--color-235); + --backgroundPress: var(--color-236); + --backgroundFocus: var(--color-237); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-240); + --borderColor: var(--color-237); + --borderColorHover: var(--color-238); + --borderColorFocus: var(--color-239); + --borderColorPress: var(--color-238); + --color1: var(--color-231); + --color2: var(--color-232); + --color3: var(--color-233); + --color4: var(--color-234); + --color5: var(--color-235); + --color6: var(--color-236); + --color7: var(--color-237); + --color8: var(--color-238); + --color9: var(--color-239); + --color10: var(--color-240); + --color11: hsla(191, 32%, 10%, 1); + --color12: hsla(191, 32%, 10%, 1); + } +} + +:root.t_dark .t_light .t_accent_Card, +:root.t_dark .t_light .t_accent_DrawerFrame, +:root.t_dark .t_light .t_accent_Progress, +:root.t_dark .t_light .t_accent_TooltipArrow, +:root.t_dark .t_light .t_active_accent_Card, +:root.t_dark .t_light .t_active_accent_DrawerFrame, +:root.t_dark .t_light .t_active_accent_Progress, +:root.t_dark .t_light .t_active_accent_TooltipArrow, +:root.t_dark .t_light .t_alt1_accent_Card, +:root.t_dark .t_light .t_alt1_accent_DrawerFrame, +:root.t_dark .t_light .t_alt1_accent_Progress, +:root.t_dark .t_light .t_alt1_accent_TooltipArrow, +:root.t_dark .t_light .t_alt2_accent_Card, +:root.t_dark .t_light .t_alt2_accent_DrawerFrame, +:root.t_dark .t_light .t_alt2_accent_Progress, +:root.t_dark .t_light .t_alt2_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_light .t_accent_Card, +:root.t_dark .t_light .t_dark .t_light .t_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_accent_Progress, +:root.t_dark .t_light .t_dark .t_light .t_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_Card, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_Progress, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Card, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Progress, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Card, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Progress, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_Card, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_Progress, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Card, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Progress, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_Card, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_Progress, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_Card, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_Progress, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_Card, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_Progress, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_TooltipArrow, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_Card, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_Progress, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_TooltipArrow, +:root.t_dark .t_light .t_dim_accent_Card, +:root.t_dark .t_light .t_dim_accent_DrawerFrame, +:root.t_dark .t_light .t_dim_accent_Progress, +:root.t_dark .t_light .t_dim_accent_TooltipArrow, +:root.t_dark .t_light .t_disabled_accent_Card, +:root.t_dark .t_light .t_disabled_accent_DrawerFrame, +:root.t_dark .t_light .t_disabled_accent_Progress, +:root.t_dark .t_light .t_disabled_accent_TooltipArrow, +:root.t_dark .t_light .t_error_accent_Card, +:root.t_dark .t_light .t_error_accent_DrawerFrame, +:root.t_dark .t_light .t_error_accent_Progress, +:root.t_dark .t_light .t_error_accent_TooltipArrow, +:root.t_dark .t_light .t_red_accent_Card, +:root.t_dark .t_light .t_red_accent_DrawerFrame, +:root.t_dark .t_light .t_red_accent_Progress, +:root.t_dark .t_light .t_red_accent_TooltipArrow, +:root.t_dark .t_light .t_success_accent_Card, +:root.t_dark .t_light .t_success_accent_DrawerFrame, +:root.t_dark .t_light .t_success_accent_Progress, +:root.t_dark .t_light .t_success_accent_TooltipArrow, +:root.t_dark .t_light .t_warning_accent_Card, +:root.t_dark .t_light .t_warning_accent_DrawerFrame, +:root.t_dark .t_light .t_warning_accent_Progress, +:root.t_dark .t_light .t_warning_accent_TooltipArrow, +:root.t_light .t_accent_Card, +:root.t_light .t_accent_DrawerFrame, +:root.t_light .t_accent_Progress, +:root.t_light .t_accent_TooltipArrow, +:root.t_light .t_active_accent_Card, +:root.t_light .t_active_accent_DrawerFrame, +:root.t_light .t_active_accent_Progress, +:root.t_light .t_active_accent_TooltipArrow, +:root.t_light .t_alt1_accent_Card, +:root.t_light .t_alt1_accent_DrawerFrame, +:root.t_light .t_alt1_accent_Progress, +:root.t_light .t_alt1_accent_TooltipArrow, +:root.t_light .t_alt2_accent_Card, +:root.t_light .t_alt2_accent_DrawerFrame, +:root.t_light .t_alt2_accent_Progress, +:root.t_light .t_alt2_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_accent_Card, +:root.t_light .t_dark .t_light .t_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_accent_Progress, +:root.t_light .t_dark .t_light .t_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_active_accent_Card, +:root.t_light .t_dark .t_light .t_active_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_active_accent_Progress, +:root.t_light .t_dark .t_light .t_active_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_alt1_accent_Card, +:root.t_light .t_dark .t_light .t_alt1_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_alt1_accent_Progress, +:root.t_light .t_dark .t_light .t_alt1_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_alt2_accent_Card, +:root.t_light .t_dark .t_light .t_alt2_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_alt2_accent_Progress, +:root.t_light .t_dark .t_light .t_alt2_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_dim_accent_Card, +:root.t_light .t_dark .t_light .t_dim_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_dim_accent_Progress, +:root.t_light .t_dark .t_light .t_dim_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_disabled_accent_Card, +:root.t_light .t_dark .t_light .t_disabled_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_disabled_accent_Progress, +:root.t_light .t_dark .t_light .t_disabled_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_error_accent_Card, +:root.t_light .t_dark .t_light .t_error_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_error_accent_Progress, +:root.t_light .t_dark .t_light .t_error_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_red_accent_Card, +:root.t_light .t_dark .t_light .t_red_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_red_accent_Progress, +:root.t_light .t_dark .t_light .t_red_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_success_accent_Card, +:root.t_light .t_dark .t_light .t_success_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_success_accent_Progress, +:root.t_light .t_dark .t_light .t_success_accent_TooltipArrow, +:root.t_light .t_dark .t_light .t_warning_accent_Card, +:root.t_light .t_dark .t_light .t_warning_accent_DrawerFrame, +:root.t_light .t_dark .t_light .t_warning_accent_Progress, +:root.t_light .t_dark .t_light .t_warning_accent_TooltipArrow, +:root.t_light .t_dim_accent_Card, +:root.t_light .t_dim_accent_DrawerFrame, +:root.t_light .t_dim_accent_Progress, +:root.t_light .t_dim_accent_TooltipArrow, +:root.t_light .t_disabled_accent_Card, +:root.t_light .t_disabled_accent_DrawerFrame, +:root.t_light .t_disabled_accent_Progress, +:root.t_light .t_disabled_accent_TooltipArrow, +:root.t_light .t_error_accent_Card, +:root.t_light .t_error_accent_DrawerFrame, +:root.t_light .t_error_accent_Progress, +:root.t_light .t_error_accent_TooltipArrow, +:root.t_light .t_red_accent_Card, +:root.t_light .t_red_accent_DrawerFrame, +:root.t_light .t_red_accent_Progress, +:root.t_light .t_red_accent_TooltipArrow, +:root.t_light .t_success_accent_Card, +:root.t_light .t_success_accent_DrawerFrame, +:root.t_light .t_success_accent_Progress, +:root.t_light .t_success_accent_TooltipArrow, +:root.t_light .t_warning_accent_Card, +:root.t_light .t_warning_accent_DrawerFrame, +:root.t_light .t_warning_accent_Progress, +:root.t_light .t_warning_accent_TooltipArrow { + --background0: var(--color-229); + --background025: var(--color-230); + --background05: var(--color-231); + --background075: var(--color-232); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 32%, 10%, 1); + --color05: hsla(191, 33%, 10%, 0.75); + --color075: hsla(191, 33%, 10%, 0.5); + --background: var(--color-232); + --backgroundHover: var(--color-233); + --backgroundPress: var(--color-234); + --backgroundFocus: var(--color-235); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-239); + --borderColor: var(--color-235); + --borderColorHover: var(--color-236); + --borderColorFocus: var(--color-237); + --borderColorPress: var(--color-236); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_accent_Card, + .t_accent_DrawerFrame, + .t_accent_Progress, + .t_accent_TooltipArrow, + .t_active_accent_Card, + .t_active_accent_DrawerFrame, + .t_active_accent_Progress, + .t_active_accent_TooltipArrow, + .t_alt1_accent_Card, + .t_alt1_accent_DrawerFrame, + .t_alt1_accent_Progress, + .t_alt1_accent_TooltipArrow, + .t_alt2_accent_Card, + .t_alt2_accent_DrawerFrame, + .t_alt2_accent_Progress, + .t_alt2_accent_TooltipArrow, + .t_dark .t_light .t_accent_Card, + .t_dark .t_light .t_accent_DrawerFrame, + .t_dark .t_light .t_accent_Progress, + .t_dark .t_light .t_accent_TooltipArrow, + .t_dark .t_light .t_active_accent_Card, + .t_dark .t_light .t_active_accent_DrawerFrame, + .t_dark .t_light .t_active_accent_Progress, + .t_dark .t_light .t_active_accent_TooltipArrow, + .t_dark .t_light .t_alt1_accent_Card, + .t_dark .t_light .t_alt1_accent_DrawerFrame, + .t_dark .t_light .t_alt1_accent_Progress, + .t_dark .t_light .t_alt1_accent_TooltipArrow, + .t_dark .t_light .t_alt2_accent_Card, + .t_dark .t_light .t_alt2_accent_DrawerFrame, + .t_dark .t_light .t_alt2_accent_Progress, + .t_dark .t_light .t_alt2_accent_TooltipArrow, + .t_dark .t_light .t_dim_accent_Card, + .t_dark .t_light .t_dim_accent_DrawerFrame, + .t_dark .t_light .t_dim_accent_Progress, + .t_dark .t_light .t_dim_accent_TooltipArrow, + .t_dark .t_light .t_disabled_accent_Card, + .t_dark .t_light .t_disabled_accent_DrawerFrame, + .t_dark .t_light .t_disabled_accent_Progress, + .t_dark .t_light .t_disabled_accent_TooltipArrow, + .t_dark .t_light .t_error_accent_Card, + .t_dark .t_light .t_error_accent_DrawerFrame, + .t_dark .t_light .t_error_accent_Progress, + .t_dark .t_light .t_error_accent_TooltipArrow, + .t_dark .t_light .t_red_accent_Card, + .t_dark .t_light .t_red_accent_DrawerFrame, + .t_dark .t_light .t_red_accent_Progress, + .t_dark .t_light .t_red_accent_TooltipArrow, + .t_dark .t_light .t_success_accent_Card, + .t_dark .t_light .t_success_accent_DrawerFrame, + .t_dark .t_light .t_success_accent_Progress, + .t_dark .t_light .t_success_accent_TooltipArrow, + .t_dark .t_light .t_warning_accent_Card, + .t_dark .t_light .t_warning_accent_DrawerFrame, + .t_dark .t_light .t_warning_accent_Progress, + .t_dark .t_light .t_warning_accent_TooltipArrow, + .t_dim_accent_Card, + .t_dim_accent_DrawerFrame, + .t_dim_accent_Progress, + .t_dim_accent_TooltipArrow, + .t_disabled_accent_Card, + .t_disabled_accent_DrawerFrame, + .t_disabled_accent_Progress, + .t_disabled_accent_TooltipArrow, + .t_error_accent_Card, + .t_error_accent_DrawerFrame, + .t_error_accent_Progress, + .t_error_accent_TooltipArrow, + .t_red_accent_Card, + .t_red_accent_DrawerFrame, + .t_red_accent_Progress, + .t_red_accent_TooltipArrow, + .t_success_accent_Card, + .t_success_accent_DrawerFrame, + .t_success_accent_Progress, + .t_success_accent_TooltipArrow, + .t_warning_accent_Card, + .t_warning_accent_DrawerFrame, + .t_warning_accent_Progress, + .t_warning_accent_TooltipArrow { + --background0: var(--color-229); + --background025: var(--color-230); + --background05: var(--color-231); + --background075: var(--color-232); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 32%, 10%, 1); + --color05: hsla(191, 33%, 10%, 0.75); + --color075: hsla(191, 33%, 10%, 0.5); + --background: var(--color-232); + --backgroundHover: var(--color-233); + --backgroundPress: var(--color-234); + --backgroundFocus: var(--color-235); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-239); + --borderColor: var(--color-235); + --borderColorHover: var(--color-236); + --borderColorFocus: var(--color-237); + --borderColorPress: var(--color-236); + } +} + +:root.t_dark .t_light .t_accent_Checkbox, +:root.t_dark .t_light .t_accent_Input, +:root.t_dark .t_light .t_accent_RadioGroupItem, +:root.t_dark .t_light .t_accent_TextArea, +:root.t_dark .t_light .t_active_accent_Checkbox, +:root.t_dark .t_light .t_active_accent_Input, +:root.t_dark .t_light .t_active_accent_RadioGroupItem, +:root.t_dark .t_light .t_active_accent_TextArea, +:root.t_dark .t_light .t_alt1_accent_Checkbox, +:root.t_dark .t_light .t_alt1_accent_Input, +:root.t_dark .t_light .t_alt1_accent_RadioGroupItem, +:root.t_dark .t_light .t_alt1_accent_TextArea, +:root.t_dark .t_light .t_alt2_accent_Checkbox, +:root.t_dark .t_light .t_alt2_accent_Input, +:root.t_dark .t_light .t_alt2_accent_RadioGroupItem, +:root.t_dark .t_light .t_alt2_accent_TextArea, +:root.t_dark .t_light .t_dark .t_light .t_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_accent_Input, +:root.t_dark .t_light .t_dark .t_light .t_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_accent_TextArea, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_Input, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_TextArea, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Input, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_TextArea, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Input, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_TextArea, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_Input, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_TextArea, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Input, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_TextArea, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_Input, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_TextArea, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_Input, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_TextArea, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_Input, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_TextArea, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_Input, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_TextArea, +:root.t_dark .t_light .t_dim_accent_Checkbox, +:root.t_dark .t_light .t_dim_accent_Input, +:root.t_dark .t_light .t_dim_accent_RadioGroupItem, +:root.t_dark .t_light .t_dim_accent_TextArea, +:root.t_dark .t_light .t_disabled_accent_Checkbox, +:root.t_dark .t_light .t_disabled_accent_Input, +:root.t_dark .t_light .t_disabled_accent_RadioGroupItem, +:root.t_dark .t_light .t_disabled_accent_TextArea, +:root.t_dark .t_light .t_error_accent_Checkbox, +:root.t_dark .t_light .t_error_accent_Input, +:root.t_dark .t_light .t_error_accent_RadioGroupItem, +:root.t_dark .t_light .t_error_accent_TextArea, +:root.t_dark .t_light .t_red_accent_Checkbox, +:root.t_dark .t_light .t_red_accent_Input, +:root.t_dark .t_light .t_red_accent_RadioGroupItem, +:root.t_dark .t_light .t_red_accent_TextArea, +:root.t_dark .t_light .t_success_accent_Checkbox, +:root.t_dark .t_light .t_success_accent_Input, +:root.t_dark .t_light .t_success_accent_RadioGroupItem, +:root.t_dark .t_light .t_success_accent_TextArea, +:root.t_dark .t_light .t_warning_accent_Checkbox, +:root.t_dark .t_light .t_warning_accent_Input, +:root.t_dark .t_light .t_warning_accent_RadioGroupItem, +:root.t_dark .t_light .t_warning_accent_TextArea, +:root.t_light .t_accent_Checkbox, +:root.t_light .t_accent_Input, +:root.t_light .t_accent_RadioGroupItem, +:root.t_light .t_accent_TextArea, +:root.t_light .t_active_accent_Checkbox, +:root.t_light .t_active_accent_Input, +:root.t_light .t_active_accent_RadioGroupItem, +:root.t_light .t_active_accent_TextArea, +:root.t_light .t_alt1_accent_Checkbox, +:root.t_light .t_alt1_accent_Input, +:root.t_light .t_alt1_accent_RadioGroupItem, +:root.t_light .t_alt1_accent_TextArea, +:root.t_light .t_alt2_accent_Checkbox, +:root.t_light .t_alt2_accent_Input, +:root.t_light .t_alt2_accent_RadioGroupItem, +:root.t_light .t_alt2_accent_TextArea, +:root.t_light .t_dark .t_light .t_accent_Checkbox, +:root.t_light .t_dark .t_light .t_accent_Input, +:root.t_light .t_dark .t_light .t_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_accent_TextArea, +:root.t_light .t_dark .t_light .t_active_accent_Checkbox, +:root.t_light .t_dark .t_light .t_active_accent_Input, +:root.t_light .t_dark .t_light .t_active_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_active_accent_TextArea, +:root.t_light .t_dark .t_light .t_alt1_accent_Checkbox, +:root.t_light .t_dark .t_light .t_alt1_accent_Input, +:root.t_light .t_dark .t_light .t_alt1_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_alt1_accent_TextArea, +:root.t_light .t_dark .t_light .t_alt2_accent_Checkbox, +:root.t_light .t_dark .t_light .t_alt2_accent_Input, +:root.t_light .t_dark .t_light .t_alt2_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_alt2_accent_TextArea, +:root.t_light .t_dark .t_light .t_dim_accent_Checkbox, +:root.t_light .t_dark .t_light .t_dim_accent_Input, +:root.t_light .t_dark .t_light .t_dim_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dim_accent_TextArea, +:root.t_light .t_dark .t_light .t_disabled_accent_Checkbox, +:root.t_light .t_dark .t_light .t_disabled_accent_Input, +:root.t_light .t_dark .t_light .t_disabled_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_disabled_accent_TextArea, +:root.t_light .t_dark .t_light .t_error_accent_Checkbox, +:root.t_light .t_dark .t_light .t_error_accent_Input, +:root.t_light .t_dark .t_light .t_error_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_error_accent_TextArea, +:root.t_light .t_dark .t_light .t_red_accent_Checkbox, +:root.t_light .t_dark .t_light .t_red_accent_Input, +:root.t_light .t_dark .t_light .t_red_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_red_accent_TextArea, +:root.t_light .t_dark .t_light .t_success_accent_Checkbox, +:root.t_light .t_dark .t_light .t_success_accent_Input, +:root.t_light .t_dark .t_light .t_success_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_success_accent_TextArea, +:root.t_light .t_dark .t_light .t_warning_accent_Checkbox, +:root.t_light .t_dark .t_light .t_warning_accent_Input, +:root.t_light .t_dark .t_light .t_warning_accent_RadioGroupItem, +:root.t_light .t_dark .t_light .t_warning_accent_TextArea, +:root.t_light .t_dim_accent_Checkbox, +:root.t_light .t_dim_accent_Input, +:root.t_light .t_dim_accent_RadioGroupItem, +:root.t_light .t_dim_accent_TextArea, +:root.t_light .t_disabled_accent_Checkbox, +:root.t_light .t_disabled_accent_Input, +:root.t_light .t_disabled_accent_RadioGroupItem, +:root.t_light .t_disabled_accent_TextArea, +:root.t_light .t_error_accent_Checkbox, +:root.t_light .t_error_accent_Input, +:root.t_light .t_error_accent_RadioGroupItem, +:root.t_light .t_error_accent_TextArea, +:root.t_light .t_red_accent_Checkbox, +:root.t_light .t_red_accent_Input, +:root.t_light .t_red_accent_RadioGroupItem, +:root.t_light .t_red_accent_TextArea, +:root.t_light .t_success_accent_Checkbox, +:root.t_light .t_success_accent_Input, +:root.t_light .t_success_accent_RadioGroupItem, +:root.t_light .t_success_accent_TextArea, +:root.t_light .t_warning_accent_Checkbox, +:root.t_light .t_warning_accent_Input, +:root.t_light .t_warning_accent_RadioGroupItem, +:root.t_light .t_warning_accent_TextArea { + --accentBackground: hsla(125, 96%, 40%, 0); + --accentColor: hsla(125, 96%, 40%, 0); + --background0: hsla(125, 96%, 40%, 0.25); + --background025: var(--color-229); + --background05: var(--color-230); + --background075: var(--color-231); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 33%, 10%, 0.75); + --color05: hsla(191, 33%, 10%, 0.5); + --color075: hsla(191, 33%, 10%, 0.25); + --background: var(--color-231); + --backgroundHover: var(--color-232); + --backgroundPress: var(--color-233); + --backgroundFocus: var(--color-234); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-240); + --borderColor: var(--color-236); + --borderColorHover: var(--color-237); + --borderColorFocus: var(--color-238); + --borderColorPress: var(--color-237); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_accent_Checkbox, + .t_accent_Input, + .t_accent_RadioGroupItem, + .t_accent_TextArea, + .t_active_accent_Checkbox, + .t_active_accent_Input, + .t_active_accent_RadioGroupItem, + .t_active_accent_TextArea, + .t_alt1_accent_Checkbox, + .t_alt1_accent_Input, + .t_alt1_accent_RadioGroupItem, + .t_alt1_accent_TextArea, + .t_alt2_accent_Checkbox, + .t_alt2_accent_Input, + .t_alt2_accent_RadioGroupItem, + .t_alt2_accent_TextArea, + .t_dark .t_light .t_accent_Checkbox, + .t_dark .t_light .t_accent_Input, + .t_dark .t_light .t_accent_RadioGroupItem, + .t_dark .t_light .t_accent_TextArea, + .t_dark .t_light .t_active_accent_Checkbox, + .t_dark .t_light .t_active_accent_Input, + .t_dark .t_light .t_active_accent_RadioGroupItem, + .t_dark .t_light .t_active_accent_TextArea, + .t_dark .t_light .t_alt1_accent_Checkbox, + .t_dark .t_light .t_alt1_accent_Input, + .t_dark .t_light .t_alt1_accent_RadioGroupItem, + .t_dark .t_light .t_alt1_accent_TextArea, + .t_dark .t_light .t_alt2_accent_Checkbox, + .t_dark .t_light .t_alt2_accent_Input, + .t_dark .t_light .t_alt2_accent_RadioGroupItem, + .t_dark .t_light .t_alt2_accent_TextArea, + .t_dark .t_light .t_dim_accent_Checkbox, + .t_dark .t_light .t_dim_accent_Input, + .t_dark .t_light .t_dim_accent_RadioGroupItem, + .t_dark .t_light .t_dim_accent_TextArea, + .t_dark .t_light .t_disabled_accent_Checkbox, + .t_dark .t_light .t_disabled_accent_Input, + .t_dark .t_light .t_disabled_accent_RadioGroupItem, + .t_dark .t_light .t_disabled_accent_TextArea, + .t_dark .t_light .t_error_accent_Checkbox, + .t_dark .t_light .t_error_accent_Input, + .t_dark .t_light .t_error_accent_RadioGroupItem, + .t_dark .t_light .t_error_accent_TextArea, + .t_dark .t_light .t_red_accent_Checkbox, + .t_dark .t_light .t_red_accent_Input, + .t_dark .t_light .t_red_accent_RadioGroupItem, + .t_dark .t_light .t_red_accent_TextArea, + .t_dark .t_light .t_success_accent_Checkbox, + .t_dark .t_light .t_success_accent_Input, + .t_dark .t_light .t_success_accent_RadioGroupItem, + .t_dark .t_light .t_success_accent_TextArea, + .t_dark .t_light .t_warning_accent_Checkbox, + .t_dark .t_light .t_warning_accent_Input, + .t_dark .t_light .t_warning_accent_RadioGroupItem, + .t_dark .t_light .t_warning_accent_TextArea, + .t_dim_accent_Checkbox, + .t_dim_accent_Input, + .t_dim_accent_RadioGroupItem, + .t_dim_accent_TextArea, + .t_disabled_accent_Checkbox, + .t_disabled_accent_Input, + .t_disabled_accent_RadioGroupItem, + .t_disabled_accent_TextArea, + .t_error_accent_Checkbox, + .t_error_accent_Input, + .t_error_accent_RadioGroupItem, + .t_error_accent_TextArea, + .t_red_accent_Checkbox, + .t_red_accent_Input, + .t_red_accent_RadioGroupItem, + .t_red_accent_TextArea, + .t_success_accent_Checkbox, + .t_success_accent_Input, + .t_success_accent_RadioGroupItem, + .t_success_accent_TextArea, + .t_warning_accent_Checkbox, + .t_warning_accent_Input, + .t_warning_accent_RadioGroupItem, + .t_warning_accent_TextArea { + --accentBackground: hsla(125, 96%, 40%, 0); + --accentColor: hsla(125, 96%, 40%, 0); + --background0: hsla(125, 96%, 40%, 0.25); + --background025: var(--color-229); + --background05: var(--color-230); + --background075: var(--color-231); + --color0: hsla(191, 32%, 10%, 1); + --color025: hsla(191, 33%, 10%, 0.75); + --color05: hsla(191, 33%, 10%, 0.5); + --color075: hsla(191, 33%, 10%, 0.25); + --background: var(--color-231); + --backgroundHover: var(--color-232); + --backgroundPress: var(--color-233); + --backgroundFocus: var(--color-234); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-240); + --borderColor: var(--color-236); + --borderColorHover: var(--color-237); + --borderColorFocus: var(--color-238); + --borderColorPress: var(--color-237); + } +} + +:root.t_dark .t_light .t_accent_ProgressIndicator, +:root.t_dark .t_light .t_accent_SliderThumb, +:root.t_dark .t_light .t_accent_SwitchThumb, +:root.t_dark .t_light .t_accent_Tooltip, +:root.t_dark .t_light .t_active_accent_ProgressIndicator, +:root.t_dark .t_light .t_active_accent_SliderThumb, +:root.t_dark .t_light .t_active_accent_SwitchThumb, +:root.t_dark .t_light .t_active_accent_Tooltip, +:root.t_dark .t_light .t_alt1_accent_ProgressIndicator, +:root.t_dark .t_light .t_alt1_accent_SliderThumb, +:root.t_dark .t_light .t_alt1_accent_SwitchThumb, +:root.t_dark .t_light .t_alt1_accent_Tooltip, +:root.t_dark .t_light .t_alt2_accent_ProgressIndicator, +:root.t_dark .t_light .t_alt2_accent_SliderThumb, +:root.t_dark .t_light .t_alt2_accent_SwitchThumb, +:root.t_dark .t_light .t_alt2_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_light .t_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_Tooltip, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_Tooltip, +:root.t_dark .t_light .t_dim_accent_ProgressIndicator, +:root.t_dark .t_light .t_dim_accent_SliderThumb, +:root.t_dark .t_light .t_dim_accent_SwitchThumb, +:root.t_dark .t_light .t_dim_accent_Tooltip, +:root.t_dark .t_light .t_disabled_accent_ProgressIndicator, +:root.t_dark .t_light .t_disabled_accent_SliderThumb, +:root.t_dark .t_light .t_disabled_accent_SwitchThumb, +:root.t_dark .t_light .t_disabled_accent_Tooltip, +:root.t_dark .t_light .t_error_accent_ProgressIndicator, +:root.t_dark .t_light .t_error_accent_SliderThumb, +:root.t_dark .t_light .t_error_accent_SwitchThumb, +:root.t_dark .t_light .t_error_accent_Tooltip, +:root.t_dark .t_light .t_red_accent_ProgressIndicator, +:root.t_dark .t_light .t_red_accent_SliderThumb, +:root.t_dark .t_light .t_red_accent_SwitchThumb, +:root.t_dark .t_light .t_red_accent_Tooltip, +:root.t_dark .t_light .t_success_accent_ProgressIndicator, +:root.t_dark .t_light .t_success_accent_SliderThumb, +:root.t_dark .t_light .t_success_accent_SwitchThumb, +:root.t_dark .t_light .t_success_accent_Tooltip, +:root.t_dark .t_light .t_warning_accent_ProgressIndicator, +:root.t_dark .t_light .t_warning_accent_SliderThumb, +:root.t_dark .t_light .t_warning_accent_SwitchThumb, +:root.t_dark .t_light .t_warning_accent_Tooltip, +:root.t_light .t_accent_ProgressIndicator, +:root.t_light .t_accent_SliderThumb, +:root.t_light .t_accent_SwitchThumb, +:root.t_light .t_accent_Tooltip, +:root.t_light .t_active_accent_ProgressIndicator, +:root.t_light .t_active_accent_SliderThumb, +:root.t_light .t_active_accent_SwitchThumb, +:root.t_light .t_active_accent_Tooltip, +:root.t_light .t_alt1_accent_ProgressIndicator, +:root.t_light .t_alt1_accent_SliderThumb, +:root.t_light .t_alt1_accent_SwitchThumb, +:root.t_light .t_alt1_accent_Tooltip, +:root.t_light .t_alt2_accent_ProgressIndicator, +:root.t_light .t_alt2_accent_SliderThumb, +:root.t_light .t_alt2_accent_SwitchThumb, +:root.t_light .t_alt2_accent_Tooltip, +:root.t_light .t_dark .t_light .t_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_accent_Tooltip, +:root.t_light .t_dark .t_light .t_active_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_active_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_active_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_active_accent_Tooltip, +:root.t_light .t_dark .t_light .t_alt1_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_alt1_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_alt1_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_alt1_accent_Tooltip, +:root.t_light .t_dark .t_light .t_alt2_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_alt2_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_alt2_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_alt2_accent_Tooltip, +:root.t_light .t_dark .t_light .t_dim_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dim_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_dim_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_dim_accent_Tooltip, +:root.t_light .t_dark .t_light .t_disabled_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_disabled_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_disabled_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_disabled_accent_Tooltip, +:root.t_light .t_dark .t_light .t_error_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_error_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_error_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_error_accent_Tooltip, +:root.t_light .t_dark .t_light .t_red_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_red_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_red_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_red_accent_Tooltip, +:root.t_light .t_dark .t_light .t_success_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_success_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_success_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_success_accent_Tooltip, +:root.t_light .t_dark .t_light .t_warning_accent_ProgressIndicator, +:root.t_light .t_dark .t_light .t_warning_accent_SliderThumb, +:root.t_light .t_dark .t_light .t_warning_accent_SwitchThumb, +:root.t_light .t_dark .t_light .t_warning_accent_Tooltip, +:root.t_light .t_dim_accent_ProgressIndicator, +:root.t_light .t_dim_accent_SliderThumb, +:root.t_light .t_dim_accent_SwitchThumb, +:root.t_light .t_dim_accent_Tooltip, +:root.t_light .t_disabled_accent_ProgressIndicator, +:root.t_light .t_disabled_accent_SliderThumb, +:root.t_light .t_disabled_accent_SwitchThumb, +:root.t_light .t_disabled_accent_Tooltip, +:root.t_light .t_error_accent_ProgressIndicator, +:root.t_light .t_error_accent_SliderThumb, +:root.t_light .t_error_accent_SwitchThumb, +:root.t_light .t_error_accent_Tooltip, +:root.t_light .t_red_accent_ProgressIndicator, +:root.t_light .t_red_accent_SliderThumb, +:root.t_light .t_red_accent_SwitchThumb, +:root.t_light .t_red_accent_Tooltip, +:root.t_light .t_success_accent_ProgressIndicator, +:root.t_light .t_success_accent_SliderThumb, +:root.t_light .t_success_accent_SwitchThumb, +:root.t_light .t_success_accent_Tooltip, +:root.t_light .t_warning_accent_ProgressIndicator, +:root.t_light .t_warning_accent_SliderThumb, +:root.t_light .t_warning_accent_SwitchThumb, +:root.t_light .t_warning_accent_Tooltip { + --accentBackground: hsla(125, 96%, 40%, 0); + --accentColor: hsla(125, 96%, 40%, 0); + --background0: hsla(191, 33%, 10%, 0.25); + --background025: hsla(191, 33%, 10%, 0.5); + --background05: hsla(191, 33%, 10%, 0.75); + --background075: hsla(191, 32%, 10%, 1); + --color0: var(--color-231); + --color025: var(--color-230); + --color05: var(--color-229); + --color075: hsla(125, 96%, 40%, 0.25); + --background: hsla(191, 32%, 10%, 1); + --backgroundHover: hsla(191, 32%, 10%, 1); + --backgroundPress: var(--color-240); + --backgroundFocus: var(--color-239); + --color: var(--color-232); + --colorHover: var(--color-233); + --colorPress: var(--color-232); + --colorFocus: var(--color-233); + --placeholderColor: var(--color-233); + --borderColor: var(--color-239); + --borderColorHover: var(--color-238); + --borderColorFocus: var(--color-237); + --borderColorPress: var(--color-238); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_accent_ProgressIndicator, + .t_accent_SliderThumb, + .t_accent_SwitchThumb, + .t_accent_Tooltip, + .t_active_accent_ProgressIndicator, + .t_active_accent_SliderThumb, + .t_active_accent_SwitchThumb, + .t_active_accent_Tooltip, + .t_alt1_accent_ProgressIndicator, + .t_alt1_accent_SliderThumb, + .t_alt1_accent_SwitchThumb, + .t_alt1_accent_Tooltip, + .t_alt2_accent_ProgressIndicator, + .t_alt2_accent_SliderThumb, + .t_alt2_accent_SwitchThumb, + .t_alt2_accent_Tooltip, + .t_dark .t_light .t_accent_ProgressIndicator, + .t_dark .t_light .t_accent_SliderThumb, + .t_dark .t_light .t_accent_SwitchThumb, + .t_dark .t_light .t_accent_Tooltip, + .t_dark .t_light .t_active_accent_ProgressIndicator, + .t_dark .t_light .t_active_accent_SliderThumb, + .t_dark .t_light .t_active_accent_SwitchThumb, + .t_dark .t_light .t_active_accent_Tooltip, + .t_dark .t_light .t_alt1_accent_ProgressIndicator, + .t_dark .t_light .t_alt1_accent_SliderThumb, + .t_dark .t_light .t_alt1_accent_SwitchThumb, + .t_dark .t_light .t_alt1_accent_Tooltip, + .t_dark .t_light .t_alt2_accent_ProgressIndicator, + .t_dark .t_light .t_alt2_accent_SliderThumb, + .t_dark .t_light .t_alt2_accent_SwitchThumb, + .t_dark .t_light .t_alt2_accent_Tooltip, + .t_dark .t_light .t_dim_accent_ProgressIndicator, + .t_dark .t_light .t_dim_accent_SliderThumb, + .t_dark .t_light .t_dim_accent_SwitchThumb, + .t_dark .t_light .t_dim_accent_Tooltip, + .t_dark .t_light .t_disabled_accent_ProgressIndicator, + .t_dark .t_light .t_disabled_accent_SliderThumb, + .t_dark .t_light .t_disabled_accent_SwitchThumb, + .t_dark .t_light .t_disabled_accent_Tooltip, + .t_dark .t_light .t_error_accent_ProgressIndicator, + .t_dark .t_light .t_error_accent_SliderThumb, + .t_dark .t_light .t_error_accent_SwitchThumb, + .t_dark .t_light .t_error_accent_Tooltip, + .t_dark .t_light .t_red_accent_ProgressIndicator, + .t_dark .t_light .t_red_accent_SliderThumb, + .t_dark .t_light .t_red_accent_SwitchThumb, + .t_dark .t_light .t_red_accent_Tooltip, + .t_dark .t_light .t_success_accent_ProgressIndicator, + .t_dark .t_light .t_success_accent_SliderThumb, + .t_dark .t_light .t_success_accent_SwitchThumb, + .t_dark .t_light .t_success_accent_Tooltip, + .t_dark .t_light .t_warning_accent_ProgressIndicator, + .t_dark .t_light .t_warning_accent_SliderThumb, + .t_dark .t_light .t_warning_accent_SwitchThumb, + .t_dark .t_light .t_warning_accent_Tooltip, + .t_dim_accent_ProgressIndicator, + .t_dim_accent_SliderThumb, + .t_dim_accent_SwitchThumb, + .t_dim_accent_Tooltip, + .t_disabled_accent_ProgressIndicator, + .t_disabled_accent_SliderThumb, + .t_disabled_accent_SwitchThumb, + .t_disabled_accent_Tooltip, + .t_error_accent_ProgressIndicator, + .t_error_accent_SliderThumb, + .t_error_accent_SwitchThumb, + .t_error_accent_Tooltip, + .t_red_accent_ProgressIndicator, + .t_red_accent_SliderThumb, + .t_red_accent_SwitchThumb, + .t_red_accent_Tooltip, + .t_success_accent_ProgressIndicator, + .t_success_accent_SliderThumb, + .t_success_accent_SwitchThumb, + .t_success_accent_Tooltip, + .t_warning_accent_ProgressIndicator, + .t_warning_accent_SliderThumb, + .t_warning_accent_SwitchThumb, + .t_warning_accent_Tooltip { + --accentBackground: hsla(125, 96%, 40%, 0); + --accentColor: hsla(125, 96%, 40%, 0); + --background0: hsla(191, 33%, 10%, 0.25); + --background025: hsla(191, 33%, 10%, 0.5); + --background05: hsla(191, 33%, 10%, 0.75); + --background075: hsla(191, 32%, 10%, 1); + --color0: var(--color-231); + --color025: var(--color-230); + --color05: var(--color-229); + --color075: hsla(125, 96%, 40%, 0.25); + --background: hsla(191, 32%, 10%, 1); + --backgroundHover: hsla(191, 32%, 10%, 1); + --backgroundPress: var(--color-240); + --backgroundFocus: var(--color-239); + --color: var(--color-232); + --colorHover: var(--color-233); + --colorPress: var(--color-232); + --colorFocus: var(--color-233); + --placeholderColor: var(--color-233); + --borderColor: var(--color-239); + --borderColorHover: var(--color-238); + --borderColorFocus: var(--color-237); + --borderColorPress: var(--color-238); + } +} + +:root.t_dark .t_light .t_accent_SliderTrack, +:root.t_dark .t_light .t_accent_TooltipContent, +:root.t_dark .t_light .t_active_accent_Button, +:root.t_dark .t_light .t_active_accent_SliderTrack, +:root.t_dark .t_light .t_active_accent_Switch, +:root.t_dark .t_light .t_active_accent_TooltipContent, +:root.t_dark .t_light .t_alt1_accent_Button, +:root.t_dark .t_light .t_alt1_accent_SliderTrack, +:root.t_dark .t_light .t_alt1_accent_Switch, +:root.t_dark .t_light .t_alt1_accent_TooltipContent, +:root.t_dark .t_light .t_alt2_accent_Button, +:root.t_dark .t_light .t_alt2_accent_SliderTrack, +:root.t_dark .t_light .t_alt2_accent_Switch, +:root.t_dark .t_light .t_alt2_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_light .t_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_Button, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_Switch, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Button, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Switch, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Button, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Switch, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_Button, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_Switch, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Button, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Switch, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_Button, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_Switch, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_Button, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_Switch, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_Button, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_Switch, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_TooltipContent, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_Button, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_Switch, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_TooltipContent, +:root.t_dark .t_light .t_dim_accent_Button, +:root.t_dark .t_light .t_dim_accent_SliderTrack, +:root.t_dark .t_light .t_dim_accent_Switch, +:root.t_dark .t_light .t_dim_accent_TooltipContent, +:root.t_dark .t_light .t_disabled_accent_Button, +:root.t_dark .t_light .t_disabled_accent_SliderTrack, +:root.t_dark .t_light .t_disabled_accent_Switch, +:root.t_dark .t_light .t_disabled_accent_TooltipContent, +:root.t_dark .t_light .t_error_accent_Button, +:root.t_dark .t_light .t_error_accent_SliderTrack, +:root.t_dark .t_light .t_error_accent_Switch, +:root.t_dark .t_light .t_error_accent_TooltipContent, +:root.t_dark .t_light .t_red_accent_Button, +:root.t_dark .t_light .t_red_accent_SliderTrack, +:root.t_dark .t_light .t_red_accent_Switch, +:root.t_dark .t_light .t_red_accent_TooltipContent, +:root.t_dark .t_light .t_success_accent_Button, +:root.t_dark .t_light .t_success_accent_SliderTrack, +:root.t_dark .t_light .t_success_accent_Switch, +:root.t_dark .t_light .t_success_accent_TooltipContent, +:root.t_dark .t_light .t_warning_accent_Button, +:root.t_dark .t_light .t_warning_accent_SliderTrack, +:root.t_dark .t_light .t_warning_accent_Switch, +:root.t_dark .t_light .t_warning_accent_TooltipContent, +:root.t_light .t_accent_SliderTrack, +:root.t_light .t_accent_TooltipContent, +:root.t_light .t_active_accent_Button, +:root.t_light .t_active_accent_SliderTrack, +:root.t_light .t_active_accent_Switch, +:root.t_light .t_active_accent_TooltipContent, +:root.t_light .t_alt1_accent_Button, +:root.t_light .t_alt1_accent_SliderTrack, +:root.t_light .t_alt1_accent_Switch, +:root.t_light .t_alt1_accent_TooltipContent, +:root.t_light .t_alt2_accent_Button, +:root.t_light .t_alt2_accent_SliderTrack, +:root.t_light .t_alt2_accent_Switch, +:root.t_light .t_alt2_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_active_accent_Button, +:root.t_light .t_dark .t_light .t_active_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_active_accent_Switch, +:root.t_light .t_dark .t_light .t_active_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_alt1_accent_Button, +:root.t_light .t_dark .t_light .t_alt1_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_alt1_accent_Switch, +:root.t_light .t_dark .t_light .t_alt1_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_alt2_accent_Button, +:root.t_light .t_dark .t_light .t_alt2_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_alt2_accent_Switch, +:root.t_light .t_dark .t_light .t_alt2_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_dim_accent_Button, +:root.t_light .t_dark .t_light .t_dim_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_dim_accent_Switch, +:root.t_light .t_dark .t_light .t_dim_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_disabled_accent_Button, +:root.t_light .t_dark .t_light .t_disabled_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_disabled_accent_Switch, +:root.t_light .t_dark .t_light .t_disabled_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_error_accent_Button, +:root.t_light .t_dark .t_light .t_error_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_error_accent_Switch, +:root.t_light .t_dark .t_light .t_error_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_red_accent_Button, +:root.t_light .t_dark .t_light .t_red_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_red_accent_Switch, +:root.t_light .t_dark .t_light .t_red_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_success_accent_Button, +:root.t_light .t_dark .t_light .t_success_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_success_accent_Switch, +:root.t_light .t_dark .t_light .t_success_accent_TooltipContent, +:root.t_light .t_dark .t_light .t_warning_accent_Button, +:root.t_light .t_dark .t_light .t_warning_accent_SliderTrack, +:root.t_light .t_dark .t_light .t_warning_accent_Switch, +:root.t_light .t_dark .t_light .t_warning_accent_TooltipContent, +:root.t_light .t_dim_accent_Button, +:root.t_light .t_dim_accent_SliderTrack, +:root.t_light .t_dim_accent_Switch, +:root.t_light .t_dim_accent_TooltipContent, +:root.t_light .t_disabled_accent_Button, +:root.t_light .t_disabled_accent_SliderTrack, +:root.t_light .t_disabled_accent_Switch, +:root.t_light .t_disabled_accent_TooltipContent, +:root.t_light .t_error_accent_Button, +:root.t_light .t_error_accent_SliderTrack, +:root.t_light .t_error_accent_Switch, +:root.t_light .t_error_accent_TooltipContent, +:root.t_light .t_red_accent_Button, +:root.t_light .t_red_accent_SliderTrack, +:root.t_light .t_red_accent_Switch, +:root.t_light .t_red_accent_TooltipContent, +:root.t_light .t_success_accent_Button, +:root.t_light .t_success_accent_SliderTrack, +:root.t_light .t_success_accent_Switch, +:root.t_light .t_success_accent_TooltipContent, +:root.t_light .t_warning_accent_Button, +:root.t_light .t_warning_accent_SliderTrack, +:root.t_light .t_warning_accent_Switch, +:root.t_light .t_warning_accent_TooltipContent { + --background0: var(--color-230); + --background025: var(--color-231); + --background05: var(--color-232); + --background075: var(--color-233); + --color0: var(--color-240); + --color025: hsla(191, 32%, 10%, 1); + --color05: hsla(191, 32%, 10%, 1); + --color075: hsla(191, 33%, 10%, 0.75); + --background: var(--color-233); + --backgroundHover: var(--color-234); + --backgroundPress: var(--color-235); + --backgroundFocus: var(--color-236); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-238); + --borderColor: var(--color-236); + --borderColorHover: var(--color-237); + --borderColorFocus: var(--color-238); + --borderColorPress: var(--color-237); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_accent_SliderTrack, + .t_accent_TooltipContent, + .t_active_accent_Button, + .t_active_accent_SliderTrack, + .t_active_accent_Switch, + .t_active_accent_TooltipContent, + .t_alt1_accent_Button, + .t_alt1_accent_SliderTrack, + .t_alt1_accent_Switch, + .t_alt1_accent_TooltipContent, + .t_alt2_accent_Button, + .t_alt2_accent_SliderTrack, + .t_alt2_accent_Switch, + .t_alt2_accent_TooltipContent, + .t_dark .t_light .t_accent_SliderTrack, + .t_dark .t_light .t_accent_TooltipContent, + .t_dark .t_light .t_active_accent_Button, + .t_dark .t_light .t_active_accent_SliderTrack, + .t_dark .t_light .t_active_accent_Switch, + .t_dark .t_light .t_active_accent_TooltipContent, + .t_dark .t_light .t_alt1_accent_Button, + .t_dark .t_light .t_alt1_accent_SliderTrack, + .t_dark .t_light .t_alt1_accent_Switch, + .t_dark .t_light .t_alt1_accent_TooltipContent, + .t_dark .t_light .t_alt2_accent_Button, + .t_dark .t_light .t_alt2_accent_SliderTrack, + .t_dark .t_light .t_alt2_accent_Switch, + .t_dark .t_light .t_alt2_accent_TooltipContent, + .t_dark .t_light .t_dim_accent_Button, + .t_dark .t_light .t_dim_accent_SliderTrack, + .t_dark .t_light .t_dim_accent_Switch, + .t_dark .t_light .t_dim_accent_TooltipContent, + .t_dark .t_light .t_disabled_accent_Button, + .t_dark .t_light .t_disabled_accent_SliderTrack, + .t_dark .t_light .t_disabled_accent_Switch, + .t_dark .t_light .t_disabled_accent_TooltipContent, + .t_dark .t_light .t_error_accent_Button, + .t_dark .t_light .t_error_accent_SliderTrack, + .t_dark .t_light .t_error_accent_Switch, + .t_dark .t_light .t_error_accent_TooltipContent, + .t_dark .t_light .t_red_accent_Button, + .t_dark .t_light .t_red_accent_SliderTrack, + .t_dark .t_light .t_red_accent_Switch, + .t_dark .t_light .t_red_accent_TooltipContent, + .t_dark .t_light .t_success_accent_Button, + .t_dark .t_light .t_success_accent_SliderTrack, + .t_dark .t_light .t_success_accent_Switch, + .t_dark .t_light .t_success_accent_TooltipContent, + .t_dark .t_light .t_warning_accent_Button, + .t_dark .t_light .t_warning_accent_SliderTrack, + .t_dark .t_light .t_warning_accent_Switch, + .t_dark .t_light .t_warning_accent_TooltipContent, + .t_dim_accent_Button, + .t_dim_accent_SliderTrack, + .t_dim_accent_Switch, + .t_dim_accent_TooltipContent, + .t_disabled_accent_Button, + .t_disabled_accent_SliderTrack, + .t_disabled_accent_Switch, + .t_disabled_accent_TooltipContent, + .t_error_accent_Button, + .t_error_accent_SliderTrack, + .t_error_accent_Switch, + .t_error_accent_TooltipContent, + .t_red_accent_Button, + .t_red_accent_SliderTrack, + .t_red_accent_Switch, + .t_red_accent_TooltipContent, + .t_success_accent_Button, + .t_success_accent_SliderTrack, + .t_success_accent_Switch, + .t_success_accent_TooltipContent, + .t_warning_accent_Button, + .t_warning_accent_SliderTrack, + .t_warning_accent_Switch, + .t_warning_accent_TooltipContent { + --background0: var(--color-230); + --background025: var(--color-231); + --background05: var(--color-232); + --background075: var(--color-233); + --color0: var(--color-240); + --color025: hsla(191, 32%, 10%, 1); + --color05: hsla(191, 32%, 10%, 1); + --color075: hsla(191, 33%, 10%, 0.75); + --background: var(--color-233); + --backgroundHover: var(--color-234); + --backgroundPress: var(--color-235); + --backgroundFocus: var(--color-236); + --color: hsla(191, 32%, 10%, 1); + --colorHover: var(--color-240); + --colorPress: hsla(191, 32%, 10%, 1); + --colorFocus: var(--color-240); + --placeholderColor: var(--color-238); + --borderColor: var(--color-236); + --borderColorHover: var(--color-237); + --borderColorFocus: var(--color-238); + --borderColorPress: var(--color-237); + } +} + +:root.t_dark .t_light .t_accent_SliderTrackActive, +:root.t_dark .t_light .t_active_accent_SliderTrackActive, +:root.t_dark .t_light .t_alt1_accent_SliderTrackActive, +:root.t_dark .t_light .t_alt2_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_light .t_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_light .t_active_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_light .t_dim_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_light .t_error_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_light .t_red_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_light .t_success_accent_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_light .t_warning_accent_SliderTrackActive, +:root.t_dark .t_light .t_dim_accent_SliderTrackActive, +:root.t_dark .t_light .t_disabled_accent_SliderTrackActive, +:root.t_dark .t_light .t_error_accent_SliderTrackActive, +:root.t_dark .t_light .t_red_accent_SliderTrackActive, +:root.t_dark .t_light .t_success_accent_SliderTrackActive, +:root.t_dark .t_light .t_warning_accent_SliderTrackActive, +:root.t_light .t_accent_SliderTrackActive, +:root.t_light .t_active_accent_SliderTrackActive, +:root.t_light .t_alt1_accent_SliderTrackActive, +:root.t_light .t_alt2_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_active_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_alt1_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_alt2_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dim_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_disabled_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_error_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_red_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_success_accent_SliderTrackActive, +:root.t_light .t_dark .t_light .t_warning_accent_SliderTrackActive, +:root.t_light .t_dim_accent_SliderTrackActive, +:root.t_light .t_disabled_accent_SliderTrackActive, +:root.t_light .t_error_accent_SliderTrackActive, +:root.t_light .t_red_accent_SliderTrackActive, +:root.t_light .t_success_accent_SliderTrackActive, +:root.t_light .t_warning_accent_SliderTrackActive { + --accentBackground: hsla(125, 96%, 40%, 0); + --accentColor: hsla(125, 96%, 40%, 0); + --background0: hsla(191, 33%, 10%, 0.75); + --background025: hsla(191, 32%, 10%, 1); + --background05: hsla(191, 32%, 10%, 1); + --background075: var(--color-240); + --color0: var(--color-233); + --color025: var(--color-232); + --color05: var(--color-231); + --color075: var(--color-230); + --background: var(--color-240); + --backgroundHover: var(--color-239); + --backgroundPress: var(--color-238); + --backgroundFocus: var(--color-237); + --color: var(--color-232); + --colorHover: var(--color-233); + --colorPress: var(--color-232); + --colorFocus: var(--color-233); + --placeholderColor: var(--color-235); + --borderColor: var(--color-237); + --borderColorHover: var(--color-236); + --borderColorFocus: var(--color-235); + --borderColorPress: var(--color-236); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_accent_SliderTrackActive, + .t_active_accent_SliderTrackActive, + .t_alt1_accent_SliderTrackActive, + .t_alt2_accent_SliderTrackActive, + .t_dark .t_light .t_accent_SliderTrackActive, + .t_dark .t_light .t_active_accent_SliderTrackActive, + .t_dark .t_light .t_alt1_accent_SliderTrackActive, + .t_dark .t_light .t_alt2_accent_SliderTrackActive, + .t_dark .t_light .t_dim_accent_SliderTrackActive, + .t_dark .t_light .t_disabled_accent_SliderTrackActive, + .t_dark .t_light .t_error_accent_SliderTrackActive, + .t_dark .t_light .t_red_accent_SliderTrackActive, + .t_dark .t_light .t_success_accent_SliderTrackActive, + .t_dark .t_light .t_warning_accent_SliderTrackActive, + .t_dim_accent_SliderTrackActive, + .t_disabled_accent_SliderTrackActive, + .t_error_accent_SliderTrackActive, + .t_red_accent_SliderTrackActive, + .t_success_accent_SliderTrackActive, + .t_warning_accent_SliderTrackActive { + --accentBackground: hsla(125, 96%, 40%, 0); + --accentColor: hsla(125, 96%, 40%, 0); + --background0: hsla(191, 33%, 10%, 0.75); + --background025: hsla(191, 32%, 10%, 1); + --background05: hsla(191, 32%, 10%, 1); + --background075: var(--color-240); + --color0: var(--color-233); + --color025: var(--color-232); + --color05: var(--color-231); + --color075: var(--color-230); + --background: var(--color-240); + --backgroundHover: var(--color-239); + --backgroundPress: var(--color-238); + --backgroundFocus: var(--color-237); + --color: var(--color-232); + --colorHover: var(--color-233); + --colorPress: var(--color-232); + --colorFocus: var(--color-233); + --placeholderColor: var(--color-235); + --borderColor: var(--color-237); + --borderColorHover: var(--color-236); + --borderColorFocus: var(--color-235); + --borderColorPress: var(--color-236); + } +} + +:root.t_dark .t_light .t_active, +:root.t_dark .t_light .t_dark .t_light .t_active, +:root.t_light .t_active, +:root.t_light .t_dark .t_light .t_active { + --background0: hsla(180, 20%, 99%, 0); + --background025: hsla(180, 20%, 99%, 0.25); + --background05: hsla(180, 20%, 99%, 0.5); + --background075: hsla(180, 20%, 99%, 0.75); + --color0: hsla(0, 0%, 0%, 0.75); + --color025: hsla(0, 0%, 0%, 0.5); + --color05: hsla(0, 0%, 0%, 0.25); + --color075: hsla(0, 0%, 0%, 0); + --background: hsla(180, 20%, 99%, 0.75); + --backgroundHover: hsla(191, 32%, 99%, 1); + --backgroundPress: hsla(191, 32%, 93%, 1); + --backgroundFocus: hsla(191, 32%, 88%, 1); + --colorHover: hsla(96, 16%, 25%, 1); + --colorPress: hsla(112, 22%, 0%, 1); + --colorFocus: hsla(96, 16%, 25%, 1); + --placeholderColor: hsla(96, 16%, 25%, 1); + --borderColor: hsla(191, 32%, 88%, 1); + --borderColorHover: hsla(191, 32%, 83%, 1); + --borderColorFocus: hsla(191, 32%, 77%, 1); + --borderColorPress: hsla(191, 32%, 83%, 1); + --color1: hsla(180, 20%, 99%, 0.75); + --color2: hsla(191, 32%, 99%, 1); + --color3: hsla(191, 32%, 93%, 1); + --color4: hsla(191, 32%, 88%, 1); + --color5: hsla(191, 32%, 83%, 1); + --color6: hsla(191, 32%, 77%, 1); + --color7: hsla(191, 32%, 72%, 1); + --color8: hsla(191, 32%, 66%, 1); + --color9: hsla(191, 32%, 61%, 1); + --color10: hsla(191, 32%, 55%, 1); + --color11: hsla(191, 32%, 50%, 1); + --color12: hsla(96, 16%, 25%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + } + + .t_active, + .t_dark .t_light .t_active { + --background0: hsla(180, 20%, 99%, 0); + --background025: hsla(180, 20%, 99%, 0.25); + --background05: hsla(180, 20%, 99%, 0.5); + --background075: hsla(180, 20%, 99%, 0.75); + --color0: hsla(0, 0%, 0%, 0.75); + --color025: hsla(0, 0%, 0%, 0.5); + --color05: hsla(0, 0%, 0%, 0.25); + --color075: hsla(0, 0%, 0%, 0); + --background: hsla(180, 20%, 99%, 0.75); + --backgroundHover: hsla(191, 32%, 99%, 1); + --backgroundPress: hsla(191, 32%, 93%, 1); + --backgroundFocus: hsla(191, 32%, 88%, 1); + --colorHover: hsla(96, 16%, 25%, 1); + --colorPress: hsla(112, 22%, 0%, 1); + --colorFocus: hsla(96, 16%, 25%, 1); + --placeholderColor: hsla(96, 16%, 25%, 1); + --borderColor: hsla(191, 32%, 88%, 1); + --borderColorHover: hsla(191, 32%, 83%, 1); + --borderColorFocus: hsla(191, 32%, 77%, 1); + --borderColorPress: hsla(191, 32%, 83%, 1); + --color1: hsla(180, 20%, 99%, 0.75); + --color2: hsla(191, 32%, 99%, 1); + --color3: hsla(191, 32%, 93%, 1); + --color4: hsla(191, 32%, 88%, 1); + --color5: hsla(191, 32%, 83%, 1); + --color6: hsla(191, 32%, 77%, 1); + --color7: hsla(191, 32%, 72%, 1); + --color8: hsla(191, 32%, 66%, 1); + --color9: hsla(191, 32%, 61%, 1); + --color10: hsla(191, 32%, 55%, 1); + --color11: hsla(191, 32%, 50%, 1); + --color12: hsla(96, 16%, 25%, 1); + } +} + +:root.t_dark .t_light .t_active_Button, +:root.t_dark .t_light .t_active_SliderTrack, +:root.t_dark .t_light .t_active_Switch, +:root.t_dark .t_light .t_active_TooltipContent, +:root.t_dark .t_light .t_dark .t_light .t_active_Button, +:root.t_dark .t_light .t_dark .t_light .t_active_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_active_Switch, +:root.t_dark .t_light .t_dark .t_light .t_active_TooltipContent, +:root.t_light .t_active_Button, +:root.t_light .t_active_SliderTrack, +:root.t_light .t_active_Switch, +:root.t_light .t_active_TooltipContent, +:root.t_light .t_dark .t_light .t_active_Button, +:root.t_light .t_dark .t_light .t_active_SliderTrack, +:root.t_light .t_dark .t_light .t_active_Switch, +:root.t_light .t_dark .t_light .t_active_TooltipContent { + --background0: hsla(180, 20%, 99%, 0.5); + --background025: hsla(180, 20%, 99%, 0.75); + --background05: hsla(191, 32%, 99%, 1); + --background075: hsla(191, 32%, 93%, 1); + --color0: hsla(96, 16%, 25%, 1); + --color025: hsla(112, 22%, 0%, 1); + --color05: hsla(0, 0%, 0%, 0.75); + --color075: hsla(0, 0%, 0%, 0.5); + --background: hsla(191, 32%, 93%, 1); + --backgroundHover: hsla(191, 32%, 88%, 1); + --backgroundPress: hsla(191, 32%, 83%, 1); + --backgroundFocus: hsla(191, 32%, 77%, 1); + --colorHover: hsla(96, 16%, 25%, 1); + --colorPress: hsla(112, 22%, 0%, 1); + --colorFocus: hsla(96, 16%, 25%, 1); + --placeholderColor: hsla(191, 32%, 55%, 1); + --borderColor: hsla(191, 32%, 77%, 1); + --borderColorHover: hsla(191, 32%, 72%, 1); + --borderColorFocus: hsla(191, 32%, 66%, 1); + --borderColorPress: hsla(191, 32%, 72%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + } + + .t_active_Button, + .t_active_SliderTrack, + .t_active_Switch, + .t_active_TooltipContent, + .t_dark .t_light .t_active_Button, + .t_dark .t_light .t_active_SliderTrack, + .t_dark .t_light .t_active_Switch, + .t_dark .t_light .t_active_TooltipContent { + --background0: hsla(180, 20%, 99%, 0.5); + --background025: hsla(180, 20%, 99%, 0.75); + --background05: hsla(191, 32%, 99%, 1); + --background075: hsla(191, 32%, 93%, 1); + --color0: hsla(96, 16%, 25%, 1); + --color025: hsla(112, 22%, 0%, 1); + --color05: hsla(0, 0%, 0%, 0.75); + --color075: hsla(0, 0%, 0%, 0.5); + --background: hsla(191, 32%, 93%, 1); + --backgroundHover: hsla(191, 32%, 88%, 1); + --backgroundPress: hsla(191, 32%, 83%, 1); + --backgroundFocus: hsla(191, 32%, 77%, 1); + --colorHover: hsla(96, 16%, 25%, 1); + --colorPress: hsla(112, 22%, 0%, 1); + --colorFocus: hsla(96, 16%, 25%, 1); + --placeholderColor: hsla(191, 32%, 55%, 1); + --borderColor: hsla(191, 32%, 77%, 1); + --borderColorHover: hsla(191, 32%, 72%, 1); + --borderColorFocus: hsla(191, 32%, 66%, 1); + --borderColorPress: hsla(191, 32%, 72%, 1); + } +} + +:root.t_dark .t_light .t_active_Card, +:root.t_dark .t_light .t_active_DrawerFrame, +:root.t_dark .t_light .t_active_Progress, +:root.t_dark .t_light .t_active_TooltipArrow, +:root.t_dark .t_light .t_dark .t_light .t_active_Card, +:root.t_dark .t_light .t_dark .t_light .t_active_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_active_Progress, +:root.t_dark .t_light .t_dark .t_light .t_active_TooltipArrow, +:root.t_light .t_active_Card, +:root.t_light .t_active_DrawerFrame, +:root.t_light .t_active_Progress, +:root.t_light .t_active_TooltipArrow, +:root.t_light .t_dark .t_light .t_active_Card, +:root.t_light .t_dark .t_light .t_active_DrawerFrame, +:root.t_light .t_dark .t_light .t_active_Progress, +:root.t_light .t_dark .t_light .t_active_TooltipArrow { + --background0: hsla(180, 20%, 99%, 0.25); + --background025: hsla(180, 20%, 99%, 0.5); + --background05: hsla(180, 20%, 99%, 0.75); + --background075: hsla(191, 32%, 99%, 1); + --color0: hsla(112, 22%, 0%, 1); + --color025: hsla(0, 0%, 0%, 0.75); + --color05: hsla(0, 0%, 0%, 0.5); + --color075: hsla(0, 0%, 0%, 0.25); + --background: hsla(191, 32%, 99%, 1); + --backgroundHover: hsla(191, 32%, 93%, 1); + --backgroundPress: hsla(191, 32%, 88%, 1); + --backgroundFocus: hsla(191, 32%, 83%, 1); + --colorHover: hsla(96, 16%, 25%, 1); + --colorPress: hsla(112, 22%, 0%, 1); + --colorFocus: hsla(96, 16%, 25%, 1); + --placeholderColor: hsla(191, 32%, 50%, 1); + --borderColor: hsla(191, 32%, 83%, 1); + --borderColorHover: hsla(191, 32%, 77%, 1); + --borderColorFocus: hsla(191, 32%, 72%, 1); + --borderColorPress: hsla(191, 32%, 77%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + } + + .t_active_Card, + .t_active_DrawerFrame, + .t_active_Progress, + .t_active_TooltipArrow, + .t_dark .t_light .t_active_Card, + .t_dark .t_light .t_active_DrawerFrame, + .t_dark .t_light .t_active_Progress, + .t_dark .t_light .t_active_TooltipArrow { + --background0: hsla(180, 20%, 99%, 0.25); + --background025: hsla(180, 20%, 99%, 0.5); + --background05: hsla(180, 20%, 99%, 0.75); + --background075: hsla(191, 32%, 99%, 1); + --color0: hsla(112, 22%, 0%, 1); + --color025: hsla(0, 0%, 0%, 0.75); + --color05: hsla(0, 0%, 0%, 0.5); + --color075: hsla(0, 0%, 0%, 0.25); + --background: hsla(191, 32%, 99%, 1); + --backgroundHover: hsla(191, 32%, 93%, 1); + --backgroundPress: hsla(191, 32%, 88%, 1); + --backgroundFocus: hsla(191, 32%, 83%, 1); + --colorHover: hsla(96, 16%, 25%, 1); + --colorPress: hsla(112, 22%, 0%, 1); + --colorFocus: hsla(96, 16%, 25%, 1); + --placeholderColor: hsla(191, 32%, 50%, 1); + --borderColor: hsla(191, 32%, 83%, 1); + --borderColorHover: hsla(191, 32%, 77%, 1); + --borderColorFocus: hsla(191, 32%, 72%, 1); + --borderColorPress: hsla(191, 32%, 77%, 1); + } +} + +:root.t_dark .t_light .t_active_Checkbox, +:root.t_dark .t_light .t_active_Input, +:root.t_dark .t_light .t_active_RadioGroupItem, +:root.t_dark .t_light .t_active_TextArea, +:root.t_dark .t_light .t_dark .t_light .t_active_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_active_Input, +:root.t_dark .t_light .t_dark .t_light .t_active_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_active_TextArea, +:root.t_light .t_active_Checkbox, +:root.t_light .t_active_Input, +:root.t_light .t_active_RadioGroupItem, +:root.t_light .t_active_TextArea, +:root.t_light .t_dark .t_light .t_active_Checkbox, +:root.t_light .t_dark .t_light .t_active_Input, +:root.t_light .t_dark .t_light .t_active_RadioGroupItem, +:root.t_light .t_dark .t_light .t_active_TextArea { + --background0: hsla(180, 20%, 99%, 0); + --background025: hsla(180, 20%, 99%, 0.25); + --background05: hsla(180, 20%, 99%, 0.5); + --background075: hsla(180, 20%, 99%, 0.75); + --color0: hsla(0, 0%, 0%, 0.75); + --color025: hsla(0, 0%, 0%, 0.5); + --color05: hsla(0, 0%, 0%, 0.25); + --color075: hsla(0, 0%, 0%, 0); + --background: hsla(180, 20%, 99%, 0.75); + --backgroundHover: hsla(191, 32%, 99%, 1); + --backgroundPress: hsla(191, 32%, 93%, 1); + --backgroundFocus: hsla(191, 32%, 88%, 1); + --colorHover: hsla(96, 16%, 25%, 1); + --colorPress: hsla(112, 22%, 0%, 1); + --colorFocus: hsla(96, 16%, 25%, 1); + --placeholderColor: hsla(96, 16%, 25%, 1); + --borderColor: hsla(191, 32%, 77%, 1); + --borderColorHover: hsla(191, 32%, 72%, 1); + --borderColorFocus: hsla(191, 32%, 66%, 1); + --borderColorPress: hsla(191, 32%, 72%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + } + + .t_active_Checkbox, + .t_active_Input, + .t_active_RadioGroupItem, + .t_active_TextArea, + .t_dark .t_light .t_active_Checkbox, + .t_dark .t_light .t_active_Input, + .t_dark .t_light .t_active_RadioGroupItem, + .t_dark .t_light .t_active_TextArea { + --background0: hsla(180, 20%, 99%, 0); + --background025: hsla(180, 20%, 99%, 0.25); + --background05: hsla(180, 20%, 99%, 0.5); + --background075: hsla(180, 20%, 99%, 0.75); + --color0: hsla(0, 0%, 0%, 0.75); + --color025: hsla(0, 0%, 0%, 0.5); + --color05: hsla(0, 0%, 0%, 0.25); + --color075: hsla(0, 0%, 0%, 0); + --background: hsla(180, 20%, 99%, 0.75); + --backgroundHover: hsla(191, 32%, 99%, 1); + --backgroundPress: hsla(191, 32%, 93%, 1); + --backgroundFocus: hsla(191, 32%, 88%, 1); + --colorHover: hsla(96, 16%, 25%, 1); + --colorPress: hsla(112, 22%, 0%, 1); + --colorFocus: hsla(96, 16%, 25%, 1); + --placeholderColor: hsla(96, 16%, 25%, 1); + --borderColor: hsla(191, 32%, 77%, 1); + --borderColorHover: hsla(191, 32%, 72%, 1); + --borderColorFocus: hsla(191, 32%, 66%, 1); + --borderColorPress: hsla(191, 32%, 72%, 1); + } +} + +:root.t_dark .t_light .t_active_ProgressIndicator, +:root.t_dark .t_light .t_active_SliderThumb, +:root.t_dark .t_light .t_active_SwitchThumb, +:root.t_dark .t_light .t_active_Tooltip, +:root.t_dark .t_light .t_dark .t_light .t_active_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_active_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_active_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_active_Tooltip, +:root.t_light .t_active_ProgressIndicator, +:root.t_light .t_active_SliderThumb, +:root.t_light .t_active_SwitchThumb, +:root.t_light .t_active_Tooltip, +:root.t_light .t_dark .t_light .t_active_ProgressIndicator, +:root.t_light .t_dark .t_light .t_active_SliderThumb, +:root.t_light .t_dark .t_light .t_active_SwitchThumb, +:root.t_light .t_dark .t_light .t_active_Tooltip { + --background0: hsla(0, 0%, 0%, 0); + --background025: hsla(0, 0%, 0%, 0.25); + --background05: hsla(0, 0%, 0%, 0.5); + --background075: hsla(0, 0%, 0%, 0.75); + --color0: hsla(180, 20%, 99%, 0.75); + --color025: hsla(180, 20%, 99%, 0.5); + --color05: hsla(180, 20%, 99%, 0.25); + --color075: hsla(180, 20%, 99%, 0); + --background: hsla(0, 0%, 0%, 0.75); + --backgroundHover: hsla(112, 22%, 0%, 1); + --backgroundPress: hsla(96, 16%, 25%, 1); + --backgroundFocus: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 93%, 1); + --colorPress: hsla(191, 32%, 99%, 1); + --colorFocus: hsla(191, 32%, 93%, 1); + --placeholderColor: hsla(191, 32%, 93%, 1); + --borderColor: hsla(191, 32%, 50%, 1); + --borderColorHover: hsla(191, 32%, 55%, 1); + --borderColorFocus: hsla(191, 32%, 61%, 1); + --borderColorPress: hsla(191, 32%, 55%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + } + + .t_active_ProgressIndicator, + .t_active_SliderThumb, + .t_active_SwitchThumb, + .t_active_Tooltip, + .t_dark .t_light .t_active_ProgressIndicator, + .t_dark .t_light .t_active_SliderThumb, + .t_dark .t_light .t_active_SwitchThumb, + .t_dark .t_light .t_active_Tooltip { + --background0: hsla(0, 0%, 0%, 0); + --background025: hsla(0, 0%, 0%, 0.25); + --background05: hsla(0, 0%, 0%, 0.5); + --background075: hsla(0, 0%, 0%, 0.75); + --color0: hsla(180, 20%, 99%, 0.75); + --color025: hsla(180, 20%, 99%, 0.5); + --color05: hsla(180, 20%, 99%, 0.25); + --color075: hsla(180, 20%, 99%, 0); + --background: hsla(0, 0%, 0%, 0.75); + --backgroundHover: hsla(112, 22%, 0%, 1); + --backgroundPress: hsla(96, 16%, 25%, 1); + --backgroundFocus: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 93%, 1); + --colorPress: hsla(191, 32%, 99%, 1); + --colorFocus: hsla(191, 32%, 93%, 1); + --placeholderColor: hsla(191, 32%, 93%, 1); + --borderColor: hsla(191, 32%, 50%, 1); + --borderColorHover: hsla(191, 32%, 55%, 1); + --borderColorFocus: hsla(191, 32%, 61%, 1); + --borderColorPress: hsla(191, 32%, 55%, 1); + } +} + +:root.t_dark .t_light .t_active_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_light .t_active_SliderTrackActive, +:root.t_light .t_active_SliderTrackActive, +:root.t_light .t_dark .t_light .t_active_SliderTrackActive { + --background0: hsla(0, 0%, 0%, 0.5); + --background025: hsla(0, 0%, 0%, 0.75); + --background05: hsla(112, 22%, 0%, 1); + --background075: hsla(96, 16%, 25%, 1); + --color0: hsla(191, 32%, 93%, 1); + --color025: hsla(191, 32%, 99%, 1); + --color05: hsla(180, 20%, 99%, 0.75); + --color075: hsla(180, 20%, 99%, 0.5); + --background: hsla(96, 16%, 25%, 1); + --backgroundHover: hsla(191, 32%, 50%, 1); + --backgroundPress: hsla(191, 32%, 55%, 1); + --backgroundFocus: hsla(191, 32%, 61%, 1); + --colorHover: hsla(191, 32%, 93%, 1); + --colorPress: hsla(191, 32%, 99%, 1); + --colorFocus: hsla(191, 32%, 93%, 1); + --placeholderColor: hsla(191, 32%, 83%, 1); + --borderColor: hsla(191, 32%, 61%, 1); + --borderColorHover: hsla(191, 32%, 66%, 1); + --borderColorFocus: hsla(191, 32%, 72%, 1); + --borderColorPress: hsla(191, 32%, 66%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + } + + .t_active_SliderTrackActive, + .t_dark .t_light .t_active_SliderTrackActive { + --background0: hsla(0, 0%, 0%, 0.5); + --background025: hsla(0, 0%, 0%, 0.75); + --background05: hsla(112, 22%, 0%, 1); + --background075: hsla(96, 16%, 25%, 1); + --color0: hsla(191, 32%, 93%, 1); + --color025: hsla(191, 32%, 99%, 1); + --color05: hsla(180, 20%, 99%, 0.75); + --color075: hsla(180, 20%, 99%, 0.5); + --background: hsla(96, 16%, 25%, 1); + --backgroundHover: hsla(191, 32%, 50%, 1); + --backgroundPress: hsla(191, 32%, 55%, 1); + --backgroundFocus: hsla(191, 32%, 61%, 1); + --colorHover: hsla(191, 32%, 93%, 1); + --colorPress: hsla(191, 32%, 99%, 1); + --colorFocus: hsla(191, 32%, 93%, 1); + --placeholderColor: hsla(191, 32%, 83%, 1); + --borderColor: hsla(191, 32%, 61%, 1); + --borderColorHover: hsla(191, 32%, 66%, 1); + --borderColorFocus: hsla(191, 32%, 72%, 1); + --borderColorPress: hsla(191, 32%, 66%, 1); + } +} + +:root.t_dark .t_light .t_alt1, +:root.t_dark .t_light .t_dark .t_light .t_alt1, +:root.t_light .t_alt1, +:root.t_light .t_dark .t_light .t_alt1 { + --background0: hsla(180, 20%, 99%, 0.5); + --background025: hsla(180, 20%, 99%, 0.75); + --background05: hsla(191, 32%, 99%, 1); + --background075: hsla(191, 32%, 93%, 1); + --color0: hsla(96, 16%, 25%, 1); + --color025: hsla(112, 22%, 0%, 1); + --color05: hsla(0, 0%, 0%, 0.75); + --color075: hsla(0, 0%, 0%, 0.5); + --background: hsla(191, 32%, 93%, 1); + --backgroundHover: hsla(191, 32%, 88%, 1); + --backgroundPress: hsla(191, 32%, 83%, 1); + --backgroundFocus: hsla(191, 32%, 77%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 55%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 55%, 1); + --placeholderColor: hsla(191, 32%, 55%, 1); + --borderColor: hsla(191, 32%, 77%, 1); + --borderColorHover: hsla(191, 32%, 72%, 1); + --borderColorFocus: hsla(191, 32%, 66%, 1); + --borderColorPress: hsla(191, 32%, 72%, 1); + --color1: hsla(191, 32%, 93%, 1); + --color2: hsla(191, 32%, 88%, 1); + --color3: hsla(191, 32%, 83%, 1); + --color4: hsla(191, 32%, 77%, 1); + --color5: hsla(191, 32%, 72%, 1); + --color6: hsla(191, 32%, 66%, 1); + --color7: hsla(191, 32%, 61%, 1); + --color8: hsla(191, 32%, 55%, 1); + --color9: hsla(191, 32%, 55%, 1); + --color10: hsla(191, 32%, 55%, 1); + --color11: hsla(191, 32%, 55%, 1); + --color12: hsla(191, 32%, 55%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt1, + .t_dark .t_light .t_alt1 { + --background0: hsla(180, 20%, 99%, 0.5); + --background025: hsla(180, 20%, 99%, 0.75); + --background05: hsla(191, 32%, 99%, 1); + --background075: hsla(191, 32%, 93%, 1); + --color0: hsla(96, 16%, 25%, 1); + --color025: hsla(112, 22%, 0%, 1); + --color05: hsla(0, 0%, 0%, 0.75); + --color075: hsla(0, 0%, 0%, 0.5); + --background: hsla(191, 32%, 93%, 1); + --backgroundHover: hsla(191, 32%, 88%, 1); + --backgroundPress: hsla(191, 32%, 83%, 1); + --backgroundFocus: hsla(191, 32%, 77%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 55%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 55%, 1); + --placeholderColor: hsla(191, 32%, 55%, 1); + --borderColor: hsla(191, 32%, 77%, 1); + --borderColorHover: hsla(191, 32%, 72%, 1); + --borderColorFocus: hsla(191, 32%, 66%, 1); + --borderColorPress: hsla(191, 32%, 72%, 1); + --color1: hsla(191, 32%, 93%, 1); + --color2: hsla(191, 32%, 88%, 1); + --color3: hsla(191, 32%, 83%, 1); + --color4: hsla(191, 32%, 77%, 1); + --color5: hsla(191, 32%, 72%, 1); + --color6: hsla(191, 32%, 66%, 1); + --color7: hsla(191, 32%, 61%, 1); + --color8: hsla(191, 32%, 55%, 1); + --color9: hsla(191, 32%, 55%, 1); + --color10: hsla(191, 32%, 55%, 1); + --color11: hsla(191, 32%, 55%, 1); + --color12: hsla(191, 32%, 55%, 1); + } +} + +:root.t_dark .t_light .t_alt1_Button, +:root.t_dark .t_light .t_alt1_SliderTrack, +:root.t_dark .t_light .t_alt1_Switch, +:root.t_dark .t_light .t_alt1_TooltipContent, +:root.t_dark .t_light .t_dark .t_light .t_alt1_Button, +:root.t_dark .t_light .t_dark .t_light .t_alt1_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_alt1_Switch, +:root.t_dark .t_light .t_dark .t_light .t_alt1_TooltipContent, +:root.t_dark .t_light .t_dark .t_light .t_dim_Button, +:root.t_dark .t_light .t_dark .t_light .t_dim_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_dim_Switch, +:root.t_dark .t_light .t_dark .t_light .t_dim_TooltipContent, +:root.t_dark .t_light .t_dim_Button, +:root.t_dark .t_light .t_dim_SliderTrack, +:root.t_dark .t_light .t_dim_Switch, +:root.t_dark .t_light .t_dim_TooltipContent, +:root.t_light .t_alt1_Button, +:root.t_light .t_alt1_SliderTrack, +:root.t_light .t_alt1_Switch, +:root.t_light .t_alt1_TooltipContent, +:root.t_light .t_dark .t_light .t_alt1_Button, +:root.t_light .t_dark .t_light .t_alt1_SliderTrack, +:root.t_light .t_dark .t_light .t_alt1_Switch, +:root.t_light .t_dark .t_light .t_alt1_TooltipContent, +:root.t_light .t_dark .t_light .t_dim_Button, +:root.t_light .t_dark .t_light .t_dim_SliderTrack, +:root.t_light .t_dark .t_light .t_dim_Switch, +:root.t_light .t_dark .t_light .t_dim_TooltipContent, +:root.t_light .t_dim_Button, +:root.t_light .t_dim_SliderTrack, +:root.t_light .t_dim_Switch, +:root.t_light .t_dim_TooltipContent { + --background0: hsla(191, 32%, 99%, 1); + --background025: hsla(191, 32%, 93%, 1); + --background05: hsla(191, 32%, 88%, 1); + --background075: hsla(191, 32%, 83%, 1); + --color0: hsla(191, 32%, 55%, 1); + --color025: hsla(191, 32%, 50%, 1); + --color05: hsla(96, 16%, 25%, 1); + --color075: hsla(112, 22%, 0%, 1); + --background: hsla(191, 32%, 83%, 1); + --backgroundHover: hsla(191, 32%, 77%, 1); + --backgroundPress: hsla(191, 32%, 72%, 1); + --backgroundFocus: hsla(191, 32%, 66%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 55%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 55%, 1); + --placeholderColor: hsla(191, 32%, 66%, 1); + --borderColor: hsla(191, 32%, 66%, 1); + --borderColorHover: hsla(191, 32%, 61%, 1); + --borderColorFocus: hsla(191, 32%, 55%, 1); + --borderColorPress: hsla(191, 32%, 61%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt1_Button, + .t_alt1_SliderTrack, + .t_alt1_Switch, + .t_alt1_TooltipContent, + .t_dark .t_light .t_alt1_Button, + .t_dark .t_light .t_alt1_SliderTrack, + .t_dark .t_light .t_alt1_Switch, + .t_dark .t_light .t_alt1_TooltipContent, + .t_dark .t_light .t_dim_Button, + .t_dark .t_light .t_dim_SliderTrack, + .t_dark .t_light .t_dim_Switch, + .t_dark .t_light .t_dim_TooltipContent, + .t_dim_Button, + .t_dim_SliderTrack, + .t_dim_Switch, + .t_dim_TooltipContent { + --background0: hsla(191, 32%, 99%, 1); + --background025: hsla(191, 32%, 93%, 1); + --background05: hsla(191, 32%, 88%, 1); + --background075: hsla(191, 32%, 83%, 1); + --color0: hsla(191, 32%, 55%, 1); + --color025: hsla(191, 32%, 50%, 1); + --color05: hsla(96, 16%, 25%, 1); + --color075: hsla(112, 22%, 0%, 1); + --background: hsla(191, 32%, 83%, 1); + --backgroundHover: hsla(191, 32%, 77%, 1); + --backgroundPress: hsla(191, 32%, 72%, 1); + --backgroundFocus: hsla(191, 32%, 66%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 55%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 55%, 1); + --placeholderColor: hsla(191, 32%, 66%, 1); + --borderColor: hsla(191, 32%, 66%, 1); + --borderColorHover: hsla(191, 32%, 61%, 1); + --borderColorFocus: hsla(191, 32%, 55%, 1); + --borderColorPress: hsla(191, 32%, 61%, 1); + } +} + +:root.t_dark .t_light .t_alt1_Card, +:root.t_dark .t_light .t_alt1_DrawerFrame, +:root.t_dark .t_light .t_alt1_Progress, +:root.t_dark .t_light .t_alt1_TooltipArrow, +:root.t_dark .t_light .t_dark .t_light .t_alt1_Card, +:root.t_dark .t_light .t_dark .t_light .t_alt1_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_alt1_Progress, +:root.t_dark .t_light .t_dark .t_light .t_alt1_TooltipArrow, +:root.t_dark .t_light .t_dark .t_light .t_dim_Card, +:root.t_dark .t_light .t_dark .t_light .t_dim_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_dim_Progress, +:root.t_dark .t_light .t_dark .t_light .t_dim_TooltipArrow, +:root.t_dark .t_light .t_dim_Card, +:root.t_dark .t_light .t_dim_DrawerFrame, +:root.t_dark .t_light .t_dim_Progress, +:root.t_dark .t_light .t_dim_TooltipArrow, +:root.t_light .t_alt1_Card, +:root.t_light .t_alt1_DrawerFrame, +:root.t_light .t_alt1_Progress, +:root.t_light .t_alt1_TooltipArrow, +:root.t_light .t_dark .t_light .t_alt1_Card, +:root.t_light .t_dark .t_light .t_alt1_DrawerFrame, +:root.t_light .t_dark .t_light .t_alt1_Progress, +:root.t_light .t_dark .t_light .t_alt1_TooltipArrow, +:root.t_light .t_dark .t_light .t_dim_Card, +:root.t_light .t_dark .t_light .t_dim_DrawerFrame, +:root.t_light .t_dark .t_light .t_dim_Progress, +:root.t_light .t_dark .t_light .t_dim_TooltipArrow, +:root.t_light .t_dim_Card, +:root.t_light .t_dim_DrawerFrame, +:root.t_light .t_dim_Progress, +:root.t_light .t_dim_TooltipArrow { + --background0: hsla(180, 20%, 99%, 0.75); + --background025: hsla(191, 32%, 99%, 1); + --background05: hsla(191, 32%, 93%, 1); + --background075: hsla(191, 32%, 88%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(96, 16%, 25%, 1); + --color05: hsla(112, 22%, 0%, 1); + --color075: hsla(0, 0%, 0%, 0.75); + --background: hsla(191, 32%, 88%, 1); + --backgroundHover: hsla(191, 32%, 83%, 1); + --backgroundPress: hsla(191, 32%, 77%, 1); + --backgroundFocus: hsla(191, 32%, 72%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 55%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 55%, 1); + --placeholderColor: hsla(191, 32%, 61%, 1); + --borderColor: hsla(191, 32%, 72%, 1); + --borderColorHover: hsla(191, 32%, 66%, 1); + --borderColorFocus: hsla(191, 32%, 61%, 1); + --borderColorPress: hsla(191, 32%, 66%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt1_Card, + .t_alt1_DrawerFrame, + .t_alt1_Progress, + .t_alt1_TooltipArrow, + .t_dark .t_light .t_alt1_Card, + .t_dark .t_light .t_alt1_DrawerFrame, + .t_dark .t_light .t_alt1_Progress, + .t_dark .t_light .t_alt1_TooltipArrow, + .t_dark .t_light .t_dim_Card, + .t_dark .t_light .t_dim_DrawerFrame, + .t_dark .t_light .t_dim_Progress, + .t_dark .t_light .t_dim_TooltipArrow, + .t_dim_Card, + .t_dim_DrawerFrame, + .t_dim_Progress, + .t_dim_TooltipArrow { + --background0: hsla(180, 20%, 99%, 0.75); + --background025: hsla(191, 32%, 99%, 1); + --background05: hsla(191, 32%, 93%, 1); + --background075: hsla(191, 32%, 88%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(96, 16%, 25%, 1); + --color05: hsla(112, 22%, 0%, 1); + --color075: hsla(0, 0%, 0%, 0.75); + --background: hsla(191, 32%, 88%, 1); + --backgroundHover: hsla(191, 32%, 83%, 1); + --backgroundPress: hsla(191, 32%, 77%, 1); + --backgroundFocus: hsla(191, 32%, 72%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 55%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 55%, 1); + --placeholderColor: hsla(191, 32%, 61%, 1); + --borderColor: hsla(191, 32%, 72%, 1); + --borderColorHover: hsla(191, 32%, 66%, 1); + --borderColorFocus: hsla(191, 32%, 61%, 1); + --borderColorPress: hsla(191, 32%, 66%, 1); + } +} + +:root.t_dark .t_light .t_alt1_Checkbox, +:root.t_dark .t_light .t_alt1_Input, +:root.t_dark .t_light .t_alt1_RadioGroupItem, +:root.t_dark .t_light .t_alt1_TextArea, +:root.t_dark .t_light .t_dark .t_light .t_alt1_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_alt1_Input, +:root.t_dark .t_light .t_dark .t_light .t_alt1_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_alt1_TextArea, +:root.t_dark .t_light .t_dark .t_light .t_dim_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_dim_Input, +:root.t_dark .t_light .t_dark .t_light .t_dim_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_dim_TextArea, +:root.t_dark .t_light .t_dim_Checkbox, +:root.t_dark .t_light .t_dim_Input, +:root.t_dark .t_light .t_dim_RadioGroupItem, +:root.t_dark .t_light .t_dim_TextArea, +:root.t_light .t_alt1_Checkbox, +:root.t_light .t_alt1_Input, +:root.t_light .t_alt1_RadioGroupItem, +:root.t_light .t_alt1_TextArea, +:root.t_light .t_dark .t_light .t_alt1_Checkbox, +:root.t_light .t_dark .t_light .t_alt1_Input, +:root.t_light .t_dark .t_light .t_alt1_RadioGroupItem, +:root.t_light .t_dark .t_light .t_alt1_TextArea, +:root.t_light .t_dark .t_light .t_dim_Checkbox, +:root.t_light .t_dark .t_light .t_dim_Input, +:root.t_light .t_dark .t_light .t_dim_RadioGroupItem, +:root.t_light .t_dark .t_light .t_dim_TextArea, +:root.t_light .t_dim_Checkbox, +:root.t_light .t_dim_Input, +:root.t_light .t_dim_RadioGroupItem, +:root.t_light .t_dim_TextArea { + --background0: hsla(180, 20%, 99%, 0.5); + --background025: hsla(180, 20%, 99%, 0.75); + --background05: hsla(191, 32%, 99%, 1); + --background075: hsla(191, 32%, 93%, 1); + --color0: hsla(96, 16%, 25%, 1); + --color025: hsla(112, 22%, 0%, 1); + --color05: hsla(0, 0%, 0%, 0.75); + --color075: hsla(0, 0%, 0%, 0.5); + --background: hsla(191, 32%, 93%, 1); + --backgroundHover: hsla(191, 32%, 88%, 1); + --backgroundPress: hsla(191, 32%, 83%, 1); + --backgroundFocus: hsla(191, 32%, 77%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 55%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 55%, 1); + --placeholderColor: hsla(191, 32%, 55%, 1); + --borderColor: hsla(191, 32%, 66%, 1); + --borderColorHover: hsla(191, 32%, 61%, 1); + --borderColorFocus: hsla(191, 32%, 55%, 1); + --borderColorPress: hsla(191, 32%, 61%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt1_Checkbox, + .t_alt1_Input, + .t_alt1_RadioGroupItem, + .t_alt1_TextArea, + .t_dark .t_light .t_alt1_Checkbox, + .t_dark .t_light .t_alt1_Input, + .t_dark .t_light .t_alt1_RadioGroupItem, + .t_dark .t_light .t_alt1_TextArea, + .t_dark .t_light .t_dim_Checkbox, + .t_dark .t_light .t_dim_Input, + .t_dark .t_light .t_dim_RadioGroupItem, + .t_dark .t_light .t_dim_TextArea, + .t_dim_Checkbox, + .t_dim_Input, + .t_dim_RadioGroupItem, + .t_dim_TextArea { + --background0: hsla(180, 20%, 99%, 0.5); + --background025: hsla(180, 20%, 99%, 0.75); + --background05: hsla(191, 32%, 99%, 1); + --background075: hsla(191, 32%, 93%, 1); + --color0: hsla(96, 16%, 25%, 1); + --color025: hsla(112, 22%, 0%, 1); + --color05: hsla(0, 0%, 0%, 0.75); + --color075: hsla(0, 0%, 0%, 0.5); + --background: hsla(191, 32%, 93%, 1); + --backgroundHover: hsla(191, 32%, 88%, 1); + --backgroundPress: hsla(191, 32%, 83%, 1); + --backgroundFocus: hsla(191, 32%, 77%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 55%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 55%, 1); + --placeholderColor: hsla(191, 32%, 55%, 1); + --borderColor: hsla(191, 32%, 66%, 1); + --borderColorHover: hsla(191, 32%, 61%, 1); + --borderColorFocus: hsla(191, 32%, 55%, 1); + --borderColorPress: hsla(191, 32%, 61%, 1); + } +} + +:root.t_dark .t_light .t_alt1_ProgressIndicator, +:root.t_dark .t_light .t_alt1_SliderThumb, +:root.t_dark .t_light .t_alt1_SwitchThumb, +:root.t_dark .t_light .t_alt1_Tooltip, +:root.t_dark .t_light .t_dark .t_light .t_alt1_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_alt1_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_alt1_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_alt1_Tooltip, +:root.t_dark .t_light .t_dark .t_light .t_dim_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_dim_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_dim_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_dim_Tooltip, +:root.t_dark .t_light .t_dim_ProgressIndicator, +:root.t_dark .t_light .t_dim_SliderThumb, +:root.t_dark .t_light .t_dim_SwitchThumb, +:root.t_dark .t_light .t_dim_Tooltip, +:root.t_light .t_alt1_ProgressIndicator, +:root.t_light .t_alt1_SliderThumb, +:root.t_light .t_alt1_SwitchThumb, +:root.t_light .t_alt1_Tooltip, +:root.t_light .t_dark .t_light .t_alt1_ProgressIndicator, +:root.t_light .t_dark .t_light .t_alt1_SliderThumb, +:root.t_light .t_dark .t_light .t_alt1_SwitchThumb, +:root.t_light .t_dark .t_light .t_alt1_Tooltip, +:root.t_light .t_dark .t_light .t_dim_ProgressIndicator, +:root.t_light .t_dark .t_light .t_dim_SliderThumb, +:root.t_light .t_dark .t_light .t_dim_SwitchThumb, +:root.t_light .t_dark .t_light .t_dim_Tooltip, +:root.t_light .t_dim_ProgressIndicator, +:root.t_light .t_dim_SliderThumb, +:root.t_light .t_dim_SwitchThumb, +:root.t_light .t_dim_Tooltip { + --background0: hsla(0, 0%, 0%, 0.5); + --background025: hsla(0, 0%, 0%, 0.75); + --background05: hsla(112, 22%, 0%, 1); + --background075: hsla(96, 16%, 25%, 1); + --color0: hsla(191, 32%, 93%, 1); + --color025: hsla(191, 32%, 99%, 1); + --color05: hsla(180, 20%, 99%, 0.75); + --color075: hsla(180, 20%, 99%, 0.5); + --background: hsla(96, 16%, 25%, 1); + --backgroundHover: hsla(191, 32%, 50%, 1); + --backgroundPress: hsla(191, 32%, 55%, 1); + --backgroundFocus: hsla(191, 32%, 61%, 1); + --color: hsla(191, 32%, 88%, 1); + --colorHover: hsla(191, 32%, 83%, 1); + --colorPress: hsla(191, 32%, 88%, 1); + --colorFocus: hsla(191, 32%, 83%, 1); + --placeholderColor: hsla(191, 32%, 83%, 1); + --borderColor: hsla(191, 32%, 61%, 1); + --borderColorHover: hsla(191, 32%, 66%, 1); + --borderColorFocus: hsla(191, 32%, 72%, 1); + --borderColorPress: hsla(191, 32%, 66%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt1_ProgressIndicator, + .t_alt1_SliderThumb, + .t_alt1_SwitchThumb, + .t_alt1_Tooltip, + .t_dark .t_light .t_alt1_ProgressIndicator, + .t_dark .t_light .t_alt1_SliderThumb, + .t_dark .t_light .t_alt1_SwitchThumb, + .t_dark .t_light .t_alt1_Tooltip, + .t_dark .t_light .t_dim_ProgressIndicator, + .t_dark .t_light .t_dim_SliderThumb, + .t_dark .t_light .t_dim_SwitchThumb, + .t_dark .t_light .t_dim_Tooltip, + .t_dim_ProgressIndicator, + .t_dim_SliderThumb, + .t_dim_SwitchThumb, + .t_dim_Tooltip { + --background0: hsla(0, 0%, 0%, 0.5); + --background025: hsla(0, 0%, 0%, 0.75); + --background05: hsla(112, 22%, 0%, 1); + --background075: hsla(96, 16%, 25%, 1); + --color0: hsla(191, 32%, 93%, 1); + --color025: hsla(191, 32%, 99%, 1); + --color05: hsla(180, 20%, 99%, 0.75); + --color075: hsla(180, 20%, 99%, 0.5); + --background: hsla(96, 16%, 25%, 1); + --backgroundHover: hsla(191, 32%, 50%, 1); + --backgroundPress: hsla(191, 32%, 55%, 1); + --backgroundFocus: hsla(191, 32%, 61%, 1); + --color: hsla(191, 32%, 88%, 1); + --colorHover: hsla(191, 32%, 83%, 1); + --colorPress: hsla(191, 32%, 88%, 1); + --colorFocus: hsla(191, 32%, 83%, 1); + --placeholderColor: hsla(191, 32%, 83%, 1); + --borderColor: hsla(191, 32%, 61%, 1); + --borderColorHover: hsla(191, 32%, 66%, 1); + --borderColorFocus: hsla(191, 32%, 72%, 1); + --borderColorPress: hsla(191, 32%, 66%, 1); + } +} + +:root.t_dark .t_light .t_alt1_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_light .t_alt1_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_light .t_dim_SliderTrackActive, +:root.t_dark .t_light .t_dim_SliderTrackActive, +:root.t_light .t_alt1_SliderTrackActive, +:root.t_light .t_dark .t_light .t_alt1_SliderTrackActive, +:root.t_light .t_dark .t_light .t_dim_SliderTrackActive, +:root.t_light .t_dim_SliderTrackActive { + --background0: hsla(112, 22%, 0%, 1); + --background025: hsla(96, 16%, 25%, 1); + --background05: hsla(191, 32%, 50%, 1); + --background075: hsla(191, 32%, 55%, 1); + --color0: hsla(191, 32%, 83%, 1); + --color025: hsla(191, 32%, 88%, 1); + --color05: hsla(191, 32%, 93%, 1); + --color075: hsla(191, 32%, 99%, 1); + --background: hsla(191, 32%, 55%, 1); + --backgroundHover: hsla(191, 32%, 61%, 1); + --backgroundPress: hsla(191, 32%, 66%, 1); + --backgroundFocus: hsla(191, 32%, 72%, 1); + --color: hsla(191, 32%, 88%, 1); + --colorHover: hsla(191, 32%, 83%, 1); + --colorPress: hsla(191, 32%, 88%, 1); + --colorFocus: hsla(191, 32%, 83%, 1); + --placeholderColor: hsla(191, 32%, 72%, 1); + --borderColor: hsla(191, 32%, 72%, 1); + --borderColorHover: hsla(191, 32%, 77%, 1); + --borderColorFocus: hsla(191, 32%, 83%, 1); + --borderColorPress: hsla(191, 32%, 77%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt1_SliderTrackActive, + .t_dark .t_light .t_alt1_SliderTrackActive, + .t_dark .t_light .t_dim_SliderTrackActive, + .t_dim_SliderTrackActive { + --background0: hsla(112, 22%, 0%, 1); + --background025: hsla(96, 16%, 25%, 1); + --background05: hsla(191, 32%, 50%, 1); + --background075: hsla(191, 32%, 55%, 1); + --color0: hsla(191, 32%, 83%, 1); + --color025: hsla(191, 32%, 88%, 1); + --color05: hsla(191, 32%, 93%, 1); + --color075: hsla(191, 32%, 99%, 1); + --background: hsla(191, 32%, 55%, 1); + --backgroundHover: hsla(191, 32%, 61%, 1); + --backgroundPress: hsla(191, 32%, 66%, 1); + --backgroundFocus: hsla(191, 32%, 72%, 1); + --color: hsla(191, 32%, 88%, 1); + --colorHover: hsla(191, 32%, 83%, 1); + --colorPress: hsla(191, 32%, 88%, 1); + --colorFocus: hsla(191, 32%, 83%, 1); + --placeholderColor: hsla(191, 32%, 72%, 1); + --borderColor: hsla(191, 32%, 72%, 1); + --borderColorHover: hsla(191, 32%, 77%, 1); + --borderColorFocus: hsla(191, 32%, 83%, 1); + --borderColorPress: hsla(191, 32%, 77%, 1); + } +} + +:root.t_dark .t_light .t_alt2, +:root.t_dark .t_light .t_dark .t_light .t_alt2, +:root.t_light .t_alt2, +:root.t_light .t_dark .t_light .t_alt2 { + --background0: hsla(180, 20%, 99%, 0.75); + --background025: hsla(191, 32%, 99%, 1); + --background05: hsla(191, 32%, 93%, 1); + --background075: hsla(191, 32%, 88%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(96, 16%, 25%, 1); + --color05: hsla(112, 22%, 0%, 1); + --color075: hsla(0, 0%, 0%, 0.75); + --background: hsla(191, 32%, 88%, 1); + --backgroundHover: hsla(191, 32%, 83%, 1); + --backgroundPress: hsla(191, 32%, 77%, 1); + --backgroundFocus: hsla(191, 32%, 72%, 1); + --color: hsla(191, 32%, 55%, 1); + --colorHover: hsla(191, 32%, 61%, 1); + --colorPress: hsla(191, 32%, 55%, 1); + --colorFocus: hsla(191, 32%, 61%, 1); + --placeholderColor: hsla(191, 32%, 61%, 1); + --borderColor: hsla(191, 32%, 72%, 1); + --borderColorHover: hsla(191, 32%, 66%, 1); + --borderColorFocus: hsla(191, 32%, 61%, 1); + --borderColorPress: hsla(191, 32%, 66%, 1); + --color1: hsla(191, 32%, 88%, 1); + --color2: hsla(191, 32%, 83%, 1); + --color3: hsla(191, 32%, 77%, 1); + --color4: hsla(191, 32%, 72%, 1); + --color5: hsla(191, 32%, 66%, 1); + --color6: hsla(191, 32%, 61%, 1); + --color7: hsla(191, 32%, 55%, 1); + --color8: hsla(191, 32%, 55%, 1); + --color9: hsla(191, 32%, 55%, 1); + --color10: hsla(191, 32%, 55%, 1); + --color11: hsla(191, 32%, 55%, 1); + --color12: hsla(191, 32%, 55%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt2, + .t_dark .t_light .t_alt2 { + --background0: hsla(180, 20%, 99%, 0.75); + --background025: hsla(191, 32%, 99%, 1); + --background05: hsla(191, 32%, 93%, 1); + --background075: hsla(191, 32%, 88%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(96, 16%, 25%, 1); + --color05: hsla(112, 22%, 0%, 1); + --color075: hsla(0, 0%, 0%, 0.75); + --background: hsla(191, 32%, 88%, 1); + --backgroundHover: hsla(191, 32%, 83%, 1); + --backgroundPress: hsla(191, 32%, 77%, 1); + --backgroundFocus: hsla(191, 32%, 72%, 1); + --color: hsla(191, 32%, 55%, 1); + --colorHover: hsla(191, 32%, 61%, 1); + --colorPress: hsla(191, 32%, 55%, 1); + --colorFocus: hsla(191, 32%, 61%, 1); + --placeholderColor: hsla(191, 32%, 61%, 1); + --borderColor: hsla(191, 32%, 72%, 1); + --borderColorHover: hsla(191, 32%, 66%, 1); + --borderColorFocus: hsla(191, 32%, 61%, 1); + --borderColorPress: hsla(191, 32%, 66%, 1); + --color1: hsla(191, 32%, 88%, 1); + --color2: hsla(191, 32%, 83%, 1); + --color3: hsla(191, 32%, 77%, 1); + --color4: hsla(191, 32%, 72%, 1); + --color5: hsla(191, 32%, 66%, 1); + --color6: hsla(191, 32%, 61%, 1); + --color7: hsla(191, 32%, 55%, 1); + --color8: hsla(191, 32%, 55%, 1); + --color9: hsla(191, 32%, 55%, 1); + --color10: hsla(191, 32%, 55%, 1); + --color11: hsla(191, 32%, 55%, 1); + --color12: hsla(191, 32%, 55%, 1); + } +} + +:root.t_dark .t_light .t_alt2_Button, +:root.t_dark .t_light .t_alt2_SliderTrack, +:root.t_dark .t_light .t_alt2_Switch, +:root.t_dark .t_light .t_alt2_TooltipContent, +:root.t_dark .t_light .t_dark .t_light .t_alt2_Button, +:root.t_dark .t_light .t_dark .t_light .t_alt2_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_alt2_Switch, +:root.t_dark .t_light .t_dark .t_light .t_alt2_TooltipContent, +:root.t_dark .t_light .t_dark .t_light .t_disabled_Button, +:root.t_dark .t_light .t_dark .t_light .t_disabled_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_disabled_Switch, +:root.t_dark .t_light .t_dark .t_light .t_disabled_TooltipContent, +:root.t_dark .t_light .t_disabled_Button, +:root.t_dark .t_light .t_disabled_SliderTrack, +:root.t_dark .t_light .t_disabled_Switch, +:root.t_dark .t_light .t_disabled_TooltipContent, +:root.t_light .t_alt2_Button, +:root.t_light .t_alt2_SliderTrack, +:root.t_light .t_alt2_Switch, +:root.t_light .t_alt2_TooltipContent, +:root.t_light .t_dark .t_light .t_alt2_Button, +:root.t_light .t_dark .t_light .t_alt2_SliderTrack, +:root.t_light .t_dark .t_light .t_alt2_Switch, +:root.t_light .t_dark .t_light .t_alt2_TooltipContent, +:root.t_light .t_dark .t_light .t_disabled_Button, +:root.t_light .t_dark .t_light .t_disabled_SliderTrack, +:root.t_light .t_dark .t_light .t_disabled_Switch, +:root.t_light .t_dark .t_light .t_disabled_TooltipContent, +:root.t_light .t_disabled_Button, +:root.t_light .t_disabled_SliderTrack, +:root.t_light .t_disabled_Switch, +:root.t_light .t_disabled_TooltipContent { + --background0: hsla(191, 32%, 93%, 1); + --background025: hsla(191, 32%, 88%, 1); + --background05: hsla(191, 32%, 83%, 1); + --background075: hsla(191, 32%, 77%, 1); + --color0: hsla(191, 32%, 61%, 1); + --color025: hsla(191, 32%, 55%, 1); + --color05: hsla(191, 32%, 50%, 1); + --color075: hsla(96, 16%, 25%, 1); + --background: hsla(191, 32%, 77%, 1); + --backgroundHover: hsla(191, 32%, 72%, 1); + --backgroundPress: hsla(191, 32%, 66%, 1); + --backgroundFocus: hsla(191, 32%, 61%, 1); + --color: hsla(191, 32%, 55%, 1); + --colorHover: hsla(191, 32%, 61%, 1); + --colorPress: hsla(191, 32%, 55%, 1); + --colorFocus: hsla(191, 32%, 61%, 1); + --placeholderColor: hsla(191, 32%, 72%, 1); + --borderColor: hsla(191, 32%, 61%, 1); + --borderColorHover: hsla(191, 32%, 55%, 1); + --borderColorFocus: hsla(191, 32%, 50%, 1); + --borderColorPress: hsla(191, 32%, 55%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt2_Button, + .t_alt2_SliderTrack, + .t_alt2_Switch, + .t_alt2_TooltipContent, + .t_dark .t_light .t_alt2_Button, + .t_dark .t_light .t_alt2_SliderTrack, + .t_dark .t_light .t_alt2_Switch, + .t_dark .t_light .t_alt2_TooltipContent, + .t_dark .t_light .t_disabled_Button, + .t_dark .t_light .t_disabled_SliderTrack, + .t_dark .t_light .t_disabled_Switch, + .t_dark .t_light .t_disabled_TooltipContent, + .t_disabled_Button, + .t_disabled_SliderTrack, + .t_disabled_Switch, + .t_disabled_TooltipContent { + --background0: hsla(191, 32%, 93%, 1); + --background025: hsla(191, 32%, 88%, 1); + --background05: hsla(191, 32%, 83%, 1); + --background075: hsla(191, 32%, 77%, 1); + --color0: hsla(191, 32%, 61%, 1); + --color025: hsla(191, 32%, 55%, 1); + --color05: hsla(191, 32%, 50%, 1); + --color075: hsla(96, 16%, 25%, 1); + --background: hsla(191, 32%, 77%, 1); + --backgroundHover: hsla(191, 32%, 72%, 1); + --backgroundPress: hsla(191, 32%, 66%, 1); + --backgroundFocus: hsla(191, 32%, 61%, 1); + --color: hsla(191, 32%, 55%, 1); + --colorHover: hsla(191, 32%, 61%, 1); + --colorPress: hsla(191, 32%, 55%, 1); + --colorFocus: hsla(191, 32%, 61%, 1); + --placeholderColor: hsla(191, 32%, 72%, 1); + --borderColor: hsla(191, 32%, 61%, 1); + --borderColorHover: hsla(191, 32%, 55%, 1); + --borderColorFocus: hsla(191, 32%, 50%, 1); + --borderColorPress: hsla(191, 32%, 55%, 1); + } +} + +:root.t_dark .t_light .t_alt2_Card, +:root.t_dark .t_light .t_alt2_DrawerFrame, +:root.t_dark .t_light .t_alt2_Progress, +:root.t_dark .t_light .t_alt2_TooltipArrow, +:root.t_dark .t_light .t_dark .t_light .t_alt2_Card, +:root.t_dark .t_light .t_dark .t_light .t_alt2_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_alt2_Progress, +:root.t_dark .t_light .t_dark .t_light .t_alt2_TooltipArrow, +:root.t_dark .t_light .t_dark .t_light .t_disabled_Card, +:root.t_dark .t_light .t_dark .t_light .t_disabled_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_disabled_Progress, +:root.t_dark .t_light .t_dark .t_light .t_disabled_TooltipArrow, +:root.t_dark .t_light .t_disabled_Card, +:root.t_dark .t_light .t_disabled_DrawerFrame, +:root.t_dark .t_light .t_disabled_Progress, +:root.t_dark .t_light .t_disabled_TooltipArrow, +:root.t_light .t_alt2_Card, +:root.t_light .t_alt2_DrawerFrame, +:root.t_light .t_alt2_Progress, +:root.t_light .t_alt2_TooltipArrow, +:root.t_light .t_dark .t_light .t_alt2_Card, +:root.t_light .t_dark .t_light .t_alt2_DrawerFrame, +:root.t_light .t_dark .t_light .t_alt2_Progress, +:root.t_light .t_dark .t_light .t_alt2_TooltipArrow, +:root.t_light .t_dark .t_light .t_disabled_Card, +:root.t_light .t_dark .t_light .t_disabled_DrawerFrame, +:root.t_light .t_dark .t_light .t_disabled_Progress, +:root.t_light .t_dark .t_light .t_disabled_TooltipArrow, +:root.t_light .t_disabled_Card, +:root.t_light .t_disabled_DrawerFrame, +:root.t_light .t_disabled_Progress, +:root.t_light .t_disabled_TooltipArrow { + --background0: hsla(191, 32%, 99%, 1); + --background025: hsla(191, 32%, 93%, 1); + --background05: hsla(191, 32%, 88%, 1); + --background075: hsla(191, 32%, 83%, 1); + --color0: hsla(191, 32%, 55%, 1); + --color025: hsla(191, 32%, 50%, 1); + --color05: hsla(96, 16%, 25%, 1); + --color075: hsla(112, 22%, 0%, 1); + --background: hsla(191, 32%, 83%, 1); + --backgroundHover: hsla(191, 32%, 77%, 1); + --backgroundPress: hsla(191, 32%, 72%, 1); + --backgroundFocus: hsla(191, 32%, 66%, 1); + --color: hsla(191, 32%, 55%, 1); + --colorHover: hsla(191, 32%, 61%, 1); + --colorPress: hsla(191, 32%, 55%, 1); + --colorFocus: hsla(191, 32%, 61%, 1); + --placeholderColor: hsla(191, 32%, 66%, 1); + --borderColor: hsla(191, 32%, 66%, 1); + --borderColorHover: hsla(191, 32%, 61%, 1); + --borderColorFocus: hsla(191, 32%, 55%, 1); + --borderColorPress: hsla(191, 32%, 61%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt2_Card, + .t_alt2_DrawerFrame, + .t_alt2_Progress, + .t_alt2_TooltipArrow, + .t_dark .t_light .t_alt2_Card, + .t_dark .t_light .t_alt2_DrawerFrame, + .t_dark .t_light .t_alt2_Progress, + .t_dark .t_light .t_alt2_TooltipArrow, + .t_dark .t_light .t_disabled_Card, + .t_dark .t_light .t_disabled_DrawerFrame, + .t_dark .t_light .t_disabled_Progress, + .t_dark .t_light .t_disabled_TooltipArrow, + .t_disabled_Card, + .t_disabled_DrawerFrame, + .t_disabled_Progress, + .t_disabled_TooltipArrow { + --background0: hsla(191, 32%, 99%, 1); + --background025: hsla(191, 32%, 93%, 1); + --background05: hsla(191, 32%, 88%, 1); + --background075: hsla(191, 32%, 83%, 1); + --color0: hsla(191, 32%, 55%, 1); + --color025: hsla(191, 32%, 50%, 1); + --color05: hsla(96, 16%, 25%, 1); + --color075: hsla(112, 22%, 0%, 1); + --background: hsla(191, 32%, 83%, 1); + --backgroundHover: hsla(191, 32%, 77%, 1); + --backgroundPress: hsla(191, 32%, 72%, 1); + --backgroundFocus: hsla(191, 32%, 66%, 1); + --color: hsla(191, 32%, 55%, 1); + --colorHover: hsla(191, 32%, 61%, 1); + --colorPress: hsla(191, 32%, 55%, 1); + --colorFocus: hsla(191, 32%, 61%, 1); + --placeholderColor: hsla(191, 32%, 66%, 1); + --borderColor: hsla(191, 32%, 66%, 1); + --borderColorHover: hsla(191, 32%, 61%, 1); + --borderColorFocus: hsla(191, 32%, 55%, 1); + --borderColorPress: hsla(191, 32%, 61%, 1); + } +} + +:root.t_dark .t_light .t_alt2_Checkbox, +:root.t_dark .t_light .t_alt2_Input, +:root.t_dark .t_light .t_alt2_RadioGroupItem, +:root.t_dark .t_light .t_alt2_TextArea, +:root.t_dark .t_light .t_dark .t_light .t_alt2_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_alt2_Input, +:root.t_dark .t_light .t_dark .t_light .t_alt2_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_alt2_TextArea, +:root.t_dark .t_light .t_dark .t_light .t_disabled_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_disabled_Input, +:root.t_dark .t_light .t_dark .t_light .t_disabled_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_disabled_TextArea, +:root.t_dark .t_light .t_disabled_Checkbox, +:root.t_dark .t_light .t_disabled_Input, +:root.t_dark .t_light .t_disabled_RadioGroupItem, +:root.t_dark .t_light .t_disabled_TextArea, +:root.t_light .t_alt2_Checkbox, +:root.t_light .t_alt2_Input, +:root.t_light .t_alt2_RadioGroupItem, +:root.t_light .t_alt2_TextArea, +:root.t_light .t_dark .t_light .t_alt2_Checkbox, +:root.t_light .t_dark .t_light .t_alt2_Input, +:root.t_light .t_dark .t_light .t_alt2_RadioGroupItem, +:root.t_light .t_dark .t_light .t_alt2_TextArea, +:root.t_light .t_dark .t_light .t_disabled_Checkbox, +:root.t_light .t_dark .t_light .t_disabled_Input, +:root.t_light .t_dark .t_light .t_disabled_RadioGroupItem, +:root.t_light .t_dark .t_light .t_disabled_TextArea, +:root.t_light .t_disabled_Checkbox, +:root.t_light .t_disabled_Input, +:root.t_light .t_disabled_RadioGroupItem, +:root.t_light .t_disabled_TextArea { + --background0: hsla(180, 20%, 99%, 0.75); + --background025: hsla(191, 32%, 99%, 1); + --background05: hsla(191, 32%, 93%, 1); + --background075: hsla(191, 32%, 88%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(96, 16%, 25%, 1); + --color05: hsla(112, 22%, 0%, 1); + --color075: hsla(0, 0%, 0%, 0.75); + --background: hsla(191, 32%, 88%, 1); + --backgroundHover: hsla(191, 32%, 83%, 1); + --backgroundPress: hsla(191, 32%, 77%, 1); + --backgroundFocus: hsla(191, 32%, 72%, 1); + --color: hsla(191, 32%, 55%, 1); + --colorHover: hsla(191, 32%, 61%, 1); + --colorPress: hsla(191, 32%, 55%, 1); + --colorFocus: hsla(191, 32%, 61%, 1); + --placeholderColor: hsla(191, 32%, 61%, 1); + --borderColor: hsla(191, 32%, 61%, 1); + --borderColorHover: hsla(191, 32%, 55%, 1); + --borderColorFocus: hsla(191, 32%, 50%, 1); + --borderColorPress: hsla(191, 32%, 55%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt2_Checkbox, + .t_alt2_Input, + .t_alt2_RadioGroupItem, + .t_alt2_TextArea, + .t_dark .t_light .t_alt2_Checkbox, + .t_dark .t_light .t_alt2_Input, + .t_dark .t_light .t_alt2_RadioGroupItem, + .t_dark .t_light .t_alt2_TextArea, + .t_dark .t_light .t_disabled_Checkbox, + .t_dark .t_light .t_disabled_Input, + .t_dark .t_light .t_disabled_RadioGroupItem, + .t_dark .t_light .t_disabled_TextArea, + .t_disabled_Checkbox, + .t_disabled_Input, + .t_disabled_RadioGroupItem, + .t_disabled_TextArea { + --background0: hsla(180, 20%, 99%, 0.75); + --background025: hsla(191, 32%, 99%, 1); + --background05: hsla(191, 32%, 93%, 1); + --background075: hsla(191, 32%, 88%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(96, 16%, 25%, 1); + --color05: hsla(112, 22%, 0%, 1); + --color075: hsla(0, 0%, 0%, 0.75); + --background: hsla(191, 32%, 88%, 1); + --backgroundHover: hsla(191, 32%, 83%, 1); + --backgroundPress: hsla(191, 32%, 77%, 1); + --backgroundFocus: hsla(191, 32%, 72%, 1); + --color: hsla(191, 32%, 55%, 1); + --colorHover: hsla(191, 32%, 61%, 1); + --colorPress: hsla(191, 32%, 55%, 1); + --colorFocus: hsla(191, 32%, 61%, 1); + --placeholderColor: hsla(191, 32%, 61%, 1); + --borderColor: hsla(191, 32%, 61%, 1); + --borderColorHover: hsla(191, 32%, 55%, 1); + --borderColorFocus: hsla(191, 32%, 50%, 1); + --borderColorPress: hsla(191, 32%, 55%, 1); + } +} + +:root.t_dark .t_light .t_alt2_ProgressIndicator, +:root.t_dark .t_light .t_alt2_SliderThumb, +:root.t_dark .t_light .t_alt2_SwitchThumb, +:root.t_dark .t_light .t_alt2_Tooltip, +:root.t_dark .t_light .t_dark .t_light .t_alt2_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_alt2_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_alt2_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_alt2_Tooltip, +:root.t_dark .t_light .t_dark .t_light .t_disabled_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_disabled_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_disabled_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_disabled_Tooltip, +:root.t_dark .t_light .t_disabled_ProgressIndicator, +:root.t_dark .t_light .t_disabled_SliderThumb, +:root.t_dark .t_light .t_disabled_SwitchThumb, +:root.t_dark .t_light .t_disabled_Tooltip, +:root.t_light .t_alt2_ProgressIndicator, +:root.t_light .t_alt2_SliderThumb, +:root.t_light .t_alt2_SwitchThumb, +:root.t_light .t_alt2_Tooltip, +:root.t_light .t_dark .t_light .t_alt2_ProgressIndicator, +:root.t_light .t_dark .t_light .t_alt2_SliderThumb, +:root.t_light .t_dark .t_light .t_alt2_SwitchThumb, +:root.t_light .t_dark .t_light .t_alt2_Tooltip, +:root.t_light .t_dark .t_light .t_disabled_ProgressIndicator, +:root.t_light .t_dark .t_light .t_disabled_SliderThumb, +:root.t_light .t_dark .t_light .t_disabled_SwitchThumb, +:root.t_light .t_dark .t_light .t_disabled_Tooltip, +:root.t_light .t_disabled_ProgressIndicator, +:root.t_light .t_disabled_SliderThumb, +:root.t_light .t_disabled_SwitchThumb, +:root.t_light .t_disabled_Tooltip { + --background0: hsla(0, 0%, 0%, 0.75); + --background025: hsla(112, 22%, 0%, 1); + --background05: hsla(96, 16%, 25%, 1); + --background075: hsla(191, 32%, 50%, 1); + --color0: hsla(191, 32%, 88%, 1); + --color025: hsla(191, 32%, 93%, 1); + --color05: hsla(191, 32%, 99%, 1); + --color075: hsla(180, 20%, 99%, 0.75); + --background: hsla(191, 32%, 50%, 1); + --backgroundHover: hsla(191, 32%, 55%, 1); + --backgroundPress: hsla(191, 32%, 61%, 1); + --backgroundFocus: hsla(191, 32%, 66%, 1); + --color: hsla(191, 32%, 83%, 1); + --colorHover: hsla(191, 32%, 77%, 1); + --colorPress: hsla(191, 32%, 83%, 1); + --colorFocus: hsla(191, 32%, 77%, 1); + --placeholderColor: hsla(191, 32%, 77%, 1); + --borderColor: hsla(191, 32%, 66%, 1); + --borderColorHover: hsla(191, 32%, 72%, 1); + --borderColorFocus: hsla(191, 32%, 77%, 1); + --borderColorPress: hsla(191, 32%, 72%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt2_ProgressIndicator, + .t_alt2_SliderThumb, + .t_alt2_SwitchThumb, + .t_alt2_Tooltip, + .t_dark .t_light .t_alt2_ProgressIndicator, + .t_dark .t_light .t_alt2_SliderThumb, + .t_dark .t_light .t_alt2_SwitchThumb, + .t_dark .t_light .t_alt2_Tooltip, + .t_dark .t_light .t_disabled_ProgressIndicator, + .t_dark .t_light .t_disabled_SliderThumb, + .t_dark .t_light .t_disabled_SwitchThumb, + .t_dark .t_light .t_disabled_Tooltip, + .t_disabled_ProgressIndicator, + .t_disabled_SliderThumb, + .t_disabled_SwitchThumb, + .t_disabled_Tooltip { + --background0: hsla(0, 0%, 0%, 0.75); + --background025: hsla(112, 22%, 0%, 1); + --background05: hsla(96, 16%, 25%, 1); + --background075: hsla(191, 32%, 50%, 1); + --color0: hsla(191, 32%, 88%, 1); + --color025: hsla(191, 32%, 93%, 1); + --color05: hsla(191, 32%, 99%, 1); + --color075: hsla(180, 20%, 99%, 0.75); + --background: hsla(191, 32%, 50%, 1); + --backgroundHover: hsla(191, 32%, 55%, 1); + --backgroundPress: hsla(191, 32%, 61%, 1); + --backgroundFocus: hsla(191, 32%, 66%, 1); + --color: hsla(191, 32%, 83%, 1); + --colorHover: hsla(191, 32%, 77%, 1); + --colorPress: hsla(191, 32%, 83%, 1); + --colorFocus: hsla(191, 32%, 77%, 1); + --placeholderColor: hsla(191, 32%, 77%, 1); + --borderColor: hsla(191, 32%, 66%, 1); + --borderColorHover: hsla(191, 32%, 72%, 1); + --borderColorFocus: hsla(191, 32%, 77%, 1); + --borderColorPress: hsla(191, 32%, 72%, 1); + } +} + +:root.t_dark .t_light .t_alt2_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_light .t_alt2_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_light .t_disabled_SliderTrackActive, +:root.t_dark .t_light .t_disabled_SliderTrackActive, +:root.t_light .t_alt2_SliderTrackActive, +:root.t_light .t_dark .t_light .t_alt2_SliderTrackActive, +:root.t_light .t_dark .t_light .t_disabled_SliderTrackActive, +:root.t_light .t_disabled_SliderTrackActive { + --background0: hsla(96, 16%, 25%, 1); + --background025: hsla(191, 32%, 50%, 1); + --background05: hsla(191, 32%, 55%, 1); + --background075: hsla(191, 32%, 61%, 1); + --color0: hsla(191, 32%, 77%, 1); + --color025: hsla(191, 32%, 83%, 1); + --color05: hsla(191, 32%, 88%, 1); + --color075: hsla(191, 32%, 93%, 1); + --background: hsla(191, 32%, 61%, 1); + --backgroundHover: hsla(191, 32%, 66%, 1); + --backgroundPress: hsla(191, 32%, 72%, 1); + --backgroundFocus: hsla(191, 32%, 77%, 1); + --color: hsla(191, 32%, 83%, 1); + --colorHover: hsla(191, 32%, 77%, 1); + --colorPress: hsla(191, 32%, 83%, 1); + --colorFocus: hsla(191, 32%, 77%, 1); + --placeholderColor: hsla(191, 32%, 66%, 1); + --borderColor: hsla(191, 32%, 77%, 1); + --borderColorHover: hsla(191, 32%, 83%, 1); + --borderColorFocus: hsla(191, 32%, 88%, 1); + --borderColorPress: hsla(191, 32%, 83%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_alt2_SliderTrackActive, + .t_dark .t_light .t_alt2_SliderTrackActive, + .t_dark .t_light .t_disabled_SliderTrackActive, + .t_disabled_SliderTrackActive { + --background0: hsla(96, 16%, 25%, 1); + --background025: hsla(191, 32%, 50%, 1); + --background05: hsla(191, 32%, 55%, 1); + --background075: hsla(191, 32%, 61%, 1); + --color0: hsla(191, 32%, 77%, 1); + --color025: hsla(191, 32%, 83%, 1); + --color05: hsla(191, 32%, 88%, 1); + --color075: hsla(191, 32%, 93%, 1); + --background: hsla(191, 32%, 61%, 1); + --backgroundHover: hsla(191, 32%, 66%, 1); + --backgroundPress: hsla(191, 32%, 72%, 1); + --backgroundFocus: hsla(191, 32%, 77%, 1); + --color: hsla(191, 32%, 83%, 1); + --colorHover: hsla(191, 32%, 77%, 1); + --colorPress: hsla(191, 32%, 83%, 1); + --colorFocus: hsla(191, 32%, 77%, 1); + --placeholderColor: hsla(191, 32%, 66%, 1); + --borderColor: hsla(191, 32%, 77%, 1); + --borderColorHover: hsla(191, 32%, 83%, 1); + --borderColorFocus: hsla(191, 32%, 88%, 1); + --borderColorPress: hsla(191, 32%, 83%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_dim, +:root.t_dark .t_light .t_dim, +:root.t_light .t_dark .t_light .t_dim, +:root.t_light .t_dim { + --background0: hsla(180, 20%, 99%, 0.5); + --background025: hsla(180, 20%, 99%, 0.75); + --background05: hsla(191, 32%, 99%, 1); + --background075: hsla(191, 32%, 93%, 1); + --color0: hsla(96, 16%, 25%, 1); + --color025: hsla(112, 22%, 0%, 1); + --color05: hsla(0, 0%, 0%, 0.75); + --color075: hsla(0, 0%, 0%, 0.5); + --background: hsla(191, 32%, 93%, 1); + --backgroundHover: hsla(191, 32%, 88%, 1); + --backgroundPress: hsla(191, 32%, 83%, 1); + --backgroundFocus: hsla(191, 32%, 77%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 55%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 55%, 1); + --placeholderColor: hsla(191, 32%, 55%, 1); + --borderColor: hsla(191, 32%, 77%, 1); + --borderColorHover: hsla(191, 32%, 72%, 1); + --borderColorFocus: hsla(191, 32%, 66%, 1); + --borderColorPress: hsla(191, 32%, 72%, 1); + --color1: hsla(191, 32%, 93%, 1); + --color2: hsla(191, 32%, 88%, 1); + --color3: hsla(191, 32%, 83%, 1); + --color4: hsla(191, 32%, 77%, 1); + --color5: hsla(191, 32%, 72%, 1); + --color6: hsla(191, 32%, 66%, 1); + --color7: hsla(191, 32%, 61%, 1); + --color8: hsla(191, 32%, 55%, 1); + --color9: hsla(191, 32%, 50%, 1); + --color10: hsla(96, 16%, 25%, 1); + --color11: hsla(112, 22%, 0%, 1); + --color12: hsla(0, 0%, 0%, 0.75); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_dim, + .t_dim { + --background0: hsla(180, 20%, 99%, 0.5); + --background025: hsla(180, 20%, 99%, 0.75); + --background05: hsla(191, 32%, 99%, 1); + --background075: hsla(191, 32%, 93%, 1); + --color0: hsla(96, 16%, 25%, 1); + --color025: hsla(112, 22%, 0%, 1); + --color05: hsla(0, 0%, 0%, 0.75); + --color075: hsla(0, 0%, 0%, 0.5); + --background: hsla(191, 32%, 93%, 1); + --backgroundHover: hsla(191, 32%, 88%, 1); + --backgroundPress: hsla(191, 32%, 83%, 1); + --backgroundFocus: hsla(191, 32%, 77%, 1); + --color: hsla(191, 32%, 50%, 1); + --colorHover: hsla(191, 32%, 55%, 1); + --colorPress: hsla(191, 32%, 50%, 1); + --colorFocus: hsla(191, 32%, 55%, 1); + --placeholderColor: hsla(191, 32%, 55%, 1); + --borderColor: hsla(191, 32%, 77%, 1); + --borderColorHover: hsla(191, 32%, 72%, 1); + --borderColorFocus: hsla(191, 32%, 66%, 1); + --borderColorPress: hsla(191, 32%, 72%, 1); + --color1: hsla(191, 32%, 93%, 1); + --color2: hsla(191, 32%, 88%, 1); + --color3: hsla(191, 32%, 83%, 1); + --color4: hsla(191, 32%, 77%, 1); + --color5: hsla(191, 32%, 72%, 1); + --color6: hsla(191, 32%, 66%, 1); + --color7: hsla(191, 32%, 61%, 1); + --color8: hsla(191, 32%, 55%, 1); + --color9: hsla(191, 32%, 50%, 1); + --color10: hsla(96, 16%, 25%, 1); + --color11: hsla(112, 22%, 0%, 1); + --color12: hsla(0, 0%, 0%, 0.75); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_disabled, +:root.t_dark .t_light .t_disabled, +:root.t_light .t_dark .t_light .t_disabled, +:root.t_light .t_disabled { + --background0: hsla(180, 20%, 99%, 0.75); + --background025: hsla(191, 32%, 99%, 1); + --background05: hsla(191, 32%, 93%, 1); + --background075: hsla(191, 32%, 88%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(96, 16%, 25%, 1); + --color05: hsla(112, 22%, 0%, 1); + --color075: hsla(0, 0%, 0%, 0.75); + --background: hsla(191, 32%, 88%, 1); + --backgroundHover: hsla(191, 32%, 83%, 1); + --backgroundPress: hsla(191, 32%, 77%, 1); + --backgroundFocus: hsla(191, 32%, 72%, 1); + --color: hsla(191, 32%, 55%, 1); + --colorHover: hsla(191, 32%, 61%, 1); + --colorPress: hsla(191, 32%, 55%, 1); + --colorFocus: hsla(191, 32%, 61%, 1); + --placeholderColor: hsla(191, 32%, 61%, 1); + --borderColor: hsla(191, 32%, 72%, 1); + --borderColorHover: hsla(191, 32%, 66%, 1); + --borderColorFocus: hsla(191, 32%, 61%, 1); + --borderColorPress: hsla(191, 32%, 66%, 1); + --color1: hsla(191, 32%, 88%, 1); + --color2: hsla(191, 32%, 83%, 1); + --color3: hsla(191, 32%, 77%, 1); + --color4: hsla(191, 32%, 72%, 1); + --color5: hsla(191, 32%, 66%, 1); + --color6: hsla(191, 32%, 61%, 1); + --color7: hsla(191, 32%, 55%, 1); + --color8: hsla(191, 32%, 50%, 1); + --color9: hsla(96, 16%, 25%, 1); + --color10: hsla(112, 22%, 0%, 1); + --color11: hsla(0, 0%, 0%, 0.75); + --color12: hsla(0, 0%, 0%, 0.5); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_disabled, + .t_disabled { + --background0: hsla(180, 20%, 99%, 0.75); + --background025: hsla(191, 32%, 99%, 1); + --background05: hsla(191, 32%, 93%, 1); + --background075: hsla(191, 32%, 88%, 1); + --color0: hsla(191, 32%, 50%, 1); + --color025: hsla(96, 16%, 25%, 1); + --color05: hsla(112, 22%, 0%, 1); + --color075: hsla(0, 0%, 0%, 0.75); + --background: hsla(191, 32%, 88%, 1); + --backgroundHover: hsla(191, 32%, 83%, 1); + --backgroundPress: hsla(191, 32%, 77%, 1); + --backgroundFocus: hsla(191, 32%, 72%, 1); + --color: hsla(191, 32%, 55%, 1); + --colorHover: hsla(191, 32%, 61%, 1); + --colorPress: hsla(191, 32%, 55%, 1); + --colorFocus: hsla(191, 32%, 61%, 1); + --placeholderColor: hsla(191, 32%, 61%, 1); + --borderColor: hsla(191, 32%, 72%, 1); + --borderColorHover: hsla(191, 32%, 66%, 1); + --borderColorFocus: hsla(191, 32%, 61%, 1); + --borderColorPress: hsla(191, 32%, 66%, 1); + --color1: hsla(191, 32%, 88%, 1); + --color2: hsla(191, 32%, 83%, 1); + --color3: hsla(191, 32%, 77%, 1); + --color4: hsla(191, 32%, 72%, 1); + --color5: hsla(191, 32%, 66%, 1); + --color6: hsla(191, 32%, 61%, 1); + --color7: hsla(191, 32%, 55%, 1); + --color8: hsla(191, 32%, 50%, 1); + --color9: hsla(96, 16%, 25%, 1); + --color10: hsla(112, 22%, 0%, 1); + --color11: hsla(0, 0%, 0%, 0.75); + --color12: hsla(0, 0%, 0%, 0.5); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_error, +:root.t_dark .t_light .t_dark .t_light .t_red, +:root.t_dark .t_light .t_error, +:root.t_dark .t_light .t_red, +:root.t_light .t_dark .t_light .t_error, +:root.t_light .t_dark .t_light .t_red, +:root.t_light .t_error, +:root.t_light .t_red { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(0, 60%, 99%, 0.25); + --background025: hsla(0, 60%, 99%, 0.5); + --background05: hsla(0, 60%, 99%, 0.75); + --background075: hsla(0, 70%, 99%, 1); + --color0: hsla(0, 70%, 10%, 1); + --color025: hsla(0, 69%, 10%, 0.75); + --color05: hsla(0, 69%, 10%, 0.5); + --color075: hsla(0, 69%, 10%, 0.25); + --background: hsla(0, 70%, 99%, 1); + --backgroundHover: hsla(0, 70%, 93%, 1); + --backgroundPress: hsla(0, 70%, 88%, 1); + --backgroundFocus: hsla(0, 70%, 82%, 1); + --color: hsla(0, 70%, 15%, 1); + --colorHover: hsla(0, 70%, 50%, 1); + --colorPress: hsla(0, 70%, 15%, 1); + --colorFocus: hsla(0, 70%, 50%, 1); + --placeholderColor: hsla(0, 70%, 50%, 1); + --borderColor: hsla(0, 70%, 82%, 1); + --borderColorHover: hsla(0, 70%, 77%, 1); + --borderColorFocus: hsla(0, 70%, 72%, 1); + --borderColorPress: hsla(0, 70%, 77%, 1); + --color1: hsla(0, 70%, 99%, 1); + --color2: hsla(0, 70%, 93%, 1); + --color3: hsla(0, 70%, 88%, 1); + --color4: hsla(0, 70%, 82%, 1); + --color5: hsla(0, 70%, 77%, 1); + --color6: hsla(0, 70%, 72%, 1); + --color7: hsla(0, 70%, 66%, 1); + --color8: hsla(0, 70%, 61%, 1); + --color9: hsla(0, 70%, 55%, 1); + --color10: hsla(0, 70%, 50%, 1); + --color11: hsla(0, 70%, 15%, 1); + --color12: hsla(0, 70%, 10%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_error, + .t_dark .t_light .t_red, + .t_error, + .t_red { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(0, 60%, 99%, 0.25); + --background025: hsla(0, 60%, 99%, 0.5); + --background05: hsla(0, 60%, 99%, 0.75); + --background075: hsla(0, 70%, 99%, 1); + --color0: hsla(0, 70%, 10%, 1); + --color025: hsla(0, 69%, 10%, 0.75); + --color05: hsla(0, 69%, 10%, 0.5); + --color075: hsla(0, 69%, 10%, 0.25); + --background: hsla(0, 70%, 99%, 1); + --backgroundHover: hsla(0, 70%, 93%, 1); + --backgroundPress: hsla(0, 70%, 88%, 1); + --backgroundFocus: hsla(0, 70%, 82%, 1); + --color: hsla(0, 70%, 15%, 1); + --colorHover: hsla(0, 70%, 50%, 1); + --colorPress: hsla(0, 70%, 15%, 1); + --colorFocus: hsla(0, 70%, 50%, 1); + --placeholderColor: hsla(0, 70%, 50%, 1); + --borderColor: hsla(0, 70%, 82%, 1); + --borderColorHover: hsla(0, 70%, 77%, 1); + --borderColorFocus: hsla(0, 70%, 72%, 1); + --borderColorPress: hsla(0, 70%, 77%, 1); + --color1: hsla(0, 70%, 99%, 1); + --color2: hsla(0, 70%, 93%, 1); + --color3: hsla(0, 70%, 88%, 1); + --color4: hsla(0, 70%, 82%, 1); + --color5: hsla(0, 70%, 77%, 1); + --color6: hsla(0, 70%, 72%, 1); + --color7: hsla(0, 70%, 66%, 1); + --color8: hsla(0, 70%, 61%, 1); + --color9: hsla(0, 70%, 55%, 1); + --color10: hsla(0, 70%, 50%, 1); + --color11: hsla(0, 70%, 15%, 1); + --color12: hsla(0, 70%, 10%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_error_Button, +:root.t_dark .t_light .t_dark .t_light .t_error_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_error_Switch, +:root.t_dark .t_light .t_dark .t_light .t_error_TooltipContent, +:root.t_dark .t_light .t_dark .t_light .t_red_Button, +:root.t_dark .t_light .t_dark .t_light .t_red_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_red_Switch, +:root.t_dark .t_light .t_dark .t_light .t_red_TooltipContent, +:root.t_dark .t_light .t_error_Button, +:root.t_dark .t_light .t_error_SliderTrack, +:root.t_dark .t_light .t_error_Switch, +:root.t_dark .t_light .t_error_TooltipContent, +:root.t_dark .t_light .t_red_Button, +:root.t_dark .t_light .t_red_SliderTrack, +:root.t_dark .t_light .t_red_Switch, +:root.t_dark .t_light .t_red_TooltipContent, +:root.t_light .t_dark .t_light .t_error_Button, +:root.t_light .t_dark .t_light .t_error_SliderTrack, +:root.t_light .t_dark .t_light .t_error_Switch, +:root.t_light .t_dark .t_light .t_error_TooltipContent, +:root.t_light .t_dark .t_light .t_red_Button, +:root.t_light .t_dark .t_light .t_red_SliderTrack, +:root.t_light .t_dark .t_light .t_red_Switch, +:root.t_light .t_dark .t_light .t_red_TooltipContent, +:root.t_light .t_error_Button, +:root.t_light .t_error_SliderTrack, +:root.t_light .t_error_Switch, +:root.t_light .t_error_TooltipContent, +:root.t_light .t_red_Button, +:root.t_light .t_red_SliderTrack, +:root.t_light .t_red_Switch, +:root.t_light .t_red_TooltipContent { + --background0: hsla(0, 60%, 99%, 0.75); + --background025: hsla(0, 70%, 99%, 1); + --background05: hsla(0, 70%, 93%, 1); + --background075: hsla(0, 70%, 88%, 1); + --color0: hsla(0, 70%, 50%, 1); + --color025: hsla(0, 70%, 15%, 1); + --color05: hsla(0, 70%, 10%, 1); + --color075: hsla(0, 69%, 10%, 0.75); + --background: hsla(0, 70%, 88%, 1); + --backgroundHover: hsla(0, 70%, 82%, 1); + --backgroundPress: hsla(0, 70%, 77%, 1); + --backgroundFocus: hsla(0, 70%, 72%, 1); + --color: hsla(0, 70%, 15%, 1); + --colorHover: hsla(0, 70%, 50%, 1); + --colorPress: hsla(0, 70%, 15%, 1); + --colorFocus: hsla(0, 70%, 50%, 1); + --placeholderColor: hsla(0, 70%, 61%, 1); + --borderColor: hsla(0, 70%, 72%, 1); + --borderColorHover: hsla(0, 70%, 66%, 1); + --borderColorFocus: hsla(0, 70%, 61%, 1); + --borderColorPress: hsla(0, 70%, 66%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_error_Button, + .t_dark .t_light .t_error_SliderTrack, + .t_dark .t_light .t_error_Switch, + .t_dark .t_light .t_error_TooltipContent, + .t_dark .t_light .t_red_Button, + .t_dark .t_light .t_red_SliderTrack, + .t_dark .t_light .t_red_Switch, + .t_dark .t_light .t_red_TooltipContent, + .t_error_Button, + .t_error_SliderTrack, + .t_error_Switch, + .t_error_TooltipContent, + .t_red_Button, + .t_red_SliderTrack, + .t_red_Switch, + .t_red_TooltipContent { + --background0: hsla(0, 60%, 99%, 0.75); + --background025: hsla(0, 70%, 99%, 1); + --background05: hsla(0, 70%, 93%, 1); + --background075: hsla(0, 70%, 88%, 1); + --color0: hsla(0, 70%, 50%, 1); + --color025: hsla(0, 70%, 15%, 1); + --color05: hsla(0, 70%, 10%, 1); + --color075: hsla(0, 69%, 10%, 0.75); + --background: hsla(0, 70%, 88%, 1); + --backgroundHover: hsla(0, 70%, 82%, 1); + --backgroundPress: hsla(0, 70%, 77%, 1); + --backgroundFocus: hsla(0, 70%, 72%, 1); + --color: hsla(0, 70%, 15%, 1); + --colorHover: hsla(0, 70%, 50%, 1); + --colorPress: hsla(0, 70%, 15%, 1); + --colorFocus: hsla(0, 70%, 50%, 1); + --placeholderColor: hsla(0, 70%, 61%, 1); + --borderColor: hsla(0, 70%, 72%, 1); + --borderColorHover: hsla(0, 70%, 66%, 1); + --borderColorFocus: hsla(0, 70%, 61%, 1); + --borderColorPress: hsla(0, 70%, 66%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_error_Card, +:root.t_dark .t_light .t_dark .t_light .t_error_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_error_Progress, +:root.t_dark .t_light .t_dark .t_light .t_error_TooltipArrow, +:root.t_dark .t_light .t_dark .t_light .t_red_Card, +:root.t_dark .t_light .t_dark .t_light .t_red_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_red_Progress, +:root.t_dark .t_light .t_dark .t_light .t_red_TooltipArrow, +:root.t_dark .t_light .t_error_Card, +:root.t_dark .t_light .t_error_DrawerFrame, +:root.t_dark .t_light .t_error_Progress, +:root.t_dark .t_light .t_error_TooltipArrow, +:root.t_dark .t_light .t_red_Card, +:root.t_dark .t_light .t_red_DrawerFrame, +:root.t_dark .t_light .t_red_Progress, +:root.t_dark .t_light .t_red_TooltipArrow, +:root.t_light .t_dark .t_light .t_error_Card, +:root.t_light .t_dark .t_light .t_error_DrawerFrame, +:root.t_light .t_dark .t_light .t_error_Progress, +:root.t_light .t_dark .t_light .t_error_TooltipArrow, +:root.t_light .t_dark .t_light .t_red_Card, +:root.t_light .t_dark .t_light .t_red_DrawerFrame, +:root.t_light .t_dark .t_light .t_red_Progress, +:root.t_light .t_dark .t_light .t_red_TooltipArrow, +:root.t_light .t_error_Card, +:root.t_light .t_error_DrawerFrame, +:root.t_light .t_error_Progress, +:root.t_light .t_error_TooltipArrow, +:root.t_light .t_red_Card, +:root.t_light .t_red_DrawerFrame, +:root.t_light .t_red_Progress, +:root.t_light .t_red_TooltipArrow { + --background0: hsla(0, 60%, 99%, 0.5); + --background025: hsla(0, 60%, 99%, 0.75); + --background05: hsla(0, 70%, 99%, 1); + --background075: hsla(0, 70%, 93%, 1); + --color0: hsla(0, 70%, 15%, 1); + --color025: hsla(0, 70%, 10%, 1); + --color05: hsla(0, 69%, 10%, 0.75); + --color075: hsla(0, 69%, 10%, 0.5); + --background: hsla(0, 70%, 93%, 1); + --backgroundHover: hsla(0, 70%, 88%, 1); + --backgroundPress: hsla(0, 70%, 82%, 1); + --backgroundFocus: hsla(0, 70%, 77%, 1); + --color: hsla(0, 70%, 15%, 1); + --colorHover: hsla(0, 70%, 50%, 1); + --colorPress: hsla(0, 70%, 15%, 1); + --colorFocus: hsla(0, 70%, 50%, 1); + --placeholderColor: hsla(0, 70%, 55%, 1); + --borderColor: hsla(0, 70%, 77%, 1); + --borderColorHover: hsla(0, 70%, 72%, 1); + --borderColorFocus: hsla(0, 70%, 66%, 1); + --borderColorPress: hsla(0, 70%, 72%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_error_Card, + .t_dark .t_light .t_error_DrawerFrame, + .t_dark .t_light .t_error_Progress, + .t_dark .t_light .t_error_TooltipArrow, + .t_dark .t_light .t_red_Card, + .t_dark .t_light .t_red_DrawerFrame, + .t_dark .t_light .t_red_Progress, + .t_dark .t_light .t_red_TooltipArrow, + .t_error_Card, + .t_error_DrawerFrame, + .t_error_Progress, + .t_error_TooltipArrow, + .t_red_Card, + .t_red_DrawerFrame, + .t_red_Progress, + .t_red_TooltipArrow { + --background0: hsla(0, 60%, 99%, 0.5); + --background025: hsla(0, 60%, 99%, 0.75); + --background05: hsla(0, 70%, 99%, 1); + --background075: hsla(0, 70%, 93%, 1); + --color0: hsla(0, 70%, 15%, 1); + --color025: hsla(0, 70%, 10%, 1); + --color05: hsla(0, 69%, 10%, 0.75); + --color075: hsla(0, 69%, 10%, 0.5); + --background: hsla(0, 70%, 93%, 1); + --backgroundHover: hsla(0, 70%, 88%, 1); + --backgroundPress: hsla(0, 70%, 82%, 1); + --backgroundFocus: hsla(0, 70%, 77%, 1); + --color: hsla(0, 70%, 15%, 1); + --colorHover: hsla(0, 70%, 50%, 1); + --colorPress: hsla(0, 70%, 15%, 1); + --colorFocus: hsla(0, 70%, 50%, 1); + --placeholderColor: hsla(0, 70%, 55%, 1); + --borderColor: hsla(0, 70%, 77%, 1); + --borderColorHover: hsla(0, 70%, 72%, 1); + --borderColorFocus: hsla(0, 70%, 66%, 1); + --borderColorPress: hsla(0, 70%, 72%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_error_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_error_Input, +:root.t_dark .t_light .t_dark .t_light .t_error_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_error_TextArea, +:root.t_dark .t_light .t_dark .t_light .t_red_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_red_Input, +:root.t_dark .t_light .t_dark .t_light .t_red_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_red_TextArea, +:root.t_dark .t_light .t_error_Checkbox, +:root.t_dark .t_light .t_error_Input, +:root.t_dark .t_light .t_error_RadioGroupItem, +:root.t_dark .t_light .t_error_TextArea, +:root.t_dark .t_light .t_red_Checkbox, +:root.t_dark .t_light .t_red_Input, +:root.t_dark .t_light .t_red_RadioGroupItem, +:root.t_dark .t_light .t_red_TextArea, +:root.t_light .t_dark .t_light .t_error_Checkbox, +:root.t_light .t_dark .t_light .t_error_Input, +:root.t_light .t_dark .t_light .t_error_RadioGroupItem, +:root.t_light .t_dark .t_light .t_error_TextArea, +:root.t_light .t_dark .t_light .t_red_Checkbox, +:root.t_light .t_dark .t_light .t_red_Input, +:root.t_light .t_dark .t_light .t_red_RadioGroupItem, +:root.t_light .t_dark .t_light .t_red_TextArea, +:root.t_light .t_error_Checkbox, +:root.t_light .t_error_Input, +:root.t_light .t_error_RadioGroupItem, +:root.t_light .t_error_TextArea, +:root.t_light .t_red_Checkbox, +:root.t_light .t_red_Input, +:root.t_light .t_red_RadioGroupItem, +:root.t_light .t_red_TextArea { + --accentBackground: hsla(0, 60%, 99%, 0); + --accentColor: hsla(0, 60%, 99%, 0); + --background0: hsla(0, 60%, 99%, 0.25); + --background025: hsla(0, 60%, 99%, 0.5); + --background05: hsla(0, 60%, 99%, 0.75); + --background075: hsla(0, 70%, 99%, 1); + --color0: hsla(0, 70%, 10%, 1); + --color025: hsla(0, 69%, 10%, 0.75); + --color05: hsla(0, 69%, 10%, 0.5); + --color075: hsla(0, 69%, 10%, 0.25); + --background: hsla(0, 70%, 99%, 1); + --backgroundHover: hsla(0, 70%, 93%, 1); + --backgroundPress: hsla(0, 70%, 88%, 1); + --backgroundFocus: hsla(0, 70%, 82%, 1); + --color: hsla(0, 70%, 15%, 1); + --colorHover: hsla(0, 70%, 50%, 1); + --colorPress: hsla(0, 70%, 15%, 1); + --colorFocus: hsla(0, 70%, 50%, 1); + --placeholderColor: hsla(0, 70%, 50%, 1); + --borderColor: hsla(0, 70%, 72%, 1); + --borderColorHover: hsla(0, 70%, 66%, 1); + --borderColorFocus: hsla(0, 70%, 61%, 1); + --borderColorPress: hsla(0, 70%, 66%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_error_Checkbox, + .t_dark .t_light .t_error_Input, + .t_dark .t_light .t_error_RadioGroupItem, + .t_dark .t_light .t_error_TextArea, + .t_dark .t_light .t_red_Checkbox, + .t_dark .t_light .t_red_Input, + .t_dark .t_light .t_red_RadioGroupItem, + .t_dark .t_light .t_red_TextArea, + .t_error_Checkbox, + .t_error_Input, + .t_error_RadioGroupItem, + .t_error_TextArea, + .t_red_Checkbox, + .t_red_Input, + .t_red_RadioGroupItem, + .t_red_TextArea { + --accentBackground: hsla(0, 60%, 99%, 0); + --accentColor: hsla(0, 60%, 99%, 0); + --background0: hsla(0, 60%, 99%, 0.25); + --background025: hsla(0, 60%, 99%, 0.5); + --background05: hsla(0, 60%, 99%, 0.75); + --background075: hsla(0, 70%, 99%, 1); + --color0: hsla(0, 70%, 10%, 1); + --color025: hsla(0, 69%, 10%, 0.75); + --color05: hsla(0, 69%, 10%, 0.5); + --color075: hsla(0, 69%, 10%, 0.25); + --background: hsla(0, 70%, 99%, 1); + --backgroundHover: hsla(0, 70%, 93%, 1); + --backgroundPress: hsla(0, 70%, 88%, 1); + --backgroundFocus: hsla(0, 70%, 82%, 1); + --color: hsla(0, 70%, 15%, 1); + --colorHover: hsla(0, 70%, 50%, 1); + --colorPress: hsla(0, 70%, 15%, 1); + --colorFocus: hsla(0, 70%, 50%, 1); + --placeholderColor: hsla(0, 70%, 50%, 1); + --borderColor: hsla(0, 70%, 72%, 1); + --borderColorHover: hsla(0, 70%, 66%, 1); + --borderColorFocus: hsla(0, 70%, 61%, 1); + --borderColorPress: hsla(0, 70%, 66%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_error_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_error_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_error_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_error_Tooltip, +:root.t_dark .t_light .t_dark .t_light .t_red_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_red_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_red_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_red_Tooltip, +:root.t_dark .t_light .t_error_ProgressIndicator, +:root.t_dark .t_light .t_error_SliderThumb, +:root.t_dark .t_light .t_error_SwitchThumb, +:root.t_dark .t_light .t_error_Tooltip, +:root.t_dark .t_light .t_red_ProgressIndicator, +:root.t_dark .t_light .t_red_SliderThumb, +:root.t_dark .t_light .t_red_SwitchThumb, +:root.t_dark .t_light .t_red_Tooltip, +:root.t_light .t_dark .t_light .t_error_ProgressIndicator, +:root.t_light .t_dark .t_light .t_error_SliderThumb, +:root.t_light .t_dark .t_light .t_error_SwitchThumb, +:root.t_light .t_dark .t_light .t_error_Tooltip, +:root.t_light .t_dark .t_light .t_red_ProgressIndicator, +:root.t_light .t_dark .t_light .t_red_SliderThumb, +:root.t_light .t_dark .t_light .t_red_SwitchThumb, +:root.t_light .t_dark .t_light .t_red_Tooltip, +:root.t_light .t_error_ProgressIndicator, +:root.t_light .t_error_SliderThumb, +:root.t_light .t_error_SwitchThumb, +:root.t_light .t_error_Tooltip, +:root.t_light .t_red_ProgressIndicator, +:root.t_light .t_red_SliderThumb, +:root.t_light .t_red_SwitchThumb, +:root.t_light .t_red_Tooltip { + --accentBackground: hsla(0, 60%, 99%, 0); + --accentColor: hsla(0, 60%, 99%, 0); + --background0: hsla(0, 69%, 10%, 0.25); + --background025: hsla(0, 69%, 10%, 0.5); + --background05: hsla(0, 69%, 10%, 0.75); + --background075: hsla(0, 70%, 10%, 1); + --color0: hsla(0, 70%, 99%, 1); + --color025: hsla(0, 60%, 99%, 0.75); + --color05: hsla(0, 60%, 99%, 0.5); + --color075: hsla(0, 60%, 99%, 0.25); + --background: hsla(0, 70%, 10%, 1); + --backgroundHover: hsla(0, 70%, 15%, 1); + --backgroundPress: hsla(0, 70%, 50%, 1); + --backgroundFocus: hsla(0, 70%, 55%, 1); + --color: hsla(0, 70%, 93%, 1); + --colorHover: hsla(0, 70%, 88%, 1); + --colorPress: hsla(0, 70%, 93%, 1); + --colorFocus: hsla(0, 70%, 88%, 1); + --placeholderColor: hsla(0, 70%, 88%, 1); + --borderColor: hsla(0, 70%, 55%, 1); + --borderColorHover: hsla(0, 70%, 61%, 1); + --borderColorFocus: hsla(0, 70%, 66%, 1); + --borderColorPress: hsla(0, 70%, 61%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_error_ProgressIndicator, + .t_dark .t_light .t_error_SliderThumb, + .t_dark .t_light .t_error_SwitchThumb, + .t_dark .t_light .t_error_Tooltip, + .t_dark .t_light .t_red_ProgressIndicator, + .t_dark .t_light .t_red_SliderThumb, + .t_dark .t_light .t_red_SwitchThumb, + .t_dark .t_light .t_red_Tooltip, + .t_error_ProgressIndicator, + .t_error_SliderThumb, + .t_error_SwitchThumb, + .t_error_Tooltip, + .t_red_ProgressIndicator, + .t_red_SliderThumb, + .t_red_SwitchThumb, + .t_red_Tooltip { + --accentBackground: hsla(0, 60%, 99%, 0); + --accentColor: hsla(0, 60%, 99%, 0); + --background0: hsla(0, 69%, 10%, 0.25); + --background025: hsla(0, 69%, 10%, 0.5); + --background05: hsla(0, 69%, 10%, 0.75); + --background075: hsla(0, 70%, 10%, 1); + --color0: hsla(0, 70%, 99%, 1); + --color025: hsla(0, 60%, 99%, 0.75); + --color05: hsla(0, 60%, 99%, 0.5); + --color075: hsla(0, 60%, 99%, 0.25); + --background: hsla(0, 70%, 10%, 1); + --backgroundHover: hsla(0, 70%, 15%, 1); + --backgroundPress: hsla(0, 70%, 50%, 1); + --backgroundFocus: hsla(0, 70%, 55%, 1); + --color: hsla(0, 70%, 93%, 1); + --colorHover: hsla(0, 70%, 88%, 1); + --colorPress: hsla(0, 70%, 93%, 1); + --colorFocus: hsla(0, 70%, 88%, 1); + --placeholderColor: hsla(0, 70%, 88%, 1); + --borderColor: hsla(0, 70%, 55%, 1); + --borderColorHover: hsla(0, 70%, 61%, 1); + --borderColorFocus: hsla(0, 70%, 66%, 1); + --borderColorPress: hsla(0, 70%, 61%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_error_SliderTrackActive, +:root.t_dark .t_light .t_dark .t_light .t_red_SliderTrackActive, +:root.t_dark .t_light .t_error_SliderTrackActive, +:root.t_dark .t_light .t_red_SliderTrackActive, +:root.t_light .t_dark .t_light .t_error_SliderTrackActive, +:root.t_light .t_dark .t_light .t_red_SliderTrackActive, +:root.t_light .t_error_SliderTrackActive, +:root.t_light .t_red_SliderTrackActive { + --accentBackground: hsla(0, 60%, 99%, 0); + --accentColor: hsla(0, 60%, 99%, 0); + --background0: hsla(0, 69%, 10%, 0.75); + --background025: hsla(0, 70%, 10%, 1); + --background05: hsla(0, 70%, 15%, 1); + --background075: hsla(0, 70%, 50%, 1); + --color0: hsla(0, 70%, 88%, 1); + --color025: hsla(0, 70%, 93%, 1); + --color05: hsla(0, 70%, 99%, 1); + --color075: hsla(0, 60%, 99%, 0.75); + --background: hsla(0, 70%, 50%, 1); + --backgroundHover: hsla(0, 70%, 55%, 1); + --backgroundPress: hsla(0, 70%, 61%, 1); + --backgroundFocus: hsla(0, 70%, 66%, 1); + --color: hsla(0, 70%, 93%, 1); + --colorHover: hsla(0, 70%, 88%, 1); + --colorPress: hsla(0, 70%, 93%, 1); + --colorFocus: hsla(0, 70%, 88%, 1); + --placeholderColor: hsla(0, 70%, 77%, 1); + --borderColor: hsla(0, 70%, 66%, 1); + --borderColorHover: hsla(0, 70%, 72%, 1); + --borderColorFocus: hsla(0, 70%, 77%, 1); + --borderColorPress: hsla(0, 70%, 72%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_error_SliderTrackActive, + .t_dark .t_light .t_red_SliderTrackActive, + .t_error_SliderTrackActive, + .t_red_SliderTrackActive { + --accentBackground: hsla(0, 60%, 99%, 0); + --accentColor: hsla(0, 60%, 99%, 0); + --background0: hsla(0, 69%, 10%, 0.75); + --background025: hsla(0, 70%, 10%, 1); + --background05: hsla(0, 70%, 15%, 1); + --background075: hsla(0, 70%, 50%, 1); + --color0: hsla(0, 70%, 88%, 1); + --color025: hsla(0, 70%, 93%, 1); + --color05: hsla(0, 70%, 99%, 1); + --color075: hsla(0, 60%, 99%, 0.75); + --background: hsla(0, 70%, 50%, 1); + --backgroundHover: hsla(0, 70%, 55%, 1); + --backgroundPress: hsla(0, 70%, 61%, 1); + --backgroundFocus: hsla(0, 70%, 66%, 1); + --color: hsla(0, 70%, 93%, 1); + --colorHover: hsla(0, 70%, 88%, 1); + --colorPress: hsla(0, 70%, 93%, 1); + --colorFocus: hsla(0, 70%, 88%, 1); + --placeholderColor: hsla(0, 70%, 77%, 1); + --borderColor: hsla(0, 70%, 66%, 1); + --borderColorHover: hsla(0, 70%, 72%, 1); + --borderColorFocus: hsla(0, 70%, 77%, 1); + --borderColorPress: hsla(0, 70%, 72%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_success, +:root.t_dark .t_light .t_success, +:root.t_light .t_dark .t_light .t_success, +:root.t_light .t_success { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(160, 60%, 99%, 0.25); + --background025: hsla(160, 60%, 99%, 0.5); + --background05: hsla(160, 60%, 99%, 0.75); + --background075: hsla(153, 70%, 99%, 1); + --color0: hsla(153, 70%, 10%, 1); + --color025: hsla(153, 69%, 10%, 0.75); + --color05: hsla(153, 69%, 10%, 0.5); + --color075: hsla(153, 69%, 10%, 0.25); + --background: hsla(153, 70%, 99%, 1); + --backgroundHover: hsla(153, 70%, 93%, 1); + --backgroundPress: hsla(153, 70%, 88%, 1); + --backgroundFocus: hsla(153, 70%, 82%, 1); + --color: hsla(153, 70%, 15%, 1); + --colorHover: hsla(153, 70%, 50%, 1); + --colorPress: hsla(153, 70%, 15%, 1); + --colorFocus: hsla(153, 70%, 50%, 1); + --placeholderColor: hsla(153, 70%, 50%, 1); + --borderColor: hsla(153, 70%, 82%, 1); + --borderColorHover: hsla(153, 70%, 77%, 1); + --borderColorFocus: hsla(153, 70%, 72%, 1); + --borderColorPress: hsla(153, 70%, 77%, 1); + --color1: hsla(153, 70%, 99%, 1); + --color2: hsla(153, 70%, 93%, 1); + --color3: hsla(153, 70%, 88%, 1); + --color4: hsla(153, 70%, 82%, 1); + --color5: hsla(153, 70%, 77%, 1); + --color6: hsla(153, 70%, 72%, 1); + --color7: hsla(153, 70%, 66%, 1); + --color8: hsla(153, 70%, 61%, 1); + --color9: hsla(153, 70%, 55%, 1); + --color10: hsla(153, 70%, 50%, 1); + --color11: hsla(153, 70%, 15%, 1); + --color12: hsla(153, 70%, 10%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_success, + .t_success { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(160, 60%, 99%, 0.25); + --background025: hsla(160, 60%, 99%, 0.5); + --background05: hsla(160, 60%, 99%, 0.75); + --background075: hsla(153, 70%, 99%, 1); + --color0: hsla(153, 70%, 10%, 1); + --color025: hsla(153, 69%, 10%, 0.75); + --color05: hsla(153, 69%, 10%, 0.5); + --color075: hsla(153, 69%, 10%, 0.25); + --background: hsla(153, 70%, 99%, 1); + --backgroundHover: hsla(153, 70%, 93%, 1); + --backgroundPress: hsla(153, 70%, 88%, 1); + --backgroundFocus: hsla(153, 70%, 82%, 1); + --color: hsla(153, 70%, 15%, 1); + --colorHover: hsla(153, 70%, 50%, 1); + --colorPress: hsla(153, 70%, 15%, 1); + --colorFocus: hsla(153, 70%, 50%, 1); + --placeholderColor: hsla(153, 70%, 50%, 1); + --borderColor: hsla(153, 70%, 82%, 1); + --borderColorHover: hsla(153, 70%, 77%, 1); + --borderColorFocus: hsla(153, 70%, 72%, 1); + --borderColorPress: hsla(153, 70%, 77%, 1); + --color1: hsla(153, 70%, 99%, 1); + --color2: hsla(153, 70%, 93%, 1); + --color3: hsla(153, 70%, 88%, 1); + --color4: hsla(153, 70%, 82%, 1); + --color5: hsla(153, 70%, 77%, 1); + --color6: hsla(153, 70%, 72%, 1); + --color7: hsla(153, 70%, 66%, 1); + --color8: hsla(153, 70%, 61%, 1); + --color9: hsla(153, 70%, 55%, 1); + --color10: hsla(153, 70%, 50%, 1); + --color11: hsla(153, 70%, 15%, 1); + --color12: hsla(153, 70%, 10%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_success_Button, +:root.t_dark .t_light .t_dark .t_light .t_success_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_success_Switch, +:root.t_dark .t_light .t_dark .t_light .t_success_TooltipContent, +:root.t_dark .t_light .t_success_Button, +:root.t_dark .t_light .t_success_SliderTrack, +:root.t_dark .t_light .t_success_Switch, +:root.t_dark .t_light .t_success_TooltipContent, +:root.t_light .t_dark .t_light .t_success_Button, +:root.t_light .t_dark .t_light .t_success_SliderTrack, +:root.t_light .t_dark .t_light .t_success_Switch, +:root.t_light .t_dark .t_light .t_success_TooltipContent, +:root.t_light .t_success_Button, +:root.t_light .t_success_SliderTrack, +:root.t_light .t_success_Switch, +:root.t_light .t_success_TooltipContent { + --background0: hsla(160, 60%, 99%, 0.75); + --background025: hsla(153, 70%, 99%, 1); + --background05: hsla(153, 70%, 93%, 1); + --background075: hsla(153, 70%, 88%, 1); + --color0: hsla(153, 70%, 50%, 1); + --color025: hsla(153, 70%, 15%, 1); + --color05: hsla(153, 70%, 10%, 1); + --color075: hsla(153, 69%, 10%, 0.75); + --background: hsla(153, 70%, 88%, 1); + --backgroundHover: hsla(153, 70%, 82%, 1); + --backgroundPress: hsla(153, 70%, 77%, 1); + --backgroundFocus: hsla(153, 70%, 72%, 1); + --color: hsla(153, 70%, 15%, 1); + --colorHover: hsla(153, 70%, 50%, 1); + --colorPress: hsla(153, 70%, 15%, 1); + --colorFocus: hsla(153, 70%, 50%, 1); + --placeholderColor: hsla(153, 70%, 61%, 1); + --borderColor: hsla(153, 70%, 72%, 1); + --borderColorHover: hsla(153, 70%, 66%, 1); + --borderColorFocus: hsla(153, 70%, 61%, 1); + --borderColorPress: hsla(153, 70%, 66%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_success_Button, + .t_dark .t_light .t_success_SliderTrack, + .t_dark .t_light .t_success_Switch, + .t_dark .t_light .t_success_TooltipContent, + .t_success_Button, + .t_success_SliderTrack, + .t_success_Switch, + .t_success_TooltipContent { + --background0: hsla(160, 60%, 99%, 0.75); + --background025: hsla(153, 70%, 99%, 1); + --background05: hsla(153, 70%, 93%, 1); + --background075: hsla(153, 70%, 88%, 1); + --color0: hsla(153, 70%, 50%, 1); + --color025: hsla(153, 70%, 15%, 1); + --color05: hsla(153, 70%, 10%, 1); + --color075: hsla(153, 69%, 10%, 0.75); + --background: hsla(153, 70%, 88%, 1); + --backgroundHover: hsla(153, 70%, 82%, 1); + --backgroundPress: hsla(153, 70%, 77%, 1); + --backgroundFocus: hsla(153, 70%, 72%, 1); + --color: hsla(153, 70%, 15%, 1); + --colorHover: hsla(153, 70%, 50%, 1); + --colorPress: hsla(153, 70%, 15%, 1); + --colorFocus: hsla(153, 70%, 50%, 1); + --placeholderColor: hsla(153, 70%, 61%, 1); + --borderColor: hsla(153, 70%, 72%, 1); + --borderColorHover: hsla(153, 70%, 66%, 1); + --borderColorFocus: hsla(153, 70%, 61%, 1); + --borderColorPress: hsla(153, 70%, 66%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_success_Card, +:root.t_dark .t_light .t_dark .t_light .t_success_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_success_Progress, +:root.t_dark .t_light .t_dark .t_light .t_success_TooltipArrow, +:root.t_dark .t_light .t_success_Card, +:root.t_dark .t_light .t_success_DrawerFrame, +:root.t_dark .t_light .t_success_Progress, +:root.t_dark .t_light .t_success_TooltipArrow, +:root.t_light .t_dark .t_light .t_success_Card, +:root.t_light .t_dark .t_light .t_success_DrawerFrame, +:root.t_light .t_dark .t_light .t_success_Progress, +:root.t_light .t_dark .t_light .t_success_TooltipArrow, +:root.t_light .t_success_Card, +:root.t_light .t_success_DrawerFrame, +:root.t_light .t_success_Progress, +:root.t_light .t_success_TooltipArrow { + --background0: hsla(160, 60%, 99%, 0.5); + --background025: hsla(160, 60%, 99%, 0.75); + --background05: hsla(153, 70%, 99%, 1); + --background075: hsla(153, 70%, 93%, 1); + --color0: hsla(153, 70%, 15%, 1); + --color025: hsla(153, 70%, 10%, 1); + --color05: hsla(153, 69%, 10%, 0.75); + --color075: hsla(153, 69%, 10%, 0.5); + --background: hsla(153, 70%, 93%, 1); + --backgroundHover: hsla(153, 70%, 88%, 1); + --backgroundPress: hsla(153, 70%, 82%, 1); + --backgroundFocus: hsla(153, 70%, 77%, 1); + --color: hsla(153, 70%, 15%, 1); + --colorHover: hsla(153, 70%, 50%, 1); + --colorPress: hsla(153, 70%, 15%, 1); + --colorFocus: hsla(153, 70%, 50%, 1); + --placeholderColor: hsla(153, 70%, 55%, 1); + --borderColor: hsla(153, 70%, 77%, 1); + --borderColorHover: hsla(153, 70%, 72%, 1); + --borderColorFocus: hsla(153, 70%, 66%, 1); + --borderColorPress: hsla(153, 70%, 72%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_success_Card, + .t_dark .t_light .t_success_DrawerFrame, + .t_dark .t_light .t_success_Progress, + .t_dark .t_light .t_success_TooltipArrow, + .t_success_Card, + .t_success_DrawerFrame, + .t_success_Progress, + .t_success_TooltipArrow { + --background0: hsla(160, 60%, 99%, 0.5); + --background025: hsla(160, 60%, 99%, 0.75); + --background05: hsla(153, 70%, 99%, 1); + --background075: hsla(153, 70%, 93%, 1); + --color0: hsla(153, 70%, 15%, 1); + --color025: hsla(153, 70%, 10%, 1); + --color05: hsla(153, 69%, 10%, 0.75); + --color075: hsla(153, 69%, 10%, 0.5); + --background: hsla(153, 70%, 93%, 1); + --backgroundHover: hsla(153, 70%, 88%, 1); + --backgroundPress: hsla(153, 70%, 82%, 1); + --backgroundFocus: hsla(153, 70%, 77%, 1); + --color: hsla(153, 70%, 15%, 1); + --colorHover: hsla(153, 70%, 50%, 1); + --colorPress: hsla(153, 70%, 15%, 1); + --colorFocus: hsla(153, 70%, 50%, 1); + --placeholderColor: hsla(153, 70%, 55%, 1); + --borderColor: hsla(153, 70%, 77%, 1); + --borderColorHover: hsla(153, 70%, 72%, 1); + --borderColorFocus: hsla(153, 70%, 66%, 1); + --borderColorPress: hsla(153, 70%, 72%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_success_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_success_Input, +:root.t_dark .t_light .t_dark .t_light .t_success_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_success_TextArea, +:root.t_dark .t_light .t_success_Checkbox, +:root.t_dark .t_light .t_success_Input, +:root.t_dark .t_light .t_success_RadioGroupItem, +:root.t_dark .t_light .t_success_TextArea, +:root.t_light .t_dark .t_light .t_success_Checkbox, +:root.t_light .t_dark .t_light .t_success_Input, +:root.t_light .t_dark .t_light .t_success_RadioGroupItem, +:root.t_light .t_dark .t_light .t_success_TextArea, +:root.t_light .t_success_Checkbox, +:root.t_light .t_success_Input, +:root.t_light .t_success_RadioGroupItem, +:root.t_light .t_success_TextArea { + --accentBackground: hsla(160, 60%, 99%, 0); + --accentColor: hsla(160, 60%, 99%, 0); + --background0: hsla(160, 60%, 99%, 0.25); + --background025: hsla(160, 60%, 99%, 0.5); + --background05: hsla(160, 60%, 99%, 0.75); + --background075: hsla(153, 70%, 99%, 1); + --color0: hsla(153, 70%, 10%, 1); + --color025: hsla(153, 69%, 10%, 0.75); + --color05: hsla(153, 69%, 10%, 0.5); + --color075: hsla(153, 69%, 10%, 0.25); + --background: hsla(153, 70%, 99%, 1); + --backgroundHover: hsla(153, 70%, 93%, 1); + --backgroundPress: hsla(153, 70%, 88%, 1); + --backgroundFocus: hsla(153, 70%, 82%, 1); + --color: hsla(153, 70%, 15%, 1); + --colorHover: hsla(153, 70%, 50%, 1); + --colorPress: hsla(153, 70%, 15%, 1); + --colorFocus: hsla(153, 70%, 50%, 1); + --placeholderColor: hsla(153, 70%, 50%, 1); + --borderColor: hsla(153, 70%, 72%, 1); + --borderColorHover: hsla(153, 70%, 66%, 1); + --borderColorFocus: hsla(153, 70%, 61%, 1); + --borderColorPress: hsla(153, 70%, 66%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_success_Checkbox, + .t_dark .t_light .t_success_Input, + .t_dark .t_light .t_success_RadioGroupItem, + .t_dark .t_light .t_success_TextArea, + .t_success_Checkbox, + .t_success_Input, + .t_success_RadioGroupItem, + .t_success_TextArea { + --accentBackground: hsla(160, 60%, 99%, 0); + --accentColor: hsla(160, 60%, 99%, 0); + --background0: hsla(160, 60%, 99%, 0.25); + --background025: hsla(160, 60%, 99%, 0.5); + --background05: hsla(160, 60%, 99%, 0.75); + --background075: hsla(153, 70%, 99%, 1); + --color0: hsla(153, 70%, 10%, 1); + --color025: hsla(153, 69%, 10%, 0.75); + --color05: hsla(153, 69%, 10%, 0.5); + --color075: hsla(153, 69%, 10%, 0.25); + --background: hsla(153, 70%, 99%, 1); + --backgroundHover: hsla(153, 70%, 93%, 1); + --backgroundPress: hsla(153, 70%, 88%, 1); + --backgroundFocus: hsla(153, 70%, 82%, 1); + --color: hsla(153, 70%, 15%, 1); + --colorHover: hsla(153, 70%, 50%, 1); + --colorPress: hsla(153, 70%, 15%, 1); + --colorFocus: hsla(153, 70%, 50%, 1); + --placeholderColor: hsla(153, 70%, 50%, 1); + --borderColor: hsla(153, 70%, 72%, 1); + --borderColorHover: hsla(153, 70%, 66%, 1); + --borderColorFocus: hsla(153, 70%, 61%, 1); + --borderColorPress: hsla(153, 70%, 66%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_success_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_success_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_success_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_success_Tooltip, +:root.t_dark .t_light .t_success_ProgressIndicator, +:root.t_dark .t_light .t_success_SliderThumb, +:root.t_dark .t_light .t_success_SwitchThumb, +:root.t_dark .t_light .t_success_Tooltip, +:root.t_light .t_dark .t_light .t_success_ProgressIndicator, +:root.t_light .t_dark .t_light .t_success_SliderThumb, +:root.t_light .t_dark .t_light .t_success_SwitchThumb, +:root.t_light .t_dark .t_light .t_success_Tooltip, +:root.t_light .t_success_ProgressIndicator, +:root.t_light .t_success_SliderThumb, +:root.t_light .t_success_SwitchThumb, +:root.t_light .t_success_Tooltip { + --accentBackground: hsla(160, 60%, 99%, 0); + --accentColor: hsla(160, 60%, 99%, 0); + --background0: hsla(153, 69%, 10%, 0.25); + --background025: hsla(153, 69%, 10%, 0.5); + --background05: hsla(153, 69%, 10%, 0.75); + --background075: hsla(153, 70%, 10%, 1); + --color0: hsla(153, 70%, 99%, 1); + --color025: hsla(160, 60%, 99%, 0.75); + --color05: hsla(160, 60%, 99%, 0.5); + --color075: hsla(160, 60%, 99%, 0.25); + --background: hsla(153, 70%, 10%, 1); + --backgroundHover: hsla(153, 70%, 15%, 1); + --backgroundPress: hsla(153, 70%, 50%, 1); + --backgroundFocus: hsla(153, 70%, 55%, 1); + --color: hsla(153, 70%, 93%, 1); + --colorHover: hsla(153, 70%, 88%, 1); + --colorPress: hsla(153, 70%, 93%, 1); + --colorFocus: hsla(153, 70%, 88%, 1); + --placeholderColor: hsla(153, 70%, 88%, 1); + --borderColor: hsla(153, 70%, 55%, 1); + --borderColorHover: hsla(153, 70%, 61%, 1); + --borderColorFocus: hsla(153, 70%, 66%, 1); + --borderColorPress: hsla(153, 70%, 61%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_success_ProgressIndicator, + .t_dark .t_light .t_success_SliderThumb, + .t_dark .t_light .t_success_SwitchThumb, + .t_dark .t_light .t_success_Tooltip, + .t_success_ProgressIndicator, + .t_success_SliderThumb, + .t_success_SwitchThumb, + .t_success_Tooltip { + --accentBackground: hsla(160, 60%, 99%, 0); + --accentColor: hsla(160, 60%, 99%, 0); + --background0: hsla(153, 69%, 10%, 0.25); + --background025: hsla(153, 69%, 10%, 0.5); + --background05: hsla(153, 69%, 10%, 0.75); + --background075: hsla(153, 70%, 10%, 1); + --color0: hsla(153, 70%, 99%, 1); + --color025: hsla(160, 60%, 99%, 0.75); + --color05: hsla(160, 60%, 99%, 0.5); + --color075: hsla(160, 60%, 99%, 0.25); + --background: hsla(153, 70%, 10%, 1); + --backgroundHover: hsla(153, 70%, 15%, 1); + --backgroundPress: hsla(153, 70%, 50%, 1); + --backgroundFocus: hsla(153, 70%, 55%, 1); + --color: hsla(153, 70%, 93%, 1); + --colorHover: hsla(153, 70%, 88%, 1); + --colorPress: hsla(153, 70%, 93%, 1); + --colorFocus: hsla(153, 70%, 88%, 1); + --placeholderColor: hsla(153, 70%, 88%, 1); + --borderColor: hsla(153, 70%, 55%, 1); + --borderColorHover: hsla(153, 70%, 61%, 1); + --borderColorFocus: hsla(153, 70%, 66%, 1); + --borderColorPress: hsla(153, 70%, 61%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_success_SliderTrackActive, +:root.t_dark .t_light .t_success_SliderTrackActive, +:root.t_light .t_dark .t_light .t_success_SliderTrackActive, +:root.t_light .t_success_SliderTrackActive { + --accentBackground: hsla(160, 60%, 99%, 0); + --accentColor: hsla(160, 60%, 99%, 0); + --background0: hsla(153, 69%, 10%, 0.75); + --background025: hsla(153, 70%, 10%, 1); + --background05: hsla(153, 70%, 15%, 1); + --background075: hsla(153, 70%, 50%, 1); + --color0: hsla(153, 70%, 88%, 1); + --color025: hsla(153, 70%, 93%, 1); + --color05: hsla(153, 70%, 99%, 1); + --color075: hsla(160, 60%, 99%, 0.75); + --background: hsla(153, 70%, 50%, 1); + --backgroundHover: hsla(153, 70%, 55%, 1); + --backgroundPress: hsla(153, 70%, 61%, 1); + --backgroundFocus: hsla(153, 70%, 66%, 1); + --color: hsla(153, 70%, 93%, 1); + --colorHover: hsla(153, 70%, 88%, 1); + --colorPress: hsla(153, 70%, 93%, 1); + --colorFocus: hsla(153, 70%, 88%, 1); + --placeholderColor: hsla(153, 70%, 77%, 1); + --borderColor: hsla(153, 70%, 66%, 1); + --borderColorHover: hsla(153, 70%, 72%, 1); + --borderColorFocus: hsla(153, 70%, 77%, 1); + --borderColorPress: hsla(153, 70%, 72%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_success_SliderTrackActive, + .t_success_SliderTrackActive { + --accentBackground: hsla(160, 60%, 99%, 0); + --accentColor: hsla(160, 60%, 99%, 0); + --background0: hsla(153, 69%, 10%, 0.75); + --background025: hsla(153, 70%, 10%, 1); + --background05: hsla(153, 70%, 15%, 1); + --background075: hsla(153, 70%, 50%, 1); + --color0: hsla(153, 70%, 88%, 1); + --color025: hsla(153, 70%, 93%, 1); + --color05: hsla(153, 70%, 99%, 1); + --color075: hsla(160, 60%, 99%, 0.75); + --background: hsla(153, 70%, 50%, 1); + --backgroundHover: hsla(153, 70%, 55%, 1); + --backgroundPress: hsla(153, 70%, 61%, 1); + --backgroundFocus: hsla(153, 70%, 66%, 1); + --color: hsla(153, 70%, 93%, 1); + --colorHover: hsla(153, 70%, 88%, 1); + --colorPress: hsla(153, 70%, 93%, 1); + --colorFocus: hsla(153, 70%, 88%, 1); + --placeholderColor: hsla(153, 70%, 77%, 1); + --borderColor: hsla(153, 70%, 66%, 1); + --borderColorHover: hsla(153, 70%, 72%, 1); + --borderColorFocus: hsla(153, 70%, 77%, 1); + --borderColorPress: hsla(153, 70%, 72%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_warning, +:root.t_dark .t_light .t_warning, +:root.t_light .t_dark .t_light .t_warning, +:root.t_light .t_warning { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(60, 60%, 99%, 0.25); + --background025: hsla(60, 60%, 99%, 0.5); + --background05: hsla(60, 60%, 99%, 0.75); + --background075: hsla(48, 70%, 99%, 1); + --color0: hsla(48, 70%, 10%, 1); + --color025: hsla(48, 69%, 10%, 0.75); + --color05: hsla(48, 69%, 10%, 0.5); + --color075: hsla(48, 69%, 10%, 0.25); + --background: hsla(48, 70%, 99%, 1); + --backgroundHover: hsla(48, 70%, 93%, 1); + --backgroundPress: hsla(48, 70%, 88%, 1); + --backgroundFocus: hsla(48, 70%, 82%, 1); + --color: hsla(48, 70%, 15%, 1); + --colorHover: hsla(48, 70%, 50%, 1); + --colorPress: hsla(48, 70%, 15%, 1); + --colorFocus: hsla(48, 70%, 50%, 1); + --placeholderColor: hsla(48, 70%, 50%, 1); + --borderColor: hsla(48, 70%, 82%, 1); + --borderColorHover: hsla(48, 70%, 77%, 1); + --borderColorFocus: hsla(48, 70%, 72%, 1); + --borderColorPress: hsla(48, 70%, 77%, 1); + --color1: hsla(48, 70%, 99%, 1); + --color2: hsla(48, 70%, 93%, 1); + --color3: hsla(48, 70%, 88%, 1); + --color4: hsla(48, 70%, 82%, 1); + --color5: hsla(48, 70%, 77%, 1); + --color6: hsla(48, 70%, 72%, 1); + --color7: hsla(48, 70%, 66%, 1); + --color8: hsla(48, 70%, 61%, 1); + --color9: hsla(48, 70%, 55%, 1); + --color10: hsla(48, 70%, 50%, 1); + --color11: hsla(48, 70%, 15%, 1); + --color12: hsla(48, 70%, 10%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_warning, + .t_warning { + --accentBackground: var(--color-231); + --accentColor: hsla(191, 32%, 10%, 1); + --background0: hsla(60, 60%, 99%, 0.25); + --background025: hsla(60, 60%, 99%, 0.5); + --background05: hsla(60, 60%, 99%, 0.75); + --background075: hsla(48, 70%, 99%, 1); + --color0: hsla(48, 70%, 10%, 1); + --color025: hsla(48, 69%, 10%, 0.75); + --color05: hsla(48, 69%, 10%, 0.5); + --color075: hsla(48, 69%, 10%, 0.25); + --background: hsla(48, 70%, 99%, 1); + --backgroundHover: hsla(48, 70%, 93%, 1); + --backgroundPress: hsla(48, 70%, 88%, 1); + --backgroundFocus: hsla(48, 70%, 82%, 1); + --color: hsla(48, 70%, 15%, 1); + --colorHover: hsla(48, 70%, 50%, 1); + --colorPress: hsla(48, 70%, 15%, 1); + --colorFocus: hsla(48, 70%, 50%, 1); + --placeholderColor: hsla(48, 70%, 50%, 1); + --borderColor: hsla(48, 70%, 82%, 1); + --borderColorHover: hsla(48, 70%, 77%, 1); + --borderColorFocus: hsla(48, 70%, 72%, 1); + --borderColorPress: hsla(48, 70%, 77%, 1); + --color1: hsla(48, 70%, 99%, 1); + --color2: hsla(48, 70%, 93%, 1); + --color3: hsla(48, 70%, 88%, 1); + --color4: hsla(48, 70%, 82%, 1); + --color5: hsla(48, 70%, 77%, 1); + --color6: hsla(48, 70%, 72%, 1); + --color7: hsla(48, 70%, 66%, 1); + --color8: hsla(48, 70%, 61%, 1); + --color9: hsla(48, 70%, 55%, 1); + --color10: hsla(48, 70%, 50%, 1); + --color11: hsla(48, 70%, 15%, 1); + --color12: hsla(48, 70%, 10%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_warning_Button, +:root.t_dark .t_light .t_dark .t_light .t_warning_SliderTrack, +:root.t_dark .t_light .t_dark .t_light .t_warning_Switch, +:root.t_dark .t_light .t_dark .t_light .t_warning_TooltipContent, +:root.t_dark .t_light .t_warning_Button, +:root.t_dark .t_light .t_warning_SliderTrack, +:root.t_dark .t_light .t_warning_Switch, +:root.t_dark .t_light .t_warning_TooltipContent, +:root.t_light .t_dark .t_light .t_warning_Button, +:root.t_light .t_dark .t_light .t_warning_SliderTrack, +:root.t_light .t_dark .t_light .t_warning_Switch, +:root.t_light .t_dark .t_light .t_warning_TooltipContent, +:root.t_light .t_warning_Button, +:root.t_light .t_warning_SliderTrack, +:root.t_light .t_warning_Switch, +:root.t_light .t_warning_TooltipContent { + --background0: hsla(60, 60%, 99%, 0.75); + --background025: hsla(48, 70%, 99%, 1); + --background05: hsla(48, 70%, 93%, 1); + --background075: hsla(48, 70%, 88%, 1); + --color0: hsla(48, 70%, 50%, 1); + --color025: hsla(48, 70%, 15%, 1); + --color05: hsla(48, 70%, 10%, 1); + --color075: hsla(48, 69%, 10%, 0.75); + --background: hsla(48, 70%, 88%, 1); + --backgroundHover: hsla(48, 70%, 82%, 1); + --backgroundPress: hsla(48, 70%, 77%, 1); + --backgroundFocus: hsla(48, 70%, 72%, 1); + --color: hsla(48, 70%, 15%, 1); + --colorHover: hsla(48, 70%, 50%, 1); + --colorPress: hsla(48, 70%, 15%, 1); + --colorFocus: hsla(48, 70%, 50%, 1); + --placeholderColor: hsla(48, 70%, 61%, 1); + --borderColor: hsla(48, 70%, 72%, 1); + --borderColorHover: hsla(48, 70%, 66%, 1); + --borderColorFocus: hsla(48, 70%, 61%, 1); + --borderColorPress: hsla(48, 70%, 66%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_warning_Button, + .t_dark .t_light .t_warning_SliderTrack, + .t_dark .t_light .t_warning_Switch, + .t_dark .t_light .t_warning_TooltipContent, + .t_warning_Button, + .t_warning_SliderTrack, + .t_warning_Switch, + .t_warning_TooltipContent { + --background0: hsla(60, 60%, 99%, 0.75); + --background025: hsla(48, 70%, 99%, 1); + --background05: hsla(48, 70%, 93%, 1); + --background075: hsla(48, 70%, 88%, 1); + --color0: hsla(48, 70%, 50%, 1); + --color025: hsla(48, 70%, 15%, 1); + --color05: hsla(48, 70%, 10%, 1); + --color075: hsla(48, 69%, 10%, 0.75); + --background: hsla(48, 70%, 88%, 1); + --backgroundHover: hsla(48, 70%, 82%, 1); + --backgroundPress: hsla(48, 70%, 77%, 1); + --backgroundFocus: hsla(48, 70%, 72%, 1); + --color: hsla(48, 70%, 15%, 1); + --colorHover: hsla(48, 70%, 50%, 1); + --colorPress: hsla(48, 70%, 15%, 1); + --colorFocus: hsla(48, 70%, 50%, 1); + --placeholderColor: hsla(48, 70%, 61%, 1); + --borderColor: hsla(48, 70%, 72%, 1); + --borderColorHover: hsla(48, 70%, 66%, 1); + --borderColorFocus: hsla(48, 70%, 61%, 1); + --borderColorPress: hsla(48, 70%, 66%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_warning_Card, +:root.t_dark .t_light .t_dark .t_light .t_warning_DrawerFrame, +:root.t_dark .t_light .t_dark .t_light .t_warning_Progress, +:root.t_dark .t_light .t_dark .t_light .t_warning_TooltipArrow, +:root.t_dark .t_light .t_warning_Card, +:root.t_dark .t_light .t_warning_DrawerFrame, +:root.t_dark .t_light .t_warning_Progress, +:root.t_dark .t_light .t_warning_TooltipArrow, +:root.t_light .t_dark .t_light .t_warning_Card, +:root.t_light .t_dark .t_light .t_warning_DrawerFrame, +:root.t_light .t_dark .t_light .t_warning_Progress, +:root.t_light .t_dark .t_light .t_warning_TooltipArrow, +:root.t_light .t_warning_Card, +:root.t_light .t_warning_DrawerFrame, +:root.t_light .t_warning_Progress, +:root.t_light .t_warning_TooltipArrow { + --background0: hsla(60, 60%, 99%, 0.5); + --background025: hsla(60, 60%, 99%, 0.75); + --background05: hsla(48, 70%, 99%, 1); + --background075: hsla(48, 70%, 93%, 1); + --color0: hsla(48, 70%, 15%, 1); + --color025: hsla(48, 70%, 10%, 1); + --color05: hsla(48, 69%, 10%, 0.75); + --color075: hsla(48, 69%, 10%, 0.5); + --background: hsla(48, 70%, 93%, 1); + --backgroundHover: hsla(48, 70%, 88%, 1); + --backgroundPress: hsla(48, 70%, 82%, 1); + --backgroundFocus: hsla(48, 70%, 77%, 1); + --color: hsla(48, 70%, 15%, 1); + --colorHover: hsla(48, 70%, 50%, 1); + --colorPress: hsla(48, 70%, 15%, 1); + --colorFocus: hsla(48, 70%, 50%, 1); + --placeholderColor: hsla(48, 70%, 55%, 1); + --borderColor: hsla(48, 70%, 77%, 1); + --borderColorHover: hsla(48, 70%, 72%, 1); + --borderColorFocus: hsla(48, 70%, 66%, 1); + --borderColorPress: hsla(48, 70%, 72%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_warning_Card, + .t_dark .t_light .t_warning_DrawerFrame, + .t_dark .t_light .t_warning_Progress, + .t_dark .t_light .t_warning_TooltipArrow, + .t_warning_Card, + .t_warning_DrawerFrame, + .t_warning_Progress, + .t_warning_TooltipArrow { + --background0: hsla(60, 60%, 99%, 0.5); + --background025: hsla(60, 60%, 99%, 0.75); + --background05: hsla(48, 70%, 99%, 1); + --background075: hsla(48, 70%, 93%, 1); + --color0: hsla(48, 70%, 15%, 1); + --color025: hsla(48, 70%, 10%, 1); + --color05: hsla(48, 69%, 10%, 0.75); + --color075: hsla(48, 69%, 10%, 0.5); + --background: hsla(48, 70%, 93%, 1); + --backgroundHover: hsla(48, 70%, 88%, 1); + --backgroundPress: hsla(48, 70%, 82%, 1); + --backgroundFocus: hsla(48, 70%, 77%, 1); + --color: hsla(48, 70%, 15%, 1); + --colorHover: hsla(48, 70%, 50%, 1); + --colorPress: hsla(48, 70%, 15%, 1); + --colorFocus: hsla(48, 70%, 50%, 1); + --placeholderColor: hsla(48, 70%, 55%, 1); + --borderColor: hsla(48, 70%, 77%, 1); + --borderColorHover: hsla(48, 70%, 72%, 1); + --borderColorFocus: hsla(48, 70%, 66%, 1); + --borderColorPress: hsla(48, 70%, 72%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_warning_Checkbox, +:root.t_dark .t_light .t_dark .t_light .t_warning_Input, +:root.t_dark .t_light .t_dark .t_light .t_warning_RadioGroupItem, +:root.t_dark .t_light .t_dark .t_light .t_warning_TextArea, +:root.t_dark .t_light .t_warning_Checkbox, +:root.t_dark .t_light .t_warning_Input, +:root.t_dark .t_light .t_warning_RadioGroupItem, +:root.t_dark .t_light .t_warning_TextArea, +:root.t_light .t_dark .t_light .t_warning_Checkbox, +:root.t_light .t_dark .t_light .t_warning_Input, +:root.t_light .t_dark .t_light .t_warning_RadioGroupItem, +:root.t_light .t_dark .t_light .t_warning_TextArea, +:root.t_light .t_warning_Checkbox, +:root.t_light .t_warning_Input, +:root.t_light .t_warning_RadioGroupItem, +:root.t_light .t_warning_TextArea { + --accentBackground: hsla(60, 60%, 99%, 0); + --accentColor: hsla(60, 60%, 99%, 0); + --background0: hsla(60, 60%, 99%, 0.25); + --background025: hsla(60, 60%, 99%, 0.5); + --background05: hsla(60, 60%, 99%, 0.75); + --background075: hsla(48, 70%, 99%, 1); + --color0: hsla(48, 70%, 10%, 1); + --color025: hsla(48, 69%, 10%, 0.75); + --color05: hsla(48, 69%, 10%, 0.5); + --color075: hsla(48, 69%, 10%, 0.25); + --background: hsla(48, 70%, 99%, 1); + --backgroundHover: hsla(48, 70%, 93%, 1); + --backgroundPress: hsla(48, 70%, 88%, 1); + --backgroundFocus: hsla(48, 70%, 82%, 1); + --color: hsla(48, 70%, 15%, 1); + --colorHover: hsla(48, 70%, 50%, 1); + --colorPress: hsla(48, 70%, 15%, 1); + --colorFocus: hsla(48, 70%, 50%, 1); + --placeholderColor: hsla(48, 70%, 50%, 1); + --borderColor: hsla(48, 70%, 72%, 1); + --borderColorHover: hsla(48, 70%, 66%, 1); + --borderColorFocus: hsla(48, 70%, 61%, 1); + --borderColorPress: hsla(48, 70%, 66%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_warning_Checkbox, + .t_dark .t_light .t_warning_Input, + .t_dark .t_light .t_warning_RadioGroupItem, + .t_dark .t_light .t_warning_TextArea, + .t_warning_Checkbox, + .t_warning_Input, + .t_warning_RadioGroupItem, + .t_warning_TextArea { + --accentBackground: hsla(60, 60%, 99%, 0); + --accentColor: hsla(60, 60%, 99%, 0); + --background0: hsla(60, 60%, 99%, 0.25); + --background025: hsla(60, 60%, 99%, 0.5); + --background05: hsla(60, 60%, 99%, 0.75); + --background075: hsla(48, 70%, 99%, 1); + --color0: hsla(48, 70%, 10%, 1); + --color025: hsla(48, 69%, 10%, 0.75); + --color05: hsla(48, 69%, 10%, 0.5); + --color075: hsla(48, 69%, 10%, 0.25); + --background: hsla(48, 70%, 99%, 1); + --backgroundHover: hsla(48, 70%, 93%, 1); + --backgroundPress: hsla(48, 70%, 88%, 1); + --backgroundFocus: hsla(48, 70%, 82%, 1); + --color: hsla(48, 70%, 15%, 1); + --colorHover: hsla(48, 70%, 50%, 1); + --colorPress: hsla(48, 70%, 15%, 1); + --colorFocus: hsla(48, 70%, 50%, 1); + --placeholderColor: hsla(48, 70%, 50%, 1); + --borderColor: hsla(48, 70%, 72%, 1); + --borderColorHover: hsla(48, 70%, 66%, 1); + --borderColorFocus: hsla(48, 70%, 61%, 1); + --borderColorPress: hsla(48, 70%, 66%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_warning_ProgressIndicator, +:root.t_dark .t_light .t_dark .t_light .t_warning_SliderThumb, +:root.t_dark .t_light .t_dark .t_light .t_warning_SwitchThumb, +:root.t_dark .t_light .t_dark .t_light .t_warning_Tooltip, +:root.t_dark .t_light .t_warning_ProgressIndicator, +:root.t_dark .t_light .t_warning_SliderThumb, +:root.t_dark .t_light .t_warning_SwitchThumb, +:root.t_dark .t_light .t_warning_Tooltip, +:root.t_light .t_dark .t_light .t_warning_ProgressIndicator, +:root.t_light .t_dark .t_light .t_warning_SliderThumb, +:root.t_light .t_dark .t_light .t_warning_SwitchThumb, +:root.t_light .t_dark .t_light .t_warning_Tooltip, +:root.t_light .t_warning_ProgressIndicator, +:root.t_light .t_warning_SliderThumb, +:root.t_light .t_warning_SwitchThumb, +:root.t_light .t_warning_Tooltip { + --accentBackground: hsla(60, 60%, 99%, 0); + --accentColor: hsla(60, 60%, 99%, 0); + --background0: hsla(48, 69%, 10%, 0.25); + --background025: hsla(48, 69%, 10%, 0.5); + --background05: hsla(48, 69%, 10%, 0.75); + --background075: hsla(48, 70%, 10%, 1); + --color0: hsla(48, 70%, 99%, 1); + --color025: hsla(60, 60%, 99%, 0.75); + --color05: hsla(60, 60%, 99%, 0.5); + --color075: hsla(60, 60%, 99%, 0.25); + --background: hsla(48, 70%, 10%, 1); + --backgroundHover: hsla(48, 70%, 15%, 1); + --backgroundPress: hsla(48, 70%, 50%, 1); + --backgroundFocus: hsla(48, 70%, 55%, 1); + --color: hsla(48, 70%, 93%, 1); + --colorHover: hsla(48, 70%, 88%, 1); + --colorPress: hsla(48, 70%, 93%, 1); + --colorFocus: hsla(48, 70%, 88%, 1); + --placeholderColor: hsla(48, 70%, 88%, 1); + --borderColor: hsla(48, 70%, 55%, 1); + --borderColorHover: hsla(48, 70%, 61%, 1); + --borderColorFocus: hsla(48, 70%, 66%, 1); + --borderColorPress: hsla(48, 70%, 61%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_warning_ProgressIndicator, + .t_dark .t_light .t_warning_SliderThumb, + .t_dark .t_light .t_warning_SwitchThumb, + .t_dark .t_light .t_warning_Tooltip, + .t_warning_ProgressIndicator, + .t_warning_SliderThumb, + .t_warning_SwitchThumb, + .t_warning_Tooltip { + --accentBackground: hsla(60, 60%, 99%, 0); + --accentColor: hsla(60, 60%, 99%, 0); + --background0: hsla(48, 69%, 10%, 0.25); + --background025: hsla(48, 69%, 10%, 0.5); + --background05: hsla(48, 69%, 10%, 0.75); + --background075: hsla(48, 70%, 10%, 1); + --color0: hsla(48, 70%, 99%, 1); + --color025: hsla(60, 60%, 99%, 0.75); + --color05: hsla(60, 60%, 99%, 0.5); + --color075: hsla(60, 60%, 99%, 0.25); + --background: hsla(48, 70%, 10%, 1); + --backgroundHover: hsla(48, 70%, 15%, 1); + --backgroundPress: hsla(48, 70%, 50%, 1); + --backgroundFocus: hsla(48, 70%, 55%, 1); + --color: hsla(48, 70%, 93%, 1); + --colorHover: hsla(48, 70%, 88%, 1); + --colorPress: hsla(48, 70%, 93%, 1); + --colorFocus: hsla(48, 70%, 88%, 1); + --placeholderColor: hsla(48, 70%, 88%, 1); + --borderColor: hsla(48, 70%, 55%, 1); + --borderColorHover: hsla(48, 70%, 61%, 1); + --borderColorFocus: hsla(48, 70%, 66%, 1); + --borderColorPress: hsla(48, 70%, 61%, 1); + } +} + +:root.t_dark .t_light .t_dark .t_light .t_warning_SliderTrackActive, +:root.t_dark .t_light .t_warning_SliderTrackActive, +:root.t_light .t_dark .t_light .t_warning_SliderTrackActive, +:root.t_light .t_warning_SliderTrackActive { + --accentBackground: hsla(60, 60%, 99%, 0); + --accentColor: hsla(60, 60%, 99%, 0); + --background0: hsla(48, 69%, 10%, 0.75); + --background025: hsla(48, 70%, 10%, 1); + --background05: hsla(48, 70%, 15%, 1); + --background075: hsla(48, 70%, 50%, 1); + --color0: hsla(48, 70%, 88%, 1); + --color025: hsla(48, 70%, 93%, 1); + --color05: hsla(48, 70%, 99%, 1); + --color075: hsla(60, 60%, 99%, 0.75); + --background: hsla(48, 70%, 50%, 1); + --backgroundHover: hsla(48, 70%, 55%, 1); + --backgroundPress: hsla(48, 70%, 61%, 1); + --backgroundFocus: hsla(48, 70%, 66%, 1); + --color: hsla(48, 70%, 93%, 1); + --colorHover: hsla(48, 70%, 88%, 1); + --colorPress: hsla(48, 70%, 93%, 1); + --colorFocus: hsla(48, 70%, 88%, 1); + --placeholderColor: hsla(48, 70%, 77%, 1); + --borderColor: hsla(48, 70%, 66%, 1); + --borderColorHover: hsla(48, 70%, 72%, 1); + --borderColorFocus: hsla(48, 70%, 77%, 1); + --borderColorPress: hsla(48, 70%, 72%, 1); +} + +@media(prefers-color-scheme:light) { + body { + background: var(--background); + color: var(--color) + } + + .t_dark .t_light .t_warning_SliderTrackActive, + .t_warning_SliderTrackActive { + --accentBackground: hsla(60, 60%, 99%, 0); + --accentColor: hsla(60, 60%, 99%, 0); + --background0: hsla(48, 69%, 10%, 0.75); + --background025: hsla(48, 70%, 10%, 1); + --background05: hsla(48, 70%, 15%, 1); + --background075: hsla(48, 70%, 50%, 1); + --color0: hsla(48, 70%, 88%, 1); + --color025: hsla(48, 70%, 93%, 1); + --color05: hsla(48, 70%, 99%, 1); + --color075: hsla(60, 60%, 99%, 0.75); + --background: hsla(48, 70%, 50%, 1); + --backgroundHover: hsla(48, 70%, 55%, 1); + --backgroundPress: hsla(48, 70%, 61%, 1); + --backgroundFocus: hsla(48, 70%, 66%, 1); + --color: hsla(48, 70%, 93%, 1); + --colorHover: hsla(48, 70%, 88%, 1); + --colorPress: hsla(48, 70%, 93%, 1); + --colorFocus: hsla(48, 70%, 88%, 1); + --placeholderColor: hsla(48, 70%, 77%, 1); + --borderColor: hsla(48, 70%, 66%, 1); + --borderColorHover: hsla(48, 70%, 72%, 1); + --borderColorFocus: hsla(48, 70%, 77%, 1); + --borderColorPress: hsla(48, 70%, 72%, 1); + } +} \ No newline at end of file diff --git a/packages/app/package.json b/packages/app/package.json index 258e3fae4..87cf70048 100644 --- a/packages/app/package.json +++ b/packages/app/package.json @@ -13,7 +13,8 @@ }, "dependencies": { "@daimo/expo-passkeys": "workspace:*", - "@my/contracts": "workspace:*", + "@fontsource/dm-mono": "^5.0.18", + "@fontsource/dm-sans": "^5.0.18", "@my/supabase": "workspace:*", "@my/ui": "workspace:*", "@my/wagmi": "workspace:*", diff --git a/packages/ui/src/components/NativeToast.tsx b/packages/ui/src/components/NativeToast.tsx index 4a4133efb..9e7a5b1c2 100644 --- a/packages/ui/src/components/NativeToast.tsx +++ b/packages/ui/src/components/NativeToast.tsx @@ -21,7 +21,7 @@ export const NativeToast = () => { animation="quick" > - {currentToast.title} + {currentToast.title} {!!currentToast.message && {currentToast.message}} diff --git a/packages/ui/src/config/fonts.ts b/packages/ui/src/config/fonts.ts index f4a829402..7ebc5169f 100644 --- a/packages/ui/src/config/fonts.ts +++ b/packages/ui/src/config/fonts.ts @@ -1,46 +1,95 @@ -import { createInterFont } from '@tamagui/font-inter' +import { createFont, isWeb } from 'tamagui' -export const headingFont = createInterFont({ +export const headingFont = createFont({ + family: isWeb + ? 'DM Sans, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif' + : 'DM Sans', size: { - 6: 15, - 15: 101, + 7: 20, + 8: 23, + 9: 30, + 10: 40, }, - transform: { - 6: 'uppercase', - 7: 'none', + face: { + 900: { normal: 'DM Sans Bold' }, + }, +}) + +export const bodyFont = createFont({ + family: isWeb + ? 'DM Sans, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif' + : 'DM Sans', + size: { + 1: 11, + 2: 12, + 3: 13, + 4: 14, + true: 14, + 5: 16, + 6: 18, + 7: 20, + 8: 23, + 9: 30, + 10: 46, + 11: 55, + 12: 62, + 13: 72, + 14: 92, + 15: 114, + 16: 134, + }, + + face: { + 900: { normal: 'DM Sans Bold' }, + }, +}) +export const monoFont = createFont({ + family: isWeb + ? 'DM Mono, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif' + : 'DM Mono', + size: { + 1: 11, + 2: 12, + 3: 13, + 4: 14, + true: 14, + 5: 16, + 6: 18, + 7: 20, + 8: 23, + 9: 30, + 10: 46, + 11: 55, + 12: 62, + 13: 72, + 14: 92, + 15: 114, + 16: 134, + }, + lineHeight: { + 1: 11, + 2: 12, + 3: 13, + 4: 14, + true: 14, + 5: 16, + 6: 18, + 7: 20, + 8: 23, + 9: 30, + 10: 46, + 11: 55, + 12: 62, + 13: 72, + 14: 92, + 15: 114, + 16: 134, }, weight: { 6: '400', - 7: '700', - }, - color: { - 6: '$colorFocus', - 7: '$color', - }, - letterSpacing: { - 5: 2, - 6: 1, - 7: 0, - 8: -1, - 9: -2, - 10: -3, - 12: -4, - 14: -5, - 15: -6, + 7: '500', }, face: { - 700: { normal: 'InterBold' }, + 500: { normal: 'DM Mono' }, }, }) - -export const bodyFont = createInterFont( - { - face: { - 700: { normal: 'InterBold' }, - }, - }, - { - sizeSize: (size) => Math.round(size * 1.1), - sizeLineHeight: (size) => Math.round(size * 1.1 + (size > 20 ? 10 : 10)), - } -) diff --git a/packages/ui/src/tamagui.config.ts b/packages/ui/src/tamagui.config.ts index 8eef801d5..492b1dfc1 100644 --- a/packages/ui/src/tamagui.config.ts +++ b/packages/ui/src/tamagui.config.ts @@ -2,7 +2,7 @@ import { shorthands } from '@tamagui/shorthands' import { createTokens } from '@tamagui/web' import { createTamagui } from 'tamagui' import { animations } from './config/animations' -import { bodyFont, headingFont } from './config/fonts' +import { bodyFont, headingFont, monoFont } from './config/fonts' import { media, mediaQueryDefaultActive } from './config/media' import { radius } from './themes/token-radius' import { size } from './themes/token-size' @@ -30,6 +30,7 @@ const conf = { fonts: { heading: headingFont, body: bodyFont, + mono: monoFont, }, tokens: createTokens({ color, diff --git a/yarn.lock b/yarn.lock index 71b26e896..15c5ce943 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4524,6 +4524,20 @@ __metadata: languageName: node linkType: hard +"@fontsource/dm-mono@npm:^5.0.18": + version: 5.0.18 + resolution: "@fontsource/dm-mono@npm:5.0.18" + checksum: 2f6887c2773d697a617d9cd987c9ef33a31b27c89eee9249157211885b50992454d56653b243f0ada67b3a32baeea82585814fb838f9f41e3d2b92b69e5db230 + languageName: node + linkType: hard + +"@fontsource/dm-sans@npm:^5.0.18": + version: 5.0.18 + resolution: "@fontsource/dm-sans@npm:5.0.18" + checksum: eb8a6396f9cb0b46395e19d4026c9e7b7fa322990eecf69e9bc832ff2aa3032b6a6ded7274ae149d157c1b7233880b2b48dd455692c46b0331b5cc26145fe995 + languageName: node + linkType: hard + "@gar/promisify@npm:^1.0.1, @gar/promisify@npm:^1.1.3": version: 1.1.3 resolution: "@gar/promisify@npm:1.1.3" @@ -11734,8 +11748,9 @@ __metadata: resolution: "app@workspace:packages/app" dependencies: "@daimo/expo-passkeys": "workspace:*" + "@fontsource/dm-mono": "npm:^5.0.18" + "@fontsource/dm-sans": "npm:^5.0.18" "@jest/globals": "npm:^29.7.0" - "@my/contracts": "workspace:*" "@my/supabase": "workspace:*" "@my/ui": "workspace:*" "@my/wagmi": "workspace:*" From e357409a768824d3e6309c85ee6f0725246916da Mon Sep 17 00:00:00 2001 From: youngkidwarrior Date: Sun, 25 Feb 2024 16:30:35 -0800 Subject: [PATCH 022/177] Update onboarding styles after font changes --- .../app/features/auth/components/Carousel.tsx | 9 +++--- .../features/auth/components/VerifyCode.tsx | 19 ++++++++---- packages/app/features/auth/layout.web.tsx | 2 +- .../auth/onboarding/onboarding-form.tsx | 31 ++++++++++++++----- .../app/features/auth/onboarding/screen.tsx | 14 +++++++-- packages/app/features/auth/sign-in/screen.tsx | 10 +++++- .../features/auth/sign-in/sign-in-form.tsx | 17 ++++++---- packages/ui/src/components/BigHeading.tsx | 14 +++++++++ packages/ui/src/components/index.ts | 1 + 9 files changed, 89 insertions(+), 28 deletions(-) create mode 100644 packages/ui/src/components/BigHeading.tsx diff --git a/packages/app/features/auth/components/Carousel.tsx b/packages/app/features/auth/components/Carousel.tsx index da5afdcec..af7042cd7 100644 --- a/packages/app/features/auth/components/Carousel.tsx +++ b/packages/app/features/auth/components/Carousel.tsx @@ -43,7 +43,7 @@ const CarouselProgress = () => { }, [setCarouselProgress, progressWidth]) return ( - + {carouselItems?.map(({ title }, i) => { return ( { h={1} backgroundColor={'$background'} direction="ltr" + miw={0} value={carouselProgress < i ? 0 : carouselProgress === i ? progressWidth : 100} > @@ -69,14 +70,14 @@ export const Carousel = () => { return ( <> - +

{item?.title}

{item?.description} diff --git a/packages/app/features/auth/components/VerifyCode.tsx b/packages/app/features/auth/components/VerifyCode.tsx index 84f1f62a8..87000b3d3 100644 --- a/packages/app/features/auth/components/VerifyCode.tsx +++ b/packages/app/features/auth/components/VerifyCode.tsx @@ -1,4 +1,5 @@ import { + BigHeading, ButtonText, FormWrapper, H1, @@ -69,7 +70,9 @@ export const VerifyCode = ({ phone, onSuccess, type = 'sms' }: VerifyCodeProps) color: '$background', themeInverse: true, fontSize: '$6', - w: '60%', + $sm: { + w: '60%', + }, outlineColor: 'transparent', }, }} @@ -92,12 +95,16 @@ export const VerifyCode = ({ phone, onSuccess, type = 'sms' }: VerifyCodeProps) {(fields) => ( -

- VERIFY ACCOUNT -

+ VERIFY ACCOUNT
-

- Enter the verification code we sent you +

+ Enter the code we sent you on your phone

diff --git a/packages/app/features/auth/layout.web.tsx b/packages/app/features/auth/layout.web.tsx index b1da3124b..e83e546a4 100644 --- a/packages/app/features/auth/layout.web.tsx +++ b/packages/app/features/auth/layout.web.tsx @@ -60,7 +60,7 @@ export function AuthLayout({ )} - + {children} diff --git a/packages/app/features/auth/onboarding/onboarding-form.tsx b/packages/app/features/auth/onboarding/onboarding-form.tsx index da3024ee3..e8d9a28fd 100644 --- a/packages/app/features/auth/onboarding/onboarding-form.tsx +++ b/packages/app/features/auth/onboarding/onboarding-form.tsx @@ -10,7 +10,18 @@ import { baseMainnetClient } from '@my/wagmi' import * as Device from 'expo-device' import { concat } from 'viem' import { getSenderAddress } from 'permissionless' -import { Anchor, YStack, Theme, XStack, SubmitButton, ButtonText, H1, Paragraph } from '@my/ui' +import { + Anchor, + YStack, + Theme, + XStack, + SubmitButton, + ButtonText, + H1, + Paragraph, + BigHeading, + H3, +} from '@my/ui' import { SchemaForm, formFields } from 'app/utils/SchemaForm' import { z } from 'zod' import { useForm, FormProvider } from 'react-hook-form' @@ -103,6 +114,8 @@ export const OnboardingForm = () => { borderBottomWidth: 2, borderRadius: '$0', placeholder: deviceName, + fontFamily: '$mono', + fontSize: '$7', width: '100%', backgroundColor: 'transparent', outlineColor: 'transparent', @@ -141,7 +154,7 @@ export const OnboardingForm = () => { als: 'flex-end', mx: 0, ml: 'auto', - maw: '$14', + maw: '$12', }} > @@ -155,13 +168,17 @@ export const OnboardingForm = () => { {(fields) => ( -

- SETUP PASSKEY -

+ SETUP PASSKEY
- +

Start by creating a Passkey below. Send uses passkeys to secure your account - +

diff --git a/packages/app/features/auth/onboarding/screen.tsx b/packages/app/features/auth/onboarding/screen.tsx index 569f620cd..d5aef6fe0 100644 --- a/packages/app/features/auth/onboarding/screen.tsx +++ b/packages/app/features/auth/onboarding/screen.tsx @@ -34,7 +34,7 @@ export function OnboardingScreen() { if (media.gtMd) return ( - + @@ -49,8 +49,16 @@ export function OnboardingScreen() {
- - {sendAccts?.length === 0 ? : } + + {media.gtMd ? ( + + + + ) : sendAccts?.length === 0 ? ( + + ) : ( + + )} ) diff --git a/packages/app/features/auth/sign-in/screen.tsx b/packages/app/features/auth/sign-in/screen.tsx index a639c4663..231d25e30 100644 --- a/packages/app/features/auth/sign-in/screen.tsx +++ b/packages/app/features/auth/sign-in/screen.tsx @@ -12,7 +12,15 @@ export const SignInScreen = () => { return ( {media.gtMd ? ( - + ) : ( diff --git a/packages/app/features/auth/sign-in/sign-in-form.tsx b/packages/app/features/auth/sign-in/sign-in-form.tsx index 57dbabf8d..8f3f0fe49 100644 --- a/packages/app/features/auth/sign-in/sign-in-form.tsx +++ b/packages/app/features/auth/sign-in/sign-in-form.tsx @@ -1,4 +1,4 @@ -import { ButtonText, H1, H3, Paragraph, SubmitButton, Theme, XStack, YStack } from '@my/ui' +import { ButtonText, BigHeading, Paragraph, SubmitButton, Theme, XStack, YStack, H3 } from '@my/ui' import { SchemaForm, formFields } from 'app/utils/SchemaForm' import { FormProvider, useForm } from 'react-hook-form' import { api } from 'app/utils/api' @@ -97,13 +97,18 @@ export const SignInForm = () => { {(fields) => ( -

- WELCOME TO SEND -

+ WELCOME TO SEND
- +

Sign in with your phone number - +

+ diff --git a/packages/ui/src/components/BigHeading.tsx b/packages/ui/src/components/BigHeading.tsx new file mode 100644 index 000000000..97dca8d7a --- /dev/null +++ b/packages/ui/src/components/BigHeading.tsx @@ -0,0 +1,14 @@ +import { H1, HeadingProps } from 'tamagui' + +export const BigHeading = ({ + fontSize = 64, + fontWeight = '900', + lineHeight = 57, + ...props +}: HeadingProps) => { + return ( +

+ {props.children} +

+ ) +} diff --git a/packages/ui/src/components/index.ts b/packages/ui/src/components/index.ts index be569315b..a370a5d3d 100644 --- a/packages/ui/src/components/index.ts +++ b/packages/ui/src/components/index.ts @@ -12,3 +12,4 @@ export * from './SideBar' export * from './BottomSheet' export * from './CornerTriangle' export * from './SuperScript' +export * from './BigHeading' From 76bdfbcdb6516418ef3f762aa052d14c73db5d20 Mon Sep 17 00:00:00 2001 From: BigBoss Date: Wed, 28 Feb 2024 20:53:46 -0600 Subject: [PATCH 023/177] fix staging (#140) * deploy verifier * deploy factory to base sepolia --- .../84532/run-latest.json | 72 +++++++++ .../84532/run-latest.json | 145 +++++++++++++++++ packages/contracts/foundry.toml | 5 +- packages/wagmi/src/generated.ts | 153 +++++++++--------- 4 files changed, 298 insertions(+), 77 deletions(-) create mode 100644 packages/contracts/broadcast/DeploySendAccountFactory.s.sol/84532/run-latest.json create mode 100644 packages/contracts/broadcast/DeploySendVerifier.s.sol/84532/run-latest.json diff --git a/packages/contracts/broadcast/DeploySendAccountFactory.s.sol/84532/run-latest.json b/packages/contracts/broadcast/DeploySendAccountFactory.s.sol/84532/run-latest.json new file mode 100644 index 000000000..e7341ecbd --- /dev/null +++ b/packages/contracts/broadcast/DeploySendAccountFactory.s.sol/84532/run-latest.json @@ -0,0 +1,72 @@ +{ + "transactions": [ + { + "hash": "0x4d59b4f721cd85bd07b3d01a46bf4bdb80bd52d2a7d9de640daccbba449f21bb", + "transactionType": "CREATE2", + "contractName": "DaimoAccountFactory", + "contractAddress": "0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0", + "function": null, + "arguments": [ + "0x0000000071727De22E5E9d8BAf0edAc6f37da032", + "0xdAAb03239f5CC5b3452837E557295F790D9ab319" + ], + "transaction": { + "type": "0x02", + "from": "0x647eb43401e13e995d89cf26cd87e68890ee3f89", + "to": "0x4e59b44847b379578588920ca78fbf26c0b4956c", + "gas": "0x3c1267", + "value": "0x0", + "data": "0x000000000000000000000000000000000000000000000000000000000000000060e060405234801561001057600080fd5b506040516134ae3803806134ae83398101604081905261002f916100bf565b6001600160a01b0380831660a052811660c052604051829082906100529061009a565b6001600160a01b03928316815291166020820152604001604051809103906000f080158015610085573d6000803e3d6000fd5b506001600160a01b0316608052506100f99050565b61263980610e7583390190565b6001600160a01b03811681146100bc57600080fd5b50565b600080604083850312156100d257600080fd5b82516100dd816100a7565b60208401519092506100ee816100a7565b809150509250929050565b60805160a05160c051610d3a61013b600039600060f001526000818161012601526101cd015260008181607a0152818161025c01526103850152610d3a6000f3fe608060405260043610620000615760003560e01c80632b7ac3f311620000485780632b7ac3f314620000dc578063b0d691fe1462000112578063cca14965146200014857600080fd5b806311464fbe14620000665780632a0c114d14620000c5575b600080fd5b3480156200007357600080fd5b506200009c7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b6200009c620000d636600462000574565b6200016d565b348015620000e957600080fd5b506200009c7f000000000000000000000000000000000000000000000000000000000000000081565b3480156200011f57600080fd5b506200009c7f000000000000000000000000000000000000000000000000000000000000000081565b3480156200015557600080fd5b506200009c6200016736600462000574565b62000353565b6000806200017f878787878762000353565b905034156200022e576040517fb760faf900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063b760faf99034906024016000604051808303818588803b1580156200021357600080fd5b505af115801562000228573d6000803e3d6000fd5b50505050505b73ffffffffffffffffffffffffffffffffffffffff81163b801562000256575090506200034a565b8360001b7f00000000000000000000000000000000000000000000000000000000000000008989898960405160240162000294949392919062000694565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fc73ba52600000000000000000000000000000000000000000000000000000000179052516200031690620004e8565b620003239291906200084a565b8190604051809103906000f590508015801562000344573d6000803e3d6000fd5b50925050505b95945050505050565b60006200049e8260001b604051806020016200036f90620004e8565b6020820181038252601f19601f820116604052507f000000000000000000000000000000000000000000000000000000000000000089898989604051602401620003bd949392919062000694565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152918152602080830180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fc73ba52600000000000000000000000000000000000000000000000000000000179052905162000444939291016200084a565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815290829052620004829291602001620008ba565b60405160208183030381529060405280519060200120620004a8565b9695505050505050565b6000620004b7838330620004be565b9392505050565b6000604051836040820152846020820152828152600b8101905060ff815360559020949350505050565b61041780620008ee83390190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008083601f8401126200053857600080fd5b50813567ffffffffffffffff8111156200055157600080fd5b6020830191508360208260051b85010111156200056d57600080fd5b9250929050565b600080600080600060a086880312156200058d57600080fd5b853560ff811681146200059f57600080fd5b94506020603f87018813620005b357600080fd5b6040516040810167ffffffffffffffff8282108183111715620005da57620005da620004f6565b8160405282915060608a018b811115620005f357600080fd5b60208b015b81811015620006115780358452928501928501620005f8565b508398508035945050808411156200062857600080fd5b505050620006398882890162000525565b96999598509660800135949350505050565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b60006080820160ff8716835260208084018760005b6002811015620006c857815183529183019190830190600101620006a9565b5050506060608060608601528286845260a08601905060a08760051b87010193508760005b8881101562000814577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6088870301835281357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa18b36030181126200075057600080fd5b8a01803573ffffffffffffffffffffffffffffffffffffffff81168082146200077857600080fd5b8852508086013586880152604080820135368390037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1018112620007bb57600080fd5b90910186810191903567ffffffffffffffff811115620007da57600080fd5b803603831315620007ea57600080fd5b86828a0152620007fe878a0182856200064b565b98505050928501925090840190600101620006ed565b50939a9950505050505050505050565b60005b838110156200084157818101518382015260200162000827565b50506000910152565b73ffffffffffffffffffffffffffffffffffffffff8316815260406020820152600082518060408401526200088781606085016020870162000824565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016060019392505050565b60008351620008ce81846020880162000824565b835190830190620008e481836020880162000824565b0194935050505056fe608060405260405161041738038061041783398101604081905261002291610268565b61002c8282610033565b5050610352565b61003c82610092565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561008657610081828261010e565b505050565b61008e610185565b5050565b806001600160a01b03163b6000036100cd57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b03168460405161012b9190610336565b600060405180830381855af49150503d8060008114610166576040519150601f19603f3d011682016040523d82523d6000602084013e61016b565b606091505b50909250905061017c8583836101a6565b95945050505050565b34156101a45760405163b398979f60e01b815260040160405180910390fd5b565b6060826101bb576101b682610205565b6101fe565b81511580156101d257506001600160a01b0384163b155b156101fb57604051639996b31560e01b81526001600160a01b03851660048201526024016100c4565b50805b9392505050565b8051156102155780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b634e487b7160e01b600052604160045260246000fd5b60005b8381101561025f578181015183820152602001610247565b50506000910152565b6000806040838503121561027b57600080fd5b82516001600160a01b038116811461029257600080fd5b60208401519092506001600160401b03808211156102af57600080fd5b818501915085601f8301126102c357600080fd5b8151818111156102d5576102d561022e565b604051601f8201601f19908116603f011681019083821181831017156102fd576102fd61022e565b8160405282815288602084870101111561031657600080fd5b610327836020830160208801610244565b80955050505050509250929050565b60008251610348818460208701610244565b9190910192915050565b60b7806103606000396000f3fe6080604052600a600c565b005b60186014601a565b605e565b565b600060597f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b905090565b3660008037600080366000845af43d6000803e808015607c573d6000f35b3d6000fdfea2646970667358221220aa51a5c8306bbae41fc40c01dd863eedfa89f6ee08a78f81a42bdf33defd382c64736f6c63430008170033a2646970667358221220eb3b71bac8237fa121d489e76c88442a3a737348eaf624054001f781e62fa85c64736f6c6343000817003361010060405230608052601460e0523480156200001b57600080fd5b5060405162002639380380620026398339810160408190526200003e916200012d565b6001600160a01b0380831660a052811660c0526200005b62000063565b50506200016c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000b45760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001145780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6001600160a01b03811681146200011457600080fd5b600080604083850312156200014157600080fd5b82516200014e8162000117565b6020840151909250620001618162000117565b809150509250929050565b60805160a05160c05160e051612462620001d76000396000818161035501526109da01526000818161019901526110a3015260008181610301015281816104730152818161052c0152610cf501526000818161146801528181611491015261171001526124626000f3fe6080604052600436106100f75760003560e01c80639875b4db1161008a578063bafa710811610059578063bafa710814610343578063c73ba52614610377578063c90e3c5b14610397578063e97efb97146103b757600080fd5b80639875b4db1461026d578063ad3cb1cc14610299578063b0d691fe146102ef578063b3033ef21461032357600080fd5b80634f1ef286116100c65780634f1ef2861461020257806352d1902d14610215578063595f20d61461022a57806388b257091461024a57600080fd5b80631626ba7e1461010357806319822f7c146101595780632b7ac3f31461018757806334fcd5be146101e057600080fd5b366100fe57005b600080fd5b34801561010f57600080fd5b5061012361011e366004611ac4565b6103d5565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020015b60405180910390f35b34801561016557600080fd5b50610179610174366004611b40565b610459565b604051908152602001610150565b34801561019357600080fd5b506101bb7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610150565b3480156101ec57600080fd5b506102006101fb366004611be0565b610514565b005b610200610210366004611d4e565b610694565b34801561022157600080fd5b506101796106b3565b34801561023657600080fd5b50610179610245366004611dad565b6106e2565b34801561025657600080fd5b5061025f610707565b604051610150929190611dd7565b34801561027957600080fd5b506000546102879060ff1681565b60405160ff9091168152602001610150565b3480156102a557600080fd5b506102e26040518060400160405280600581526020017f352e302e3000000000000000000000000000000000000000000000000000000081525081565b6040516101509190611ee8565b3480156102fb57600080fd5b506101bb7f000000000000000000000000000000000000000000000000000000000000000081565b34801561032f57600080fd5b5061020061033e366004611efb565b610888565b34801561034f57600080fd5b506102877f000000000000000000000000000000000000000000000000000000000000000081565b34801561038357600080fd5b50610200610392366004611f8d565b610b02565b3480156103a357600080fd5b506102006103b2366004611ff3565b610df8565b3480156103c357600080fd5b506102006103d236600461200e565b50565b6000610403846040516020016103ed91815260200190565b604051602081830303815290604052848461102f565b1561042f57507f1626ba7e00000000000000000000000000000000000000000000000000000000610452565b507fffffffff000000000000000000000000000000000000000000000000000000005b9392505050565b60003373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146104ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6f6e6c7920656e74727920706f696e740000000000000000000000000000000060448201526064015b60405180910390fd5b6105098484611141565b90506104528261135c565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146105b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6f6e6c7920656e74727920706f696e740000000000000000000000000000000060448201526064016104f6565b60005b8181101561068f576106878383838181106105d3576105d36120ca565b90506020028101906105e591906120f9565b6105f3906020810190612137565b848484818110610605576106056120ca565b905060200281019061061791906120f9565b6020013585858581811061062d5761062d6120ca565b905060200281019061063f91906120f9565b61064d906040810190612152565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506113d392505050565b6001016105b6565b505050565b61069c611450565b6106a582611556565b6106af82826115bf565b5050565b60006106bd6116f8565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b600160205281600052604060002081600281106106fe57600080fd5b01549150829050565b600054606090819060ff1667ffffffffffffffff81111561072a5761072a611c4b565b60405190808252806020026020018201604052801561076357816020015b610750611a25565b8152602001906001900390816107485790505b5060005490925060ff1667ffffffffffffffff81111561078557610785611c4b565b6040519080825280602002602001820160405280156107ae578160200160208202803683370190505b5090506000805b61010081101561086e5760ff81166000908152600160205260409020548190156108655760ff8116600090815260016020526040908190208151808301928390529160029082845b8154815260200190600101908083116107fd575050505050858481518110610827576108276120ca565b602002602001018190525080848481518110610845576108456120ca565b60ff9092166020928302919091019091015282610861816121e6565b9350505b506001016107b5565b5060005460ff1681146108835761088361221e565b509091565b3330146108f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6f6e6c792073656c66000000000000000000000000000000000000000000000060448201526064016104f6565b60ff82166000908152600160205260409020541561096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6b657920616c726561647920657869737473000000000000000000000000000060448201526064016104f6565b80516109d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f6e6577206b65792063616e6e6f7420626520300000000000000000000000000060448201526064016104f6565b60005460ff7f00000000000000000000000000000000000000000000000000000000000000008116911610610a64576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6d6178206b65797320726561636865640000000000000000000000000000000060448201526064016104f6565b60ff82166000908152600160205260409020610a8290826002611a43565b506000805460ff169080610a958361224d565b91906101000a81548160ff021916908360ff160217905550503073ffffffffffffffffffffffffffffffffffffffff167f1d84cb7fa5da6303adc54870a915cbf91d2cf642fcc5ce470b79b774672018768383604051610af692919061226c565b60405180910390a25050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff16600081158015610b4d5750825b905060008267ffffffffffffffff166001148015610b6a5750303b155b905081158015610b78575080155b15610baf576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b84547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001660011785558315610c105784547fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff16680100000000000000001785555b60ff89166000908152600160205260409020610c2e90896002611a81565b50600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011781555b86811015610cda57610cd2888883818110610c7857610c786120ca565b9050602002810190610c8a91906120f9565b610c98906020810190612137565b898984818110610caa57610caa6120ca565b9050602002810190610cbc91906120f9565b602001358a8a8581811061062d5761062d6120ca565b600101610c5b565b5060405173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016907f9b44a2c7f9f0b5aa4e7da60d8a2325796c57f93a45559d66515743ffbd8a610390600090a23073ffffffffffffffffffffffffffffffffffffffff167f1d84cb7fa5da6303adc54870a915cbf91d2cf642fcc5ce470b79b774672018768a8a604051610d849291906122a7565b60405180910390a28315610ded5784547fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b333014610e61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6f6e6c792073656c66000000000000000000000000000000000000000000000060448201526064016104f6565b60ff8116600090815260016020526040902054610eda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6b657920646f6573206e6f74206578697374000000000000000000000000000060448201526064016104f6565b600054600160ff90911611610f4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f63616e6e6f742072656d6f7665206f6e6c79207369676e696e67206b6579000060448201526064016104f6565b60ff81166000908152600160205260408082208151808301928390529160029082845b815481526020019060010190808311610f6e5750506040805180820182526000808252602080830182905260ff8a1682526001905291909120949550610fbb949350915060029050611a43565b506000805460ff169080610fce836122c0565b91906101000a81548160ff021916908360ff160217905550503073ffffffffffffffffffffffffffffffffffffffff167fb1c618be842f3c0e753cfc3569dd3eafd446296dbe6db8af1d8cc92c7d0ba0538383604051610af692919061226c565b6000600182101561104257506000610452565b600083836000818110611057576110576120ca565b919091013560f81c600081815260016020819052604091829020805491015491517fdcae042c0000000000000000000000000000000000000000000000000000000081529294509250907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063dcae042c906110f5908a908a908a90889088906004016122fb565b602060405180830381865afa158015611112573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611136919061236d565b979650505050505050565b604080516060818101835260008083526020830181905292820183905290369083906000611173610100890189612152565b905090508060000361118d57600195505050505050611356565b600061119d6101008a018a612152565b60008181106111ae576111ae6120ca565b919091013560f81c91505060018190036112d35760078210156111da5760019650505050505050611356565b60006111ea6101008b018b612152565b6111f99160079160019161238f565b611202916123b9565b60d01c90506112156101008b018b612152565b61122391600790829061238f565b6040517fff0000000000000000000000000000000000000000000000000000000000000060f886901b1660208201527fffffffffffff000000000000000000000000000000000000000000000000000060d085901b166021820152602781018c90529197509550604701604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291815265ffffffffffff9092169185019190915295506112e2565b60019650505050505050611356565b6112ed86868661102f565b1561134b5761133e83600060d0826020015165ffffffffffff16901b60a0836040015165ffffffffffff16901b836000015173ffffffffffffffffffffffffffffffffffffffff1617179050919050565b9650505050505050611356565b600196505050505050505b92915050565b80156103d25760405160009033907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90849084818181858888f193505050503d80600081146113c7576040519150601f19603f3d011682016040523d82523d6000602084013e6113cc565b606091505b5050505050565b6000808473ffffffffffffffffffffffffffffffffffffffff1684846040516113fc9190612401565b60006040518083038185875af1925050503d8060008114611439576040519150601f19603f3d011682016040523d82523d6000602084013e61143e565b606091505b5091509150816113cc57805160208201fd5b3073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016148061151d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166115047f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614155b15611554576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b3330146103d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6f6e6c792073656c66000000000000000000000000000000000000000000000060448201526064016104f6565b8173ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611644575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261164191810190612413565b60015b611692576040517f4c9c8ce300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831660048201526024016104f6565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc81146116ee576040517faa1d49a4000000000000000000000000000000000000000000000000000000008152600481018290526024016104f6565b61068f8383611767565b3073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614611554576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611770826117ca565b60405173ffffffffffffffffffffffffffffffffffffffff8316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156117c25761068f8282611899565b6106af61191c565b8073ffffffffffffffffffffffffffffffffffffffff163b600003611833576040517f4c9c8ce300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff821660048201526024016104f6565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60606000808473ffffffffffffffffffffffffffffffffffffffff16846040516118c39190612401565b600060405180830381855af49150503d80600081146118fe576040519150601f19603f3d011682016040523d82523d6000602084013e611903565b606091505b5091509150611913858383611954565b95945050505050565b3415611554576040517fb398979f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60608261196957611964826119e3565b610452565b815115801561198d575073ffffffffffffffffffffffffffffffffffffffff84163b155b156119dc576040517f9996b31500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff851660048201526024016104f6565b5080610452565b8051156119f35780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405180604001604052806002906020820280368337509192915050565b8260028101928215611a71579160200282015b82811115611a71578251825591602001919060010190611a56565b50611a7d929150611aaf565b5090565b8260028101928215611a71579160200282015b82811115611a71578235825591602001919060010190611a94565b5b80821115611a7d5760008155600101611ab0565b600080600060408486031215611ad957600080fd5b83359250602084013567ffffffffffffffff80821115611af857600080fd5b818601915086601f830112611b0c57600080fd5b813581811115611b1b57600080fd5b876020828501011115611b2d57600080fd5b6020830194508093505050509250925092565b600080600060608486031215611b5557600080fd5b833567ffffffffffffffff811115611b6c57600080fd5b84016101208187031215611b7f57600080fd5b95602085013595506040909401359392505050565b60008083601f840112611ba657600080fd5b50813567ffffffffffffffff811115611bbe57600080fd5b6020830191508360208260051b8501011115611bd957600080fd5b9250929050565b60008060208385031215611bf357600080fd5b823567ffffffffffffffff811115611c0a57600080fd5b611c1685828601611b94565b90969095509350505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611c4657600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405160c0810167ffffffffffffffff81118282101715611c9d57611c9d611c4b565b60405290565b600082601f830112611cb457600080fd5b813567ffffffffffffffff80821115611ccf57611ccf611c4b565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715611d1557611d15611c4b565b81604052838152866020858801011115611d2e57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215611d6157600080fd5b611d6a83611c22565b9150602083013567ffffffffffffffff811115611d8657600080fd5b611d9285828601611ca3565b9150509250929050565b803560ff81168114611c4657600080fd5b60008060408385031215611dc057600080fd5b611dc983611d9c565b946020939093013593505050565b60408082528351828201819052600091906020906060850190828801855b82811015611e335781518460005b6002811015611e2057825182529187019190870190600101611e03565b5050509285019290840190600101611df5565b50505084810382860152855180825290820192508582019060005b81811015611e6d57825160ff1685529383019391830191600101611e4e565b5092979650505050505050565b60005b83811015611e95578181015183820152602001611e7d565b50506000910152565b60008151808452611eb6816020860160208601611e7a565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006104526020830184611e9e565b60008060608385031215611f0e57600080fd5b611f1783611d9c565b9150602084603f850112611f2a57600080fd5b6040516040810181811067ffffffffffffffff82111715611f4d57611f4d611c4b565b604052806060860187811115611f6257600080fd5b602087015b81811015611f7e5780358352918401918401611f67565b50505080925050509250929050565b60008060008060808587031215611fa357600080fd5b611fac85611d9c565b93506060850186811115611fbf57600080fd5b6020860193503567ffffffffffffffff811115611fdb57600080fd5b611fe787828801611b94565b95989497509550505050565b60006020828403121561200557600080fd5b61045282611d9c565b60006020828403121561202057600080fd5b813567ffffffffffffffff8082111561203857600080fd5b9083019060c0828603121561204c57600080fd5b612054611c7a565b82358281111561206357600080fd5b61206f87828601611ca3565b82525060208301358281111561208457600080fd5b61209087828601611ca3565b60208301525060408301356040820152606083013560608201526080830135608082015260a083013560a082015280935050505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa183360301811261212d57600080fd5b9190910192915050565b60006020828403121561214957600080fd5b61045282611c22565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261218757600080fd5b83018035915067ffffffffffffffff8211156121a257600080fd5b602001915036819003821315611bd957600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612217576122176121b7565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b600060ff821660ff8103612263576122636121b7565b60010192915050565b60ff831681526060810160208083018460005b600281101561229c5781518352918301919083019060010161227f565b505050509392505050565b60ff831681526060810160408360208401379392505050565b600060ff8216806122d3576122d36121b7565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0192915050565b60808152600061230e6080830188611e9e565b82810360208401528581528587602083013760006020878301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8801168201019150508360408301528260608301529695505050505050565b60006020828403121561237f57600080fd5b8151801515811461045257600080fd5b6000808585111561239f57600080fd5b838611156123ac57600080fd5b5050820193919092039150565b7fffffffffffff000000000000000000000000000000000000000000000000000081358181169160068510156123f95780818660060360031b1b83161692505b505092915050565b6000825161212d818460208701611e7a565b60006020828403121561242557600080fd5b505191905056fea264697066735822122014c40ddac011b61bea93373f40e889fa84eb78c7f51961e9b8bf1daf9fc5881264736f6c634300081700330000000000000000000000000000000071727de22e5e9d8baf0edac6f37da032000000000000000000000000daab03239f5cc5b3452837e557295f790d9ab319", + "nonce": "0x3", + "accessList": [] + }, + "additionalContracts": [ + { + "transactionType": "CREATE", + "address": "0xeAF864Fb577F48c196396927F0055f205a679a8A", + "initCode": "0x61010060405230608052601460e0523480156200001b57600080fd5b5060405162002639380380620026398339810160408190526200003e916200012d565b6001600160a01b0380831660a052811660c0526200005b62000063565b50506200016c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000b45760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001145780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6001600160a01b03811681146200011457600080fd5b600080604083850312156200014157600080fd5b82516200014e8162000117565b6020840151909250620001618162000117565b809150509250929050565b60805160a05160c05160e051612462620001d76000396000818161035501526109da01526000818161019901526110a3015260008181610301015281816104730152818161052c0152610cf501526000818161146801528181611491015261171001526124626000f3fe6080604052600436106100f75760003560e01c80639875b4db1161008a578063bafa710811610059578063bafa710814610343578063c73ba52614610377578063c90e3c5b14610397578063e97efb97146103b757600080fd5b80639875b4db1461026d578063ad3cb1cc14610299578063b0d691fe146102ef578063b3033ef21461032357600080fd5b80634f1ef286116100c65780634f1ef2861461020257806352d1902d14610215578063595f20d61461022a57806388b257091461024a57600080fd5b80631626ba7e1461010357806319822f7c146101595780632b7ac3f31461018757806334fcd5be146101e057600080fd5b366100fe57005b600080fd5b34801561010f57600080fd5b5061012361011e366004611ac4565b6103d5565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020015b60405180910390f35b34801561016557600080fd5b50610179610174366004611b40565b610459565b604051908152602001610150565b34801561019357600080fd5b506101bb7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610150565b3480156101ec57600080fd5b506102006101fb366004611be0565b610514565b005b610200610210366004611d4e565b610694565b34801561022157600080fd5b506101796106b3565b34801561023657600080fd5b50610179610245366004611dad565b6106e2565b34801561025657600080fd5b5061025f610707565b604051610150929190611dd7565b34801561027957600080fd5b506000546102879060ff1681565b60405160ff9091168152602001610150565b3480156102a557600080fd5b506102e26040518060400160405280600581526020017f352e302e3000000000000000000000000000000000000000000000000000000081525081565b6040516101509190611ee8565b3480156102fb57600080fd5b506101bb7f000000000000000000000000000000000000000000000000000000000000000081565b34801561032f57600080fd5b5061020061033e366004611efb565b610888565b34801561034f57600080fd5b506102877f000000000000000000000000000000000000000000000000000000000000000081565b34801561038357600080fd5b50610200610392366004611f8d565b610b02565b3480156103a357600080fd5b506102006103b2366004611ff3565b610df8565b3480156103c357600080fd5b506102006103d236600461200e565b50565b6000610403846040516020016103ed91815260200190565b604051602081830303815290604052848461102f565b1561042f57507f1626ba7e00000000000000000000000000000000000000000000000000000000610452565b507fffffffff000000000000000000000000000000000000000000000000000000005b9392505050565b60003373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146104ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6f6e6c7920656e74727920706f696e740000000000000000000000000000000060448201526064015b60405180910390fd5b6105098484611141565b90506104528261135c565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146105b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6f6e6c7920656e74727920706f696e740000000000000000000000000000000060448201526064016104f6565b60005b8181101561068f576106878383838181106105d3576105d36120ca565b90506020028101906105e591906120f9565b6105f3906020810190612137565b848484818110610605576106056120ca565b905060200281019061061791906120f9565b6020013585858581811061062d5761062d6120ca565b905060200281019061063f91906120f9565b61064d906040810190612152565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506113d392505050565b6001016105b6565b505050565b61069c611450565b6106a582611556565b6106af82826115bf565b5050565b60006106bd6116f8565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b600160205281600052604060002081600281106106fe57600080fd5b01549150829050565b600054606090819060ff1667ffffffffffffffff81111561072a5761072a611c4b565b60405190808252806020026020018201604052801561076357816020015b610750611a25565b8152602001906001900390816107485790505b5060005490925060ff1667ffffffffffffffff81111561078557610785611c4b565b6040519080825280602002602001820160405280156107ae578160200160208202803683370190505b5090506000805b61010081101561086e5760ff81166000908152600160205260409020548190156108655760ff8116600090815260016020526040908190208151808301928390529160029082845b8154815260200190600101908083116107fd575050505050858481518110610827576108276120ca565b602002602001018190525080848481518110610845576108456120ca565b60ff9092166020928302919091019091015282610861816121e6565b9350505b506001016107b5565b5060005460ff1681146108835761088361221e565b509091565b3330146108f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6f6e6c792073656c66000000000000000000000000000000000000000000000060448201526064016104f6565b60ff82166000908152600160205260409020541561096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6b657920616c726561647920657869737473000000000000000000000000000060448201526064016104f6565b80516109d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f6e6577206b65792063616e6e6f7420626520300000000000000000000000000060448201526064016104f6565b60005460ff7f00000000000000000000000000000000000000000000000000000000000000008116911610610a64576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6d6178206b65797320726561636865640000000000000000000000000000000060448201526064016104f6565b60ff82166000908152600160205260409020610a8290826002611a43565b506000805460ff169080610a958361224d565b91906101000a81548160ff021916908360ff160217905550503073ffffffffffffffffffffffffffffffffffffffff167f1d84cb7fa5da6303adc54870a915cbf91d2cf642fcc5ce470b79b774672018768383604051610af692919061226c565b60405180910390a25050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff16600081158015610b4d5750825b905060008267ffffffffffffffff166001148015610b6a5750303b155b905081158015610b78575080155b15610baf576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b84547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001660011785558315610c105784547fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff16680100000000000000001785555b60ff89166000908152600160205260409020610c2e90896002611a81565b50600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011781555b86811015610cda57610cd2888883818110610c7857610c786120ca565b9050602002810190610c8a91906120f9565b610c98906020810190612137565b898984818110610caa57610caa6120ca565b9050602002810190610cbc91906120f9565b602001358a8a8581811061062d5761062d6120ca565b600101610c5b565b5060405173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016907f9b44a2c7f9f0b5aa4e7da60d8a2325796c57f93a45559d66515743ffbd8a610390600090a23073ffffffffffffffffffffffffffffffffffffffff167f1d84cb7fa5da6303adc54870a915cbf91d2cf642fcc5ce470b79b774672018768a8a604051610d849291906122a7565b60405180910390a28315610ded5784547fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b333014610e61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6f6e6c792073656c66000000000000000000000000000000000000000000000060448201526064016104f6565b60ff8116600090815260016020526040902054610eda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6b657920646f6573206e6f74206578697374000000000000000000000000000060448201526064016104f6565b600054600160ff90911611610f4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f63616e6e6f742072656d6f7665206f6e6c79207369676e696e67206b6579000060448201526064016104f6565b60ff81166000908152600160205260408082208151808301928390529160029082845b815481526020019060010190808311610f6e5750506040805180820182526000808252602080830182905260ff8a1682526001905291909120949550610fbb949350915060029050611a43565b506000805460ff169080610fce836122c0565b91906101000a81548160ff021916908360ff160217905550503073ffffffffffffffffffffffffffffffffffffffff167fb1c618be842f3c0e753cfc3569dd3eafd446296dbe6db8af1d8cc92c7d0ba0538383604051610af692919061226c565b6000600182101561104257506000610452565b600083836000818110611057576110576120ca565b919091013560f81c600081815260016020819052604091829020805491015491517fdcae042c0000000000000000000000000000000000000000000000000000000081529294509250907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063dcae042c906110f5908a908a908a90889088906004016122fb565b602060405180830381865afa158015611112573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611136919061236d565b979650505050505050565b604080516060818101835260008083526020830181905292820183905290369083906000611173610100890189612152565b905090508060000361118d57600195505050505050611356565b600061119d6101008a018a612152565b60008181106111ae576111ae6120ca565b919091013560f81c91505060018190036112d35760078210156111da5760019650505050505050611356565b60006111ea6101008b018b612152565b6111f99160079160019161238f565b611202916123b9565b60d01c90506112156101008b018b612152565b61122391600790829061238f565b6040517fff0000000000000000000000000000000000000000000000000000000000000060f886901b1660208201527fffffffffffff000000000000000000000000000000000000000000000000000060d085901b166021820152602781018c90529197509550604701604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291815265ffffffffffff9092169185019190915295506112e2565b60019650505050505050611356565b6112ed86868661102f565b1561134b5761133e83600060d0826020015165ffffffffffff16901b60a0836040015165ffffffffffff16901b836000015173ffffffffffffffffffffffffffffffffffffffff1617179050919050565b9650505050505050611356565b600196505050505050505b92915050565b80156103d25760405160009033907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90849084818181858888f193505050503d80600081146113c7576040519150601f19603f3d011682016040523d82523d6000602084013e6113cc565b606091505b5050505050565b6000808473ffffffffffffffffffffffffffffffffffffffff1684846040516113fc9190612401565b60006040518083038185875af1925050503d8060008114611439576040519150601f19603f3d011682016040523d82523d6000602084013e61143e565b606091505b5091509150816113cc57805160208201fd5b3073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016148061151d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166115047f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614155b15611554576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b3330146103d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6f6e6c792073656c66000000000000000000000000000000000000000000000060448201526064016104f6565b8173ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611644575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261164191810190612413565b60015b611692576040517f4c9c8ce300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831660048201526024016104f6565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc81146116ee576040517faa1d49a4000000000000000000000000000000000000000000000000000000008152600481018290526024016104f6565b61068f8383611767565b3073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614611554576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611770826117ca565b60405173ffffffffffffffffffffffffffffffffffffffff8316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156117c25761068f8282611899565b6106af61191c565b8073ffffffffffffffffffffffffffffffffffffffff163b600003611833576040517f4c9c8ce300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff821660048201526024016104f6565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60606000808473ffffffffffffffffffffffffffffffffffffffff16846040516118c39190612401565b600060405180830381855af49150503d80600081146118fe576040519150601f19603f3d011682016040523d82523d6000602084013e611903565b606091505b5091509150611913858383611954565b95945050505050565b3415611554576040517fb398979f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60608261196957611964826119e3565b610452565b815115801561198d575073ffffffffffffffffffffffffffffffffffffffff84163b155b156119dc576040517f9996b31500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff851660048201526024016104f6565b5080610452565b8051156119f35780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405180604001604052806002906020820280368337509192915050565b8260028101928215611a71579160200282015b82811115611a71578251825591602001919060010190611a56565b50611a7d929150611aaf565b5090565b8260028101928215611a71579160200282015b82811115611a71578235825591602001919060010190611a94565b5b80821115611a7d5760008155600101611ab0565b600080600060408486031215611ad957600080fd5b83359250602084013567ffffffffffffffff80821115611af857600080fd5b818601915086601f830112611b0c57600080fd5b813581811115611b1b57600080fd5b876020828501011115611b2d57600080fd5b6020830194508093505050509250925092565b600080600060608486031215611b5557600080fd5b833567ffffffffffffffff811115611b6c57600080fd5b84016101208187031215611b7f57600080fd5b95602085013595506040909401359392505050565b60008083601f840112611ba657600080fd5b50813567ffffffffffffffff811115611bbe57600080fd5b6020830191508360208260051b8501011115611bd957600080fd5b9250929050565b60008060208385031215611bf357600080fd5b823567ffffffffffffffff811115611c0a57600080fd5b611c1685828601611b94565b90969095509350505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611c4657600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405160c0810167ffffffffffffffff81118282101715611c9d57611c9d611c4b565b60405290565b600082601f830112611cb457600080fd5b813567ffffffffffffffff80821115611ccf57611ccf611c4b565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715611d1557611d15611c4b565b81604052838152866020858801011115611d2e57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215611d6157600080fd5b611d6a83611c22565b9150602083013567ffffffffffffffff811115611d8657600080fd5b611d9285828601611ca3565b9150509250929050565b803560ff81168114611c4657600080fd5b60008060408385031215611dc057600080fd5b611dc983611d9c565b946020939093013593505050565b60408082528351828201819052600091906020906060850190828801855b82811015611e335781518460005b6002811015611e2057825182529187019190870190600101611e03565b5050509285019290840190600101611df5565b50505084810382860152855180825290820192508582019060005b81811015611e6d57825160ff1685529383019391830191600101611e4e565b5092979650505050505050565b60005b83811015611e95578181015183820152602001611e7d565b50506000910152565b60008151808452611eb6816020860160208601611e7a565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006104526020830184611e9e565b60008060608385031215611f0e57600080fd5b611f1783611d9c565b9150602084603f850112611f2a57600080fd5b6040516040810181811067ffffffffffffffff82111715611f4d57611f4d611c4b565b604052806060860187811115611f6257600080fd5b602087015b81811015611f7e5780358352918401918401611f67565b50505080925050509250929050565b60008060008060808587031215611fa357600080fd5b611fac85611d9c565b93506060850186811115611fbf57600080fd5b6020860193503567ffffffffffffffff811115611fdb57600080fd5b611fe787828801611b94565b95989497509550505050565b60006020828403121561200557600080fd5b61045282611d9c565b60006020828403121561202057600080fd5b813567ffffffffffffffff8082111561203857600080fd5b9083019060c0828603121561204c57600080fd5b612054611c7a565b82358281111561206357600080fd5b61206f87828601611ca3565b82525060208301358281111561208457600080fd5b61209087828601611ca3565b60208301525060408301356040820152606083013560608201526080830135608082015260a083013560a082015280935050505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa183360301811261212d57600080fd5b9190910192915050565b60006020828403121561214957600080fd5b61045282611c22565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261218757600080fd5b83018035915067ffffffffffffffff8211156121a257600080fd5b602001915036819003821315611bd957600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612217576122176121b7565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b600060ff821660ff8103612263576122636121b7565b60010192915050565b60ff831681526060810160208083018460005b600281101561229c5781518352918301919083019060010161227f565b505050509392505050565b60ff831681526060810160408360208401379392505050565b600060ff8216806122d3576122d36121b7565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0192915050565b60808152600061230e6080830188611e9e565b82810360208401528581528587602083013760006020878301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8801168201019150508360408301528260608301529695505050505050565b60006020828403121561237f57600080fd5b8151801515811461045257600080fd5b6000808585111561239f57600080fd5b838611156123ac57600080fd5b5050820193919092039150565b7fffffffffffff000000000000000000000000000000000000000000000000000081358181169160068510156123f95780818660060360031b1b83161692505b505092915050565b6000825161212d818460208701611e7a565b60006020828403121561242557600080fd5b505191905056fea264697066735822122014c40ddac011b61bea93373f40e889fa84eb78c7f51961e9b8bf1daf9fc5881264736f6c634300081700330000000000000000000000000000000071727de22e5e9d8baf0edac6f37da032000000000000000000000000daab03239f5cc5b3452837e557295f790d9ab319" + } + ], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x4d59b4f721cd85bd07b3d01a46bf4bdb80bd52d2a7d9de640daccbba449f21bb", + "transactionIndex": "0x1", + "blockHash": "0x6a5e62dd16e4bb872235869f48dc1141477595cf9d94ed98266da3f275f74c2b", + "blockNumber": "0x660f91", + "from": "0x647eb43401e13e995D89Cf26cD87e68890EE3f89", + "to": "0x4e59b44847b379578588920cA78FbF26c0B4956C", + "cumulativeGasUsed": "0x2c2eb3", + "gasUsed": "0x2b8368", + "contractAddress": null, + "logs": [ + { + "address": "0xeAF864Fb577F48c196396927F0055f205a679a8A", + "topics": [ + "0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2" + ], + "data": "0x000000000000000000000000000000000000000000000000ffffffffffffffff", + "blockHash": "0x6a5e62dd16e4bb872235869f48dc1141477595cf9d94ed98266da3f275f74c2b", + "blockNumber": "0x660f91", + "transactionHash": "0x4d59b4f721cd85bd07b3d01a46bf4bdb80bd52d2a7d9de640daccbba449f21bb", + "transactionIndex": "0x1", + "logIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000080000000000200000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xb45fdc2e" + } + ], + "libraries": [], + "pending": [], + "returns": {}, + "timestamp": 1709145605, + "chain": 84532, + "multi": false, + "commit": "277f44c9" +} \ No newline at end of file diff --git a/packages/contracts/broadcast/DeploySendVerifier.s.sol/84532/run-latest.json b/packages/contracts/broadcast/DeploySendVerifier.s.sol/84532/run-latest.json new file mode 100644 index 000000000..e499e0205 --- /dev/null +++ b/packages/contracts/broadcast/DeploySendVerifier.s.sol/84532/run-latest.json @@ -0,0 +1,145 @@ +{ + "transactions": [ + { + "hash": "0x161d50938d6071d5acaf20a702432eb1da49f251723b02b664ce2c1f270945e1", + "transactionType": "CREATE2", + "contractName": "DaimoVerifier", + "contractAddress": "0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0x647eb43401e13e995d89cf26cd87e68890ee3f89", + "to": "0x4e59b44847b379578588920ca78fbf26c0b4956c", + "gas": "0x21785c", + "value": "0x0", + "data": "0x000000000000000000000000000000000000000000000000000000000000000060a06040523060805234801561001457600080fd5b5061001d610022565b6100d4565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100725760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146100d15780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b608051611b7b6100fd6000396000818161061c0152818161064501526108660152611b7b6000f3fe6080604052600436106100b15760003560e01c8063715018a611610069578063ad3cb1cc1161004e578063ad3cb1cc146101cc578063dcae042c14610222578063f2fde38b1461025257600080fd5b8063715018a61461016d5780638da5cb5b1461018257600080fd5b80634f1ef2861161009a5780634f1ef286146100f857806352d1902d1461010b5780635c60da1b1461013357600080fd5b806319ab453c146100b65780633659cfe6146100d8575b600080fd5b3480156100c257600080fd5b506100d66100d13660046115d0565b610272565b005b3480156100e457600080fd5b506100d66100f33660046115d0565b6103f2565b6100d66101063660046116ee565b61040e565b34801561011757600080fd5b5061012061042d565b6040519081526020015b60405180910390f35b34801561013f57600080fd5b5061014861045c565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161012a565b34801561017957600080fd5b506100d66104a1565b34801561018e57600080fd5b507f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c1993005473ffffffffffffffffffffffffffffffffffffffff16610148565b3480156101d857600080fd5b506102156040518060400160405280600581526020017f352e302e3000000000000000000000000000000000000000000000000000000081525081565b60405161012a9190611760565b34801561022e57600080fd5b5061024261023d3660046117b1565b6104b5565b604051901515815260200161012a565b34801561025e57600080fd5b506100d661026d3660046115d0565b61050c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff166000811580156102bd5750825b905060008267ffffffffffffffff1660011480156102da5750303b155b9050811580156102e8575080155b1561031f576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b84547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000016600117855583156103805784547fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff16680100000000000000001785555b6103898661056e565b83156103ea5784547fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b61040b816040518060200160405280600081525061040e565b50565b610416610604565b61041f82610708565b6104298282610710565b5050565b600061043761084e565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b600061049c7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b905090565b6104a96108bd565b6104b3600061056e565b565b6000806104c58560018189611857565b8101906104d29190611881565b90506104ff878260000151600084602001518560400151866060015187608001518860a001518c8c61094b565b9150505b95945050505050565b6105146108bd565b73ffffffffffffffffffffffffffffffffffffffff8116610569576040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600060048201526024015b60405180910390fd5b61040b815b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080547fffffffffffffffffffffffff0000000000000000000000000000000000000000811673ffffffffffffffffffffffffffffffffffffffff848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b3073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614806106d157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166106b87f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614155b156104b3576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61040b6108bd565b8173ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015610795575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526107929181019061193d565b60015b6107e3576040517f4c9c8ce300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83166004820152602401610560565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc811461083f576040517faa1d49a400000000000000000000000000000000000000000000000000000000815260048101829052602401610560565b6108498383610b4b565b505050565b3073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146104b3576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336108fc7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c1993005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146104b3576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610560565b600060258a51108061099d575061099b8a60208151811061096e5761096e611956565b01602001517fff00000000000000000000000000000000000000000000000000000000000000168a610bae565b155b156109aa57506000610b3d565b60408051808201909152601581527f2274797065223a22776562617574686e2e67657422000000000000000000000060208201526109e9818a89610ca1565b6109f7576000915050610b3d565b6000610a028d610d82565b9050600081604051602001610a179190611985565b6040516020818303038152906040529050610a33818c8c610ca1565b610a435760009350505050610b3d565b600060028c604051610a5591906119f1565b602060405180830381855afa158015610a72573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610a95919061193d565b9050600060028f83604051602001610aae929190611a0d565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815290829052610ae6916119f1565b602060405180830381855afa158015610b03573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610b26919061193d565b9050610b35818b8b8b8b6110c8565b955050505050505b9a9950505050505050505050565b610b5482611111565b60405173ffffffffffffffffffffffffffffffffffffffff8316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115610ba65761084982826111e0565b61042961125a565b60007f010000000000000000000000000000000000000000000000000000000000000083811614610be157506000610c9b565b818015610c1057507f040000000000000000000000000000000000000000000000000000000000000083811614155b15610c1d57506000610c9b565b7f080000000000000000000000000000000000000000000000000000000000000083811614610c97577ff0000000000000000000000000000000000000000000000000000000000000007f1000000000000000000000000000000000000000000000000000000000000000841601610c9757506000610c9b565b5060015b92915050565b825182516000918591859190845b82811015610d715781610cc28289611a5e565b10610cd557600095505050505050610d7b565b83610ce08289611a5e565b81518110610cf057610cf0611956565b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916858281518110610d2f57610d2f611956565b01602001517fff000000000000000000000000000000000000000000000000000000000000001614610d6957600095505050505050610d7b565b600101610caf565b5060019450505050505b9392505050565b60606000610d8f83611292565b90506000819050600060028251118015610e0e57508160028351610db39190611a71565b81518110610dc357610dc3611956565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f3d00000000000000000000000000000000000000000000000000000000000000145b15610e1b57506002610e9a565b60018251118015610e9157508160018351610e369190611a71565b81518110610e4657610e46611956565b6020910101517fff00000000000000000000000000000000000000000000000000000000000000167f3d00000000000000000000000000000000000000000000000000000000000000145b15610e9a575060015b6000818351610ea99190611a71565b905060008167ffffffffffffffff811115610ec657610ec66115eb565b6040519080825280601f01601f191660200182016040528015610ef0576020820181803683370190505b50905060005b828110156110bd57848181518110610f1057610f10611956565b01602001517fff00000000000000000000000000000000000000000000000000000000000000167f2b0000000000000000000000000000000000000000000000000000000000000003610fc4577f2d00000000000000000000000000000000000000000000000000000000000000828281518110610f9057610f90611956565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506110b5565b848181518110610fd657610fd6611956565b01602001517fff00000000000000000000000000000000000000000000000000000000000000167f2f0000000000000000000000000000000000000000000000000000000000000003611056577f5f00000000000000000000000000000000000000000000000000000000000000828281518110610f9057610f90611956565b84818151811061106857611068611956565b602001015160f81c60f81b82828151811061108557611085611956565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505b600101610ef6565b509695505050505050565b60007f7fffffff800000007fffffffffffffffde737d56d38bcf4279dce5617e3192a88411156110fa57506000610503565b61110786868686866113e5565b9695505050505050565b8073ffffffffffffffffffffffffffffffffffffffff163b60000361117a576040517f4c9c8ce300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82166004820152602401610560565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60606000808473ffffffffffffffffffffffffffffffffffffffff168460405161120a91906119f1565b600060405180830381855af49150503d8060008114611245576040519150601f19603f3d011682016040523d82523d6000602084013e61124a565b606091505b50915091506105038583836114d6565b34156104b3576040517fb398979f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606081516000036112b157505060408051602081019091526000815290565b6000604051806060016040528060408152602001611b0660409139905060006003845160026112e09190611a5e565b6112ea9190611a84565b6112f5906004611abf565b67ffffffffffffffff81111561130d5761130d6115eb565b6040519080825280601f01601f191660200182016040528015611337576020820181803683370190505b509050600182016020820185865187015b808210156113a3576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250611348565b50506003865106600181146113bf57600281146113d2576113da565b603d6001830353603d60028303536113da565b603d60018303535b509195945050505050565b6040805160208101879052908101859052606081018490526080810183905260a08101829052600090819060c001604051602081830303815290604052905060008073c2b78104907f722dabac4c69f826a522b2754de473ffffffffffffffffffffffffffffffffffffffff168360405161146091906119f1565b600060405180830381855afa9150503d806000811461149b576040519150601f19603f3d011682016040523d82523d6000602084013e6114a0565b606091505b5091509150816114b2576114b2611ad6565b808060200190518101906114c6919061193d565b6001149998505050505050505050565b6060826114eb576114e682611565565b610d7b565b815115801561150f575073ffffffffffffffffffffffffffffffffffffffff84163b155b1561155e576040517f9996b31500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602401610560565b5080610d7b565b8051156115755780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b803573ffffffffffffffffffffffffffffffffffffffff811681146115cb57600080fd5b919050565b6000602082840312156115e257600080fd5b610d7b826115a7565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405160c0810167ffffffffffffffff8111828210171561163d5761163d6115eb565b60405290565b600082601f83011261165457600080fd5b813567ffffffffffffffff8082111561166f5761166f6115eb565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156116b5576116b56115eb565b816040528381528660208588010111156116ce57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806040838503121561170157600080fd5b61170a836115a7565b9150602083013567ffffffffffffffff81111561172657600080fd5b61173285828601611643565b9150509250929050565b60005b8381101561175757818101518382015260200161173f565b50506000910152565b602081526000825180602084015261177f81604085016020870161173c565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6000806000806000608086880312156117c957600080fd5b853567ffffffffffffffff808211156117e157600080fd5b6117ed89838a01611643565b9650602088013591508082111561180357600080fd5b818801915088601f83011261181757600080fd5b81358181111561182657600080fd5b89602082850101111561183857600080fd5b9699602092909201985095966040810135965060600135945092505050565b6000808585111561186757600080fd5b8386111561187457600080fd5b5050820193919092039150565b60006020828403121561189357600080fd5b813567ffffffffffffffff808211156118ab57600080fd5b9083019060c082860312156118bf57600080fd5b6118c761161a565b8235828111156118d657600080fd5b6118e287828601611643565b8252506020830135828111156118f757600080fd5b61190387828601611643565b60208301525060408301356040820152606083013560608201526080830135608082015260a083013560a082015280935050505092915050565b60006020828403121561194f57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f226368616c6c656e6765223a22000000000000000000000000000000000000008152600082516119bd81600d85016020870161173c565b7f2200000000000000000000000000000000000000000000000000000000000000600d939091019283015250600e01919050565b60008251611a0381846020870161173c565b9190910192915050565b60008351611a1f81846020880161173c565b9190910191825250602001919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610c9b57610c9b611a2f565b81810381811115610c9b57610c9b611a2f565b600082611aba577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8082028115828204841417610c9b57610c9b611a2f565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220255203f860219edee4fa4c992b3263ee4688484c8a4ed7d60da7a485e4fb59e664736f6c63430008170033", + "nonce": "0x1", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x980f1106d18e3edcb586279f61fde1c29ce2d4d8af1afdf2b287c419c759d0a6", + "transactionType": "CREATE2", + "contractName": "DaimoVerifierProxy", + "contractAddress": "0xdAAb03239f5CC5b3452837E557295F790D9ab319", + "function": null, + "arguments": [ + "0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F", + "0x19ab453c000000000000000000000000647eb43401e13e995d89cf26cd87e68890ee3f89" + ], + "transaction": { + "type": "0x02", + "from": "0x647eb43401e13e995d89cf26cd87e68890ee3f89", + "to": "0x4e59b44847b379578588920ca78fbf26c0b4956c", + "gas": "0x3ded2", + "value": "0x0", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000608060405234801561001057600080fd5b5060405161042838038061042883398101604081905261002f91610279565b818161003b8282610044565b50505050610363565b61004d826100a3565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561009757610092828261011f565b505050565b61009f610196565b5050565b806001600160a01b03163b6000036100de57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b03168460405161013c9190610347565b600060405180830381855af49150503d8060008114610177576040519150601f19603f3d011682016040523d82523d6000602084013e61017c565b606091505b50909250905061018d8583836101b7565b95945050505050565b34156101b55760405163b398979f60e01b815260040160405180910390fd5b565b6060826101cc576101c782610216565b61020f565b81511580156101e357506001600160a01b0384163b155b1561020c57604051639996b31560e01b81526001600160a01b03851660048201526024016100d5565b50805b9392505050565b8051156102265780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b634e487b7160e01b600052604160045260246000fd5b60005b83811015610270578181015183820152602001610258565b50506000910152565b6000806040838503121561028c57600080fd5b82516001600160a01b03811681146102a357600080fd5b60208401519092506001600160401b03808211156102c057600080fd5b818501915085601f8301126102d457600080fd5b8151818111156102e6576102e661023f565b604051601f8201601f19908116603f0116810190838211818310171561030e5761030e61023f565b8160405282815288602084870101111561032757600080fd5b610338836020830160208801610255565b80955050505050509250929050565b60008251610359818460208701610255565b9190910192915050565b60b7806103716000396000f3fe6080604052600a600c565b005b60186014601a565b605e565b565b600060597f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b905090565b3660008037600080366000845af43d6000803e808015607c573d6000f35b3d6000fdfea2646970667358221220e5ecbb32f425bcb580d9711da6fc1c48585e7a2fde036f2522a4c79bede8890d64736f6c634300081700330000000000000000000000004feea13233e0ceb7b5f872afbdda57f463bfd88f0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002419ab453c000000000000000000000000647eb43401e13e995d89cf26cd87e68890ee3f8900000000000000000000000000000000000000000000000000000000", + "nonce": "0x2", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x161d50938d6071d5acaf20a702432eb1da49f251723b02b664ce2c1f270945e1", + "transactionIndex": "0x1", + "blockHash": "0x3738345ca185a30172b0f5a39c8734050442c0d812ca7eb88b930f6b3e031a5f", + "blockNumber": "0x660f32", + "from": "0x647eb43401e13e995D89Cf26cD87e68890EE3f89", + "to": "0x4e59b44847b379578588920cA78FbF26c0B4956C", + "cumulativeGasUsed": "0x18e86a", + "gasUsed": "0x183d1f", + "contractAddress": null, + "logs": [ + { + "address": "0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F", + "topics": [ + "0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2" + ], + "data": "0x000000000000000000000000000000000000000000000000ffffffffffffffff", + "blockHash": "0x3738345ca185a30172b0f5a39c8734050442c0d812ca7eb88b930f6b3e031a5f", + "blockNumber": "0x660f32", + "transactionHash": "0x161d50938d6071d5acaf20a702432eb1da49f251723b02b664ce2c1f270945e1", + "transactionIndex": "0x1", + "logIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xb4f7f977" + }, + { + "transactionHash": "0x980f1106d18e3edcb586279f61fde1c29ce2d4d8af1afdf2b287c419c759d0a6", + "transactionIndex": "0x2", + "blockHash": "0x3738345ca185a30172b0f5a39c8734050442c0d812ca7eb88b930f6b3e031a5f", + "blockNumber": "0x660f32", + "from": "0x647eb43401e13e995D89Cf26cD87e68890EE3f89", + "to": "0x4e59b44847b379578588920cA78FbF26c0B4956C", + "cumulativeGasUsed": "0x1bb60f", + "gasUsed": "0x2cda5", + "contractAddress": null, + "logs": [ + { + "address": "0xdAAb03239f5CC5b3452837E557295F790D9ab319", + "topics": [ + "0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b", + "0x0000000000000000000000004feea13233e0ceb7b5f872afbdda57f463bfd88f" + ], + "data": "0x", + "blockHash": "0x3738345ca185a30172b0f5a39c8734050442c0d812ca7eb88b930f6b3e031a5f", + "blockNumber": "0x660f32", + "transactionHash": "0x980f1106d18e3edcb586279f61fde1c29ce2d4d8af1afdf2b287c419c759d0a6", + "transactionIndex": "0x2", + "logIndex": "0x1", + "removed": false + }, + { + "address": "0xdAAb03239f5CC5b3452837E557295F790D9ab319", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000647eb43401e13e995d89cf26cd87e68890ee3f89" + ], + "data": "0x", + "blockHash": "0x3738345ca185a30172b0f5a39c8734050442c0d812ca7eb88b930f6b3e031a5f", + "blockNumber": "0x660f32", + "transactionHash": "0x980f1106d18e3edcb586279f61fde1c29ce2d4d8af1afdf2b287c419c759d0a6", + "transactionIndex": "0x2", + "logIndex": "0x2", + "removed": false + }, + { + "address": "0xdAAb03239f5CC5b3452837E557295F790D9ab319", + "topics": [ + "0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000000000001", + "blockHash": "0x3738345ca185a30172b0f5a39c8734050442c0d812ca7eb88b930f6b3e031a5f", + "blockNumber": "0x660f32", + "transactionHash": "0x980f1106d18e3edcb586279f61fde1c29ce2d4d8af1afdf2b287c419c759d0a6", + "transactionIndex": "0x2", + "logIndex": "0x3", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000008400000020000000000800000000000000000000000000000200000000000000000000000000000000000000000000000000000008000000000000000000002000001000000000000000000000000000000000000060000000000000000000800000000000000000000000000000000400000000000000000000800000000000000000000000080000000000000000000000000000000000000000000000000000000000000000020001000000000000000000024000000000000000000000000000000000004000000000000000020000000000000000000000000000000000000000000008000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xb4f7f977" + } + ], + "libraries": [], + "pending": [], + "returns": {}, + "timestamp": 1709145416, + "chain": 84532, + "multi": false, + "commit": "1b588420" +} \ No newline at end of file diff --git a/packages/contracts/foundry.toml b/packages/contracts/foundry.toml index da8f661ab..c9b108948 100644 --- a/packages/contracts/foundry.toml +++ b/packages/contracts/foundry.toml @@ -23,8 +23,9 @@ fork_block_number = 11005692 # See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options [rpc_endpoints] -mainnet = "${MAINNET_RPC_URL}" -base = "${BASE_RPC_URL}" +mainnet = "${FOUNDRY_MAINNET_RPC_URL}" +base = "${FOUNDRY_BASE_RPC_URL}" +base-sepolia = "${FOUNDRY_BASE_SEPOLIA_RPC_URL}" [etherscan] # mainnet = { key = "${ETHERSCAN_API_KEY}" } diff --git a/packages/wagmi/src/generated.ts b/packages/wagmi/src/generated.ts index 910e354c7..3647ac379 100644 --- a/packages/wagmi/src/generated.ts +++ b/packages/wagmi/src/generated.ts @@ -277,7 +277,7 @@ export const daimoAccountAbi = [ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /** - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const daimoAccountFactoryAbi = [ { @@ -354,14 +354,15 @@ export const daimoAccountFactoryAbi = [ ] as const /** - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const daimoAccountFactoryAddress = { + 84532: '0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0', 845337: '0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0', } as const /** - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const daimoAccountFactoryConfig = { address: daimoAccountFactoryAddress, @@ -373,7 +374,7 @@ export const daimoAccountFactoryConfig = { ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /** - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const daimoVerifierAbi = [ { type: 'constructor', inputs: [], stateMutability: 'nonpayable' }, @@ -509,14 +510,15 @@ export const daimoVerifierAbi = [ ] as const /** - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const daimoVerifierAddress = { + 84532: '0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F', 845337: '0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F', } as const /** - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const daimoVerifierConfig = { address: daimoVerifierAddress, abi: daimoVerifierAbi } as const @@ -525,7 +527,7 @@ export const daimoVerifierConfig = { address: daimoVerifierAddress, abi: daimoVe ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /** - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xdAAb03239f5CC5b3452837E557295F790D9ab319) */ export const daimoVerifierProxyAbi = [ { @@ -558,14 +560,15 @@ export const daimoVerifierProxyAbi = [ ] as const /** - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xdAAb03239f5CC5b3452837E557295F790D9ab319) */ export const daimoVerifierProxyAddress = { + 84532: '0xdAAb03239f5CC5b3452837E557295F790D9ab319', 845337: '0xdAAb03239f5CC5b3452837E557295F790D9ab319', } as const /** - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xdAAb03239f5CC5b3452837E557295F790D9ab319) */ export const daimoVerifierProxyConfig = { address: daimoVerifierProxyAddress, @@ -3599,7 +3602,7 @@ export const watchDaimoAccountUpgradedEvent = /*#__PURE__*/ createWatchContractE /** * Wraps __{@link readContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const readDaimoAccountFactory = /*#__PURE__*/ createReadContract({ abi: daimoAccountFactoryAbi, @@ -3609,7 +3612,7 @@ export const readDaimoAccountFactory = /*#__PURE__*/ createReadContract({ /** * Wraps __{@link readContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ and `functionName` set to `"accountImplementation"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const readDaimoAccountFactoryAccountImplementation = /*#__PURE__*/ createReadContract({ abi: daimoAccountFactoryAbi, @@ -3620,7 +3623,7 @@ export const readDaimoAccountFactoryAccountImplementation = /*#__PURE__*/ create /** * Wraps __{@link readContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ and `functionName` set to `"entryPoint"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const readDaimoAccountFactoryEntryPoint = /*#__PURE__*/ createReadContract({ abi: daimoAccountFactoryAbi, @@ -3631,7 +3634,7 @@ export const readDaimoAccountFactoryEntryPoint = /*#__PURE__*/ createReadContrac /** * Wraps __{@link readContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ and `functionName` set to `"getAddress"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const readDaimoAccountFactoryGetAddress = /*#__PURE__*/ createReadContract({ abi: daimoAccountFactoryAbi, @@ -3642,7 +3645,7 @@ export const readDaimoAccountFactoryGetAddress = /*#__PURE__*/ createReadContrac /** * Wraps __{@link readContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ and `functionName` set to `"verifier"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const readDaimoAccountFactoryVerifier = /*#__PURE__*/ createReadContract({ abi: daimoAccountFactoryAbi, @@ -3653,7 +3656,7 @@ export const readDaimoAccountFactoryVerifier = /*#__PURE__*/ createReadContract( /** * Wraps __{@link writeContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const writeDaimoAccountFactory = /*#__PURE__*/ createWriteContract({ abi: daimoAccountFactoryAbi, @@ -3663,7 +3666,7 @@ export const writeDaimoAccountFactory = /*#__PURE__*/ createWriteContract({ /** * Wraps __{@link writeContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ and `functionName` set to `"createAccount"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const writeDaimoAccountFactoryCreateAccount = /*#__PURE__*/ createWriteContract({ abi: daimoAccountFactoryAbi, @@ -3674,7 +3677,7 @@ export const writeDaimoAccountFactoryCreateAccount = /*#__PURE__*/ createWriteCo /** * Wraps __{@link simulateContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const prepareWriteDaimoAccountFactory = /*#__PURE__*/ createSimulateContract({ abi: daimoAccountFactoryAbi, @@ -3684,7 +3687,7 @@ export const prepareWriteDaimoAccountFactory = /*#__PURE__*/ createSimulateContr /** * Wraps __{@link simulateContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ and `functionName` set to `"createAccount"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const prepareWriteDaimoAccountFactoryCreateAccount = /*#__PURE__*/ createSimulateContract({ abi: daimoAccountFactoryAbi, @@ -3695,7 +3698,7 @@ export const prepareWriteDaimoAccountFactoryCreateAccount = /*#__PURE__*/ create /** * Wraps __{@link readContract}__ with `abi` set to __{@link daimoVerifierAbi}__ * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const readDaimoVerifier = /*#__PURE__*/ createReadContract({ abi: daimoVerifierAbi, @@ -3705,7 +3708,7 @@ export const readDaimoVerifier = /*#__PURE__*/ createReadContract({ /** * Wraps __{@link readContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"UPGRADE_INTERFACE_VERSION"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const readDaimoVerifierUpgradeInterfaceVersion = /*#__PURE__*/ createReadContract({ abi: daimoVerifierAbi, @@ -3716,7 +3719,7 @@ export const readDaimoVerifierUpgradeInterfaceVersion = /*#__PURE__*/ createRead /** * Wraps __{@link readContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"implementation"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const readDaimoVerifierImplementation = /*#__PURE__*/ createReadContract({ abi: daimoVerifierAbi, @@ -3727,7 +3730,7 @@ export const readDaimoVerifierImplementation = /*#__PURE__*/ createReadContract( /** * Wraps __{@link readContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"owner"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const readDaimoVerifierOwner = /*#__PURE__*/ createReadContract({ abi: daimoVerifierAbi, @@ -3738,7 +3741,7 @@ export const readDaimoVerifierOwner = /*#__PURE__*/ createReadContract({ /** * Wraps __{@link readContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"proxiableUUID"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const readDaimoVerifierProxiableUuid = /*#__PURE__*/ createReadContract({ abi: daimoVerifierAbi, @@ -3749,7 +3752,7 @@ export const readDaimoVerifierProxiableUuid = /*#__PURE__*/ createReadContract({ /** * Wraps __{@link readContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"verifySignature"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const readDaimoVerifierVerifySignature = /*#__PURE__*/ createReadContract({ abi: daimoVerifierAbi, @@ -3760,7 +3763,7 @@ export const readDaimoVerifierVerifySignature = /*#__PURE__*/ createReadContract /** * Wraps __{@link writeContract}__ with `abi` set to __{@link daimoVerifierAbi}__ * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const writeDaimoVerifier = /*#__PURE__*/ createWriteContract({ abi: daimoVerifierAbi, @@ -3770,7 +3773,7 @@ export const writeDaimoVerifier = /*#__PURE__*/ createWriteContract({ /** * Wraps __{@link writeContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"init"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const writeDaimoVerifierInit = /*#__PURE__*/ createWriteContract({ abi: daimoVerifierAbi, @@ -3781,7 +3784,7 @@ export const writeDaimoVerifierInit = /*#__PURE__*/ createWriteContract({ /** * Wraps __{@link writeContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"renounceOwnership"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const writeDaimoVerifierRenounceOwnership = /*#__PURE__*/ createWriteContract({ abi: daimoVerifierAbi, @@ -3792,7 +3795,7 @@ export const writeDaimoVerifierRenounceOwnership = /*#__PURE__*/ createWriteCont /** * Wraps __{@link writeContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"transferOwnership"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const writeDaimoVerifierTransferOwnership = /*#__PURE__*/ createWriteContract({ abi: daimoVerifierAbi, @@ -3803,7 +3806,7 @@ export const writeDaimoVerifierTransferOwnership = /*#__PURE__*/ createWriteCont /** * Wraps __{@link writeContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"upgradeTo"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const writeDaimoVerifierUpgradeTo = /*#__PURE__*/ createWriteContract({ abi: daimoVerifierAbi, @@ -3814,7 +3817,7 @@ export const writeDaimoVerifierUpgradeTo = /*#__PURE__*/ createWriteContract({ /** * Wraps __{@link writeContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"upgradeToAndCall"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const writeDaimoVerifierUpgradeToAndCall = /*#__PURE__*/ createWriteContract({ abi: daimoVerifierAbi, @@ -3825,7 +3828,7 @@ export const writeDaimoVerifierUpgradeToAndCall = /*#__PURE__*/ createWriteContr /** * Wraps __{@link simulateContract}__ with `abi` set to __{@link daimoVerifierAbi}__ * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const prepareWriteDaimoVerifier = /*#__PURE__*/ createSimulateContract({ abi: daimoVerifierAbi, @@ -3835,7 +3838,7 @@ export const prepareWriteDaimoVerifier = /*#__PURE__*/ createSimulateContract({ /** * Wraps __{@link simulateContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"init"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const prepareWriteDaimoVerifierInit = /*#__PURE__*/ createSimulateContract({ abi: daimoVerifierAbi, @@ -3846,7 +3849,7 @@ export const prepareWriteDaimoVerifierInit = /*#__PURE__*/ createSimulateContrac /** * Wraps __{@link simulateContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"renounceOwnership"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const prepareWriteDaimoVerifierRenounceOwnership = /*#__PURE__*/ createSimulateContract({ abi: daimoVerifierAbi, @@ -3857,7 +3860,7 @@ export const prepareWriteDaimoVerifierRenounceOwnership = /*#__PURE__*/ createSi /** * Wraps __{@link simulateContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"transferOwnership"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const prepareWriteDaimoVerifierTransferOwnership = /*#__PURE__*/ createSimulateContract({ abi: daimoVerifierAbi, @@ -3868,7 +3871,7 @@ export const prepareWriteDaimoVerifierTransferOwnership = /*#__PURE__*/ createSi /** * Wraps __{@link simulateContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"upgradeTo"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const prepareWriteDaimoVerifierUpgradeTo = /*#__PURE__*/ createSimulateContract({ abi: daimoVerifierAbi, @@ -3879,7 +3882,7 @@ export const prepareWriteDaimoVerifierUpgradeTo = /*#__PURE__*/ createSimulateCo /** * Wraps __{@link simulateContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"upgradeToAndCall"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const prepareWriteDaimoVerifierUpgradeToAndCall = /*#__PURE__*/ createSimulateContract({ abi: daimoVerifierAbi, @@ -3890,7 +3893,7 @@ export const prepareWriteDaimoVerifierUpgradeToAndCall = /*#__PURE__*/ createSim /** * Wraps __{@link watchContractEvent}__ with `abi` set to __{@link daimoVerifierAbi}__ * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const watchDaimoVerifierEvent = /*#__PURE__*/ createWatchContractEvent({ abi: daimoVerifierAbi, @@ -3900,7 +3903,7 @@ export const watchDaimoVerifierEvent = /*#__PURE__*/ createWatchContractEvent({ /** * Wraps __{@link watchContractEvent}__ with `abi` set to __{@link daimoVerifierAbi}__ and `eventName` set to `"Initialized"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const watchDaimoVerifierInitializedEvent = /*#__PURE__*/ createWatchContractEvent({ abi: daimoVerifierAbi, @@ -3911,7 +3914,7 @@ export const watchDaimoVerifierInitializedEvent = /*#__PURE__*/ createWatchContr /** * Wraps __{@link watchContractEvent}__ with `abi` set to __{@link daimoVerifierAbi}__ and `eventName` set to `"OwnershipTransferred"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const watchDaimoVerifierOwnershipTransferredEvent = /*#__PURE__*/ createWatchContractEvent({ abi: daimoVerifierAbi, @@ -3922,7 +3925,7 @@ export const watchDaimoVerifierOwnershipTransferredEvent = /*#__PURE__*/ createW /** * Wraps __{@link watchContractEvent}__ with `abi` set to __{@link daimoVerifierAbi}__ and `eventName` set to `"Upgraded"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const watchDaimoVerifierUpgradedEvent = /*#__PURE__*/ createWatchContractEvent({ abi: daimoVerifierAbi, @@ -3933,7 +3936,7 @@ export const watchDaimoVerifierUpgradedEvent = /*#__PURE__*/ createWatchContract /** * Wraps __{@link watchContractEvent}__ with `abi` set to __{@link daimoVerifierProxyAbi}__ * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xdAAb03239f5CC5b3452837E557295F790D9ab319) */ export const watchDaimoVerifierProxyEvent = /*#__PURE__*/ createWatchContractEvent({ abi: daimoVerifierProxyAbi, @@ -3943,7 +3946,7 @@ export const watchDaimoVerifierProxyEvent = /*#__PURE__*/ createWatchContractEve /** * Wraps __{@link watchContractEvent}__ with `abi` set to __{@link daimoVerifierProxyAbi}__ and `eventName` set to `"Upgraded"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xdAAb03239f5CC5b3452837E557295F790D9ab319) */ export const watchDaimoVerifierProxyUpgradedEvent = /*#__PURE__*/ createWatchContractEvent({ abi: daimoVerifierProxyAbi, @@ -7153,7 +7156,7 @@ export const useWatchDaimoAccountUpgradedEvent = /*#__PURE__*/ createUseWatchCon /** * Wraps __{@link useReadContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const useReadDaimoAccountFactory = /*#__PURE__*/ createUseReadContract({ abi: daimoAccountFactoryAbi, @@ -7163,7 +7166,7 @@ export const useReadDaimoAccountFactory = /*#__PURE__*/ createUseReadContract({ /** * Wraps __{@link useReadContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ and `functionName` set to `"accountImplementation"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const useReadDaimoAccountFactoryAccountImplementation = /*#__PURE__*/ createUseReadContract({ abi: daimoAccountFactoryAbi, @@ -7174,7 +7177,7 @@ export const useReadDaimoAccountFactoryAccountImplementation = /*#__PURE__*/ cre /** * Wraps __{@link useReadContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ and `functionName` set to `"entryPoint"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const useReadDaimoAccountFactoryEntryPoint = /*#__PURE__*/ createUseReadContract({ abi: daimoAccountFactoryAbi, @@ -7185,7 +7188,7 @@ export const useReadDaimoAccountFactoryEntryPoint = /*#__PURE__*/ createUseReadC /** * Wraps __{@link useReadContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ and `functionName` set to `"getAddress"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const useReadDaimoAccountFactoryGetAddress = /*#__PURE__*/ createUseReadContract({ abi: daimoAccountFactoryAbi, @@ -7196,7 +7199,7 @@ export const useReadDaimoAccountFactoryGetAddress = /*#__PURE__*/ createUseReadC /** * Wraps __{@link useReadContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ and `functionName` set to `"verifier"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const useReadDaimoAccountFactoryVerifier = /*#__PURE__*/ createUseReadContract({ abi: daimoAccountFactoryAbi, @@ -7207,7 +7210,7 @@ export const useReadDaimoAccountFactoryVerifier = /*#__PURE__*/ createUseReadCon /** * Wraps __{@link useWriteContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const useWriteDaimoAccountFactory = /*#__PURE__*/ createUseWriteContract({ abi: daimoAccountFactoryAbi, @@ -7217,7 +7220,7 @@ export const useWriteDaimoAccountFactory = /*#__PURE__*/ createUseWriteContract( /** * Wraps __{@link useWriteContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ and `functionName` set to `"createAccount"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const useWriteDaimoAccountFactoryCreateAccount = /*#__PURE__*/ createUseWriteContract({ abi: daimoAccountFactoryAbi, @@ -7228,7 +7231,7 @@ export const useWriteDaimoAccountFactoryCreateAccount = /*#__PURE__*/ createUseW /** * Wraps __{@link useSimulateContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const useSimulateDaimoAccountFactory = /*#__PURE__*/ createUseSimulateContract({ abi: daimoAccountFactoryAbi, @@ -7238,7 +7241,7 @@ export const useSimulateDaimoAccountFactory = /*#__PURE__*/ createUseSimulateCon /** * Wraps __{@link useSimulateContract}__ with `abi` set to __{@link daimoAccountFactoryAbi}__ and `functionName` set to `"createAccount"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x22125D5129b1562CE447dE9FFb5612CdE4Bd63b0) */ export const useSimulateDaimoAccountFactoryCreateAccount = /*#__PURE__*/ createUseSimulateContract({ abi: daimoAccountFactoryAbi, @@ -7249,7 +7252,7 @@ export const useSimulateDaimoAccountFactoryCreateAccount = /*#__PURE__*/ createU /** * Wraps __{@link useReadContract}__ with `abi` set to __{@link daimoVerifierAbi}__ * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useReadDaimoVerifier = /*#__PURE__*/ createUseReadContract({ abi: daimoVerifierAbi, @@ -7259,7 +7262,7 @@ export const useReadDaimoVerifier = /*#__PURE__*/ createUseReadContract({ /** * Wraps __{@link useReadContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"UPGRADE_INTERFACE_VERSION"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useReadDaimoVerifierUpgradeInterfaceVersion = /*#__PURE__*/ createUseReadContract({ abi: daimoVerifierAbi, @@ -7270,7 +7273,7 @@ export const useReadDaimoVerifierUpgradeInterfaceVersion = /*#__PURE__*/ createU /** * Wraps __{@link useReadContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"implementation"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useReadDaimoVerifierImplementation = /*#__PURE__*/ createUseReadContract({ abi: daimoVerifierAbi, @@ -7281,7 +7284,7 @@ export const useReadDaimoVerifierImplementation = /*#__PURE__*/ createUseReadCon /** * Wraps __{@link useReadContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"owner"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useReadDaimoVerifierOwner = /*#__PURE__*/ createUseReadContract({ abi: daimoVerifierAbi, @@ -7292,7 +7295,7 @@ export const useReadDaimoVerifierOwner = /*#__PURE__*/ createUseReadContract({ /** * Wraps __{@link useReadContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"proxiableUUID"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useReadDaimoVerifierProxiableUuid = /*#__PURE__*/ createUseReadContract({ abi: daimoVerifierAbi, @@ -7303,7 +7306,7 @@ export const useReadDaimoVerifierProxiableUuid = /*#__PURE__*/ createUseReadCont /** * Wraps __{@link useReadContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"verifySignature"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useReadDaimoVerifierVerifySignature = /*#__PURE__*/ createUseReadContract({ abi: daimoVerifierAbi, @@ -7314,7 +7317,7 @@ export const useReadDaimoVerifierVerifySignature = /*#__PURE__*/ createUseReadCo /** * Wraps __{@link useWriteContract}__ with `abi` set to __{@link daimoVerifierAbi}__ * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useWriteDaimoVerifier = /*#__PURE__*/ createUseWriteContract({ abi: daimoVerifierAbi, @@ -7324,7 +7327,7 @@ export const useWriteDaimoVerifier = /*#__PURE__*/ createUseWriteContract({ /** * Wraps __{@link useWriteContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"init"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useWriteDaimoVerifierInit = /*#__PURE__*/ createUseWriteContract({ abi: daimoVerifierAbi, @@ -7335,7 +7338,7 @@ export const useWriteDaimoVerifierInit = /*#__PURE__*/ createUseWriteContract({ /** * Wraps __{@link useWriteContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"renounceOwnership"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useWriteDaimoVerifierRenounceOwnership = /*#__PURE__*/ createUseWriteContract({ abi: daimoVerifierAbi, @@ -7346,7 +7349,7 @@ export const useWriteDaimoVerifierRenounceOwnership = /*#__PURE__*/ createUseWri /** * Wraps __{@link useWriteContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"transferOwnership"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useWriteDaimoVerifierTransferOwnership = /*#__PURE__*/ createUseWriteContract({ abi: daimoVerifierAbi, @@ -7357,7 +7360,7 @@ export const useWriteDaimoVerifierTransferOwnership = /*#__PURE__*/ createUseWri /** * Wraps __{@link useWriteContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"upgradeTo"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useWriteDaimoVerifierUpgradeTo = /*#__PURE__*/ createUseWriteContract({ abi: daimoVerifierAbi, @@ -7368,7 +7371,7 @@ export const useWriteDaimoVerifierUpgradeTo = /*#__PURE__*/ createUseWriteContra /** * Wraps __{@link useWriteContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"upgradeToAndCall"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useWriteDaimoVerifierUpgradeToAndCall = /*#__PURE__*/ createUseWriteContract({ abi: daimoVerifierAbi, @@ -7379,7 +7382,7 @@ export const useWriteDaimoVerifierUpgradeToAndCall = /*#__PURE__*/ createUseWrit /** * Wraps __{@link useSimulateContract}__ with `abi` set to __{@link daimoVerifierAbi}__ * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useSimulateDaimoVerifier = /*#__PURE__*/ createUseSimulateContract({ abi: daimoVerifierAbi, @@ -7389,7 +7392,7 @@ export const useSimulateDaimoVerifier = /*#__PURE__*/ createUseSimulateContract( /** * Wraps __{@link useSimulateContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"init"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useSimulateDaimoVerifierInit = /*#__PURE__*/ createUseSimulateContract({ abi: daimoVerifierAbi, @@ -7400,7 +7403,7 @@ export const useSimulateDaimoVerifierInit = /*#__PURE__*/ createUseSimulateContr /** * Wraps __{@link useSimulateContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"renounceOwnership"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useSimulateDaimoVerifierRenounceOwnership = /*#__PURE__*/ createUseSimulateContract({ abi: daimoVerifierAbi, @@ -7411,7 +7414,7 @@ export const useSimulateDaimoVerifierRenounceOwnership = /*#__PURE__*/ createUse /** * Wraps __{@link useSimulateContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"transferOwnership"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useSimulateDaimoVerifierTransferOwnership = /*#__PURE__*/ createUseSimulateContract({ abi: daimoVerifierAbi, @@ -7422,7 +7425,7 @@ export const useSimulateDaimoVerifierTransferOwnership = /*#__PURE__*/ createUse /** * Wraps __{@link useSimulateContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"upgradeTo"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useSimulateDaimoVerifierUpgradeTo = /*#__PURE__*/ createUseSimulateContract({ abi: daimoVerifierAbi, @@ -7433,7 +7436,7 @@ export const useSimulateDaimoVerifierUpgradeTo = /*#__PURE__*/ createUseSimulate /** * Wraps __{@link useSimulateContract}__ with `abi` set to __{@link daimoVerifierAbi}__ and `functionName` set to `"upgradeToAndCall"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useSimulateDaimoVerifierUpgradeToAndCall = /*#__PURE__*/ createUseSimulateContract({ abi: daimoVerifierAbi, @@ -7444,7 +7447,7 @@ export const useSimulateDaimoVerifierUpgradeToAndCall = /*#__PURE__*/ createUseS /** * Wraps __{@link useWatchContractEvent}__ with `abi` set to __{@link daimoVerifierAbi}__ * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useWatchDaimoVerifierEvent = /*#__PURE__*/ createUseWatchContractEvent({ abi: daimoVerifierAbi, @@ -7454,7 +7457,7 @@ export const useWatchDaimoVerifierEvent = /*#__PURE__*/ createUseWatchContractEv /** * Wraps __{@link useWatchContractEvent}__ with `abi` set to __{@link daimoVerifierAbi}__ and `eventName` set to `"Initialized"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useWatchDaimoVerifierInitializedEvent = /*#__PURE__*/ createUseWatchContractEvent({ abi: daimoVerifierAbi, @@ -7465,7 +7468,7 @@ export const useWatchDaimoVerifierInitializedEvent = /*#__PURE__*/ createUseWatc /** * Wraps __{@link useWatchContractEvent}__ with `abi` set to __{@link daimoVerifierAbi}__ and `eventName` set to `"OwnershipTransferred"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useWatchDaimoVerifierOwnershipTransferredEvent = /*#__PURE__*/ createUseWatchContractEvent({ @@ -7477,7 +7480,7 @@ export const useWatchDaimoVerifierOwnershipTransferredEvent = /** * Wraps __{@link useWatchContractEvent}__ with `abi` set to __{@link daimoVerifierAbi}__ and `eventName` set to `"Upgraded"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x4fEeA13233e0cEB7B5f872aFBdDA57F463bfD88F) */ export const useWatchDaimoVerifierUpgradedEvent = /*#__PURE__*/ createUseWatchContractEvent({ abi: daimoVerifierAbi, @@ -7488,7 +7491,7 @@ export const useWatchDaimoVerifierUpgradedEvent = /*#__PURE__*/ createUseWatchCo /** * Wraps __{@link useWatchContractEvent}__ with `abi` set to __{@link daimoVerifierProxyAbi}__ * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xdAAb03239f5CC5b3452837E557295F790D9ab319) */ export const useWatchDaimoVerifierProxyEvent = /*#__PURE__*/ createUseWatchContractEvent({ abi: daimoVerifierProxyAbi, @@ -7498,7 +7501,7 @@ export const useWatchDaimoVerifierProxyEvent = /*#__PURE__*/ createUseWatchContr /** * Wraps __{@link useWatchContractEvent}__ with `abi` set to __{@link daimoVerifierProxyAbi}__ and `eventName` set to `"Upgraded"` * - * + * [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xdAAb03239f5CC5b3452837E557295F790D9ab319) */ export const useWatchDaimoVerifierProxyUpgradedEvent = /*#__PURE__*/ createUseWatchContractEvent({ abi: daimoVerifierProxyAbi, From 3323bedcc2929c87171bac5124c4affd6b5f6bc3 Mon Sep 17 00:00:00 2001 From: BigBoss Date: Thu, 29 Feb 2024 22:43:27 -0600 Subject: [PATCH 024/177] add send token to send form (#143) * update dotenv-cli * app: use new sign-in url * add send token to send form * turn off distributor, commit changes * update ci --- .github/actions/install-tilt/action.yml | 8 + .github/workflows/ci.yml | 55 +- .snaplet/snaplet.d.ts | 7 +- Tiltfile | 21 +- apps/distributor/package.json | 2 +- apps/next/package.json | 2 +- apps/next/public/tamagui.css | 12352 +--------------- .../__snapshots__/screen.test.tsx.snap | 7 +- .../auth/onboarding/onboarding-form.tsx | 4 +- .../app/features/auth/onboarding/screen.tsx | 15 +- packages/app/features/profile/SendForm.tsx | 3 +- .../__snapshots__/SendDialog.test.tsx.snap | 144 + packages/app/package.json | 2 +- .../provider/auth/AuthStateChangeHandler.ts | 2 +- .../contracts/test/BaseSepoliaForkTest.sol | 2 +- packages/playwright/package.json | 8 +- packages/playwright/playwright.config.ts | 2 +- .../tests/fixtures/send-accounts/test.ts | 5 +- packages/wagmi/package.json | 2 +- supabase/package.json | 2 +- yarn.lock | 60 +- 21 files changed, 814 insertions(+), 11891 deletions(-) create mode 100644 .github/actions/install-tilt/action.yml diff --git a/.github/actions/install-tilt/action.yml b/.github/actions/install-tilt/action.yml new file mode 100644 index 000000000..d9dbe9b91 --- /dev/null +++ b/.github/actions/install-tilt/action.yml @@ -0,0 +1,8 @@ +name: "Install Tilt" +runs: + using: "composite" + steps: + - name: Install Tilt + id: tilt + shell: bash + run: curl -fsSL https://raw.githubusercontent.com/tilt-dev/tilt/master/scripts/install.sh | bash diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef1339674..a705c1bd9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,24 @@ jobs: echo github.ref=${{ github.ref }} echo github.head_ref=${{ github.head_ref }} - ci: + lint: + runs-on: ubuntu-latest + needs: [cache-deps] + env: + YARN_ENABLE_HARDENED_MODE: 0 + + steps: + - uses: actions/checkout@v4 + - name: Setup Environment + uses: ./.github/actions/setup-env + env: + YARN_ENABLE_HARDENED_MODE: 0 + SKIP_YARN_POST_INSTALL: 1 + - name: Lint + run: yarn lint + + unit-tests: + name: Unit Tests runs-on: ubuntu-latest needs: [cache-deps] env: @@ -44,7 +61,7 @@ jobs: submodules: recursive # No idea how homebrew bundle broke with tilt depending on python so installing manually - name: Install Tilt - run: curl -fsSL https://raw.githubusercontent.com/tilt-dev/tilt/master/scripts/install.sh | bash + uses: ./.github/actions/install-tilt - name: Set up Homebrew id: set-up-homebrew uses: Homebrew/actions/setup-homebrew@master @@ -68,6 +85,37 @@ jobs: - name: Snaplet Login shell: bash run: bunx snaplet auth login ${{ secrets.CI_SNAPLET_AUTH_TOKEN }} + + playwright-tests: + name: Playwright Tests + runs-on: ubuntu-latest + needs: [cache-deps] + env: + ANVIL_MAINNET_FORK_URL: ${{ secrets.CI_ANVIL_MAINNET_FORK_URL }} + ANVIL_BASE_FORK_URL: ${{ secrets.CI_ANVIL_BASE_FORK_URL }} + YARN_ENABLE_HARDENED_MODE: 0 + + steps: + - uses: actions/checkout@v4 + with: + submodules: recursive + - name: Install Tilt + uses: ./.github/actions/install-tilt + - name: Set up Homebrew + id: set-up-homebrew + uses: Homebrew/actions/setup-homebrew@master + - name: Brew Bundle + id: brew-bundle + run: | + brew bundle + brew cleanup + - name: Setup Environment + uses: ./.github/actions/setup-env + env: + YARN_ENABLE_HARDENED_MODE: 0 + - name: Snaplet Login + shell: bash + run: bunx snaplet auth login ${{ secrets.CI_SNAPLET_AUTH_TOKEN }} - name: Install Playwright Dependencies run: yarn playwright playwright install --with-deps # this is on purpose so we get github annotations @@ -85,8 +133,9 @@ jobs: curl -s http://localhost:10350 > /dev/null && break || echo "Attempt $i failed, trying again..." sleep 1 done + sleep 1 echo tilt is ready - tilt wait --timeout 60s --for=condition=Ready "uiresource/playwright:deps" + tilt wait --timeout 5m --for=condition=Ready "uiresource/playwright:deps" yarn playwright test - name: Playwright Report uses: actions/upload-artifact@v4 diff --git a/.snaplet/snaplet.d.ts b/.snaplet/snaplet.d.ts index cba86e31e..84abf72c9 100644 --- a/.snaplet/snaplet.d.ts +++ b/.snaplet/snaplet.d.ts @@ -129,13 +129,14 @@ interface Table_net_http_request_queue { timeout_milliseconds: number; } interface Table_auth_identities { - id: string; + provider_id: string; user_id: string; identity_data: Json; provider: string; last_sign_in_at: string | null; created_at: string | null; updated_at: string | null; + id: string; } interface Table_auth_instances { id: string; @@ -310,6 +311,10 @@ interface Table_auth_sessions { factor_id: string | null; aal: Enum_auth_aal_level | null; not_after: string | null; + refreshed_at: string | null; + user_agent: string | null; + ip: string | null; + tag: string | null; } interface Table_auth_sso_domains { id: string; diff --git a/Tiltfile b/Tiltfile index 6fd11346a..d0c57a61d 100644 --- a/Tiltfile +++ b/Tiltfile @@ -214,7 +214,11 @@ local_resource( ) if config.tilt_subcommand == "down": - local("yarn supabase stop --no-backup") + local(""" + yarn supabase stop --no-backup + # can be removed once supabase stop --no-backup is fixed + docker volume ls --filter label=com.supabase.cli.project=send | awk 'NR>1 {print $2}' | xargs -I {} docker volume rm {} + """) cmd_button( "supabase:db reset", @@ -475,14 +479,15 @@ local_resource( ), resource_deps = [ "yarn:install", - "anvil:mainnet", - "anvil:base", - "aa_bundler:base", "supabase", "supabase:generate", "wagmi:generate", "ui:build", - ], + ] + ([ + "anvil:mainnet", + "anvil:base", + "aa_bundler:base", + ] if not CI else []), serve_cmd = "" if CI else "yarn next-app dev", # In CI, playwright tests start the web server ) @@ -490,6 +495,7 @@ local_resource( local_resource( "distributor:web", allow_parallel = True, + auto_init = False, labels = labels, links = ["http://localhost:3050"], readiness_probe = probe( @@ -529,8 +535,6 @@ local_resource( labels = labels, resource_deps = [ "yarn:install", - "aa_bundler:base", # TODO: remove once bundler tests are moved to playwright - "anvil:send-account-fixtures", # TODO: remove once bundler tests are moved to playwright ], deps = files_matching( @@ -577,6 +581,7 @@ local_resource( "anvil:send-account-fixtures", "aa_bundler:base", "snaplet:generate", + "next:web", "supabase", ], ) @@ -628,6 +633,7 @@ local_resource( "distributor:test", "yarn workspace distributor test --run", allow_parallel = True, + auto_init = False, labels = labels, resource_deps = [ "yarn:install", @@ -675,7 +681,6 @@ local_resource( resource_deps = [ # messy but create a single resource that runs all the tests "app:test", - "lint", "webauthn-authenticator:test", "supabase:test", "contracts:test", diff --git a/apps/distributor/package.json b/apps/distributor/package.json index dc40540e2..4551ded75 100644 --- a/apps/distributor/package.json +++ b/apps/distributor/package.json @@ -34,7 +34,7 @@ "@types/supertest": "^2.0.16", "bun-types": "latest", "debug": "^4.3.4", - "dotenv-cli": "^6.0.0", + "dotenv-cli": "^7.3.0", "supertest": "^6.3.3", "ts-node": "^10.9.1", "typescript": "^5.1.3", diff --git a/apps/next/package.json b/apps/next/package.json index b9b3b2a31..881599a73 100644 --- a/apps/next/package.json +++ b/apps/next/package.json @@ -45,7 +45,7 @@ "@tamagui/next-plugin": "^1.88.8", "@types/node": "^20.11.0", "@welldone-software/why-did-you-render": "^7.0.1", - "dotenv-cli": "^6.0.0", + "dotenv-cli": "^7.3.0", "eslint-config-next": "^14.0.4" } } diff --git a/apps/next/public/tamagui.css b/apps/next/public/tamagui.css index 93db58bef..c33d654d7 100644 --- a/apps/next/public/tamagui.css +++ b/apps/next/public/tamagui.css @@ -1,11827 +1,527 @@ -._ovs-contain { - overscroll-behavior: contain; -} - -.is_Text .is_Text { - display: inline-flex; -} - -._dsp_contents { - display: contents; -} - -:root { - --color-1: hsl(206, 100%, 99.2%); - --color-2: hsl(210, 100%, 98.0%); - --color-3: hsl(209, 100%, 96.5%); - --color-4: hsl(210, 98.8%, 94.0%); - --color-5: hsl(209, 95.0%, 90.1%); - --color-6: hsl(209, 81.2%, 84.5%); - --color-7: hsl(208, 77.5%, 76.9%); - --color-8: hsl(206, 81.9%, 65.3%); - --color-9: hsl(206, 100%, 50.0%); - --color-10: hsl(208, 100%, 47.3%); - --color-11: hsl(211, 100%, 43.2%); - --color-12: hsl(211, 100%, 15.0%); - --color-13: hsl(0, 0%, 99.0%); - --color-14: hsl(0, 0%, 97.3%); - --color-15: hsl(0, 0%, 95.1%); - --color-16: hsl(0, 0%, 93.0%); - --color-17: hsl(0, 0%, 90.9%); - --color-18: hsl(0, 0%, 88.7%); - --color-19: hsl(0, 0%, 85.8%); - --color-20: hsl(0, 0%, 78.0%); - --color-21: hsl(0, 0%, 56.1%); - --color-22: hsl(0, 0%, 52.3%); - --color-23: hsl(0, 0%, 43.5%); - --color-24: hsl(0, 0%, 9.0%); - --color-25: hsl(136, 50.0%, 98.9%); - --color-26: hsl(138, 62.5%, 96.9%); - --color-27: hsl(139, 55.2%, 94.5%); - --color-28: hsl(140, 48.7%, 91.0%); - --color-29: hsl(141, 43.7%, 86.0%); - --color-30: hsl(143, 40.3%, 79.0%); - --color-31: hsl(146, 38.5%, 69.0%); - --color-32: hsl(151, 40.2%, 54.1%); - --color-33: hsl(151, 55.0%, 41.5%); - --color-34: hsl(152, 57.5%, 37.6%); - --color-35: hsl(153, 67.0%, 28.5%); - --color-36: hsl(155, 40.0%, 14.0%); - --color-37: hsl(24, 70.0%, 99.0%); - --color-38: hsl(24, 83.3%, 97.6%); - --color-39: hsl(24, 100%, 95.3%); - --color-40: hsl(25, 100%, 92.2%); - --color-41: hsl(25, 100%, 88.2%); - --color-42: hsl(25, 100%, 82.8%); - --color-43: hsl(24, 100%, 75.3%); - --color-44: hsl(24, 94.5%, 64.3%); - --color-45: hsl(24, 94.0%, 50.0%); - --color-46: hsl(24, 100%, 46.5%); - --color-47: hsl(24, 100%, 37.0%); - --color-48: hsl(15, 60.0%, 17.0%); - --color-49: hsl(322, 100%, 99.4%); - --color-50: hsl(323, 100%, 98.4%); - --color-51: hsl(323, 86.3%, 96.5%); - --color-52: hsl(323, 78.7%, 94.2%); - --color-53: hsl(323, 72.2%, 91.1%); - --color-54: hsl(323, 66.3%, 86.6%); - --color-55: hsl(323, 62.0%, 80.1%); - --color-56: hsl(323, 60.3%, 72.4%); - --color-57: hsl(322, 65.0%, 54.5%); - --color-58: hsl(322, 63.9%, 50.7%); - --color-59: hsl(322, 75.0%, 46.0%); - --color-60: hsl(320, 70.0%, 13.5%); - --color-61: hsl(280, 65.0%, 99.4%); - --color-62: hsl(276, 100%, 99.0%); - --color-63: hsl(276, 83.1%, 97.0%); - --color-64: hsl(275, 76.4%, 94.7%); - --color-65: hsl(275, 70.8%, 91.8%); - --color-66: hsl(274, 65.4%, 87.8%); - --color-67: hsl(273, 61.0%, 81.7%); - --color-68: hsl(272, 60.0%, 73.5%); - --color-69: hsl(272, 51.0%, 54.0%); - --color-70: hsl(272, 46.8%, 50.3%); - --color-71: hsl(272, 50.0%, 45.8%); - --color-72: hsl(272, 66.0%, 16.0%); - --color-73: hsl(359, 100%, 99.4%); - --color-74: hsl(359, 100%, 98.6%); - --color-75: hsl(360, 100%, 96.8%); - --color-76: hsl(360, 97.9%, 94.8%); - --color-77: hsl(360, 90.2%, 91.9%); - --color-78: hsl(360, 81.7%, 87.8%); - --color-79: hsl(359, 74.2%, 81.7%); - --color-80: hsl(359, 69.5%, 74.3%); - --color-81: hsl(358, 75.0%, 59.0%); - --color-82: hsl(358, 69.4%, 55.2%); - --color-83: hsl(358, 65.0%, 48.7%); - --color-84: hsl(354, 50.0%, 14.6%); - --color-85: hsl(60, 54.0%, 98.5%); - --color-86: hsl(52, 100%, 95.5%); - --color-87: hsl(55, 100%, 90.9%); - --color-88: hsl(54, 100%, 86.6%); - --color-89: hsl(52, 97.9%, 82.0%); - --color-90: hsl(50, 89.4%, 76.1%); - --color-91: hsl(47, 80.4%, 68.0%); - --color-92: hsl(48, 100%, 46.1%); - --color-93: hsl(53, 92.0%, 50.0%); - --color-94: hsl(50, 100%, 48.5%); - --color-95: hsl(42, 100%, 29.0%); - --color-96: hsl(40, 55.0%, 13.5%); - --color-97: hsl(50, 20.0%, 99.1%); - --color-98: hsl(47, 52.9%, 96.7%); - --color-99: hsl(46, 38.2%, 93.7%); - --color-100: hsl(44, 32.7%, 90.1%); - --color-101: hsl(43, 29.9%, 85.7%); - --color-102: hsl(41, 28.3%, 79.8%); - --color-103: hsl(39, 27.6%, 71.9%); - --color-104: hsl(36, 27.2%, 61.8%); - --color-105: hsl(36, 20.0%, 49.5%); - --color-106: hsl(36, 19.8%, 45.7%); - --color-107: hsl(36, 20.0%, 39.0%); - --color-108: hsl(36, 16.0%, 20.0%); - --color-109: hsla(125, 96%, 40%, 0.5); - --color-110: hsla(125, 96%, 40%, 0.75); - --color-111: hsla(125, 96%, 40%, 1); - --color-112: hsla(125, 96%, 42%, 1); - --color-113: hsla(125, 96%, 45%, 1); - --color-114: hsla(125, 96%, 47%, 1); - --color-115: hsla(125, 96%, 50%, 1); - --color-116: hsla(125, 96%, 52%, 1); - --color-117: hsla(125, 96%, 55%, 1); - --color-118: hsla(125, 96%, 57%, 1); - --color-119: hsla(125, 96%, 59%, 1); - --color-120: hsla(125, 96%, 62%, 1); - --color-121: hsl(212, 35.0%, 9.2%); - --color-122: hsl(216, 50.0%, 11.8%); - --color-123: hsl(214, 59.4%, 15.3%); - --color-124: hsl(214, 65.8%, 17.9%); - --color-125: hsl(213, 71.2%, 20.2%); - --color-126: hsl(212, 77.4%, 23.1%); - --color-127: hsl(211, 85.1%, 27.4%); - --color-128: hsl(211, 89.7%, 34.1%); - --color-129: hsl(206, 100%, 50.0%); - --color-130: hsl(209, 100%, 60.6%); - --color-131: hsl(210, 100%, 66.1%); - --color-132: hsl(206, 98.0%, 95.8%); - --color-133: hsl(0, 0%, 8.5%); - --color-134: hsl(0, 0%, 11.0%); - --color-135: hsl(0, 0%, 13.6%); - --color-136: hsl(0, 0%, 15.8%); - --color-137: hsl(0, 0%, 17.9%); - --color-138: hsl(0, 0%, 20.5%); - --color-139: hsl(0, 0%, 24.3%); - --color-140: hsl(0, 0%, 31.2%); - --color-141: hsl(0, 0%, 43.9%); - --color-142: hsl(0, 0%, 49.4%); - --color-143: hsl(0, 0%, 62.8%); - --color-144: hsl(0, 0%, 93.0%); - --color-145: hsl(146, 30.0%, 7.4%); - --color-146: hsl(155, 44.2%, 8.4%); - --color-147: hsl(155, 46.7%, 10.9%); - --color-148: hsl(154, 48.4%, 12.9%); - --color-149: hsl(154, 49.7%, 14.9%); - --color-150: hsl(154, 50.9%, 17.6%); - --color-151: hsl(153, 51.8%, 21.8%); - --color-152: hsl(151, 51.7%, 28.4%); - --color-153: hsl(151, 55.0%, 41.5%); - --color-154: hsl(151, 49.3%, 46.5%); - --color-155: hsl(151, 50.0%, 53.2%); - --color-156: hsl(137, 72.0%, 94.0%); - --color-157: hsl(30, 70.0%, 7.2%); - --color-158: hsl(28, 100%, 8.4%); - --color-159: hsl(26, 91.1%, 11.6%); - --color-160: hsl(25, 88.3%, 14.1%); - --color-161: hsl(24, 87.6%, 16.6%); - --color-162: hsl(24, 88.6%, 19.8%); - --color-163: hsl(24, 92.4%, 24.0%); - --color-164: hsl(25, 100%, 29.0%); - --color-165: hsl(24, 94.0%, 50.0%); - --color-166: hsl(24, 100%, 58.5%); - --color-167: hsl(24, 100%, 62.2%); - --color-168: hsl(24, 97.0%, 93.2%); - --color-169: hsl(318, 25.0%, 9.6%); - --color-170: hsl(319, 32.2%, 11.6%); - --color-171: hsl(319, 41.0%, 16.0%); - --color-172: hsl(320, 45.4%, 18.7%); - --color-173: hsl(320, 49.0%, 21.1%); - --color-174: hsl(321, 53.6%, 24.4%); - --color-175: hsl(321, 61.1%, 29.7%); - --color-176: hsl(322, 74.9%, 37.5%); - --color-177: hsl(322, 65.0%, 54.5%); - --color-178: hsl(323, 72.8%, 59.2%); - --color-179: hsl(325, 90.0%, 66.4%); - --color-180: hsl(322, 90.0%, 95.8%); - --color-181: hsl(284, 20.0%, 9.6%); - --color-182: hsl(283, 30.0%, 11.8%); - --color-183: hsl(281, 37.5%, 16.5%); - --color-184: hsl(280, 41.2%, 20.0%); - --color-185: hsl(279, 43.8%, 23.3%); - --color-186: hsl(277, 46.4%, 27.5%); - --color-187: hsl(275, 49.3%, 34.6%); - --color-188: hsl(272, 52.1%, 45.9%); - --color-189: hsl(272, 51.0%, 54.0%); - --color-190: hsl(273, 57.3%, 59.1%); - --color-191: hsl(275, 80.0%, 71.0%); - --color-192: hsl(279, 75.0%, 95.7%); - --color-193: hsl(353, 23.0%, 9.8%); - --color-194: hsl(357, 34.4%, 12.0%); - --color-195: hsl(356, 43.4%, 16.4%); - --color-196: hsl(356, 47.6%, 19.2%); - --color-197: hsl(356, 51.1%, 21.9%); - --color-198: hsl(356, 55.2%, 25.9%); - --color-199: hsl(357, 60.2%, 31.8%); - --color-200: hsl(358, 65.0%, 40.4%); - --color-201: hsl(358, 75.0%, 59.0%); - --color-202: hsl(358, 85.3%, 64.0%); - --color-203: hsl(358, 100%, 69.5%); - --color-204: hsl(351, 89.0%, 96.0%); - --color-205: hsl(45, 100%, 5.5%); - --color-206: hsl(46, 100%, 6.7%); - --color-207: hsl(45, 100%, 8.7%); - --color-208: hsl(45, 100%, 10.4%); - --color-209: hsl(47, 100%, 12.1%); - --color-210: hsl(49, 100%, 14.3%); - --color-211: hsl(49, 90.3%, 18.4%); - --color-212: hsl(50, 100%, 22.0%); - --color-213: hsl(53, 92.0%, 50.0%); - --color-214: hsl(54, 100%, 68.0%); - --color-215: hsl(48, 100%, 47.0%); - --color-216: hsl(53, 100%, 91.0%); - --color-217: hsl(44, 9.0%, 8.3%); - --color-218: hsl(43, 14.3%, 9.6%); - --color-219: hsl(42, 15.5%, 13.0%); - --color-220: hsl(41, 16.4%, 15.6%); - --color-221: hsl(41, 16.9%, 17.8%); - --color-222: hsl(40, 17.6%, 20.8%); - --color-223: hsl(38, 18.5%, 26.4%); - --color-224: hsl(36, 19.6%, 35.1%); - --color-225: hsl(36, 20.0%, 49.5%); - --color-226: hsl(36, 22.3%, 54.5%); - --color-227: hsl(35, 30.0%, 64.0%); - --color-228: hsl(49, 52.0%, 93.8%); - --color-229: hsla(125, 96%, 40%, 0.5); - --color-230: hsla(125, 96%, 40%, 0.75); - --color-231: hsla(125, 96%, 40%, 1); - --color-232: hsla(125, 96%, 42%, 1); - --color-233: hsla(125, 96%, 45%, 1); - --color-234: hsla(125, 96%, 47%, 1); - --color-235: hsla(125, 96%, 50%, 1); - --color-236: hsla(125, 96%, 52%, 1); - --color-237: hsla(125, 96%, 55%, 1); - --color-238: hsla(125, 96%, 57%, 1); - --color-239: hsla(125, 96%, 59%, 1); - --color-240: hsla(125, 96%, 62%, 1); - --color-241: #40FB50; - --color-242: #FFFFFF; - --color-243: #000000; - --color-244: #F5F6FC; - --color-245: #E8ECFB; - --color-246: #D2D9EE; - --color-247: #B8C0DC; - --color-248: #A6AFCA; - --color-249: #98A1C0; - --color-250: #888FAB; - --color-251: #7780A0; - --color-252: #6B7594; - --color-253: #5D6785; - --color-254: #505A78; - --color-255: #404A67; - --color-256: #333D59; - --color-257: #293249; - --color-258: #1B2236; - --color-259: #131A2A; - --color-260: #0E1524; - --color-261: #0D111C; - --color-262: #FFF2F7; - --color-263: #FFD9E4; - --color-264: #FBA4C0; - --color-265: #FF6FA3; - --color-266: #FB118E; - --color-267: #C41A69; - --color-268: #8C0F49; - --color-269: #55072A; - --color-270: #39061B; - --color-271: #2B000B; - --color-272: #F51A70; - --color-273: #FEF0EE; - --color-274: #FED5CF; - --color-275: #FEA79B; - --color-276: #FD766B; - --color-277: #FA2B39; - --color-278: #C4292F; - --color-279: #891E20; - --color-280: #530F0F; - --color-281: #380A03; - --color-282: #240800; - --color-283: #F14544; - --color-284: #FEF8C4; - --color-285: #F0E49A; - --color-286: #DBBC19; - --color-287: #BB9F13; - --color-288: #A08116; - --color-289: #866311; - --color-290: #5D4204; - --color-291: #3E2B04; - --color-292: #231902; - --color-293: #180F02; - --color-294: #FAF40A; - --color-295: #FFF5E8; - --color-296: #F8DEB6; - --color-297: #EEB317; - --color-298: #DB900B; - --color-299: #B17900; - --color-300: #905C10; - --color-301: #643F07; - --color-302: #3F2208; - --color-303: #29160F; - --color-304: #161007; - --color-305: #FEB239; - --color-306: #EDFDF0; - --color-307: #BFEECA; - --color-308: #76D191; - --color-309: #40B66B; - --color-310: #209853; - --color-311: #0B783E; - --color-312: #0C522A; - --color-313: #053117; - --color-314: #091F10; - --color-315: #09130B; - --color-316: #5CFE9D; - --color-317: #F3F5FE; - --color-318: #DEE1FF; - --color-319: #ADBCFF; - --color-320: #869EFF; - --color-321: #4C82FB; - --color-322: #1267D6; - --color-323: #1D4294; - --color-324: #09265E; - --color-325: #0B193F; - --color-326: #040E34; - --color-327: #587BFF; - --color-328: #F2FEDB; - --color-329: #D3EBA3; - --color-330: #9BCD46; - --color-331: #7BB10C; - --color-332: #649205; - --color-333: #527318; - --color-334: #344F00; - --color-335: #233401; - --color-336: #171D00; - --color-337: #0E1300; - --color-338: #B1F13C; - --color-339: #FEEDE5; - --color-340: #FCD9C8; - --color-341: #FBAA7F; - --color-342: #F67E3E; - --color-343: #DC5B14; - --color-344: #AF460A; - --color-345: #76330F; - --color-346: #4D220B; - --color-347: #2A1505; - --color-348: #1C0E03; - --color-349: #FF6F1E; - --color-350: #FFF1FE; - --color-351: #FAD8F8; - --color-352: #F5A1F5; - --color-353: #F06DF3; - --color-354: #DC39E3; - --color-355: #AF2EB4; - --color-356: #7A1C7D; - --color-357: #550D56; - --color-358: #330733; - --color-359: #250225; - --color-360: #FC72FF; - --color-361: #F1EFFE; - --color-362: #E2DEFD; - --color-363: #BDB8FA; - --color-364: #9D99F5; - --color-365: #7A7BEB; - --color-366: #515EDC; - --color-367: #343F9E; - --color-368: #232969; - --color-369: #121643; - --color-370: #0E0D30; - --color-371: #5065FD; - --color-372: #D6F5FE; - --color-373: #B0EDFE; - --color-374: #63CDE8; - --color-375: #2FB0CC; - --color-376: #2092AB; - --color-377: #117489; - --color-378: #014F5F; - --color-379: #003540; - --color-380: #011E26; - --color-381: #011418; - --color-382: #36DBFF; - --color-383: #F1FCEF; - --color-384: #DAE6D8; - --color-385: #B8C3B7; - --color-386: #9AA498; - --color-387: #7E887D; - --color-388: #646B62; - --color-389: #434942; - --color-390: #2C302C; - --color-391: #181B18; - --color-392: #0F120E; - --color-393: #7E887D; - --color-394: #393939; - --color-395: #e6e6e6; - --color-396: #FA2B39; - --color-397: #a26af3; - --color-398: #28A0F0; - --color-399: #2151F5; - --color-400: #F0B90B; - --color-401: #FB36D0; - --color-402: #9f7750; - --color-403: #C3B29E; - --color-404: #1D1D20; - --color-405: #86AE80; - --radius-1: 0px; - --radius-2: 3px; - --radius-3: 5px; - --radius-4: 7px; - --radius-5: 9px; - --radius-6: 10px; - --radius-7: 16px; - --radius-8: 19px; - --radius-9: 22px; - --radius-10: 26px; - --radius-11: 34px; - --radius-12: 42px; - --radius-13: 50px; - --radius-14: 16px; - --zIndex-1: 0; - --zIndex-2: 100; - --zIndex-3: 200; - --zIndex-4: 300; - --zIndex-5: 400; - --zIndex-6: 500; - --space-1: 0px; - --space-6: 2px; - --space-8: 7px; - --space-10: 13px; - --space-12: 18px; - --space-15: 24px; - --space-16: 32px; - --space-17: 39px; - --space-18: 46px; - --space-19: 53px; - --space-20: 60px; - --space-21: 74px; - --space-22: 88px; - --space-23: 102px; - --space-24: 116px; - --space-25: 130px; - --space-26: 144px; - --space-27: 144px; - --space-28: 158px; - --space-29: 172px; - --space-30: 186px; - --space-31: 249px; - --space-32: 284px; - --space-2: 0.5px; - --space-3: 1px; - --space-4: 1.5px; - --space-5: 5px; - --space-7: 4px; - --space-9: 10px; - --space-11: 16px; - --space-13: 18px; - --space-14: 21px; - --space-33: -0.5px; - --space-34: -1px; - --space-35: -1.5px; - --space-36: -5px; - --space-37: -2px; - --space-38: -4px; - --space-39: -7px; - --space-40: -10px; - --space-41: -13px; - --space-42: -16px; - --space-43: -18px; - --space-44: -18px; - --space-45: -21px; - --space-46: -24px; - --space-47: -32px; - --space-48: -39px; - --space-49: -46px; - --space-50: -53px; - --space-51: -60px; - --space-52: -74px; - --space-53: -88px; - --space-54: -102px; - --space-55: -116px; - --space-56: -130px; - --space-57: -144px; - --space-58: -144px; - --space-59: -158px; - --space-60: -172px; - --space-61: -186px; - --space-62: -249px; - --space-63: -284px; - --size-1: 0px; - --size-6: 20px; - --size-8: 28px; - --size-10: 36px; - --size-12: 44px; - --size-15: 52px; - --size-16: 64px; - --size-17: 74px; - --size-18: 84px; - --size-19: 94px; - --size-20: 104px; - --size-21: 124px; - --size-22: 144px; - --size-23: 164px; - --size-24: 184px; - --size-25: 204px; - --size-26: 224px; - --size-27: 224px; - --size-28: 244px; - --size-29: 264px; - --size-30: 284px; - --size-31: 374px; - --size-32: 424px; - --size-2: 2px; - --size-3: 4px; - --size-4: 8px; - --size-5: 16px; - --size-7: 24px; - --size-9: 32px; - --size-11: 40px; - --size-13: 44px; - --size-14: 48px -} - -:root .font_heading, -:root .t_lang-heading-default .font_heading { - --f-fa: Inter, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; - --f-li-1: 21px; - --f-li-2: 22px; - --f-li-3: 23px; - --f-li-4: 24px; - --f-li-5: 26px; - --f-li-6: 25px; - --f-li-7: 30px; - --f-li-8: 33px; - --f-li-9: 40px; - --f-li-10: 56px; - --f-li-11: 65px; - --f-li-12: 72px; - --f-li-13: 82px; - --f-li-14: 102px; - --f-li-15: 111px; - --f-li-16: 144px; - --f-li-17: 24px; - --f-we-1: 400; - --f-we-2: 400; - --f-we-3: 400; - --f-we-4: 400; - --f-we-5: 400; - --f-we-6: 400; - --f-we-7: 700; - --f-we-8: 700; - --f-we-9: 700; - --f-we-10: 700; - --f-we-11: 700; - --f-we-12: 700; - --f-we-13: 700; - --f-we-14: 700; - --f-we-15: 700; - --f-we-16: 700; - --f-we-17: 700; - --f-21-1: 2px; - --f-21-2: 2px; - --f-21-3: 2px; - --f-21-4: 2px; - --f-21-5: 2px; - --f-21-6: 1px; - --f-21-7: 0px; - --f-21-8: -1px; - --f-21-9: -2px; - --f-21-10: -3px; - --f-21-11: -3px; - --f-21-12: -4px; - --f-21-13: -4px; - --f-21-14: -5px; - --f-21-15: -6px; - --f-21-16: -6px; - --f-21-17: -6px; - --f-si-1: 11px; - --f-si-2: 12px; - --f-si-3: 13px; - --f-si-4: 14px; - --f-si-5: 16px; - --f-si-6: 15px; - --f-si-7: 20px; - --f-si-8: 23px; - --f-si-9: 30px; - --f-si-10: 46px; - --f-si-11: 55px; - --f-si-12: 62px; - --f-si-13: 72px; - --f-si-14: 92px; - --f-si-15: 101px; - --f-si-16: 134px; - --f-si-17: 14px; - --f-tr-1: uppercase; - --f-tr-2: uppercase; - --f-tr-3: uppercase; - --f-tr-4: uppercase; - --f-tr-5: uppercase; - --f-tr-6: uppercase; - --f-tr-7: none; - --f-tr-8: none; - --f-tr-9: none; - --f-tr-10: none; - --f-tr-11: none; - --f-tr-12: none; - --f-tr-13: none; - --f-tr-14: none; - --f-tr-15: none; - --f-tr-16: none; - --f-tr-17: none -} - -:root .font_body, -:root .t_lang-body-default .font_body { - --f-fa: Inter, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; - --f-li-1: 23px; - --f-li-2: 24px; - --f-li-3: 25px; - --f-li-4: 27px; - --f-li-5: 30px; - --f-li-6: 32px; - --f-li-7: 34px; - --f-li-8: 38px; - --f-li-9: 46px; - --f-li-10: 66px; - --f-li-11: 77px; - --f-li-12: 85px; - --f-li-13: 97px; - --f-li-14: 121px; - --f-li-15: 148px; - --f-li-16: 172px; - --f-li-17: 27px; - --f-we-1: 300; - --f-we-2: 300; - --f-we-3: 300; - --f-we-4: 300; - --f-we-5: 300; - --f-we-6: 300; - --f-we-7: 300; - --f-we-8: 300; - --f-we-9: 300; - --f-we-10: 300; - --f-we-11: 300; - --f-we-12: 300; - --f-we-13: 300; - --f-we-14: 300; - --f-we-15: 300; - --f-we-16: 300; - --f-we-17: 300; - --f-21-1: 0px; - --f-21-2: 0px; - --f-21-3: 0px; - --f-21-4: 0px; - --f-21-5: 0px; - --f-21-6: 0px; - --f-21-7: 0px; - --f-21-8: 0px; - --f-21-9: 0px; - --f-21-10: 0px; - --f-21-11: 0px; - --f-21-12: 0px; - --f-21-13: 0px; - --f-21-14: 0px; - --f-21-15: 0px; - --f-21-16: 0px; - --f-21-17: 0px; - --f-si-1: 12px; - --f-si-2: 13px; - --f-si-3: 14px; - --f-si-4: 15px; - --f-si-5: 18px; - --f-si-6: 20px; - --f-si-7: 22px; - --f-si-8: 25px; - --f-si-9: 33px; - --f-si-10: 51px; - --f-si-11: 61px; - --f-si-12: 68px; - --f-si-13: 79px; - --f-si-14: 101px; - --f-si-15: 125px; - --f-si-16: 147px; - --f-si-17: 15px -} - -:root.t_dark, -:root.t_dark .t_light .t_dark, -:root.t_light .t_dark, -:root.t_light .t_dark .t_light .t_dark { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(191, 33%, 10%, 0.25); - --background025: hsla(191, 33%, 10%, 0.5); - --background05: hsla(191, 33%, 10%, 0.75); - --background075: hsla(191, 32%, 10%, 1); - --color0: hsla(112, 22%, 100%, 1); - --color025: hsla(0, 0%, 100%, 0.75); - --color05: hsla(0, 0%, 100%, 0.5); - --color075: hsla(0, 0%, 100%, 0.25); - --background: hsla(191, 32%, 10%, 1); - --backgroundHover: hsla(191, 32%, 15%, 1); - --backgroundPress: hsla(191, 32%, 19%, 1); - --backgroundFocus: hsla(191, 32%, 24%, 1); - --color: hsla(112, 22%, 59%, 1); - --colorHover: hsla(191, 32%, 50%, 1); - --colorPress: hsla(112, 22%, 59%, 1); - --colorFocus: hsla(191, 32%, 50%, 1); - --placeholderColor: hsla(191, 32%, 50%, 1); - --borderColor: hsla(191, 32%, 24%, 1); - --borderColorHover: hsla(191, 32%, 28%, 1); - --borderColorFocus: hsla(191, 32%, 32%, 1); - --borderColorPress: hsla(191, 32%, 28%, 1); - --color1: hsla(191, 32%, 10%, 1); - --color2: hsla(191, 32%, 15%, 1); - --color3: hsla(191, 32%, 19%, 1); - --color4: hsla(191, 32%, 24%, 1); - --color5: hsla(191, 32%, 28%, 1); - --color6: hsla(191, 32%, 32%, 1); - --color7: hsla(191, 32%, 37%, 1); - --color8: hsla(191, 32%, 41%, 1); - --color9: hsla(191, 32%, 46%, 1); - --color10: hsla(191, 32%, 50%, 1); - --color11: hsla(112, 22%, 59%, 1); - --color12: hsla(112, 22%, 100%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) +._ovs-contain {overscroll-behavior:contain;} +.is_Text .is_Text {display:inline-flex;} +._dsp_contents {display:contents;} +:root {--color-1:hsl(206, 100%, 99.2%);--color-2:hsl(210, 100%, 98.0%);--color-3:hsl(209, 100%, 96.5%);--color-4:hsl(210, 98.8%, 94.0%);--color-5:hsl(209, 95.0%, 90.1%);--color-6:hsl(209, 81.2%, 84.5%);--color-7:hsl(208, 77.5%, 76.9%);--color-8:hsl(206, 81.9%, 65.3%);--color-9:hsl(206, 100%, 50.0%);--color-10:hsl(208, 100%, 47.3%);--color-11:hsl(211, 100%, 43.2%);--color-12:hsl(211, 100%, 15.0%);--color-13:hsl(0, 0%, 99.0%);--color-14:hsl(0, 0%, 97.3%);--color-15:hsl(0, 0%, 95.1%);--color-16:hsl(0, 0%, 93.0%);--color-17:hsl(0, 0%, 90.9%);--color-18:hsl(0, 0%, 88.7%);--color-19:hsl(0, 0%, 85.8%);--color-20:hsl(0, 0%, 78.0%);--color-21:hsl(0, 0%, 56.1%);--color-22:hsl(0, 0%, 52.3%);--color-23:hsl(0, 0%, 43.5%);--color-24:hsl(0, 0%, 9.0%);--color-25:hsl(136, 50.0%, 98.9%);--color-26:hsl(138, 62.5%, 96.9%);--color-27:hsl(139, 55.2%, 94.5%);--color-28:hsl(140, 48.7%, 91.0%);--color-29:hsl(141, 43.7%, 86.0%);--color-30:hsl(143, 40.3%, 79.0%);--color-31:hsl(146, 38.5%, 69.0%);--color-32:hsl(151, 40.2%, 54.1%);--color-33:hsl(151, 55.0%, 41.5%);--color-34:hsl(152, 57.5%, 37.6%);--color-35:hsl(153, 67.0%, 28.5%);--color-36:hsl(155, 40.0%, 14.0%);--color-37:hsl(24, 70.0%, 99.0%);--color-38:hsl(24, 83.3%, 97.6%);--color-39:hsl(24, 100%, 95.3%);--color-40:hsl(25, 100%, 92.2%);--color-41:hsl(25, 100%, 88.2%);--color-42:hsl(25, 100%, 82.8%);--color-43:hsl(24, 100%, 75.3%);--color-44:hsl(24, 94.5%, 64.3%);--color-45:hsl(24, 94.0%, 50.0%);--color-46:hsl(24, 100%, 46.5%);--color-47:hsl(24, 100%, 37.0%);--color-48:hsl(15, 60.0%, 17.0%);--color-49:hsl(322, 100%, 99.4%);--color-50:hsl(323, 100%, 98.4%);--color-51:hsl(323, 86.3%, 96.5%);--color-52:hsl(323, 78.7%, 94.2%);--color-53:hsl(323, 72.2%, 91.1%);--color-54:hsl(323, 66.3%, 86.6%);--color-55:hsl(323, 62.0%, 80.1%);--color-56:hsl(323, 60.3%, 72.4%);--color-57:hsl(322, 65.0%, 54.5%);--color-58:hsl(322, 63.9%, 50.7%);--color-59:hsl(322, 75.0%, 46.0%);--color-60:hsl(320, 70.0%, 13.5%);--color-61:hsl(280, 65.0%, 99.4%);--color-62:hsl(276, 100%, 99.0%);--color-63:hsl(276, 83.1%, 97.0%);--color-64:hsl(275, 76.4%, 94.7%);--color-65:hsl(275, 70.8%, 91.8%);--color-66:hsl(274, 65.4%, 87.8%);--color-67:hsl(273, 61.0%, 81.7%);--color-68:hsl(272, 60.0%, 73.5%);--color-69:hsl(272, 51.0%, 54.0%);--color-70:hsl(272, 46.8%, 50.3%);--color-71:hsl(272, 50.0%, 45.8%);--color-72:hsl(272, 66.0%, 16.0%);--color-73:hsl(359, 100%, 99.4%);--color-74:hsl(359, 100%, 98.6%);--color-75:hsl(360, 100%, 96.8%);--color-76:hsl(360, 97.9%, 94.8%);--color-77:hsl(360, 90.2%, 91.9%);--color-78:hsl(360, 81.7%, 87.8%);--color-79:hsl(359, 74.2%, 81.7%);--color-80:hsl(359, 69.5%, 74.3%);--color-81:hsl(358, 75.0%, 59.0%);--color-82:hsl(358, 69.4%, 55.2%);--color-83:hsl(358, 65.0%, 48.7%);--color-84:hsl(354, 50.0%, 14.6%);--color-85:hsl(60, 54.0%, 98.5%);--color-86:hsl(52, 100%, 95.5%);--color-87:hsl(55, 100%, 90.9%);--color-88:hsl(54, 100%, 86.6%);--color-89:hsl(52, 97.9%, 82.0%);--color-90:hsl(50, 89.4%, 76.1%);--color-91:hsl(47, 80.4%, 68.0%);--color-92:hsl(48, 100%, 46.1%);--color-93:hsl(53, 92.0%, 50.0%);--color-94:hsl(50, 100%, 48.5%);--color-95:hsl(42, 100%, 29.0%);--color-96:hsl(40, 55.0%, 13.5%);--color-97:hsl(50, 20.0%, 99.1%);--color-98:hsl(47, 52.9%, 96.7%);--color-99:hsl(46, 38.2%, 93.7%);--color-100:hsl(44, 32.7%, 90.1%);--color-101:hsl(43, 29.9%, 85.7%);--color-102:hsl(41, 28.3%, 79.8%);--color-103:hsl(39, 27.6%, 71.9%);--color-104:hsl(36, 27.2%, 61.8%);--color-105:hsl(36, 20.0%, 49.5%);--color-106:hsl(36, 19.8%, 45.7%);--color-107:hsl(36, 20.0%, 39.0%);--color-108:hsl(36, 16.0%, 20.0%);--color-109:hsla(125, 96%, 40%, 0.5);--color-110:hsla(125, 96%, 40%, 0.75);--color-111:hsla(125, 96%, 40%, 1);--color-112:hsla(125, 96%, 42%, 1);--color-113:hsla(125, 96%, 45%, 1);--color-114:hsla(125, 96%, 47%, 1);--color-115:hsla(125, 96%, 50%, 1);--color-116:hsla(125, 96%, 52%, 1);--color-117:hsla(125, 96%, 55%, 1);--color-118:hsla(125, 96%, 57%, 1);--color-119:hsla(125, 96%, 59%, 1);--color-120:hsla(125, 96%, 62%, 1);--color-121:hsl(212, 35.0%, 9.2%);--color-122:hsl(216, 50.0%, 11.8%);--color-123:hsl(214, 59.4%, 15.3%);--color-124:hsl(214, 65.8%, 17.9%);--color-125:hsl(213, 71.2%, 20.2%);--color-126:hsl(212, 77.4%, 23.1%);--color-127:hsl(211, 85.1%, 27.4%);--color-128:hsl(211, 89.7%, 34.1%);--color-129:hsl(206, 100%, 50.0%);--color-130:hsl(209, 100%, 60.6%);--color-131:hsl(210, 100%, 66.1%);--color-132:hsl(206, 98.0%, 95.8%);--color-133:hsl(0, 0%, 8.5%);--color-134:hsl(0, 0%, 11.0%);--color-135:hsl(0, 0%, 13.6%);--color-136:hsl(0, 0%, 15.8%);--color-137:hsl(0, 0%, 17.9%);--color-138:hsl(0, 0%, 20.5%);--color-139:hsl(0, 0%, 24.3%);--color-140:hsl(0, 0%, 31.2%);--color-141:hsl(0, 0%, 43.9%);--color-142:hsl(0, 0%, 49.4%);--color-143:hsl(0, 0%, 62.8%);--color-144:hsl(0, 0%, 93.0%);--color-145:hsl(146, 30.0%, 7.4%);--color-146:hsl(155, 44.2%, 8.4%);--color-147:hsl(155, 46.7%, 10.9%);--color-148:hsl(154, 48.4%, 12.9%);--color-149:hsl(154, 49.7%, 14.9%);--color-150:hsl(154, 50.9%, 17.6%);--color-151:hsl(153, 51.8%, 21.8%);--color-152:hsl(151, 51.7%, 28.4%);--color-153:hsl(151, 55.0%, 41.5%);--color-154:hsl(151, 49.3%, 46.5%);--color-155:hsl(151, 50.0%, 53.2%);--color-156:hsl(137, 72.0%, 94.0%);--color-157:hsl(30, 70.0%, 7.2%);--color-158:hsl(28, 100%, 8.4%);--color-159:hsl(26, 91.1%, 11.6%);--color-160:hsl(25, 88.3%, 14.1%);--color-161:hsl(24, 87.6%, 16.6%);--color-162:hsl(24, 88.6%, 19.8%);--color-163:hsl(24, 92.4%, 24.0%);--color-164:hsl(25, 100%, 29.0%);--color-165:hsl(24, 94.0%, 50.0%);--color-166:hsl(24, 100%, 58.5%);--color-167:hsl(24, 100%, 62.2%);--color-168:hsl(24, 97.0%, 93.2%);--color-169:hsl(318, 25.0%, 9.6%);--color-170:hsl(319, 32.2%, 11.6%);--color-171:hsl(319, 41.0%, 16.0%);--color-172:hsl(320, 45.4%, 18.7%);--color-173:hsl(320, 49.0%, 21.1%);--color-174:hsl(321, 53.6%, 24.4%);--color-175:hsl(321, 61.1%, 29.7%);--color-176:hsl(322, 74.9%, 37.5%);--color-177:hsl(322, 65.0%, 54.5%);--color-178:hsl(323, 72.8%, 59.2%);--color-179:hsl(325, 90.0%, 66.4%);--color-180:hsl(322, 90.0%, 95.8%);--color-181:hsl(284, 20.0%, 9.6%);--color-182:hsl(283, 30.0%, 11.8%);--color-183:hsl(281, 37.5%, 16.5%);--color-184:hsl(280, 41.2%, 20.0%);--color-185:hsl(279, 43.8%, 23.3%);--color-186:hsl(277, 46.4%, 27.5%);--color-187:hsl(275, 49.3%, 34.6%);--color-188:hsl(272, 52.1%, 45.9%);--color-189:hsl(272, 51.0%, 54.0%);--color-190:hsl(273, 57.3%, 59.1%);--color-191:hsl(275, 80.0%, 71.0%);--color-192:hsl(279, 75.0%, 95.7%);--color-193:hsl(353, 23.0%, 9.8%);--color-194:hsl(357, 34.4%, 12.0%);--color-195:hsl(356, 43.4%, 16.4%);--color-196:hsl(356, 47.6%, 19.2%);--color-197:hsl(356, 51.1%, 21.9%);--color-198:hsl(356, 55.2%, 25.9%);--color-199:hsl(357, 60.2%, 31.8%);--color-200:hsl(358, 65.0%, 40.4%);--color-201:hsl(358, 75.0%, 59.0%);--color-202:hsl(358, 85.3%, 64.0%);--color-203:hsl(358, 100%, 69.5%);--color-204:hsl(351, 89.0%, 96.0%);--color-205:hsl(45, 100%, 5.5%);--color-206:hsl(46, 100%, 6.7%);--color-207:hsl(45, 100%, 8.7%);--color-208:hsl(45, 100%, 10.4%);--color-209:hsl(47, 100%, 12.1%);--color-210:hsl(49, 100%, 14.3%);--color-211:hsl(49, 90.3%, 18.4%);--color-212:hsl(50, 100%, 22.0%);--color-213:hsl(53, 92.0%, 50.0%);--color-214:hsl(54, 100%, 68.0%);--color-215:hsl(48, 100%, 47.0%);--color-216:hsl(53, 100%, 91.0%);--color-217:hsl(44, 9.0%, 8.3%);--color-218:hsl(43, 14.3%, 9.6%);--color-219:hsl(42, 15.5%, 13.0%);--color-220:hsl(41, 16.4%, 15.6%);--color-221:hsl(41, 16.9%, 17.8%);--color-222:hsl(40, 17.6%, 20.8%);--color-223:hsl(38, 18.5%, 26.4%);--color-224:hsl(36, 19.6%, 35.1%);--color-225:hsl(36, 20.0%, 49.5%);--color-226:hsl(36, 22.3%, 54.5%);--color-227:hsl(35, 30.0%, 64.0%);--color-228:hsl(49, 52.0%, 93.8%);--color-229:hsla(125, 96%, 40%, 0.5);--color-230:hsla(125, 96%, 40%, 0.75);--color-231:hsla(125, 96%, 40%, 1);--color-232:hsla(125, 96%, 42%, 1);--color-233:hsla(125, 96%, 45%, 1);--color-234:hsla(125, 96%, 47%, 1);--color-235:hsla(125, 96%, 50%, 1);--color-236:hsla(125, 96%, 52%, 1);--color-237:hsla(125, 96%, 55%, 1);--color-238:hsla(125, 96%, 57%, 1);--color-239:hsla(125, 96%, 59%, 1);--color-240:hsla(125, 96%, 62%, 1);--color-241:#40FB50;--color-242:#FFFFFF;--color-243:#122023;--color-244:#F5F6FC;--color-245:#E8ECFB;--color-246:#D2D9EE;--color-247:#B8C0DC;--color-248:#A6AFCA;--color-249:#98A1C0;--color-250:#888FAB;--color-251:#7780A0;--color-252:#6B7594;--color-253:#5D6785;--color-254:#505A78;--color-255:#404A67;--color-256:#333D59;--color-257:#293249;--color-258:#1B2236;--color-259:#131A2A;--color-260:#0E1524;--color-261:#0D111C;--color-262:#FFF2F7;--color-263:#FFD9E4;--color-264:#FBA4C0;--color-265:#FF6FA3;--color-266:#FB118E;--color-267:#C41A69;--color-268:#8C0F49;--color-269:#55072A;--color-270:#39061B;--color-271:#2B000B;--color-272:#F51A70;--color-273:#FEF0EE;--color-274:#FED5CF;--color-275:#FEA79B;--color-276:#FD766B;--color-277:#FA2B39;--color-278:#C4292F;--color-279:#891E20;--color-280:#530F0F;--color-281:#380A03;--color-282:#240800;--color-283:#F14544;--color-284:#FEF8C4;--color-285:#F0E49A;--color-286:#DBBC19;--color-287:#BB9F13;--color-288:#A08116;--color-289:#866311;--color-290:#5D4204;--color-291:#3E2B04;--color-292:#231902;--color-293:#180F02;--color-294:#FAF40A;--color-295:#FFF5E8;--color-296:#F8DEB6;--color-297:#EEB317;--color-298:#DB900B;--color-299:#B17900;--color-300:#905C10;--color-301:#643F07;--color-302:#3F2208;--color-303:#29160F;--color-304:#161007;--color-305:#FEB239;--color-306:#EDFDF0;--color-307:#BFEECA;--color-308:#76D191;--color-309:#40B66B;--color-310:#209853;--color-311:#0B783E;--color-312:#0C522A;--color-313:#053117;--color-314:#091F10;--color-315:#09130B;--color-316:#5CFE9D;--color-317:#F3F5FE;--color-318:#DEE1FF;--color-319:#ADBCFF;--color-320:#869EFF;--color-321:#4C82FB;--color-322:#1267D6;--color-323:#1D4294;--color-324:#09265E;--color-325:#0B193F;--color-326:#040E34;--color-327:#587BFF;--color-328:#F2FEDB;--color-329:#D3EBA3;--color-330:#9BCD46;--color-331:#7BB10C;--color-332:#649205;--color-333:#527318;--color-334:#344F00;--color-335:#233401;--color-336:#171D00;--color-337:#0E1300;--color-338:#B1F13C;--color-339:#FEEDE5;--color-340:#FCD9C8;--color-341:#FBAA7F;--color-342:#F67E3E;--color-343:#DC5B14;--color-344:#AF460A;--color-345:#76330F;--color-346:#4D220B;--color-347:#2A1505;--color-348:#1C0E03;--color-349:#FF6F1E;--color-350:#FFF1FE;--color-351:#FAD8F8;--color-352:#F5A1F5;--color-353:#F06DF3;--color-354:#DC39E3;--color-355:#AF2EB4;--color-356:#7A1C7D;--color-357:#550D56;--color-358:#330733;--color-359:#250225;--color-360:#FC72FF;--color-361:#F1EFFE;--color-362:#E2DEFD;--color-363:#BDB8FA;--color-364:#9D99F5;--color-365:#7A7BEB;--color-366:#515EDC;--color-367:#343F9E;--color-368:#232969;--color-369:#121643;--color-370:#0E0D30;--color-371:#5065FD;--color-372:#D6F5FE;--color-373:#B0EDFE;--color-374:#63CDE8;--color-375:#2FB0CC;--color-376:#2092AB;--color-377:#117489;--color-378:#014F5F;--color-379:#003540;--color-380:#011E26;--color-381:#011418;--color-382:#36DBFF;--color-383:#F1FCEF;--color-384:#DAE6D8;--color-385:#B8C3B7;--color-386:#9AA498;--color-387:#7E887D;--color-388:#646B62;--color-389:#434942;--color-390:#2C302C;--color-391:#181B18;--color-392:#0F120E;--color-393:#7E887D;--color-394:#393939;--color-395:#e6e6e6;--color-396:#FA2B39;--color-397:#a26af3;--color-398:#28A0F0;--color-399:#2151F5;--color-400:#F0B90B;--color-401:#FB36D0;--color-402:#9f7750;--color-403:#C3B29E;--color-404:#1D1D20;--color-405:#86AE80;--radius-1:0px;--radius-2:3px;--radius-3:5px;--radius-4:7px;--radius-5:9px;--radius-6:10px;--radius-7:16px;--radius-8:19px;--radius-9:22px;--radius-10:26px;--radius-11:34px;--radius-12:42px;--radius-13:50px;--radius-14:16px;--zIndex-1:0;--zIndex-2:100;--zIndex-3:200;--zIndex-4:300;--zIndex-5:400;--zIndex-6:500;--space-1:0px;--space-6:2px;--space-8:7px;--space-10:13px;--space-12:18px;--space-15:24px;--space-16:32px;--space-17:39px;--space-18:46px;--space-19:53px;--space-20:60px;--space-21:74px;--space-22:88px;--space-23:102px;--space-24:116px;--space-25:130px;--space-26:144px;--space-27:144px;--space-28:158px;--space-29:172px;--space-30:186px;--space-31:249px;--space-32:284px;--space-2:0.5px;--space-3:1px;--space-4:1.5px;--space-5:5px;--space-7:4px;--space-9:10px;--space-11:16px;--space-13:18px;--space-14:21px;--space-33:-0.5px;--space-34:-1px;--space-35:-1.5px;--space-36:-5px;--space-37:-2px;--space-38:-4px;--space-39:-7px;--space-40:-10px;--space-41:-13px;--space-42:-16px;--space-43:-18px;--space-44:-18px;--space-45:-21px;--space-46:-24px;--space-47:-32px;--space-48:-39px;--space-49:-46px;--space-50:-53px;--space-51:-60px;--space-52:-74px;--space-53:-88px;--space-54:-102px;--space-55:-116px;--space-56:-130px;--space-57:-144px;--space-58:-144px;--space-59:-158px;--space-60:-172px;--space-61:-186px;--space-62:-249px;--space-63:-284px;--size-1:0px;--size-6:20px;--size-8:28px;--size-10:36px;--size-12:44px;--size-15:52px;--size-16:64px;--size-17:74px;--size-18:84px;--size-19:94px;--size-20:104px;--size-21:124px;--size-22:144px;--size-23:164px;--size-24:184px;--size-25:204px;--size-26:224px;--size-27:224px;--size-28:244px;--size-29:264px;--size-30:284px;--size-31:374px;--size-32:424px;--size-2:2px;--size-3:4px;--size-4:8px;--size-5:16px;--size-7:24px;--size-9:32px;--size-11:40px;--size-13:44px;--size-14:48px} +:root .font_heading, :root .t_lang-heading-default .font_heading {--f-fa:DM Sans, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;--f-si-1:20px;--f-si-2:23px;--f-si-3:30px;--f-si-4:40px} +:root .font_body, :root .t_lang-body-default .font_body {--f-fa:DM Sans, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;--f-si-1:11px;--f-si-2:12px;--f-si-3:13px;--f-si-4:14px;--f-si-5:16px;--f-si-6:18px;--f-si-7:20px;--f-si-8:23px;--f-si-9:30px;--f-si-10:46px;--f-si-11:55px;--f-si-12:62px;--f-si-13:72px;--f-si-14:92px;--f-si-15:114px;--f-si-16:134px;--f-si-17:14px} +:root .font_mono, :root .t_lang-mono-default .font_mono {--f-fa:DM Mono, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;--f-si-1:11px;--f-si-2:12px;--f-si-3:13px;--f-si-4:14px;--f-si-5:16px;--f-si-6:18px;--f-si-7:20px;--f-si-8:23px;--f-si-9:30px;--f-si-10:46px;--f-si-11:55px;--f-si-12:62px;--f-si-13:72px;--f-si-14:92px;--f-si-15:114px;--f-si-16:134px;--f-si-17:14px;--f-li-1:11px;--f-li-2:12px;--f-li-3:13px;--f-li-4:14px;--f-li-5:16px;--f-li-6:18px;--f-li-7:20px;--f-li-8:23px;--f-li-9:30px;--f-li-10:46px;--f-li-11:55px;--f-li-12:62px;--f-li-13:72px;--f-li-14:92px;--f-li-15:114px;--f-li-16:134px;--f-li-17:14px;--f-we-1:400;--f-we-2:400;--f-we-3:400;--f-we-4:400;--f-we-5:400;--f-we-6:400;--f-we-7:500;--f-we-8:500;--f-we-9:500;--f-we-10:500;--f-we-11:500;--f-we-12:500;--f-we-13:500;--f-we-14:500;--f-we-15:500;--f-we-16:500;--f-we-17:500} +:root.t_dark, :root.t_dark .t_light .t_dark, :root.t_light .t_dark, :root.t_light .t_dark .t_light .t_dark {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:hsla(112, 22%, 100%, 1);--color025:hsla(0, 0%, 100%, 0.75);--color05:hsla(0, 0%, 100%, 0.5);--color075:hsla(0, 0%, 100%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 15%, 1);--backgroundPress:hsla(191, 32%, 19%, 1);--backgroundFocus:hsla(191, 32%, 24%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 24%, 1);--borderColorHover:hsla(191, 32%, 28%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 28%, 1);--color1:hsla(191, 32%, 10%, 1);--color2:hsla(191, 32%, 15%, 1);--color3:hsla(191, 32%, 19%, 1);--color4:hsla(191, 32%, 24%, 1);--color5:hsla(191, 32%, 28%, 1);--color6:hsla(191, 32%, 32%, 1);--color7:hsla(191, 32%, 37%, 1);--color8:hsla(191, 32%, 41%, 1);--color9:hsla(191, 32%, 46%, 1);--color10:hsla(191, 32%, 50%, 1);--color11:hsla(112, 22%, 59%, 1);--color12:hsla(112, 22%, 100%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + :root, .t_light .t_dark {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:hsla(112, 22%, 100%, 1);--color025:hsla(0, 0%, 100%, 0.75);--color05:hsla(0, 0%, 100%, 0.5);--color075:hsla(0, 0%, 100%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 15%, 1);--backgroundPress:hsla(191, 32%, 19%, 1);--backgroundFocus:hsla(191, 32%, 24%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 24%, 1);--borderColorHover:hsla(191, 32%, 28%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 28%, 1);--color1:hsla(191, 32%, 10%, 1);--color2:hsla(191, 32%, 15%, 1);--color3:hsla(191, 32%, 19%, 1);--color4:hsla(191, 32%, 24%, 1);--color5:hsla(191, 32%, 28%, 1);--color6:hsla(191, 32%, 32%, 1);--color7:hsla(191, 32%, 37%, 1);--color8:hsla(191, 32%, 41%, 1);--color9:hsla(191, 32%, 46%, 1);--color10:hsla(191, 32%, 50%, 1);--color11:hsla(112, 22%, 59%, 1);--color12:hsla(112, 22%, 100%, 1);} + } +:root.t_dark .t_Button, :root.t_dark .t_light .t_dark .t_Button, :root.t_dark .t_light .t_dark .t_SliderTrack, :root.t_dark .t_light .t_dark .t_Switch, :root.t_dark .t_light .t_dark .t_TooltipContent, :root.t_dark .t_SliderTrack, :root.t_dark .t_Switch, :root.t_dark .t_TooltipContent, :root.t_light .t_dark .t_Button, :root.t_light .t_dark .t_light .t_dark .t_Button, :root.t_light .t_dark .t_light .t_dark .t_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_Switch, :root.t_light .t_dark .t_light .t_dark .t_TooltipContent, :root.t_light .t_dark .t_SliderTrack, :root.t_light .t_dark .t_Switch, :root.t_light .t_dark .t_TooltipContent {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_Button, .t_light .t_dark .t_Button, .t_light .t_dark .t_SliderTrack, .t_light .t_dark .t_Switch, .t_light .t_dark .t_TooltipContent, .t_SliderTrack, .t_Switch, .t_TooltipContent {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} + } +:root.t_dark .t_Card, :root.t_dark .t_DrawerFrame, :root.t_dark .t_light .t_dark .t_Card, :root.t_dark .t_light .t_dark .t_DrawerFrame, :root.t_dark .t_light .t_dark .t_Progress, :root.t_dark .t_light .t_dark .t_TooltipArrow, :root.t_dark .t_Progress, :root.t_dark .t_TooltipArrow, :root.t_light .t_dark .t_Card, :root.t_light .t_dark .t_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_Card, :root.t_light .t_dark .t_light .t_dark .t_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_Progress, :root.t_light .t_dark .t_light .t_dark .t_TooltipArrow, :root.t_light .t_dark .t_Progress, :root.t_light .t_dark .t_TooltipArrow {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_Card, .t_DrawerFrame, .t_light .t_dark .t_Card, .t_light .t_dark .t_DrawerFrame, .t_light .t_dark .t_Progress, .t_light .t_dark .t_TooltipArrow, .t_Progress, .t_TooltipArrow {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} + } +:root.t_dark .t_Checkbox, :root.t_dark .t_Input, :root.t_dark .t_light .t_dark .t_Checkbox, :root.t_dark .t_light .t_dark .t_Input, :root.t_dark .t_light .t_dark .t_RadioGroupItem, :root.t_dark .t_light .t_dark .t_TextArea, :root.t_dark .t_RadioGroupItem, :root.t_dark .t_TextArea, :root.t_light .t_dark .t_Checkbox, :root.t_light .t_dark .t_Input, :root.t_light .t_dark .t_light .t_dark .t_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_Input, :root.t_light .t_dark .t_light .t_dark .t_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_TextArea, :root.t_light .t_dark .t_RadioGroupItem, :root.t_light .t_dark .t_TextArea {--accentBackground:hsla(191, 33%, 10%, 0);--accentColor:hsla(191, 33%, 10%, 0);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:hsla(112, 22%, 100%, 1);--color025:hsla(0, 0%, 100%, 0.75);--color05:hsla(0, 0%, 100%, 0.5);--color075:hsla(0, 0%, 100%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 15%, 1);--backgroundPress:hsla(191, 32%, 19%, 1);--backgroundFocus:hsla(191, 32%, 24%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_Checkbox, .t_Input, .t_light .t_dark .t_Checkbox, .t_light .t_dark .t_Input, .t_light .t_dark .t_RadioGroupItem, .t_light .t_dark .t_TextArea, .t_RadioGroupItem, .t_TextArea {--accentBackground:hsla(191, 33%, 10%, 0);--accentColor:hsla(191, 33%, 10%, 0);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:hsla(112, 22%, 100%, 1);--color025:hsla(0, 0%, 100%, 0.75);--color05:hsla(0, 0%, 100%, 0.5);--color075:hsla(0, 0%, 100%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 15%, 1);--backgroundPress:hsla(191, 32%, 19%, 1);--backgroundFocus:hsla(191, 32%, 24%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} + } +:root.t_dark .t_accent_DialogOverlay, :root.t_dark .t_accent_ModalOverlay, :root.t_dark .t_accent_SheetOverlay, :root.t_dark .t_active_accent_DialogOverlay, :root.t_dark .t_active_accent_ModalOverlay, :root.t_dark .t_active_accent_SheetOverlay, :root.t_dark .t_active_DialogOverlay, :root.t_dark .t_active_ModalOverlay, :root.t_dark .t_active_SheetOverlay, :root.t_dark .t_alt1_accent_DialogOverlay, :root.t_dark .t_alt1_accent_ModalOverlay, :root.t_dark .t_alt1_accent_SheetOverlay, :root.t_dark .t_alt1_DialogOverlay, :root.t_dark .t_alt1_ModalOverlay, :root.t_dark .t_alt1_SheetOverlay, :root.t_dark .t_alt2_accent_DialogOverlay, :root.t_dark .t_alt2_accent_ModalOverlay, :root.t_dark .t_alt2_accent_SheetOverlay, :root.t_dark .t_alt2_DialogOverlay, :root.t_dark .t_alt2_ModalOverlay, :root.t_dark .t_alt2_SheetOverlay, :root.t_dark .t_DialogOverlay, :root.t_dark .t_dim_accent_DialogOverlay, :root.t_dark .t_dim_accent_ModalOverlay, :root.t_dark .t_dim_accent_SheetOverlay, :root.t_dark .t_dim_DialogOverlay, :root.t_dark .t_dim_ModalOverlay, :root.t_dark .t_dim_SheetOverlay, :root.t_dark .t_disabled_accent_DialogOverlay, :root.t_dark .t_disabled_accent_ModalOverlay, :root.t_dark .t_disabled_accent_SheetOverlay, :root.t_dark .t_disabled_DialogOverlay, :root.t_dark .t_disabled_ModalOverlay, :root.t_dark .t_disabled_SheetOverlay, :root.t_dark .t_error_accent_DialogOverlay, :root.t_dark .t_error_accent_ModalOverlay, :root.t_dark .t_error_accent_SheetOverlay, :root.t_dark .t_error_DialogOverlay, :root.t_dark .t_error_ModalOverlay, :root.t_dark .t_error_SheetOverlay, :root.t_dark .t_light .t_dark .t_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_active_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_active_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_active_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_active_DialogOverlay, :root.t_dark .t_light .t_dark .t_active_ModalOverlay, :root.t_dark .t_light .t_dark .t_active_SheetOverlay, :root.t_dark .t_light .t_dark .t_alt1_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_alt1_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_alt1_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_alt1_DialogOverlay, :root.t_dark .t_light .t_dark .t_alt1_ModalOverlay, :root.t_dark .t_light .t_dark .t_alt1_SheetOverlay, :root.t_dark .t_light .t_dark .t_alt2_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_alt2_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_alt2_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_alt2_DialogOverlay, :root.t_dark .t_light .t_dark .t_alt2_ModalOverlay, :root.t_dark .t_light .t_dark .t_alt2_SheetOverlay, :root.t_dark .t_light .t_dark .t_DialogOverlay, :root.t_dark .t_light .t_dark .t_dim_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_dim_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_dim_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_dim_DialogOverlay, :root.t_dark .t_light .t_dark .t_dim_ModalOverlay, :root.t_dark .t_light .t_dark .t_dim_SheetOverlay, :root.t_dark .t_light .t_dark .t_disabled_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_disabled_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_disabled_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_disabled_DialogOverlay, :root.t_dark .t_light .t_dark .t_disabled_ModalOverlay, :root.t_dark .t_light .t_dark .t_disabled_SheetOverlay, :root.t_dark .t_light .t_dark .t_error_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_error_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_error_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_error_DialogOverlay, :root.t_dark .t_light .t_dark .t_error_ModalOverlay, :root.t_dark .t_light .t_dark .t_error_SheetOverlay, :root.t_dark .t_light .t_dark .t_ModalOverlay, :root.t_dark .t_light .t_dark .t_red_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_red_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_red_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_red_DialogOverlay, :root.t_dark .t_light .t_dark .t_red_ModalOverlay, :root.t_dark .t_light .t_dark .t_red_SheetOverlay, :root.t_dark .t_light .t_dark .t_SheetOverlay, :root.t_dark .t_light .t_dark .t_success_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_success_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_success_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_success_DialogOverlay, :root.t_dark .t_light .t_dark .t_success_ModalOverlay, :root.t_dark .t_light .t_dark .t_success_SheetOverlay, :root.t_dark .t_light .t_dark .t_warning_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_warning_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_warning_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_warning_DialogOverlay, :root.t_dark .t_light .t_dark .t_warning_ModalOverlay, :root.t_dark .t_light .t_dark .t_warning_SheetOverlay, :root.t_dark .t_ModalOverlay, :root.t_dark .t_red_accent_DialogOverlay, :root.t_dark .t_red_accent_ModalOverlay, :root.t_dark .t_red_accent_SheetOverlay, :root.t_dark .t_red_DialogOverlay, :root.t_dark .t_red_ModalOverlay, :root.t_dark .t_red_SheetOverlay, :root.t_dark .t_SheetOverlay, :root.t_dark .t_success_accent_DialogOverlay, :root.t_dark .t_success_accent_ModalOverlay, :root.t_dark .t_success_accent_SheetOverlay, :root.t_dark .t_success_DialogOverlay, :root.t_dark .t_success_ModalOverlay, :root.t_dark .t_success_SheetOverlay, :root.t_dark .t_warning_accent_DialogOverlay, :root.t_dark .t_warning_accent_ModalOverlay, :root.t_dark .t_warning_accent_SheetOverlay, :root.t_dark .t_warning_DialogOverlay, :root.t_dark .t_warning_ModalOverlay, :root.t_dark .t_warning_SheetOverlay, :root.t_light .t_dark .t_accent_DialogOverlay, :root.t_light .t_dark .t_accent_ModalOverlay, :root.t_light .t_dark .t_accent_SheetOverlay, :root.t_light .t_dark .t_active_accent_DialogOverlay, :root.t_light .t_dark .t_active_accent_ModalOverlay, :root.t_light .t_dark .t_active_accent_SheetOverlay, :root.t_light .t_dark .t_active_DialogOverlay, :root.t_light .t_dark .t_active_ModalOverlay, :root.t_light .t_dark .t_active_SheetOverlay, :root.t_light .t_dark .t_alt1_accent_DialogOverlay, :root.t_light .t_dark .t_alt1_accent_ModalOverlay, :root.t_light .t_dark .t_alt1_accent_SheetOverlay, :root.t_light .t_dark .t_alt1_DialogOverlay, :root.t_light .t_dark .t_alt1_ModalOverlay, :root.t_light .t_dark .t_alt1_SheetOverlay, :root.t_light .t_dark .t_alt2_accent_DialogOverlay, :root.t_light .t_dark .t_alt2_accent_ModalOverlay, :root.t_light .t_dark .t_alt2_accent_SheetOverlay, :root.t_light .t_dark .t_alt2_DialogOverlay, :root.t_light .t_dark .t_alt2_ModalOverlay, :root.t_light .t_dark .t_alt2_SheetOverlay, :root.t_light .t_dark .t_DialogOverlay, :root.t_light .t_dark .t_dim_accent_DialogOverlay, :root.t_light .t_dark .t_dim_accent_ModalOverlay, :root.t_light .t_dark .t_dim_accent_SheetOverlay, :root.t_light .t_dark .t_dim_DialogOverlay, :root.t_light .t_dark .t_dim_ModalOverlay, :root.t_light .t_dark .t_dim_SheetOverlay, :root.t_light .t_dark .t_disabled_accent_DialogOverlay, :root.t_light .t_dark .t_disabled_accent_ModalOverlay, :root.t_light .t_dark .t_disabled_accent_SheetOverlay, :root.t_light .t_dark .t_disabled_DialogOverlay, :root.t_light .t_dark .t_disabled_ModalOverlay, :root.t_light .t_dark .t_disabled_SheetOverlay, :root.t_light .t_dark .t_error_accent_DialogOverlay, :root.t_light .t_dark .t_error_accent_ModalOverlay, :root.t_light .t_dark .t_error_accent_SheetOverlay, :root.t_light .t_dark .t_error_DialogOverlay, :root.t_light .t_dark .t_error_ModalOverlay, :root.t_light .t_dark .t_error_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_active_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_active_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_active_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_active_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_active_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_active_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt1_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt1_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt1_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt2_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt2_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_alt2_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_dim_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_dim_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_dim_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_disabled_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_disabled_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_disabled_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_error_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_error_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_error_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_error_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_error_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_error_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_red_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_red_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_red_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_red_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_red_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_red_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_success_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_success_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_success_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_success_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_success_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_success_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dark .t_warning_DialogOverlay, :root.t_light .t_dark .t_light .t_dark .t_warning_ModalOverlay, :root.t_light .t_dark .t_light .t_dark .t_warning_SheetOverlay, :root.t_light .t_dark .t_ModalOverlay, :root.t_light .t_dark .t_red_accent_DialogOverlay, :root.t_light .t_dark .t_red_accent_ModalOverlay, :root.t_light .t_dark .t_red_accent_SheetOverlay, :root.t_light .t_dark .t_red_DialogOverlay, :root.t_light .t_dark .t_red_ModalOverlay, :root.t_light .t_dark .t_red_SheetOverlay, :root.t_light .t_dark .t_SheetOverlay, :root.t_light .t_dark .t_success_accent_DialogOverlay, :root.t_light .t_dark .t_success_accent_ModalOverlay, :root.t_light .t_dark .t_success_accent_SheetOverlay, :root.t_light .t_dark .t_success_DialogOverlay, :root.t_light .t_dark .t_success_ModalOverlay, :root.t_light .t_dark .t_success_SheetOverlay, :root.t_light .t_dark .t_warning_accent_DialogOverlay, :root.t_light .t_dark .t_warning_accent_ModalOverlay, :root.t_light .t_dark .t_warning_accent_SheetOverlay, :root.t_light .t_dark .t_warning_DialogOverlay, :root.t_light .t_dark .t_warning_ModalOverlay, :root.t_light .t_dark .t_warning_SheetOverlay {--background:rgba(0,0,0,0.9);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);} + .t_accent_DialogOverlay, .t_accent_ModalOverlay, .t_accent_SheetOverlay, .t_active_accent_DialogOverlay, .t_active_accent_ModalOverlay, .t_active_accent_SheetOverlay, .t_active_DialogOverlay, .t_active_ModalOverlay, .t_active_SheetOverlay, .t_alt1_accent_DialogOverlay, .t_alt1_accent_ModalOverlay, .t_alt1_accent_SheetOverlay, .t_alt1_DialogOverlay, .t_alt1_ModalOverlay, .t_alt1_SheetOverlay, .t_alt2_accent_DialogOverlay, .t_alt2_accent_ModalOverlay, .t_alt2_accent_SheetOverlay, .t_alt2_DialogOverlay, .t_alt2_ModalOverlay, .t_alt2_SheetOverlay, .t_DialogOverlay, .t_dim_accent_DialogOverlay, .t_dim_accent_ModalOverlay, .t_dim_accent_SheetOverlay, .t_dim_DialogOverlay, .t_dim_ModalOverlay, .t_dim_SheetOverlay, .t_disabled_accent_DialogOverlay, .t_disabled_accent_ModalOverlay, .t_disabled_accent_SheetOverlay, .t_disabled_DialogOverlay, .t_disabled_ModalOverlay, .t_disabled_SheetOverlay, .t_error_accent_DialogOverlay, .t_error_accent_ModalOverlay, .t_error_accent_SheetOverlay, .t_error_DialogOverlay, .t_error_ModalOverlay, .t_error_SheetOverlay, .t_light .t_dark .t_accent_DialogOverlay, .t_light .t_dark .t_accent_ModalOverlay, .t_light .t_dark .t_accent_SheetOverlay, .t_light .t_dark .t_active_accent_DialogOverlay, .t_light .t_dark .t_active_accent_ModalOverlay, .t_light .t_dark .t_active_accent_SheetOverlay, .t_light .t_dark .t_active_DialogOverlay, .t_light .t_dark .t_active_ModalOverlay, .t_light .t_dark .t_active_SheetOverlay, .t_light .t_dark .t_alt1_accent_DialogOverlay, .t_light .t_dark .t_alt1_accent_ModalOverlay, .t_light .t_dark .t_alt1_accent_SheetOverlay, .t_light .t_dark .t_alt1_DialogOverlay, .t_light .t_dark .t_alt1_ModalOverlay, .t_light .t_dark .t_alt1_SheetOverlay, .t_light .t_dark .t_alt2_accent_DialogOverlay, .t_light .t_dark .t_alt2_accent_ModalOverlay, .t_light .t_dark .t_alt2_accent_SheetOverlay, .t_light .t_dark .t_alt2_DialogOverlay, .t_light .t_dark .t_alt2_ModalOverlay, .t_light .t_dark .t_alt2_SheetOverlay, .t_light .t_dark .t_DialogOverlay, .t_light .t_dark .t_dim_accent_DialogOverlay, .t_light .t_dark .t_dim_accent_ModalOverlay, .t_light .t_dark .t_dim_accent_SheetOverlay, .t_light .t_dark .t_dim_DialogOverlay, .t_light .t_dark .t_dim_ModalOverlay, .t_light .t_dark .t_dim_SheetOverlay, .t_light .t_dark .t_disabled_accent_DialogOverlay, .t_light .t_dark .t_disabled_accent_ModalOverlay, .t_light .t_dark .t_disabled_accent_SheetOverlay, .t_light .t_dark .t_disabled_DialogOverlay, .t_light .t_dark .t_disabled_ModalOverlay, .t_light .t_dark .t_disabled_SheetOverlay, .t_light .t_dark .t_error_accent_DialogOverlay, .t_light .t_dark .t_error_accent_ModalOverlay, .t_light .t_dark .t_error_accent_SheetOverlay, .t_light .t_dark .t_error_DialogOverlay, .t_light .t_dark .t_error_ModalOverlay, .t_light .t_dark .t_error_SheetOverlay, .t_light .t_dark .t_ModalOverlay, .t_light .t_dark .t_red_accent_DialogOverlay, .t_light .t_dark .t_red_accent_ModalOverlay, .t_light .t_dark .t_red_accent_SheetOverlay, .t_light .t_dark .t_red_DialogOverlay, .t_light .t_dark .t_red_ModalOverlay, .t_light .t_dark .t_red_SheetOverlay, .t_light .t_dark .t_SheetOverlay, .t_light .t_dark .t_success_accent_DialogOverlay, .t_light .t_dark .t_success_accent_ModalOverlay, .t_light .t_dark .t_success_accent_SheetOverlay, .t_light .t_dark .t_success_DialogOverlay, .t_light .t_dark .t_success_ModalOverlay, .t_light .t_dark .t_success_SheetOverlay, .t_light .t_dark .t_warning_accent_DialogOverlay, .t_light .t_dark .t_warning_accent_ModalOverlay, .t_light .t_dark .t_warning_accent_SheetOverlay, .t_light .t_dark .t_warning_DialogOverlay, .t_light .t_dark .t_warning_ModalOverlay, .t_light .t_dark .t_warning_SheetOverlay, .t_ModalOverlay, .t_red_accent_DialogOverlay, .t_red_accent_ModalOverlay, .t_red_accent_SheetOverlay, .t_red_DialogOverlay, .t_red_ModalOverlay, .t_red_SheetOverlay, .t_SheetOverlay, .t_success_accent_DialogOverlay, .t_success_accent_ModalOverlay, .t_success_accent_SheetOverlay, .t_success_DialogOverlay, .t_success_ModalOverlay, .t_success_SheetOverlay, .t_warning_accent_DialogOverlay, .t_warning_accent_ModalOverlay, .t_warning_accent_SheetOverlay, .t_warning_DialogOverlay, .t_warning_ModalOverlay, .t_warning_SheetOverlay {--background:rgba(0,0,0,0.9);} + } +:root.t_dark .t_light .t_dark .t_ProgressIndicator, :root.t_dark .t_light .t_dark .t_SliderThumb, :root.t_dark .t_light .t_dark .t_SwitchThumb, :root.t_dark .t_light .t_dark .t_Tooltip, :root.t_dark .t_ProgressIndicator, :root.t_dark .t_SliderThumb, :root.t_dark .t_SwitchThumb, :root.t_dark .t_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_Tooltip, :root.t_light .t_dark .t_ProgressIndicator, :root.t_light .t_dark .t_SliderThumb, :root.t_light .t_dark .t_SwitchThumb, :root.t_light .t_dark .t_Tooltip {--accentBackground:hsla(191, 33%, 10%, 0);--accentColor:hsla(191, 33%, 10%, 0);--background0:hsla(0, 0%, 100%, 0.25);--background025:hsla(0, 0%, 100%, 0.5);--background05:hsla(0, 0%, 100%, 0.75);--background075:hsla(112, 22%, 100%, 1);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:hsla(112, 22%, 100%, 1);--backgroundHover:hsla(112, 22%, 59%, 1);--backgroundPress:hsla(191, 32%, 50%, 1);--backgroundFocus:hsla(191, 32%, 46%, 1);--color:hsla(191, 32%, 15%, 1);--colorHover:hsla(191, 32%, 19%, 1);--colorPress:hsla(191, 32%, 15%, 1);--colorFocus:hsla(191, 32%, 19%, 1);--placeholderColor:hsla(191, 32%, 19%, 1);--borderColor:hsla(191, 32%, 46%, 1);--borderColorHover:hsla(191, 32%, 41%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 41%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_light .t_dark .t_ProgressIndicator, .t_light .t_dark .t_SliderThumb, .t_light .t_dark .t_SwitchThumb, .t_light .t_dark .t_Tooltip, .t_ProgressIndicator, .t_SliderThumb, .t_SwitchThumb, .t_Tooltip {--accentBackground:hsla(191, 33%, 10%, 0);--accentColor:hsla(191, 33%, 10%, 0);--background0:hsla(0, 0%, 100%, 0.25);--background025:hsla(0, 0%, 100%, 0.5);--background05:hsla(0, 0%, 100%, 0.75);--background075:hsla(112, 22%, 100%, 1);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:hsla(112, 22%, 100%, 1);--backgroundHover:hsla(112, 22%, 59%, 1);--backgroundPress:hsla(191, 32%, 50%, 1);--backgroundFocus:hsla(191, 32%, 46%, 1);--color:hsla(191, 32%, 15%, 1);--colorHover:hsla(191, 32%, 19%, 1);--colorPress:hsla(191, 32%, 15%, 1);--colorFocus:hsla(191, 32%, 19%, 1);--placeholderColor:hsla(191, 32%, 19%, 1);--borderColor:hsla(191, 32%, 46%, 1);--borderColorHover:hsla(191, 32%, 41%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 41%, 1);} + } +:root.t_dark .t_light .t_dark .t_SliderTrackActive, :root.t_dark .t_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_SliderTrackActive, :root.t_light .t_dark .t_SliderTrackActive {--accentBackground:hsla(191, 33%, 10%, 0);--accentColor:hsla(191, 33%, 10%, 0);--background0:hsla(0, 0%, 100%, 0.75);--background025:hsla(112, 22%, 100%, 1);--background05:hsla(112, 22%, 59%, 1);--background075:hsla(191, 32%, 50%, 1);--color0:hsla(191, 32%, 19%, 1);--color025:hsla(191, 32%, 15%, 1);--color05:hsla(191, 32%, 10%, 1);--color075:hsla(191, 33%, 10%, 0.75);--background:hsla(191, 32%, 50%, 1);--backgroundHover:hsla(191, 32%, 46%, 1);--backgroundPress:hsla(191, 32%, 41%, 1);--backgroundFocus:hsla(191, 32%, 37%, 1);--color:hsla(191, 32%, 15%, 1);--colorHover:hsla(191, 32%, 19%, 1);--colorPress:hsla(191, 32%, 15%, 1);--colorFocus:hsla(191, 32%, 19%, 1);--placeholderColor:hsla(191, 32%, 28%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 28%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_light .t_dark .t_SliderTrackActive, .t_SliderTrackActive {--accentBackground:hsla(191, 33%, 10%, 0);--accentColor:hsla(191, 33%, 10%, 0);--background0:hsla(0, 0%, 100%, 0.75);--background025:hsla(112, 22%, 100%, 1);--background05:hsla(112, 22%, 59%, 1);--background075:hsla(191, 32%, 50%, 1);--color0:hsla(191, 32%, 19%, 1);--color025:hsla(191, 32%, 15%, 1);--color05:hsla(191, 32%, 10%, 1);--color075:hsla(191, 33%, 10%, 0.75);--background:hsla(191, 32%, 50%, 1);--backgroundHover:hsla(191, 32%, 46%, 1);--backgroundPress:hsla(191, 32%, 41%, 1);--backgroundFocus:hsla(191, 32%, 37%, 1);--color:hsla(191, 32%, 15%, 1);--colorHover:hsla(191, 32%, 19%, 1);--colorPress:hsla(191, 32%, 15%, 1);--colorFocus:hsla(191, 32%, 19%, 1);--placeholderColor:hsla(191, 32%, 28%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 28%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} + } +:root.t_dark .t_accent, :root.t_dark .t_active_accent, :root.t_dark .t_alt1_accent, :root.t_dark .t_alt2_accent, :root.t_dark .t_dim_accent, :root.t_dark .t_disabled_accent, :root.t_dark .t_error_accent, :root.t_dark .t_light .t_dark .t_accent, :root.t_dark .t_light .t_dark .t_active_accent, :root.t_dark .t_light .t_dark .t_alt1_accent, :root.t_dark .t_light .t_dark .t_alt2_accent, :root.t_dark .t_light .t_dark .t_dim_accent, :root.t_dark .t_light .t_dark .t_disabled_accent, :root.t_dark .t_light .t_dark .t_error_accent, :root.t_dark .t_light .t_dark .t_red_accent, :root.t_dark .t_light .t_dark .t_success_accent, :root.t_dark .t_light .t_dark .t_warning_accent, :root.t_dark .t_red_accent, :root.t_dark .t_success_accent, :root.t_dark .t_warning_accent, :root.t_light .t_dark .t_accent, :root.t_light .t_dark .t_active_accent, :root.t_light .t_dark .t_alt1_accent, :root.t_light .t_dark .t_alt2_accent, :root.t_light .t_dark .t_dim_accent, :root.t_light .t_dark .t_disabled_accent, :root.t_light .t_dark .t_error_accent, :root.t_light .t_dark .t_light .t_dark .t_accent, :root.t_light .t_dark .t_light .t_dark .t_active_accent, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent, :root.t_light .t_dark .t_light .t_dark .t_dim_accent, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent, :root.t_light .t_dark .t_light .t_dark .t_error_accent, :root.t_light .t_dark .t_light .t_dark .t_red_accent, :root.t_light .t_dark .t_light .t_dark .t_success_accent, :root.t_light .t_dark .t_light .t_dark .t_warning_accent, :root.t_light .t_dark .t_red_accent, :root.t_light .t_dark .t_success_accent, :root.t_light .t_dark .t_warning_accent {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-231);--backgroundHover:var(--color-232);--backgroundPress:var(--color-233);--backgroundFocus:var(--color-234);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-234);--borderColorHover:var(--color-235);--borderColorFocus:var(--color-236);--borderColorPress:var(--color-235);--color1:var(--color-231);--color2:var(--color-232);--color3:var(--color-233);--color4:var(--color-234);--color5:var(--color-235);--color6:var(--color-236);--color7:var(--color-237);--color8:var(--color-238);--color9:var(--color-239);--color10:var(--color-240);--color11:hsla(191, 32%, 10%, 1);--color12:hsla(191, 32%, 10%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_accent, .t_active_accent, .t_alt1_accent, .t_alt2_accent, .t_dim_accent, .t_disabled_accent, .t_error_accent, .t_light .t_dark .t_accent, .t_light .t_dark .t_active_accent, .t_light .t_dark .t_alt1_accent, .t_light .t_dark .t_alt2_accent, .t_light .t_dark .t_dim_accent, .t_light .t_dark .t_disabled_accent, .t_light .t_dark .t_error_accent, .t_light .t_dark .t_red_accent, .t_light .t_dark .t_success_accent, .t_light .t_dark .t_warning_accent, .t_red_accent, .t_success_accent, .t_warning_accent {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-231);--backgroundHover:var(--color-232);--backgroundPress:var(--color-233);--backgroundFocus:var(--color-234);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-234);--borderColorHover:var(--color-235);--borderColorFocus:var(--color-236);--borderColorPress:var(--color-235);--color1:var(--color-231);--color2:var(--color-232);--color3:var(--color-233);--color4:var(--color-234);--color5:var(--color-235);--color6:var(--color-236);--color7:var(--color-237);--color8:var(--color-238);--color9:var(--color-239);--color10:var(--color-240);--color11:hsla(191, 32%, 10%, 1);--color12:hsla(191, 32%, 10%, 1);} + } +:root.t_dark .t_accent_Button, :root.t_dark .t_accent_Switch, :root.t_dark .t_light .t_dark .t_accent_Button, :root.t_dark .t_light .t_dark .t_accent_Switch, :root.t_light .t_dark .t_accent_Button, :root.t_light .t_dark .t_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_accent_Switch {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-234);--backgroundHover:var(--color-235);--backgroundPress:var(--color-236);--backgroundFocus:var(--color-237);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-237);--borderColorHover:var(--color-238);--borderColorFocus:var(--color-239);--borderColorPress:var(--color-238);--color1:var(--color-231);--color2:var(--color-232);--color3:var(--color-233);--color4:var(--color-234);--color5:var(--color-235);--color6:var(--color-236);--color7:var(--color-237);--color8:var(--color-238);--color9:var(--color-239);--color10:var(--color-240);--color11:hsla(191, 32%, 10%, 1);--color12:hsla(191, 32%, 10%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_accent_Button, .t_accent_Switch, .t_light .t_dark .t_accent_Button, .t_light .t_dark .t_accent_Switch {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-234);--backgroundHover:var(--color-235);--backgroundPress:var(--color-236);--backgroundFocus:var(--color-237);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-237);--borderColorHover:var(--color-238);--borderColorFocus:var(--color-239);--borderColorPress:var(--color-238);--color1:var(--color-231);--color2:var(--color-232);--color3:var(--color-233);--color4:var(--color-234);--color5:var(--color-235);--color6:var(--color-236);--color7:var(--color-237);--color8:var(--color-238);--color9:var(--color-239);--color10:var(--color-240);--color11:hsla(191, 32%, 10%, 1);--color12:hsla(191, 32%, 10%, 1);} + } +:root.t_dark .t_accent_Card, :root.t_dark .t_accent_DrawerFrame, :root.t_dark .t_accent_Progress, :root.t_dark .t_accent_TooltipArrow, :root.t_dark .t_active_accent_Card, :root.t_dark .t_active_accent_DrawerFrame, :root.t_dark .t_active_accent_Progress, :root.t_dark .t_active_accent_TooltipArrow, :root.t_dark .t_alt1_accent_Card, :root.t_dark .t_alt1_accent_DrawerFrame, :root.t_dark .t_alt1_accent_Progress, :root.t_dark .t_alt1_accent_TooltipArrow, :root.t_dark .t_alt2_accent_Card, :root.t_dark .t_alt2_accent_DrawerFrame, :root.t_dark .t_alt2_accent_Progress, :root.t_dark .t_alt2_accent_TooltipArrow, :root.t_dark .t_dim_accent_Card, :root.t_dark .t_dim_accent_DrawerFrame, :root.t_dark .t_dim_accent_Progress, :root.t_dark .t_dim_accent_TooltipArrow, :root.t_dark .t_disabled_accent_Card, :root.t_dark .t_disabled_accent_DrawerFrame, :root.t_dark .t_disabled_accent_Progress, :root.t_dark .t_disabled_accent_TooltipArrow, :root.t_dark .t_error_accent_Card, :root.t_dark .t_error_accent_DrawerFrame, :root.t_dark .t_error_accent_Progress, :root.t_dark .t_error_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_accent_Card, :root.t_dark .t_light .t_dark .t_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_accent_Progress, :root.t_dark .t_light .t_dark .t_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_active_accent_Card, :root.t_dark .t_light .t_dark .t_active_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_active_accent_Progress, :root.t_dark .t_light .t_dark .t_active_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_alt1_accent_Card, :root.t_dark .t_light .t_dark .t_alt1_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_alt1_accent_Progress, :root.t_dark .t_light .t_dark .t_alt1_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_alt2_accent_Card, :root.t_dark .t_light .t_dark .t_alt2_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_alt2_accent_Progress, :root.t_dark .t_light .t_dark .t_alt2_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_dim_accent_Card, :root.t_dark .t_light .t_dark .t_dim_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_dim_accent_Progress, :root.t_dark .t_light .t_dark .t_dim_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_disabled_accent_Card, :root.t_dark .t_light .t_dark .t_disabled_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_disabled_accent_Progress, :root.t_dark .t_light .t_dark .t_disabled_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_error_accent_Card, :root.t_dark .t_light .t_dark .t_error_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_error_accent_Progress, :root.t_dark .t_light .t_dark .t_error_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_red_accent_Card, :root.t_dark .t_light .t_dark .t_red_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_red_accent_Progress, :root.t_dark .t_light .t_dark .t_red_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_success_accent_Card, :root.t_dark .t_light .t_dark .t_success_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_success_accent_Progress, :root.t_dark .t_light .t_dark .t_success_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_warning_accent_Card, :root.t_dark .t_light .t_dark .t_warning_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_warning_accent_Progress, :root.t_dark .t_light .t_dark .t_warning_accent_TooltipArrow, :root.t_dark .t_red_accent_Card, :root.t_dark .t_red_accent_DrawerFrame, :root.t_dark .t_red_accent_Progress, :root.t_dark .t_red_accent_TooltipArrow, :root.t_dark .t_success_accent_Card, :root.t_dark .t_success_accent_DrawerFrame, :root.t_dark .t_success_accent_Progress, :root.t_dark .t_success_accent_TooltipArrow, :root.t_dark .t_warning_accent_Card, :root.t_dark .t_warning_accent_DrawerFrame, :root.t_dark .t_warning_accent_Progress, :root.t_dark .t_warning_accent_TooltipArrow, :root.t_light .t_dark .t_accent_Card, :root.t_light .t_dark .t_accent_DrawerFrame, :root.t_light .t_dark .t_accent_Progress, :root.t_light .t_dark .t_accent_TooltipArrow, :root.t_light .t_dark .t_active_accent_Card, :root.t_light .t_dark .t_active_accent_DrawerFrame, :root.t_light .t_dark .t_active_accent_Progress, :root.t_light .t_dark .t_active_accent_TooltipArrow, :root.t_light .t_dark .t_alt1_accent_Card, :root.t_light .t_dark .t_alt1_accent_DrawerFrame, :root.t_light .t_dark .t_alt1_accent_Progress, :root.t_light .t_dark .t_alt1_accent_TooltipArrow, :root.t_light .t_dark .t_alt2_accent_Card, :root.t_light .t_dark .t_alt2_accent_DrawerFrame, :root.t_light .t_dark .t_alt2_accent_Progress, :root.t_light .t_dark .t_alt2_accent_TooltipArrow, :root.t_light .t_dark .t_dim_accent_Card, :root.t_light .t_dark .t_dim_accent_DrawerFrame, :root.t_light .t_dark .t_dim_accent_Progress, :root.t_light .t_dark .t_dim_accent_TooltipArrow, :root.t_light .t_dark .t_disabled_accent_Card, :root.t_light .t_dark .t_disabled_accent_DrawerFrame, :root.t_light .t_dark .t_disabled_accent_Progress, :root.t_light .t_dark .t_disabled_accent_TooltipArrow, :root.t_light .t_dark .t_error_accent_Card, :root.t_light .t_dark .t_error_accent_DrawerFrame, :root.t_light .t_dark .t_error_accent_Progress, :root.t_light .t_dark .t_error_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_active_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_active_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_active_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_active_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_error_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_error_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_error_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_error_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_red_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_red_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_red_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_red_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_success_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_success_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_success_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_success_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_Card, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_Progress, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_TooltipArrow, :root.t_light .t_dark .t_red_accent_Card, :root.t_light .t_dark .t_red_accent_DrawerFrame, :root.t_light .t_dark .t_red_accent_Progress, :root.t_light .t_dark .t_red_accent_TooltipArrow, :root.t_light .t_dark .t_success_accent_Card, :root.t_light .t_dark .t_success_accent_DrawerFrame, :root.t_light .t_dark .t_success_accent_Progress, :root.t_light .t_dark .t_success_accent_TooltipArrow, :root.t_light .t_dark .t_warning_accent_Card, :root.t_light .t_dark .t_warning_accent_DrawerFrame, :root.t_light .t_dark .t_warning_accent_Progress, :root.t_light .t_dark .t_warning_accent_TooltipArrow {--background0:var(--color-229);--background025:var(--color-230);--background05:var(--color-231);--background075:var(--color-232);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 33%, 10%, 0.75);--color075:hsla(191, 33%, 10%, 0.5);--background:var(--color-232);--backgroundHover:var(--color-233);--backgroundPress:var(--color-234);--backgroundFocus:var(--color-235);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-239);--borderColor:var(--color-235);--borderColorHover:var(--color-236);--borderColorFocus:var(--color-237);--borderColorPress:var(--color-236);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_accent_Card, .t_accent_DrawerFrame, .t_accent_Progress, .t_accent_TooltipArrow, .t_active_accent_Card, .t_active_accent_DrawerFrame, .t_active_accent_Progress, .t_active_accent_TooltipArrow, .t_alt1_accent_Card, .t_alt1_accent_DrawerFrame, .t_alt1_accent_Progress, .t_alt1_accent_TooltipArrow, .t_alt2_accent_Card, .t_alt2_accent_DrawerFrame, .t_alt2_accent_Progress, .t_alt2_accent_TooltipArrow, .t_dim_accent_Card, .t_dim_accent_DrawerFrame, .t_dim_accent_Progress, .t_dim_accent_TooltipArrow, .t_disabled_accent_Card, .t_disabled_accent_DrawerFrame, .t_disabled_accent_Progress, .t_disabled_accent_TooltipArrow, .t_error_accent_Card, .t_error_accent_DrawerFrame, .t_error_accent_Progress, .t_error_accent_TooltipArrow, .t_light .t_dark .t_accent_Card, .t_light .t_dark .t_accent_DrawerFrame, .t_light .t_dark .t_accent_Progress, .t_light .t_dark .t_accent_TooltipArrow, .t_light .t_dark .t_active_accent_Card, .t_light .t_dark .t_active_accent_DrawerFrame, .t_light .t_dark .t_active_accent_Progress, .t_light .t_dark .t_active_accent_TooltipArrow, .t_light .t_dark .t_alt1_accent_Card, .t_light .t_dark .t_alt1_accent_DrawerFrame, .t_light .t_dark .t_alt1_accent_Progress, .t_light .t_dark .t_alt1_accent_TooltipArrow, .t_light .t_dark .t_alt2_accent_Card, .t_light .t_dark .t_alt2_accent_DrawerFrame, .t_light .t_dark .t_alt2_accent_Progress, .t_light .t_dark .t_alt2_accent_TooltipArrow, .t_light .t_dark .t_dim_accent_Card, .t_light .t_dark .t_dim_accent_DrawerFrame, .t_light .t_dark .t_dim_accent_Progress, .t_light .t_dark .t_dim_accent_TooltipArrow, .t_light .t_dark .t_disabled_accent_Card, .t_light .t_dark .t_disabled_accent_DrawerFrame, .t_light .t_dark .t_disabled_accent_Progress, .t_light .t_dark .t_disabled_accent_TooltipArrow, .t_light .t_dark .t_error_accent_Card, .t_light .t_dark .t_error_accent_DrawerFrame, .t_light .t_dark .t_error_accent_Progress, .t_light .t_dark .t_error_accent_TooltipArrow, .t_light .t_dark .t_red_accent_Card, .t_light .t_dark .t_red_accent_DrawerFrame, .t_light .t_dark .t_red_accent_Progress, .t_light .t_dark .t_red_accent_TooltipArrow, .t_light .t_dark .t_success_accent_Card, .t_light .t_dark .t_success_accent_DrawerFrame, .t_light .t_dark .t_success_accent_Progress, .t_light .t_dark .t_success_accent_TooltipArrow, .t_light .t_dark .t_warning_accent_Card, .t_light .t_dark .t_warning_accent_DrawerFrame, .t_light .t_dark .t_warning_accent_Progress, .t_light .t_dark .t_warning_accent_TooltipArrow, .t_red_accent_Card, .t_red_accent_DrawerFrame, .t_red_accent_Progress, .t_red_accent_TooltipArrow, .t_success_accent_Card, .t_success_accent_DrawerFrame, .t_success_accent_Progress, .t_success_accent_TooltipArrow, .t_warning_accent_Card, .t_warning_accent_DrawerFrame, .t_warning_accent_Progress, .t_warning_accent_TooltipArrow {--background0:var(--color-229);--background025:var(--color-230);--background05:var(--color-231);--background075:var(--color-232);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 33%, 10%, 0.75);--color075:hsla(191, 33%, 10%, 0.5);--background:var(--color-232);--backgroundHover:var(--color-233);--backgroundPress:var(--color-234);--backgroundFocus:var(--color-235);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-239);--borderColor:var(--color-235);--borderColorHover:var(--color-236);--borderColorFocus:var(--color-237);--borderColorPress:var(--color-236);} + } +:root.t_dark .t_accent_Checkbox, :root.t_dark .t_accent_Input, :root.t_dark .t_accent_RadioGroupItem, :root.t_dark .t_accent_TextArea, :root.t_dark .t_active_accent_Checkbox, :root.t_dark .t_active_accent_Input, :root.t_dark .t_active_accent_RadioGroupItem, :root.t_dark .t_active_accent_TextArea, :root.t_dark .t_alt1_accent_Checkbox, :root.t_dark .t_alt1_accent_Input, :root.t_dark .t_alt1_accent_RadioGroupItem, :root.t_dark .t_alt1_accent_TextArea, :root.t_dark .t_alt2_accent_Checkbox, :root.t_dark .t_alt2_accent_Input, :root.t_dark .t_alt2_accent_RadioGroupItem, :root.t_dark .t_alt2_accent_TextArea, :root.t_dark .t_dim_accent_Checkbox, :root.t_dark .t_dim_accent_Input, :root.t_dark .t_dim_accent_RadioGroupItem, :root.t_dark .t_dim_accent_TextArea, :root.t_dark .t_disabled_accent_Checkbox, :root.t_dark .t_disabled_accent_Input, :root.t_dark .t_disabled_accent_RadioGroupItem, :root.t_dark .t_disabled_accent_TextArea, :root.t_dark .t_error_accent_Checkbox, :root.t_dark .t_error_accent_Input, :root.t_dark .t_error_accent_RadioGroupItem, :root.t_dark .t_error_accent_TextArea, :root.t_dark .t_light .t_dark .t_accent_Checkbox, :root.t_dark .t_light .t_dark .t_accent_Input, :root.t_dark .t_light .t_dark .t_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_accent_TextArea, :root.t_dark .t_light .t_dark .t_active_accent_Checkbox, :root.t_dark .t_light .t_dark .t_active_accent_Input, :root.t_dark .t_light .t_dark .t_active_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_active_accent_TextArea, :root.t_dark .t_light .t_dark .t_alt1_accent_Checkbox, :root.t_dark .t_light .t_dark .t_alt1_accent_Input, :root.t_dark .t_light .t_dark .t_alt1_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_alt1_accent_TextArea, :root.t_dark .t_light .t_dark .t_alt2_accent_Checkbox, :root.t_dark .t_light .t_dark .t_alt2_accent_Input, :root.t_dark .t_light .t_dark .t_alt2_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_alt2_accent_TextArea, :root.t_dark .t_light .t_dark .t_dim_accent_Checkbox, :root.t_dark .t_light .t_dark .t_dim_accent_Input, :root.t_dark .t_light .t_dark .t_dim_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_dim_accent_TextArea, :root.t_dark .t_light .t_dark .t_disabled_accent_Checkbox, :root.t_dark .t_light .t_dark .t_disabled_accent_Input, :root.t_dark .t_light .t_dark .t_disabled_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_disabled_accent_TextArea, :root.t_dark .t_light .t_dark .t_error_accent_Checkbox, :root.t_dark .t_light .t_dark .t_error_accent_Input, :root.t_dark .t_light .t_dark .t_error_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_error_accent_TextArea, :root.t_dark .t_light .t_dark .t_red_accent_Checkbox, :root.t_dark .t_light .t_dark .t_red_accent_Input, :root.t_dark .t_light .t_dark .t_red_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_red_accent_TextArea, :root.t_dark .t_light .t_dark .t_success_accent_Checkbox, :root.t_dark .t_light .t_dark .t_success_accent_Input, :root.t_dark .t_light .t_dark .t_success_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_success_accent_TextArea, :root.t_dark .t_light .t_dark .t_warning_accent_Checkbox, :root.t_dark .t_light .t_dark .t_warning_accent_Input, :root.t_dark .t_light .t_dark .t_warning_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_warning_accent_TextArea, :root.t_dark .t_red_accent_Checkbox, :root.t_dark .t_red_accent_Input, :root.t_dark .t_red_accent_RadioGroupItem, :root.t_dark .t_red_accent_TextArea, :root.t_dark .t_success_accent_Checkbox, :root.t_dark .t_success_accent_Input, :root.t_dark .t_success_accent_RadioGroupItem, :root.t_dark .t_success_accent_TextArea, :root.t_dark .t_warning_accent_Checkbox, :root.t_dark .t_warning_accent_Input, :root.t_dark .t_warning_accent_RadioGroupItem, :root.t_dark .t_warning_accent_TextArea, :root.t_light .t_dark .t_accent_Checkbox, :root.t_light .t_dark .t_accent_Input, :root.t_light .t_dark .t_accent_RadioGroupItem, :root.t_light .t_dark .t_accent_TextArea, :root.t_light .t_dark .t_active_accent_Checkbox, :root.t_light .t_dark .t_active_accent_Input, :root.t_light .t_dark .t_active_accent_RadioGroupItem, :root.t_light .t_dark .t_active_accent_TextArea, :root.t_light .t_dark .t_alt1_accent_Checkbox, :root.t_light .t_dark .t_alt1_accent_Input, :root.t_light .t_dark .t_alt1_accent_RadioGroupItem, :root.t_light .t_dark .t_alt1_accent_TextArea, :root.t_light .t_dark .t_alt2_accent_Checkbox, :root.t_light .t_dark .t_alt2_accent_Input, :root.t_light .t_dark .t_alt2_accent_RadioGroupItem, :root.t_light .t_dark .t_alt2_accent_TextArea, :root.t_light .t_dark .t_dim_accent_Checkbox, :root.t_light .t_dark .t_dim_accent_Input, :root.t_light .t_dark .t_dim_accent_RadioGroupItem, :root.t_light .t_dark .t_dim_accent_TextArea, :root.t_light .t_dark .t_disabled_accent_Checkbox, :root.t_light .t_dark .t_disabled_accent_Input, :root.t_light .t_dark .t_disabled_accent_RadioGroupItem, :root.t_light .t_dark .t_disabled_accent_TextArea, :root.t_light .t_dark .t_error_accent_Checkbox, :root.t_light .t_dark .t_error_accent_Input, :root.t_light .t_dark .t_error_accent_RadioGroupItem, :root.t_light .t_dark .t_error_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_active_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_active_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_active_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_active_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_error_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_error_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_error_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_error_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_red_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_red_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_red_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_red_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_success_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_success_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_success_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_success_accent_TextArea, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_Input, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_TextArea, :root.t_light .t_dark .t_red_accent_Checkbox, :root.t_light .t_dark .t_red_accent_Input, :root.t_light .t_dark .t_red_accent_RadioGroupItem, :root.t_light .t_dark .t_red_accent_TextArea, :root.t_light .t_dark .t_success_accent_Checkbox, :root.t_light .t_dark .t_success_accent_Input, :root.t_light .t_dark .t_success_accent_RadioGroupItem, :root.t_light .t_dark .t_success_accent_TextArea, :root.t_light .t_dark .t_warning_accent_Checkbox, :root.t_light .t_dark .t_warning_accent_Input, :root.t_light .t_dark .t_warning_accent_RadioGroupItem, :root.t_light .t_dark .t_warning_accent_TextArea {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-231);--backgroundHover:var(--color-232);--backgroundPress:var(--color-233);--backgroundFocus:var(--color-234);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-236);--borderColorHover:var(--color-237);--borderColorFocus:var(--color-238);--borderColorPress:var(--color-237);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_accent_Checkbox, .t_accent_Input, .t_accent_RadioGroupItem, .t_accent_TextArea, .t_active_accent_Checkbox, .t_active_accent_Input, .t_active_accent_RadioGroupItem, .t_active_accent_TextArea, .t_alt1_accent_Checkbox, .t_alt1_accent_Input, .t_alt1_accent_RadioGroupItem, .t_alt1_accent_TextArea, .t_alt2_accent_Checkbox, .t_alt2_accent_Input, .t_alt2_accent_RadioGroupItem, .t_alt2_accent_TextArea, .t_dim_accent_Checkbox, .t_dim_accent_Input, .t_dim_accent_RadioGroupItem, .t_dim_accent_TextArea, .t_disabled_accent_Checkbox, .t_disabled_accent_Input, .t_disabled_accent_RadioGroupItem, .t_disabled_accent_TextArea, .t_error_accent_Checkbox, .t_error_accent_Input, .t_error_accent_RadioGroupItem, .t_error_accent_TextArea, .t_light .t_dark .t_accent_Checkbox, .t_light .t_dark .t_accent_Input, .t_light .t_dark .t_accent_RadioGroupItem, .t_light .t_dark .t_accent_TextArea, .t_light .t_dark .t_active_accent_Checkbox, .t_light .t_dark .t_active_accent_Input, .t_light .t_dark .t_active_accent_RadioGroupItem, .t_light .t_dark .t_active_accent_TextArea, .t_light .t_dark .t_alt1_accent_Checkbox, .t_light .t_dark .t_alt1_accent_Input, .t_light .t_dark .t_alt1_accent_RadioGroupItem, .t_light .t_dark .t_alt1_accent_TextArea, .t_light .t_dark .t_alt2_accent_Checkbox, .t_light .t_dark .t_alt2_accent_Input, .t_light .t_dark .t_alt2_accent_RadioGroupItem, .t_light .t_dark .t_alt2_accent_TextArea, .t_light .t_dark .t_dim_accent_Checkbox, .t_light .t_dark .t_dim_accent_Input, .t_light .t_dark .t_dim_accent_RadioGroupItem, .t_light .t_dark .t_dim_accent_TextArea, .t_light .t_dark .t_disabled_accent_Checkbox, .t_light .t_dark .t_disabled_accent_Input, .t_light .t_dark .t_disabled_accent_RadioGroupItem, .t_light .t_dark .t_disabled_accent_TextArea, .t_light .t_dark .t_error_accent_Checkbox, .t_light .t_dark .t_error_accent_Input, .t_light .t_dark .t_error_accent_RadioGroupItem, .t_light .t_dark .t_error_accent_TextArea, .t_light .t_dark .t_red_accent_Checkbox, .t_light .t_dark .t_red_accent_Input, .t_light .t_dark .t_red_accent_RadioGroupItem, .t_light .t_dark .t_red_accent_TextArea, .t_light .t_dark .t_success_accent_Checkbox, .t_light .t_dark .t_success_accent_Input, .t_light .t_dark .t_success_accent_RadioGroupItem, .t_light .t_dark .t_success_accent_TextArea, .t_light .t_dark .t_warning_accent_Checkbox, .t_light .t_dark .t_warning_accent_Input, .t_light .t_dark .t_warning_accent_RadioGroupItem, .t_light .t_dark .t_warning_accent_TextArea, .t_red_accent_Checkbox, .t_red_accent_Input, .t_red_accent_RadioGroupItem, .t_red_accent_TextArea, .t_success_accent_Checkbox, .t_success_accent_Input, .t_success_accent_RadioGroupItem, .t_success_accent_TextArea, .t_warning_accent_Checkbox, .t_warning_accent_Input, .t_warning_accent_RadioGroupItem, .t_warning_accent_TextArea {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-231);--backgroundHover:var(--color-232);--backgroundPress:var(--color-233);--backgroundFocus:var(--color-234);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-236);--borderColorHover:var(--color-237);--borderColorFocus:var(--color-238);--borderColorPress:var(--color-237);} + } +:root.t_dark .t_accent_ProgressIndicator, :root.t_dark .t_accent_SliderThumb, :root.t_dark .t_accent_SwitchThumb, :root.t_dark .t_accent_Tooltip, :root.t_dark .t_active_accent_ProgressIndicator, :root.t_dark .t_active_accent_SliderThumb, :root.t_dark .t_active_accent_SwitchThumb, :root.t_dark .t_active_accent_Tooltip, :root.t_dark .t_alt1_accent_ProgressIndicator, :root.t_dark .t_alt1_accent_SliderThumb, :root.t_dark .t_alt1_accent_SwitchThumb, :root.t_dark .t_alt1_accent_Tooltip, :root.t_dark .t_alt2_accent_ProgressIndicator, :root.t_dark .t_alt2_accent_SliderThumb, :root.t_dark .t_alt2_accent_SwitchThumb, :root.t_dark .t_alt2_accent_Tooltip, :root.t_dark .t_dim_accent_ProgressIndicator, :root.t_dark .t_dim_accent_SliderThumb, :root.t_dark .t_dim_accent_SwitchThumb, :root.t_dark .t_dim_accent_Tooltip, :root.t_dark .t_disabled_accent_ProgressIndicator, :root.t_dark .t_disabled_accent_SliderThumb, :root.t_dark .t_disabled_accent_SwitchThumb, :root.t_dark .t_disabled_accent_Tooltip, :root.t_dark .t_error_accent_ProgressIndicator, :root.t_dark .t_error_accent_SliderThumb, :root.t_dark .t_error_accent_SwitchThumb, :root.t_dark .t_error_accent_Tooltip, :root.t_dark .t_light .t_dark .t_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_accent_Tooltip, :root.t_dark .t_light .t_dark .t_active_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_active_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_active_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_active_accent_Tooltip, :root.t_dark .t_light .t_dark .t_alt1_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_alt1_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_alt1_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_alt1_accent_Tooltip, :root.t_dark .t_light .t_dark .t_alt2_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_alt2_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_alt2_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_alt2_accent_Tooltip, :root.t_dark .t_light .t_dark .t_dim_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_dim_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_dim_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_dim_accent_Tooltip, :root.t_dark .t_light .t_dark .t_disabled_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_disabled_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_disabled_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_disabled_accent_Tooltip, :root.t_dark .t_light .t_dark .t_error_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_error_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_error_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_error_accent_Tooltip, :root.t_dark .t_light .t_dark .t_red_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_red_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_red_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_red_accent_Tooltip, :root.t_dark .t_light .t_dark .t_success_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_success_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_success_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_success_accent_Tooltip, :root.t_dark .t_light .t_dark .t_warning_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_warning_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_warning_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_warning_accent_Tooltip, :root.t_dark .t_red_accent_ProgressIndicator, :root.t_dark .t_red_accent_SliderThumb, :root.t_dark .t_red_accent_SwitchThumb, :root.t_dark .t_red_accent_Tooltip, :root.t_dark .t_success_accent_ProgressIndicator, :root.t_dark .t_success_accent_SliderThumb, :root.t_dark .t_success_accent_SwitchThumb, :root.t_dark .t_success_accent_Tooltip, :root.t_dark .t_warning_accent_ProgressIndicator, :root.t_dark .t_warning_accent_SliderThumb, :root.t_dark .t_warning_accent_SwitchThumb, :root.t_dark .t_warning_accent_Tooltip, :root.t_light .t_dark .t_accent_ProgressIndicator, :root.t_light .t_dark .t_accent_SliderThumb, :root.t_light .t_dark .t_accent_SwitchThumb, :root.t_light .t_dark .t_accent_Tooltip, :root.t_light .t_dark .t_active_accent_ProgressIndicator, :root.t_light .t_dark .t_active_accent_SliderThumb, :root.t_light .t_dark .t_active_accent_SwitchThumb, :root.t_light .t_dark .t_active_accent_Tooltip, :root.t_light .t_dark .t_alt1_accent_ProgressIndicator, :root.t_light .t_dark .t_alt1_accent_SliderThumb, :root.t_light .t_dark .t_alt1_accent_SwitchThumb, :root.t_light .t_dark .t_alt1_accent_Tooltip, :root.t_light .t_dark .t_alt2_accent_ProgressIndicator, :root.t_light .t_dark .t_alt2_accent_SliderThumb, :root.t_light .t_dark .t_alt2_accent_SwitchThumb, :root.t_light .t_dark .t_alt2_accent_Tooltip, :root.t_light .t_dark .t_dim_accent_ProgressIndicator, :root.t_light .t_dark .t_dim_accent_SliderThumb, :root.t_light .t_dark .t_dim_accent_SwitchThumb, :root.t_light .t_dark .t_dim_accent_Tooltip, :root.t_light .t_dark .t_disabled_accent_ProgressIndicator, :root.t_light .t_dark .t_disabled_accent_SliderThumb, :root.t_light .t_dark .t_disabled_accent_SwitchThumb, :root.t_light .t_dark .t_disabled_accent_Tooltip, :root.t_light .t_dark .t_error_accent_ProgressIndicator, :root.t_light .t_dark .t_error_accent_SliderThumb, :root.t_light .t_dark .t_error_accent_SwitchThumb, :root.t_light .t_dark .t_error_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_active_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_active_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_active_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_active_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_error_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_error_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_error_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_error_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_red_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_red_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_red_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_red_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_success_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_success_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_success_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_success_accent_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_Tooltip, :root.t_light .t_dark .t_red_accent_ProgressIndicator, :root.t_light .t_dark .t_red_accent_SliderThumb, :root.t_light .t_dark .t_red_accent_SwitchThumb, :root.t_light .t_dark .t_red_accent_Tooltip, :root.t_light .t_dark .t_success_accent_ProgressIndicator, :root.t_light .t_dark .t_success_accent_SliderThumb, :root.t_light .t_dark .t_success_accent_SwitchThumb, :root.t_light .t_dark .t_success_accent_Tooltip, :root.t_light .t_dark .t_warning_accent_ProgressIndicator, :root.t_light .t_dark .t_warning_accent_SliderThumb, :root.t_light .t_dark .t_warning_accent_SwitchThumb, :root.t_light .t_dark .t_warning_accent_Tooltip {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:var(--color-231);--color025:var(--color-230);--color05:var(--color-229);--color075:hsla(125, 96%, 40%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 10%, 1);--backgroundPress:var(--color-240);--backgroundFocus:var(--color-239);--color:var(--color-232);--colorHover:var(--color-233);--colorPress:var(--color-232);--colorFocus:var(--color-233);--placeholderColor:var(--color-233);--borderColor:var(--color-239);--borderColorHover:var(--color-238);--borderColorFocus:var(--color-237);--borderColorPress:var(--color-238);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_accent_ProgressIndicator, .t_accent_SliderThumb, .t_accent_SwitchThumb, .t_accent_Tooltip, .t_active_accent_ProgressIndicator, .t_active_accent_SliderThumb, .t_active_accent_SwitchThumb, .t_active_accent_Tooltip, .t_alt1_accent_ProgressIndicator, .t_alt1_accent_SliderThumb, .t_alt1_accent_SwitchThumb, .t_alt1_accent_Tooltip, .t_alt2_accent_ProgressIndicator, .t_alt2_accent_SliderThumb, .t_alt2_accent_SwitchThumb, .t_alt2_accent_Tooltip, .t_dim_accent_ProgressIndicator, .t_dim_accent_SliderThumb, .t_dim_accent_SwitchThumb, .t_dim_accent_Tooltip, .t_disabled_accent_ProgressIndicator, .t_disabled_accent_SliderThumb, .t_disabled_accent_SwitchThumb, .t_disabled_accent_Tooltip, .t_error_accent_ProgressIndicator, .t_error_accent_SliderThumb, .t_error_accent_SwitchThumb, .t_error_accent_Tooltip, .t_light .t_dark .t_accent_ProgressIndicator, .t_light .t_dark .t_accent_SliderThumb, .t_light .t_dark .t_accent_SwitchThumb, .t_light .t_dark .t_accent_Tooltip, .t_light .t_dark .t_active_accent_ProgressIndicator, .t_light .t_dark .t_active_accent_SliderThumb, .t_light .t_dark .t_active_accent_SwitchThumb, .t_light .t_dark .t_active_accent_Tooltip, .t_light .t_dark .t_alt1_accent_ProgressIndicator, .t_light .t_dark .t_alt1_accent_SliderThumb, .t_light .t_dark .t_alt1_accent_SwitchThumb, .t_light .t_dark .t_alt1_accent_Tooltip, .t_light .t_dark .t_alt2_accent_ProgressIndicator, .t_light .t_dark .t_alt2_accent_SliderThumb, .t_light .t_dark .t_alt2_accent_SwitchThumb, .t_light .t_dark .t_alt2_accent_Tooltip, .t_light .t_dark .t_dim_accent_ProgressIndicator, .t_light .t_dark .t_dim_accent_SliderThumb, .t_light .t_dark .t_dim_accent_SwitchThumb, .t_light .t_dark .t_dim_accent_Tooltip, .t_light .t_dark .t_disabled_accent_ProgressIndicator, .t_light .t_dark .t_disabled_accent_SliderThumb, .t_light .t_dark .t_disabled_accent_SwitchThumb, .t_light .t_dark .t_disabled_accent_Tooltip, .t_light .t_dark .t_error_accent_ProgressIndicator, .t_light .t_dark .t_error_accent_SliderThumb, .t_light .t_dark .t_error_accent_SwitchThumb, .t_light .t_dark .t_error_accent_Tooltip, .t_light .t_dark .t_red_accent_ProgressIndicator, .t_light .t_dark .t_red_accent_SliderThumb, .t_light .t_dark .t_red_accent_SwitchThumb, .t_light .t_dark .t_red_accent_Tooltip, .t_light .t_dark .t_success_accent_ProgressIndicator, .t_light .t_dark .t_success_accent_SliderThumb, .t_light .t_dark .t_success_accent_SwitchThumb, .t_light .t_dark .t_success_accent_Tooltip, .t_light .t_dark .t_warning_accent_ProgressIndicator, .t_light .t_dark .t_warning_accent_SliderThumb, .t_light .t_dark .t_warning_accent_SwitchThumb, .t_light .t_dark .t_warning_accent_Tooltip, .t_red_accent_ProgressIndicator, .t_red_accent_SliderThumb, .t_red_accent_SwitchThumb, .t_red_accent_Tooltip, .t_success_accent_ProgressIndicator, .t_success_accent_SliderThumb, .t_success_accent_SwitchThumb, .t_success_accent_Tooltip, .t_warning_accent_ProgressIndicator, .t_warning_accent_SliderThumb, .t_warning_accent_SwitchThumb, .t_warning_accent_Tooltip {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:var(--color-231);--color025:var(--color-230);--color05:var(--color-229);--color075:hsla(125, 96%, 40%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 10%, 1);--backgroundPress:var(--color-240);--backgroundFocus:var(--color-239);--color:var(--color-232);--colorHover:var(--color-233);--colorPress:var(--color-232);--colorFocus:var(--color-233);--placeholderColor:var(--color-233);--borderColor:var(--color-239);--borderColorHover:var(--color-238);--borderColorFocus:var(--color-237);--borderColorPress:var(--color-238);} + } +:root.t_dark .t_accent_SliderTrack, :root.t_dark .t_accent_TooltipContent, :root.t_dark .t_active_accent_Button, :root.t_dark .t_active_accent_SliderTrack, :root.t_dark .t_active_accent_Switch, :root.t_dark .t_active_accent_TooltipContent, :root.t_dark .t_alt1_accent_Button, :root.t_dark .t_alt1_accent_SliderTrack, :root.t_dark .t_alt1_accent_Switch, :root.t_dark .t_alt1_accent_TooltipContent, :root.t_dark .t_alt2_accent_Button, :root.t_dark .t_alt2_accent_SliderTrack, :root.t_dark .t_alt2_accent_Switch, :root.t_dark .t_alt2_accent_TooltipContent, :root.t_dark .t_dim_accent_Button, :root.t_dark .t_dim_accent_SliderTrack, :root.t_dark .t_dim_accent_Switch, :root.t_dark .t_dim_accent_TooltipContent, :root.t_dark .t_disabled_accent_Button, :root.t_dark .t_disabled_accent_SliderTrack, :root.t_dark .t_disabled_accent_Switch, :root.t_dark .t_disabled_accent_TooltipContent, :root.t_dark .t_error_accent_Button, :root.t_dark .t_error_accent_SliderTrack, :root.t_dark .t_error_accent_Switch, :root.t_dark .t_error_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_active_accent_Button, :root.t_dark .t_light .t_dark .t_active_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_active_accent_Switch, :root.t_dark .t_light .t_dark .t_active_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_alt1_accent_Button, :root.t_dark .t_light .t_dark .t_alt1_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_alt1_accent_Switch, :root.t_dark .t_light .t_dark .t_alt1_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_alt2_accent_Button, :root.t_dark .t_light .t_dark .t_alt2_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_alt2_accent_Switch, :root.t_dark .t_light .t_dark .t_alt2_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_dim_accent_Button, :root.t_dark .t_light .t_dark .t_dim_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_dim_accent_Switch, :root.t_dark .t_light .t_dark .t_dim_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_disabled_accent_Button, :root.t_dark .t_light .t_dark .t_disabled_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_disabled_accent_Switch, :root.t_dark .t_light .t_dark .t_disabled_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_error_accent_Button, :root.t_dark .t_light .t_dark .t_error_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_error_accent_Switch, :root.t_dark .t_light .t_dark .t_error_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_red_accent_Button, :root.t_dark .t_light .t_dark .t_red_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_red_accent_Switch, :root.t_dark .t_light .t_dark .t_red_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_success_accent_Button, :root.t_dark .t_light .t_dark .t_success_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_success_accent_Switch, :root.t_dark .t_light .t_dark .t_success_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_warning_accent_Button, :root.t_dark .t_light .t_dark .t_warning_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_warning_accent_Switch, :root.t_dark .t_light .t_dark .t_warning_accent_TooltipContent, :root.t_dark .t_red_accent_Button, :root.t_dark .t_red_accent_SliderTrack, :root.t_dark .t_red_accent_Switch, :root.t_dark .t_red_accent_TooltipContent, :root.t_dark .t_success_accent_Button, :root.t_dark .t_success_accent_SliderTrack, :root.t_dark .t_success_accent_Switch, :root.t_dark .t_success_accent_TooltipContent, :root.t_dark .t_warning_accent_Button, :root.t_dark .t_warning_accent_SliderTrack, :root.t_dark .t_warning_accent_Switch, :root.t_dark .t_warning_accent_TooltipContent, :root.t_light .t_dark .t_accent_SliderTrack, :root.t_light .t_dark .t_accent_TooltipContent, :root.t_light .t_dark .t_active_accent_Button, :root.t_light .t_dark .t_active_accent_SliderTrack, :root.t_light .t_dark .t_active_accent_Switch, :root.t_light .t_dark .t_active_accent_TooltipContent, :root.t_light .t_dark .t_alt1_accent_Button, :root.t_light .t_dark .t_alt1_accent_SliderTrack, :root.t_light .t_dark .t_alt1_accent_Switch, :root.t_light .t_dark .t_alt1_accent_TooltipContent, :root.t_light .t_dark .t_alt2_accent_Button, :root.t_light .t_dark .t_alt2_accent_SliderTrack, :root.t_light .t_dark .t_alt2_accent_Switch, :root.t_light .t_dark .t_alt2_accent_TooltipContent, :root.t_light .t_dark .t_dim_accent_Button, :root.t_light .t_dark .t_dim_accent_SliderTrack, :root.t_light .t_dark .t_dim_accent_Switch, :root.t_light .t_dark .t_dim_accent_TooltipContent, :root.t_light .t_dark .t_disabled_accent_Button, :root.t_light .t_dark .t_disabled_accent_SliderTrack, :root.t_light .t_dark .t_disabled_accent_Switch, :root.t_light .t_dark .t_disabled_accent_TooltipContent, :root.t_light .t_dark .t_error_accent_Button, :root.t_light .t_dark .t_error_accent_SliderTrack, :root.t_light .t_dark .t_error_accent_Switch, :root.t_light .t_dark .t_error_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_active_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_active_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_active_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_active_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_error_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_error_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_error_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_error_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_red_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_red_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_red_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_red_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_success_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_success_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_success_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_success_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_Button, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_Switch, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_TooltipContent, :root.t_light .t_dark .t_red_accent_Button, :root.t_light .t_dark .t_red_accent_SliderTrack, :root.t_light .t_dark .t_red_accent_Switch, :root.t_light .t_dark .t_red_accent_TooltipContent, :root.t_light .t_dark .t_success_accent_Button, :root.t_light .t_dark .t_success_accent_SliderTrack, :root.t_light .t_dark .t_success_accent_Switch, :root.t_light .t_dark .t_success_accent_TooltipContent, :root.t_light .t_dark .t_warning_accent_Button, :root.t_light .t_dark .t_warning_accent_SliderTrack, :root.t_light .t_dark .t_warning_accent_Switch, :root.t_light .t_dark .t_warning_accent_TooltipContent {--background0:var(--color-230);--background025:var(--color-231);--background05:var(--color-232);--background075:var(--color-233);--color0:var(--color-240);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 32%, 10%, 1);--color075:hsla(191, 33%, 10%, 0.75);--background:var(--color-233);--backgroundHover:var(--color-234);--backgroundPress:var(--color-235);--backgroundFocus:var(--color-236);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-238);--borderColor:var(--color-236);--borderColorHover:var(--color-237);--borderColorFocus:var(--color-238);--borderColorPress:var(--color-237);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_accent_SliderTrack, .t_accent_TooltipContent, .t_active_accent_Button, .t_active_accent_SliderTrack, .t_active_accent_Switch, .t_active_accent_TooltipContent, .t_alt1_accent_Button, .t_alt1_accent_SliderTrack, .t_alt1_accent_Switch, .t_alt1_accent_TooltipContent, .t_alt2_accent_Button, .t_alt2_accent_SliderTrack, .t_alt2_accent_Switch, .t_alt2_accent_TooltipContent, .t_dim_accent_Button, .t_dim_accent_SliderTrack, .t_dim_accent_Switch, .t_dim_accent_TooltipContent, .t_disabled_accent_Button, .t_disabled_accent_SliderTrack, .t_disabled_accent_Switch, .t_disabled_accent_TooltipContent, .t_error_accent_Button, .t_error_accent_SliderTrack, .t_error_accent_Switch, .t_error_accent_TooltipContent, .t_light .t_dark .t_accent_SliderTrack, .t_light .t_dark .t_accent_TooltipContent, .t_light .t_dark .t_active_accent_Button, .t_light .t_dark .t_active_accent_SliderTrack, .t_light .t_dark .t_active_accent_Switch, .t_light .t_dark .t_active_accent_TooltipContent, .t_light .t_dark .t_alt1_accent_Button, .t_light .t_dark .t_alt1_accent_SliderTrack, .t_light .t_dark .t_alt1_accent_Switch, .t_light .t_dark .t_alt1_accent_TooltipContent, .t_light .t_dark .t_alt2_accent_Button, .t_light .t_dark .t_alt2_accent_SliderTrack, .t_light .t_dark .t_alt2_accent_Switch, .t_light .t_dark .t_alt2_accent_TooltipContent, .t_light .t_dark .t_dim_accent_Button, .t_light .t_dark .t_dim_accent_SliderTrack, .t_light .t_dark .t_dim_accent_Switch, .t_light .t_dark .t_dim_accent_TooltipContent, .t_light .t_dark .t_disabled_accent_Button, .t_light .t_dark .t_disabled_accent_SliderTrack, .t_light .t_dark .t_disabled_accent_Switch, .t_light .t_dark .t_disabled_accent_TooltipContent, .t_light .t_dark .t_error_accent_Button, .t_light .t_dark .t_error_accent_SliderTrack, .t_light .t_dark .t_error_accent_Switch, .t_light .t_dark .t_error_accent_TooltipContent, .t_light .t_dark .t_red_accent_Button, .t_light .t_dark .t_red_accent_SliderTrack, .t_light .t_dark .t_red_accent_Switch, .t_light .t_dark .t_red_accent_TooltipContent, .t_light .t_dark .t_success_accent_Button, .t_light .t_dark .t_success_accent_SliderTrack, .t_light .t_dark .t_success_accent_Switch, .t_light .t_dark .t_success_accent_TooltipContent, .t_light .t_dark .t_warning_accent_Button, .t_light .t_dark .t_warning_accent_SliderTrack, .t_light .t_dark .t_warning_accent_Switch, .t_light .t_dark .t_warning_accent_TooltipContent, .t_red_accent_Button, .t_red_accent_SliderTrack, .t_red_accent_Switch, .t_red_accent_TooltipContent, .t_success_accent_Button, .t_success_accent_SliderTrack, .t_success_accent_Switch, .t_success_accent_TooltipContent, .t_warning_accent_Button, .t_warning_accent_SliderTrack, .t_warning_accent_Switch, .t_warning_accent_TooltipContent {--background0:var(--color-230);--background025:var(--color-231);--background05:var(--color-232);--background075:var(--color-233);--color0:var(--color-240);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 32%, 10%, 1);--color075:hsla(191, 33%, 10%, 0.75);--background:var(--color-233);--backgroundHover:var(--color-234);--backgroundPress:var(--color-235);--backgroundFocus:var(--color-236);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-238);--borderColor:var(--color-236);--borderColorHover:var(--color-237);--borderColorFocus:var(--color-238);--borderColorPress:var(--color-237);} + } +:root.t_dark .t_accent_SliderTrackActive, :root.t_dark .t_active_accent_SliderTrackActive, :root.t_dark .t_alt1_accent_SliderTrackActive, :root.t_dark .t_alt2_accent_SliderTrackActive, :root.t_dark .t_dim_accent_SliderTrackActive, :root.t_dark .t_disabled_accent_SliderTrackActive, :root.t_dark .t_error_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_active_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_alt1_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_alt2_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_dim_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_disabled_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_error_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_red_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_success_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_warning_accent_SliderTrackActive, :root.t_dark .t_red_accent_SliderTrackActive, :root.t_dark .t_success_accent_SliderTrackActive, :root.t_dark .t_warning_accent_SliderTrackActive, :root.t_light .t_dark .t_accent_SliderTrackActive, :root.t_light .t_dark .t_active_accent_SliderTrackActive, :root.t_light .t_dark .t_alt1_accent_SliderTrackActive, :root.t_light .t_dark .t_alt2_accent_SliderTrackActive, :root.t_light .t_dark .t_dim_accent_SliderTrackActive, :root.t_light .t_dark .t_disabled_accent_SliderTrackActive, :root.t_light .t_dark .t_error_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_active_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_dim_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_error_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_red_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_success_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_warning_accent_SliderTrackActive, :root.t_light .t_dark .t_red_accent_SliderTrackActive, :root.t_light .t_dark .t_success_accent_SliderTrackActive, :root.t_light .t_dark .t_warning_accent_SliderTrackActive {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 10%, 1);--background075:var(--color-240);--color0:var(--color-233);--color025:var(--color-232);--color05:var(--color-231);--color075:var(--color-230);--background:var(--color-240);--backgroundHover:var(--color-239);--backgroundPress:var(--color-238);--backgroundFocus:var(--color-237);--color:var(--color-232);--colorHover:var(--color-233);--colorPress:var(--color-232);--colorFocus:var(--color-233);--placeholderColor:var(--color-235);--borderColor:var(--color-237);--borderColorHover:var(--color-236);--borderColorFocus:var(--color-235);--borderColorPress:var(--color-236);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_accent_SliderTrackActive, .t_active_accent_SliderTrackActive, .t_alt1_accent_SliderTrackActive, .t_alt2_accent_SliderTrackActive, .t_dim_accent_SliderTrackActive, .t_disabled_accent_SliderTrackActive, .t_error_accent_SliderTrackActive, .t_light .t_dark .t_accent_SliderTrackActive, .t_light .t_dark .t_active_accent_SliderTrackActive, .t_light .t_dark .t_alt1_accent_SliderTrackActive, .t_light .t_dark .t_alt2_accent_SliderTrackActive, .t_light .t_dark .t_dim_accent_SliderTrackActive, .t_light .t_dark .t_disabled_accent_SliderTrackActive, .t_light .t_dark .t_error_accent_SliderTrackActive, .t_light .t_dark .t_red_accent_SliderTrackActive, .t_light .t_dark .t_success_accent_SliderTrackActive, .t_light .t_dark .t_warning_accent_SliderTrackActive, .t_red_accent_SliderTrackActive, .t_success_accent_SliderTrackActive, .t_warning_accent_SliderTrackActive {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 10%, 1);--background075:var(--color-240);--color0:var(--color-233);--color025:var(--color-232);--color05:var(--color-231);--color075:var(--color-230);--background:var(--color-240);--backgroundHover:var(--color-239);--backgroundPress:var(--color-238);--backgroundFocus:var(--color-237);--color:var(--color-232);--colorHover:var(--color-233);--colorPress:var(--color-232);--colorFocus:var(--color-233);--placeholderColor:var(--color-235);--borderColor:var(--color-237);--borderColorHover:var(--color-236);--borderColorFocus:var(--color-235);--borderColorPress:var(--color-236);} + } +:root.t_dark .t_active, :root.t_dark .t_light .t_dark .t_active, :root.t_light .t_dark .t_active, :root.t_light .t_dark .t_light .t_dark .t_active {--background0:hsla(191, 33%, 10%, 0);--background025:hsla(191, 33%, 10%, 0.25);--background05:hsla(191, 33%, 10%, 0.5);--background075:hsla(191, 33%, 10%, 0.75);--color0:hsla(0, 0%, 100%, 0.75);--color025:hsla(0, 0%, 100%, 0.5);--color05:hsla(0, 0%, 100%, 0.25);--color075:hsla(0, 0%, 100%, 0);--background:hsla(191, 33%, 10%, 0.75);--backgroundHover:hsla(191, 32%, 10%, 1);--backgroundPress:hsla(191, 32%, 15%, 1);--backgroundFocus:hsla(191, 32%, 19%, 1);--colorHover:hsla(112, 22%, 59%, 1);--colorPress:hsla(112, 22%, 100%, 1);--colorFocus:hsla(112, 22%, 59%, 1);--placeholderColor:hsla(112, 22%, 59%, 1);--borderColor:hsla(191, 32%, 19%, 1);--borderColorHover:hsla(191, 32%, 24%, 1);--borderColorFocus:hsla(191, 32%, 28%, 1);--borderColorPress:hsla(191, 32%, 24%, 1);--color1:hsla(191, 33%, 10%, 0.75);--color2:hsla(191, 32%, 10%, 1);--color3:hsla(191, 32%, 15%, 1);--color4:hsla(191, 32%, 19%, 1);--color5:hsla(191, 32%, 24%, 1);--color6:hsla(191, 32%, 28%, 1);--color7:hsla(191, 32%, 32%, 1);--color8:hsla(191, 32%, 37%, 1);--color9:hsla(191, 32%, 41%, 1);--color10:hsla(191, 32%, 46%, 1);--color11:hsla(191, 32%, 50%, 1);--color12:hsla(112, 22%, 59%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);} + .t_active, .t_light .t_dark .t_active {--background0:hsla(191, 33%, 10%, 0);--background025:hsla(191, 33%, 10%, 0.25);--background05:hsla(191, 33%, 10%, 0.5);--background075:hsla(191, 33%, 10%, 0.75);--color0:hsla(0, 0%, 100%, 0.75);--color025:hsla(0, 0%, 100%, 0.5);--color05:hsla(0, 0%, 100%, 0.25);--color075:hsla(0, 0%, 100%, 0);--background:hsla(191, 33%, 10%, 0.75);--backgroundHover:hsla(191, 32%, 10%, 1);--backgroundPress:hsla(191, 32%, 15%, 1);--backgroundFocus:hsla(191, 32%, 19%, 1);--colorHover:hsla(112, 22%, 59%, 1);--colorPress:hsla(112, 22%, 100%, 1);--colorFocus:hsla(112, 22%, 59%, 1);--placeholderColor:hsla(112, 22%, 59%, 1);--borderColor:hsla(191, 32%, 19%, 1);--borderColorHover:hsla(191, 32%, 24%, 1);--borderColorFocus:hsla(191, 32%, 28%, 1);--borderColorPress:hsla(191, 32%, 24%, 1);--color1:hsla(191, 33%, 10%, 0.75);--color2:hsla(191, 32%, 10%, 1);--color3:hsla(191, 32%, 15%, 1);--color4:hsla(191, 32%, 19%, 1);--color5:hsla(191, 32%, 24%, 1);--color6:hsla(191, 32%, 28%, 1);--color7:hsla(191, 32%, 32%, 1);--color8:hsla(191, 32%, 37%, 1);--color9:hsla(191, 32%, 41%, 1);--color10:hsla(191, 32%, 46%, 1);--color11:hsla(191, 32%, 50%, 1);--color12:hsla(112, 22%, 59%, 1);} + } +:root.t_dark .t_active_Button, :root.t_dark .t_active_SliderTrack, :root.t_dark .t_active_Switch, :root.t_dark .t_active_TooltipContent, :root.t_dark .t_light .t_dark .t_active_Button, :root.t_dark .t_light .t_dark .t_active_SliderTrack, :root.t_dark .t_light .t_dark .t_active_Switch, :root.t_dark .t_light .t_dark .t_active_TooltipContent, :root.t_light .t_dark .t_active_Button, :root.t_light .t_dark .t_active_SliderTrack, :root.t_light .t_dark .t_active_Switch, :root.t_light .t_dark .t_active_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_active_Button, :root.t_light .t_dark .t_light .t_dark .t_active_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_active_Switch, :root.t_light .t_dark .t_light .t_dark .t_active_TooltipContent {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--colorHover:hsla(112, 22%, 59%, 1);--colorPress:hsla(112, 22%, 100%, 1);--colorFocus:hsla(112, 22%, 59%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);} + .t_active_Button, .t_active_SliderTrack, .t_active_Switch, .t_active_TooltipContent, .t_light .t_dark .t_active_Button, .t_light .t_dark .t_active_SliderTrack, .t_light .t_dark .t_active_Switch, .t_light .t_dark .t_active_TooltipContent {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--colorHover:hsla(112, 22%, 59%, 1);--colorPress:hsla(112, 22%, 100%, 1);--colorFocus:hsla(112, 22%, 59%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} + } +:root.t_dark .t_active_Card, :root.t_dark .t_active_DrawerFrame, :root.t_dark .t_active_Progress, :root.t_dark .t_active_TooltipArrow, :root.t_dark .t_light .t_dark .t_active_Card, :root.t_dark .t_light .t_dark .t_active_DrawerFrame, :root.t_dark .t_light .t_dark .t_active_Progress, :root.t_dark .t_light .t_dark .t_active_TooltipArrow, :root.t_light .t_dark .t_active_Card, :root.t_light .t_dark .t_active_DrawerFrame, :root.t_light .t_dark .t_active_Progress, :root.t_light .t_dark .t_active_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_active_Card, :root.t_light .t_dark .t_light .t_dark .t_active_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_active_Progress, :root.t_light .t_dark .t_light .t_dark .t_active_TooltipArrow {--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:hsla(112, 22%, 100%, 1);--color025:hsla(0, 0%, 100%, 0.75);--color05:hsla(0, 0%, 100%, 0.5);--color075:hsla(0, 0%, 100%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 15%, 1);--backgroundPress:hsla(191, 32%, 19%, 1);--backgroundFocus:hsla(191, 32%, 24%, 1);--colorHover:hsla(112, 22%, 59%, 1);--colorPress:hsla(112, 22%, 100%, 1);--colorFocus:hsla(112, 22%, 59%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 24%, 1);--borderColorHover:hsla(191, 32%, 28%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 28%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);} + .t_active_Card, .t_active_DrawerFrame, .t_active_Progress, .t_active_TooltipArrow, .t_light .t_dark .t_active_Card, .t_light .t_dark .t_active_DrawerFrame, .t_light .t_dark .t_active_Progress, .t_light .t_dark .t_active_TooltipArrow {--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:hsla(112, 22%, 100%, 1);--color025:hsla(0, 0%, 100%, 0.75);--color05:hsla(0, 0%, 100%, 0.5);--color075:hsla(0, 0%, 100%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 15%, 1);--backgroundPress:hsla(191, 32%, 19%, 1);--backgroundFocus:hsla(191, 32%, 24%, 1);--colorHover:hsla(112, 22%, 59%, 1);--colorPress:hsla(112, 22%, 100%, 1);--colorFocus:hsla(112, 22%, 59%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 24%, 1);--borderColorHover:hsla(191, 32%, 28%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 28%, 1);} + } +:root.t_dark .t_active_Checkbox, :root.t_dark .t_active_Input, :root.t_dark .t_active_RadioGroupItem, :root.t_dark .t_active_TextArea, :root.t_dark .t_light .t_dark .t_active_Checkbox, :root.t_dark .t_light .t_dark .t_active_Input, :root.t_dark .t_light .t_dark .t_active_RadioGroupItem, :root.t_dark .t_light .t_dark .t_active_TextArea, :root.t_light .t_dark .t_active_Checkbox, :root.t_light .t_dark .t_active_Input, :root.t_light .t_dark .t_active_RadioGroupItem, :root.t_light .t_dark .t_active_TextArea, :root.t_light .t_dark .t_light .t_dark .t_active_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_active_Input, :root.t_light .t_dark .t_light .t_dark .t_active_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_active_TextArea {--background0:hsla(191, 33%, 10%, 0);--background025:hsla(191, 33%, 10%, 0.25);--background05:hsla(191, 33%, 10%, 0.5);--background075:hsla(191, 33%, 10%, 0.75);--color0:hsla(0, 0%, 100%, 0.75);--color025:hsla(0, 0%, 100%, 0.5);--color05:hsla(0, 0%, 100%, 0.25);--color075:hsla(0, 0%, 100%, 0);--background:hsla(191, 33%, 10%, 0.75);--backgroundHover:hsla(191, 32%, 10%, 1);--backgroundPress:hsla(191, 32%, 15%, 1);--backgroundFocus:hsla(191, 32%, 19%, 1);--colorHover:hsla(112, 22%, 59%, 1);--colorPress:hsla(112, 22%, 100%, 1);--colorFocus:hsla(112, 22%, 59%, 1);--placeholderColor:hsla(112, 22%, 59%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);} + .t_active_Checkbox, .t_active_Input, .t_active_RadioGroupItem, .t_active_TextArea, .t_light .t_dark .t_active_Checkbox, .t_light .t_dark .t_active_Input, .t_light .t_dark .t_active_RadioGroupItem, .t_light .t_dark .t_active_TextArea {--background0:hsla(191, 33%, 10%, 0);--background025:hsla(191, 33%, 10%, 0.25);--background05:hsla(191, 33%, 10%, 0.5);--background075:hsla(191, 33%, 10%, 0.75);--color0:hsla(0, 0%, 100%, 0.75);--color025:hsla(0, 0%, 100%, 0.5);--color05:hsla(0, 0%, 100%, 0.25);--color075:hsla(0, 0%, 100%, 0);--background:hsla(191, 33%, 10%, 0.75);--backgroundHover:hsla(191, 32%, 10%, 1);--backgroundPress:hsla(191, 32%, 15%, 1);--backgroundFocus:hsla(191, 32%, 19%, 1);--colorHover:hsla(112, 22%, 59%, 1);--colorPress:hsla(112, 22%, 100%, 1);--colorFocus:hsla(112, 22%, 59%, 1);--placeholderColor:hsla(112, 22%, 59%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} + } +:root.t_dark .t_active_ProgressIndicator, :root.t_dark .t_active_SliderThumb, :root.t_dark .t_active_SwitchThumb, :root.t_dark .t_active_Tooltip, :root.t_dark .t_light .t_dark .t_active_ProgressIndicator, :root.t_dark .t_light .t_dark .t_active_SliderThumb, :root.t_dark .t_light .t_dark .t_active_SwitchThumb, :root.t_dark .t_light .t_dark .t_active_Tooltip, :root.t_light .t_dark .t_active_ProgressIndicator, :root.t_light .t_dark .t_active_SliderThumb, :root.t_light .t_dark .t_active_SwitchThumb, :root.t_light .t_dark .t_active_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_active_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_active_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_active_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_active_Tooltip {--background0:hsla(0, 0%, 100%, 0);--background025:hsla(0, 0%, 100%, 0.25);--background05:hsla(0, 0%, 100%, 0.5);--background075:hsla(0, 0%, 100%, 0.75);--color0:hsla(191, 33%, 10%, 0.75);--color025:hsla(191, 33%, 10%, 0.5);--color05:hsla(191, 33%, 10%, 0.25);--color075:hsla(191, 33%, 10%, 0);--background:hsla(0, 0%, 100%, 0.75);--backgroundHover:hsla(112, 22%, 100%, 1);--backgroundPress:hsla(112, 22%, 59%, 1);--backgroundFocus:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 15%, 1);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:hsla(191, 32%, 15%, 1);--placeholderColor:hsla(191, 32%, 15%, 1);--borderColor:hsla(191, 32%, 50%, 1);--borderColorHover:hsla(191, 32%, 46%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 46%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);} + .t_active_ProgressIndicator, .t_active_SliderThumb, .t_active_SwitchThumb, .t_active_Tooltip, .t_light .t_dark .t_active_ProgressIndicator, .t_light .t_dark .t_active_SliderThumb, .t_light .t_dark .t_active_SwitchThumb, .t_light .t_dark .t_active_Tooltip {--background0:hsla(0, 0%, 100%, 0);--background025:hsla(0, 0%, 100%, 0.25);--background05:hsla(0, 0%, 100%, 0.5);--background075:hsla(0, 0%, 100%, 0.75);--color0:hsla(191, 33%, 10%, 0.75);--color025:hsla(191, 33%, 10%, 0.5);--color05:hsla(191, 33%, 10%, 0.25);--color075:hsla(191, 33%, 10%, 0);--background:hsla(0, 0%, 100%, 0.75);--backgroundHover:hsla(112, 22%, 100%, 1);--backgroundPress:hsla(112, 22%, 59%, 1);--backgroundFocus:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 15%, 1);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:hsla(191, 32%, 15%, 1);--placeholderColor:hsla(191, 32%, 15%, 1);--borderColor:hsla(191, 32%, 50%, 1);--borderColorHover:hsla(191, 32%, 46%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 46%, 1);} + } +:root.t_dark .t_active_SliderTrackActive, :root.t_dark .t_light .t_dark .t_active_SliderTrackActive, :root.t_light .t_dark .t_active_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_active_SliderTrackActive {--background0:hsla(0, 0%, 100%, 0.5);--background025:hsla(0, 0%, 100%, 0.75);--background05:hsla(112, 22%, 100%, 1);--background075:hsla(112, 22%, 59%, 1);--color0:hsla(191, 32%, 15%, 1);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 33%, 10%, 0.75);--color075:hsla(191, 33%, 10%, 0.5);--background:hsla(112, 22%, 59%, 1);--backgroundHover:hsla(191, 32%, 50%, 1);--backgroundPress:hsla(191, 32%, 46%, 1);--backgroundFocus:hsla(191, 32%, 41%, 1);--colorHover:hsla(191, 32%, 15%, 1);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:hsla(191, 32%, 15%, 1);--placeholderColor:hsla(191, 32%, 24%, 1);--borderColor:hsla(191, 32%, 41%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);} + .t_active_SliderTrackActive, .t_light .t_dark .t_active_SliderTrackActive {--background0:hsla(0, 0%, 100%, 0.5);--background025:hsla(0, 0%, 100%, 0.75);--background05:hsla(112, 22%, 100%, 1);--background075:hsla(112, 22%, 59%, 1);--color0:hsla(191, 32%, 15%, 1);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 33%, 10%, 0.75);--color075:hsla(191, 33%, 10%, 0.5);--background:hsla(112, 22%, 59%, 1);--backgroundHover:hsla(191, 32%, 50%, 1);--backgroundPress:hsla(191, 32%, 46%, 1);--backgroundFocus:hsla(191, 32%, 41%, 1);--colorHover:hsla(191, 32%, 15%, 1);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:hsla(191, 32%, 15%, 1);--placeholderColor:hsla(191, 32%, 24%, 1);--borderColor:hsla(191, 32%, 41%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} + } +:root.t_dark .t_alt1, :root.t_dark .t_light .t_dark .t_alt1, :root.t_light .t_dark .t_alt1, :root.t_light .t_dark .t_light .t_dark .t_alt1 {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);--color1:hsla(191, 32%, 15%, 1);--color2:hsla(191, 32%, 19%, 1);--color3:hsla(191, 32%, 24%, 1);--color4:hsla(191, 32%, 28%, 1);--color5:hsla(191, 32%, 32%, 1);--color6:hsla(191, 32%, 37%, 1);--color7:hsla(191, 32%, 41%, 1);--color8:hsla(191, 32%, 46%, 1);--color9:hsla(191, 32%, 46%, 1);--color10:hsla(191, 32%, 46%, 1);--color11:hsla(191, 32%, 46%, 1);--color12:hsla(191, 32%, 46%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_alt1, .t_light .t_dark .t_alt1 {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);--color1:hsla(191, 32%, 15%, 1);--color2:hsla(191, 32%, 19%, 1);--color3:hsla(191, 32%, 24%, 1);--color4:hsla(191, 32%, 28%, 1);--color5:hsla(191, 32%, 32%, 1);--color6:hsla(191, 32%, 37%, 1);--color7:hsla(191, 32%, 41%, 1);--color8:hsla(191, 32%, 46%, 1);--color9:hsla(191, 32%, 46%, 1);--color10:hsla(191, 32%, 46%, 1);--color11:hsla(191, 32%, 46%, 1);--color12:hsla(191, 32%, 46%, 1);} + } +:root.t_dark .t_alt1_Button, :root.t_dark .t_alt1_SliderTrack, :root.t_dark .t_alt1_Switch, :root.t_dark .t_alt1_TooltipContent, :root.t_dark .t_dim_Button, :root.t_dark .t_dim_SliderTrack, :root.t_dark .t_dim_Switch, :root.t_dark .t_dim_TooltipContent, :root.t_dark .t_light .t_dark .t_alt1_Button, :root.t_dark .t_light .t_dark .t_alt1_SliderTrack, :root.t_dark .t_light .t_dark .t_alt1_Switch, :root.t_dark .t_light .t_dark .t_alt1_TooltipContent, :root.t_dark .t_light .t_dark .t_dim_Button, :root.t_dark .t_light .t_dark .t_dim_SliderTrack, :root.t_dark .t_light .t_dark .t_dim_Switch, :root.t_dark .t_light .t_dark .t_dim_TooltipContent, :root.t_light .t_dark .t_alt1_Button, :root.t_light .t_dark .t_alt1_SliderTrack, :root.t_light .t_dark .t_alt1_Switch, :root.t_light .t_dark .t_alt1_TooltipContent, :root.t_light .t_dark .t_dim_Button, :root.t_light .t_dark .t_dim_SliderTrack, :root.t_light .t_dark .t_dim_Switch, :root.t_light .t_dark .t_dim_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_alt1_Button, :root.t_light .t_dark .t_light .t_dark .t_alt1_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_alt1_Switch, :root.t_light .t_dark .t_light .t_dark .t_alt1_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_dim_Button, :root.t_light .t_dark .t_light .t_dark .t_dim_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_dim_Switch, :root.t_light .t_dark .t_light .t_dark .t_dim_TooltipContent {--background0:hsla(191, 32%, 10%, 1);--background025:hsla(191, 32%, 15%, 1);--background05:hsla(191, 32%, 19%, 1);--background075:hsla(191, 32%, 24%, 1);--color0:hsla(191, 32%, 46%, 1);--color025:hsla(191, 32%, 50%, 1);--color05:hsla(112, 22%, 59%, 1);--color075:hsla(112, 22%, 100%, 1);--background:hsla(191, 32%, 24%, 1);--backgroundHover:hsla(191, 32%, 28%, 1);--backgroundPress:hsla(191, 32%, 32%, 1);--backgroundFocus:hsla(191, 32%, 37%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 37%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 41%, 1);--borderColorFocus:hsla(191, 32%, 46%, 1);--borderColorPress:hsla(191, 32%, 41%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_alt1_Button, .t_alt1_SliderTrack, .t_alt1_Switch, .t_alt1_TooltipContent, .t_dim_Button, .t_dim_SliderTrack, .t_dim_Switch, .t_dim_TooltipContent, .t_light .t_dark .t_alt1_Button, .t_light .t_dark .t_alt1_SliderTrack, .t_light .t_dark .t_alt1_Switch, .t_light .t_dark .t_alt1_TooltipContent, .t_light .t_dark .t_dim_Button, .t_light .t_dark .t_dim_SliderTrack, .t_light .t_dark .t_dim_Switch, .t_light .t_dark .t_dim_TooltipContent {--background0:hsla(191, 32%, 10%, 1);--background025:hsla(191, 32%, 15%, 1);--background05:hsla(191, 32%, 19%, 1);--background075:hsla(191, 32%, 24%, 1);--color0:hsla(191, 32%, 46%, 1);--color025:hsla(191, 32%, 50%, 1);--color05:hsla(112, 22%, 59%, 1);--color075:hsla(112, 22%, 100%, 1);--background:hsla(191, 32%, 24%, 1);--backgroundHover:hsla(191, 32%, 28%, 1);--backgroundPress:hsla(191, 32%, 32%, 1);--backgroundFocus:hsla(191, 32%, 37%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 37%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 41%, 1);--borderColorFocus:hsla(191, 32%, 46%, 1);--borderColorPress:hsla(191, 32%, 41%, 1);} + } +:root.t_dark .t_alt1_Card, :root.t_dark .t_alt1_DrawerFrame, :root.t_dark .t_alt1_Progress, :root.t_dark .t_alt1_TooltipArrow, :root.t_dark .t_dim_Card, :root.t_dark .t_dim_DrawerFrame, :root.t_dark .t_dim_Progress, :root.t_dark .t_dim_TooltipArrow, :root.t_dark .t_light .t_dark .t_alt1_Card, :root.t_dark .t_light .t_dark .t_alt1_DrawerFrame, :root.t_dark .t_light .t_dark .t_alt1_Progress, :root.t_dark .t_light .t_dark .t_alt1_TooltipArrow, :root.t_dark .t_light .t_dark .t_dim_Card, :root.t_dark .t_light .t_dark .t_dim_DrawerFrame, :root.t_dark .t_light .t_dark .t_dim_Progress, :root.t_dark .t_light .t_dark .t_dim_TooltipArrow, :root.t_light .t_dark .t_alt1_Card, :root.t_light .t_dark .t_alt1_DrawerFrame, :root.t_light .t_dark .t_alt1_Progress, :root.t_light .t_dark .t_alt1_TooltipArrow, :root.t_light .t_dark .t_dim_Card, :root.t_light .t_dark .t_dim_DrawerFrame, :root.t_light .t_dark .t_dim_Progress, :root.t_light .t_dark .t_dim_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_alt1_Card, :root.t_light .t_dark .t_light .t_dark .t_alt1_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_alt1_Progress, :root.t_light .t_dark .t_light .t_dark .t_alt1_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_dim_Card, :root.t_light .t_dark .t_light .t_dark .t_dim_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_dim_Progress, :root.t_light .t_dark .t_light .t_dark .t_dim_TooltipArrow {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_alt1_Card, .t_alt1_DrawerFrame, .t_alt1_Progress, .t_alt1_TooltipArrow, .t_dim_Card, .t_dim_DrawerFrame, .t_dim_Progress, .t_dim_TooltipArrow, .t_light .t_dark .t_alt1_Card, .t_light .t_dark .t_alt1_DrawerFrame, .t_light .t_dark .t_alt1_Progress, .t_light .t_dark .t_alt1_TooltipArrow, .t_light .t_dark .t_dim_Card, .t_light .t_dark .t_dim_DrawerFrame, .t_light .t_dark .t_dim_Progress, .t_light .t_dark .t_dim_TooltipArrow {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} + } +:root.t_dark .t_alt1_Checkbox, :root.t_dark .t_alt1_Input, :root.t_dark .t_alt1_RadioGroupItem, :root.t_dark .t_alt1_TextArea, :root.t_dark .t_dim_Checkbox, :root.t_dark .t_dim_Input, :root.t_dark .t_dim_RadioGroupItem, :root.t_dark .t_dim_TextArea, :root.t_dark .t_light .t_dark .t_alt1_Checkbox, :root.t_dark .t_light .t_dark .t_alt1_Input, :root.t_dark .t_light .t_dark .t_alt1_RadioGroupItem, :root.t_dark .t_light .t_dark .t_alt1_TextArea, :root.t_dark .t_light .t_dark .t_dim_Checkbox, :root.t_dark .t_light .t_dark .t_dim_Input, :root.t_dark .t_light .t_dark .t_dim_RadioGroupItem, :root.t_dark .t_light .t_dark .t_dim_TextArea, :root.t_light .t_dark .t_alt1_Checkbox, :root.t_light .t_dark .t_alt1_Input, :root.t_light .t_dark .t_alt1_RadioGroupItem, :root.t_light .t_dark .t_alt1_TextArea, :root.t_light .t_dark .t_dim_Checkbox, :root.t_light .t_dark .t_dim_Input, :root.t_light .t_dark .t_dim_RadioGroupItem, :root.t_light .t_dark .t_dim_TextArea, :root.t_light .t_dark .t_light .t_dark .t_alt1_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_alt1_Input, :root.t_light .t_dark .t_light .t_dark .t_alt1_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_alt1_TextArea, :root.t_light .t_dark .t_light .t_dark .t_dim_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_dim_Input, :root.t_light .t_dark .t_light .t_dark .t_dim_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_dim_TextArea {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 41%, 1);--borderColorFocus:hsla(191, 32%, 46%, 1);--borderColorPress:hsla(191, 32%, 41%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_alt1_Checkbox, .t_alt1_Input, .t_alt1_RadioGroupItem, .t_alt1_TextArea, .t_dim_Checkbox, .t_dim_Input, .t_dim_RadioGroupItem, .t_dim_TextArea, .t_light .t_dark .t_alt1_Checkbox, .t_light .t_dark .t_alt1_Input, .t_light .t_dark .t_alt1_RadioGroupItem, .t_light .t_dark .t_alt1_TextArea, .t_light .t_dark .t_dim_Checkbox, .t_light .t_dark .t_dim_Input, .t_light .t_dark .t_dim_RadioGroupItem, .t_light .t_dark .t_dim_TextArea {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 41%, 1);--borderColorFocus:hsla(191, 32%, 46%, 1);--borderColorPress:hsla(191, 32%, 41%, 1);} + } +:root.t_dark .t_alt1_ProgressIndicator, :root.t_dark .t_alt1_SliderThumb, :root.t_dark .t_alt1_SwitchThumb, :root.t_dark .t_alt1_Tooltip, :root.t_dark .t_dim_ProgressIndicator, :root.t_dark .t_dim_SliderThumb, :root.t_dark .t_dim_SwitchThumb, :root.t_dark .t_dim_Tooltip, :root.t_dark .t_light .t_dark .t_alt1_ProgressIndicator, :root.t_dark .t_light .t_dark .t_alt1_SliderThumb, :root.t_dark .t_light .t_dark .t_alt1_SwitchThumb, :root.t_dark .t_light .t_dark .t_alt1_Tooltip, :root.t_dark .t_light .t_dark .t_dim_ProgressIndicator, :root.t_dark .t_light .t_dark .t_dim_SliderThumb, :root.t_dark .t_light .t_dark .t_dim_SwitchThumb, :root.t_dark .t_light .t_dark .t_dim_Tooltip, :root.t_light .t_dark .t_alt1_ProgressIndicator, :root.t_light .t_dark .t_alt1_SliderThumb, :root.t_light .t_dark .t_alt1_SwitchThumb, :root.t_light .t_dark .t_alt1_Tooltip, :root.t_light .t_dark .t_dim_ProgressIndicator, :root.t_light .t_dark .t_dim_SliderThumb, :root.t_light .t_dark .t_dim_SwitchThumb, :root.t_light .t_dark .t_dim_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_alt1_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_alt1_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_alt1_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_alt1_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_dim_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_dim_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_dim_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_dim_Tooltip {--background0:hsla(0, 0%, 100%, 0.5);--background025:hsla(0, 0%, 100%, 0.75);--background05:hsla(112, 22%, 100%, 1);--background075:hsla(112, 22%, 59%, 1);--color0:hsla(191, 32%, 15%, 1);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 33%, 10%, 0.75);--color075:hsla(191, 33%, 10%, 0.5);--background:hsla(112, 22%, 59%, 1);--backgroundHover:hsla(191, 32%, 50%, 1);--backgroundPress:hsla(191, 32%, 46%, 1);--backgroundFocus:hsla(191, 32%, 41%, 1);--color:hsla(191, 32%, 19%, 1);--colorHover:hsla(191, 32%, 24%, 1);--colorPress:hsla(191, 32%, 19%, 1);--colorFocus:hsla(191, 32%, 24%, 1);--placeholderColor:hsla(191, 32%, 24%, 1);--borderColor:hsla(191, 32%, 41%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_alt1_ProgressIndicator, .t_alt1_SliderThumb, .t_alt1_SwitchThumb, .t_alt1_Tooltip, .t_dim_ProgressIndicator, .t_dim_SliderThumb, .t_dim_SwitchThumb, .t_dim_Tooltip, .t_light .t_dark .t_alt1_ProgressIndicator, .t_light .t_dark .t_alt1_SliderThumb, .t_light .t_dark .t_alt1_SwitchThumb, .t_light .t_dark .t_alt1_Tooltip, .t_light .t_dark .t_dim_ProgressIndicator, .t_light .t_dark .t_dim_SliderThumb, .t_light .t_dark .t_dim_SwitchThumb, .t_light .t_dark .t_dim_Tooltip {--background0:hsla(0, 0%, 100%, 0.5);--background025:hsla(0, 0%, 100%, 0.75);--background05:hsla(112, 22%, 100%, 1);--background075:hsla(112, 22%, 59%, 1);--color0:hsla(191, 32%, 15%, 1);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 33%, 10%, 0.75);--color075:hsla(191, 33%, 10%, 0.5);--background:hsla(112, 22%, 59%, 1);--backgroundHover:hsla(191, 32%, 50%, 1);--backgroundPress:hsla(191, 32%, 46%, 1);--backgroundFocus:hsla(191, 32%, 41%, 1);--color:hsla(191, 32%, 19%, 1);--colorHover:hsla(191, 32%, 24%, 1);--colorPress:hsla(191, 32%, 19%, 1);--colorFocus:hsla(191, 32%, 24%, 1);--placeholderColor:hsla(191, 32%, 24%, 1);--borderColor:hsla(191, 32%, 41%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);} + } +:root.t_dark .t_alt1_SliderTrackActive, :root.t_dark .t_dim_SliderTrackActive, :root.t_dark .t_light .t_dark .t_alt1_SliderTrackActive, :root.t_dark .t_light .t_dark .t_dim_SliderTrackActive, :root.t_light .t_dark .t_alt1_SliderTrackActive, :root.t_light .t_dark .t_dim_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_alt1_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_dim_SliderTrackActive {--background0:hsla(112, 22%, 100%, 1);--background025:hsla(112, 22%, 59%, 1);--background05:hsla(191, 32%, 50%, 1);--background075:hsla(191, 32%, 46%, 1);--color0:hsla(191, 32%, 24%, 1);--color025:hsla(191, 32%, 19%, 1);--color05:hsla(191, 32%, 15%, 1);--color075:hsla(191, 32%, 10%, 1);--background:hsla(191, 32%, 46%, 1);--backgroundHover:hsla(191, 32%, 41%, 1);--backgroundPress:hsla(191, 32%, 37%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 19%, 1);--colorHover:hsla(191, 32%, 24%, 1);--colorPress:hsla(191, 32%, 19%, 1);--colorFocus:hsla(191, 32%, 24%, 1);--placeholderColor:hsla(191, 32%, 32%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 28%, 1);--borderColorFocus:hsla(191, 32%, 24%, 1);--borderColorPress:hsla(191, 32%, 28%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_alt1_SliderTrackActive, .t_dim_SliderTrackActive, .t_light .t_dark .t_alt1_SliderTrackActive, .t_light .t_dark .t_dim_SliderTrackActive {--background0:hsla(112, 22%, 100%, 1);--background025:hsla(112, 22%, 59%, 1);--background05:hsla(191, 32%, 50%, 1);--background075:hsla(191, 32%, 46%, 1);--color0:hsla(191, 32%, 24%, 1);--color025:hsla(191, 32%, 19%, 1);--color05:hsla(191, 32%, 15%, 1);--color075:hsla(191, 32%, 10%, 1);--background:hsla(191, 32%, 46%, 1);--backgroundHover:hsla(191, 32%, 41%, 1);--backgroundPress:hsla(191, 32%, 37%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 19%, 1);--colorHover:hsla(191, 32%, 24%, 1);--colorPress:hsla(191, 32%, 19%, 1);--colorFocus:hsla(191, 32%, 24%, 1);--placeholderColor:hsla(191, 32%, 32%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 28%, 1);--borderColorFocus:hsla(191, 32%, 24%, 1);--borderColorPress:hsla(191, 32%, 28%, 1);} + } +:root.t_dark .t_alt2, :root.t_dark .t_light .t_dark .t_alt2, :root.t_light .t_dark .t_alt2, :root.t_light .t_dark .t_light .t_dark .t_alt2 {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);--color1:hsla(191, 32%, 19%, 1);--color2:hsla(191, 32%, 24%, 1);--color3:hsla(191, 32%, 28%, 1);--color4:hsla(191, 32%, 32%, 1);--color5:hsla(191, 32%, 37%, 1);--color6:hsla(191, 32%, 41%, 1);--color7:hsla(191, 32%, 46%, 1);--color8:hsla(191, 32%, 46%, 1);--color9:hsla(191, 32%, 46%, 1);--color10:hsla(191, 32%, 46%, 1);--color11:hsla(191, 32%, 46%, 1);--color12:hsla(191, 32%, 46%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_alt2, .t_light .t_dark .t_alt2 {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);--color1:hsla(191, 32%, 19%, 1);--color2:hsla(191, 32%, 24%, 1);--color3:hsla(191, 32%, 28%, 1);--color4:hsla(191, 32%, 32%, 1);--color5:hsla(191, 32%, 37%, 1);--color6:hsla(191, 32%, 41%, 1);--color7:hsla(191, 32%, 46%, 1);--color8:hsla(191, 32%, 46%, 1);--color9:hsla(191, 32%, 46%, 1);--color10:hsla(191, 32%, 46%, 1);--color11:hsla(191, 32%, 46%, 1);--color12:hsla(191, 32%, 46%, 1);} + } +:root.t_dark .t_alt2_Button, :root.t_dark .t_alt2_SliderTrack, :root.t_dark .t_alt2_Switch, :root.t_dark .t_alt2_TooltipContent, :root.t_dark .t_disabled_Button, :root.t_dark .t_disabled_SliderTrack, :root.t_dark .t_disabled_Switch, :root.t_dark .t_disabled_TooltipContent, :root.t_dark .t_light .t_dark .t_alt2_Button, :root.t_dark .t_light .t_dark .t_alt2_SliderTrack, :root.t_dark .t_light .t_dark .t_alt2_Switch, :root.t_dark .t_light .t_dark .t_alt2_TooltipContent, :root.t_dark .t_light .t_dark .t_disabled_Button, :root.t_dark .t_light .t_dark .t_disabled_SliderTrack, :root.t_dark .t_light .t_dark .t_disabled_Switch, :root.t_dark .t_light .t_dark .t_disabled_TooltipContent, :root.t_light .t_dark .t_alt2_Button, :root.t_light .t_dark .t_alt2_SliderTrack, :root.t_light .t_dark .t_alt2_Switch, :root.t_light .t_dark .t_alt2_TooltipContent, :root.t_light .t_dark .t_disabled_Button, :root.t_light .t_dark .t_disabled_SliderTrack, :root.t_light .t_dark .t_disabled_Switch, :root.t_light .t_dark .t_disabled_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_alt2_Button, :root.t_light .t_dark .t_light .t_dark .t_alt2_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_alt2_Switch, :root.t_light .t_dark .t_light .t_dark .t_alt2_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_disabled_Button, :root.t_light .t_dark .t_light .t_dark .t_disabled_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_disabled_Switch, :root.t_light .t_dark .t_light .t_dark .t_disabled_TooltipContent {--background0:hsla(191, 32%, 15%, 1);--background025:hsla(191, 32%, 19%, 1);--background05:hsla(191, 32%, 24%, 1);--background075:hsla(191, 32%, 28%, 1);--color0:hsla(191, 32%, 41%, 1);--color025:hsla(191, 32%, 46%, 1);--color05:hsla(191, 32%, 50%, 1);--color075:hsla(112, 22%, 59%, 1);--background:hsla(191, 32%, 28%, 1);--backgroundHover:hsla(191, 32%, 32%, 1);--backgroundPress:hsla(191, 32%, 37%, 1);--backgroundFocus:hsla(191, 32%, 41%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 32%, 1);--borderColor:hsla(191, 32%, 41%, 1);--borderColorHover:hsla(191, 32%, 46%, 1);--borderColorFocus:hsla(191, 32%, 50%, 1);--borderColorPress:hsla(191, 32%, 46%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_alt2_Button, .t_alt2_SliderTrack, .t_alt2_Switch, .t_alt2_TooltipContent, .t_disabled_Button, .t_disabled_SliderTrack, .t_disabled_Switch, .t_disabled_TooltipContent, .t_light .t_dark .t_alt2_Button, .t_light .t_dark .t_alt2_SliderTrack, .t_light .t_dark .t_alt2_Switch, .t_light .t_dark .t_alt2_TooltipContent, .t_light .t_dark .t_disabled_Button, .t_light .t_dark .t_disabled_SliderTrack, .t_light .t_dark .t_disabled_Switch, .t_light .t_dark .t_disabled_TooltipContent {--background0:hsla(191, 32%, 15%, 1);--background025:hsla(191, 32%, 19%, 1);--background05:hsla(191, 32%, 24%, 1);--background075:hsla(191, 32%, 28%, 1);--color0:hsla(191, 32%, 41%, 1);--color025:hsla(191, 32%, 46%, 1);--color05:hsla(191, 32%, 50%, 1);--color075:hsla(112, 22%, 59%, 1);--background:hsla(191, 32%, 28%, 1);--backgroundHover:hsla(191, 32%, 32%, 1);--backgroundPress:hsla(191, 32%, 37%, 1);--backgroundFocus:hsla(191, 32%, 41%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 32%, 1);--borderColor:hsla(191, 32%, 41%, 1);--borderColorHover:hsla(191, 32%, 46%, 1);--borderColorFocus:hsla(191, 32%, 50%, 1);--borderColorPress:hsla(191, 32%, 46%, 1);} + } +:root.t_dark .t_alt2_Card, :root.t_dark .t_alt2_DrawerFrame, :root.t_dark .t_alt2_Progress, :root.t_dark .t_alt2_TooltipArrow, :root.t_dark .t_disabled_Card, :root.t_dark .t_disabled_DrawerFrame, :root.t_dark .t_disabled_Progress, :root.t_dark .t_disabled_TooltipArrow, :root.t_dark .t_light .t_dark .t_alt2_Card, :root.t_dark .t_light .t_dark .t_alt2_DrawerFrame, :root.t_dark .t_light .t_dark .t_alt2_Progress, :root.t_dark .t_light .t_dark .t_alt2_TooltipArrow, :root.t_dark .t_light .t_dark .t_disabled_Card, :root.t_dark .t_light .t_dark .t_disabled_DrawerFrame, :root.t_dark .t_light .t_dark .t_disabled_Progress, :root.t_dark .t_light .t_dark .t_disabled_TooltipArrow, :root.t_light .t_dark .t_alt2_Card, :root.t_light .t_dark .t_alt2_DrawerFrame, :root.t_light .t_dark .t_alt2_Progress, :root.t_light .t_dark .t_alt2_TooltipArrow, :root.t_light .t_dark .t_disabled_Card, :root.t_light .t_dark .t_disabled_DrawerFrame, :root.t_light .t_dark .t_disabled_Progress, :root.t_light .t_dark .t_disabled_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_alt2_Card, :root.t_light .t_dark .t_light .t_dark .t_alt2_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_alt2_Progress, :root.t_light .t_dark .t_light .t_dark .t_alt2_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_disabled_Card, :root.t_light .t_dark .t_light .t_dark .t_disabled_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_disabled_Progress, :root.t_light .t_dark .t_light .t_dark .t_disabled_TooltipArrow {--background0:hsla(191, 32%, 10%, 1);--background025:hsla(191, 32%, 15%, 1);--background05:hsla(191, 32%, 19%, 1);--background075:hsla(191, 32%, 24%, 1);--color0:hsla(191, 32%, 46%, 1);--color025:hsla(191, 32%, 50%, 1);--color05:hsla(112, 22%, 59%, 1);--color075:hsla(112, 22%, 100%, 1);--background:hsla(191, 32%, 24%, 1);--backgroundHover:hsla(191, 32%, 28%, 1);--backgroundPress:hsla(191, 32%, 32%, 1);--backgroundFocus:hsla(191, 32%, 37%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 37%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 41%, 1);--borderColorFocus:hsla(191, 32%, 46%, 1);--borderColorPress:hsla(191, 32%, 41%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_alt2_Card, .t_alt2_DrawerFrame, .t_alt2_Progress, .t_alt2_TooltipArrow, .t_disabled_Card, .t_disabled_DrawerFrame, .t_disabled_Progress, .t_disabled_TooltipArrow, .t_light .t_dark .t_alt2_Card, .t_light .t_dark .t_alt2_DrawerFrame, .t_light .t_dark .t_alt2_Progress, .t_light .t_dark .t_alt2_TooltipArrow, .t_light .t_dark .t_disabled_Card, .t_light .t_dark .t_disabled_DrawerFrame, .t_light .t_dark .t_disabled_Progress, .t_light .t_dark .t_disabled_TooltipArrow {--background0:hsla(191, 32%, 10%, 1);--background025:hsla(191, 32%, 15%, 1);--background05:hsla(191, 32%, 19%, 1);--background075:hsla(191, 32%, 24%, 1);--color0:hsla(191, 32%, 46%, 1);--color025:hsla(191, 32%, 50%, 1);--color05:hsla(112, 22%, 59%, 1);--color075:hsla(112, 22%, 100%, 1);--background:hsla(191, 32%, 24%, 1);--backgroundHover:hsla(191, 32%, 28%, 1);--backgroundPress:hsla(191, 32%, 32%, 1);--backgroundFocus:hsla(191, 32%, 37%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 37%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 41%, 1);--borderColorFocus:hsla(191, 32%, 46%, 1);--borderColorPress:hsla(191, 32%, 41%, 1);} + } +:root.t_dark .t_alt2_Checkbox, :root.t_dark .t_alt2_Input, :root.t_dark .t_alt2_RadioGroupItem, :root.t_dark .t_alt2_TextArea, :root.t_dark .t_disabled_Checkbox, :root.t_dark .t_disabled_Input, :root.t_dark .t_disabled_RadioGroupItem, :root.t_dark .t_disabled_TextArea, :root.t_dark .t_light .t_dark .t_alt2_Checkbox, :root.t_dark .t_light .t_dark .t_alt2_Input, :root.t_dark .t_light .t_dark .t_alt2_RadioGroupItem, :root.t_dark .t_light .t_dark .t_alt2_TextArea, :root.t_dark .t_light .t_dark .t_disabled_Checkbox, :root.t_dark .t_light .t_dark .t_disabled_Input, :root.t_dark .t_light .t_dark .t_disabled_RadioGroupItem, :root.t_dark .t_light .t_dark .t_disabled_TextArea, :root.t_light .t_dark .t_alt2_Checkbox, :root.t_light .t_dark .t_alt2_Input, :root.t_light .t_dark .t_alt2_RadioGroupItem, :root.t_light .t_dark .t_alt2_TextArea, :root.t_light .t_dark .t_disabled_Checkbox, :root.t_light .t_dark .t_disabled_Input, :root.t_light .t_dark .t_disabled_RadioGroupItem, :root.t_light .t_dark .t_disabled_TextArea, :root.t_light .t_dark .t_light .t_dark .t_alt2_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_alt2_Input, :root.t_light .t_dark .t_light .t_dark .t_alt2_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_alt2_TextArea, :root.t_light .t_dark .t_light .t_dark .t_disabled_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_disabled_Input, :root.t_light .t_dark .t_light .t_dark .t_disabled_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_disabled_TextArea {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 41%, 1);--borderColorHover:hsla(191, 32%, 46%, 1);--borderColorFocus:hsla(191, 32%, 50%, 1);--borderColorPress:hsla(191, 32%, 46%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_alt2_Checkbox, .t_alt2_Input, .t_alt2_RadioGroupItem, .t_alt2_TextArea, .t_disabled_Checkbox, .t_disabled_Input, .t_disabled_RadioGroupItem, .t_disabled_TextArea, .t_light .t_dark .t_alt2_Checkbox, .t_light .t_dark .t_alt2_Input, .t_light .t_dark .t_alt2_RadioGroupItem, .t_light .t_dark .t_alt2_TextArea, .t_light .t_dark .t_disabled_Checkbox, .t_light .t_dark .t_disabled_Input, .t_light .t_dark .t_disabled_RadioGroupItem, .t_light .t_dark .t_disabled_TextArea {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 41%, 1);--borderColorHover:hsla(191, 32%, 46%, 1);--borderColorFocus:hsla(191, 32%, 50%, 1);--borderColorPress:hsla(191, 32%, 46%, 1);} + } +:root.t_dark .t_alt2_ProgressIndicator, :root.t_dark .t_alt2_SliderThumb, :root.t_dark .t_alt2_SwitchThumb, :root.t_dark .t_alt2_Tooltip, :root.t_dark .t_disabled_ProgressIndicator, :root.t_dark .t_disabled_SliderThumb, :root.t_dark .t_disabled_SwitchThumb, :root.t_dark .t_disabled_Tooltip, :root.t_dark .t_light .t_dark .t_alt2_ProgressIndicator, :root.t_dark .t_light .t_dark .t_alt2_SliderThumb, :root.t_dark .t_light .t_dark .t_alt2_SwitchThumb, :root.t_dark .t_light .t_dark .t_alt2_Tooltip, :root.t_dark .t_light .t_dark .t_disabled_ProgressIndicator, :root.t_dark .t_light .t_dark .t_disabled_SliderThumb, :root.t_dark .t_light .t_dark .t_disabled_SwitchThumb, :root.t_dark .t_light .t_dark .t_disabled_Tooltip, :root.t_light .t_dark .t_alt2_ProgressIndicator, :root.t_light .t_dark .t_alt2_SliderThumb, :root.t_light .t_dark .t_alt2_SwitchThumb, :root.t_light .t_dark .t_alt2_Tooltip, :root.t_light .t_dark .t_disabled_ProgressIndicator, :root.t_light .t_dark .t_disabled_SliderThumb, :root.t_light .t_dark .t_disabled_SwitchThumb, :root.t_light .t_dark .t_disabled_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_alt2_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_alt2_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_alt2_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_alt2_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_disabled_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_disabled_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_disabled_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_disabled_Tooltip {--background0:hsla(0, 0%, 100%, 0.75);--background025:hsla(112, 22%, 100%, 1);--background05:hsla(112, 22%, 59%, 1);--background075:hsla(191, 32%, 50%, 1);--color0:hsla(191, 32%, 19%, 1);--color025:hsla(191, 32%, 15%, 1);--color05:hsla(191, 32%, 10%, 1);--color075:hsla(191, 33%, 10%, 0.75);--background:hsla(191, 32%, 50%, 1);--backgroundHover:hsla(191, 32%, 46%, 1);--backgroundPress:hsla(191, 32%, 41%, 1);--backgroundFocus:hsla(191, 32%, 37%, 1);--color:hsla(191, 32%, 24%, 1);--colorHover:hsla(191, 32%, 28%, 1);--colorPress:hsla(191, 32%, 24%, 1);--colorFocus:hsla(191, 32%, 28%, 1);--placeholderColor:hsla(191, 32%, 28%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 28%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_alt2_ProgressIndicator, .t_alt2_SliderThumb, .t_alt2_SwitchThumb, .t_alt2_Tooltip, .t_disabled_ProgressIndicator, .t_disabled_SliderThumb, .t_disabled_SwitchThumb, .t_disabled_Tooltip, .t_light .t_dark .t_alt2_ProgressIndicator, .t_light .t_dark .t_alt2_SliderThumb, .t_light .t_dark .t_alt2_SwitchThumb, .t_light .t_dark .t_alt2_Tooltip, .t_light .t_dark .t_disabled_ProgressIndicator, .t_light .t_dark .t_disabled_SliderThumb, .t_light .t_dark .t_disabled_SwitchThumb, .t_light .t_dark .t_disabled_Tooltip {--background0:hsla(0, 0%, 100%, 0.75);--background025:hsla(112, 22%, 100%, 1);--background05:hsla(112, 22%, 59%, 1);--background075:hsla(191, 32%, 50%, 1);--color0:hsla(191, 32%, 19%, 1);--color025:hsla(191, 32%, 15%, 1);--color05:hsla(191, 32%, 10%, 1);--color075:hsla(191, 33%, 10%, 0.75);--background:hsla(191, 32%, 50%, 1);--backgroundHover:hsla(191, 32%, 46%, 1);--backgroundPress:hsla(191, 32%, 41%, 1);--backgroundFocus:hsla(191, 32%, 37%, 1);--color:hsla(191, 32%, 24%, 1);--colorHover:hsla(191, 32%, 28%, 1);--colorPress:hsla(191, 32%, 24%, 1);--colorFocus:hsla(191, 32%, 28%, 1);--placeholderColor:hsla(191, 32%, 28%, 1);--borderColor:hsla(191, 32%, 37%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 28%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);} + } +:root.t_dark .t_alt2_SliderTrackActive, :root.t_dark .t_disabled_SliderTrackActive, :root.t_dark .t_light .t_dark .t_alt2_SliderTrackActive, :root.t_dark .t_light .t_dark .t_disabled_SliderTrackActive, :root.t_light .t_dark .t_alt2_SliderTrackActive, :root.t_light .t_dark .t_disabled_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_alt2_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_disabled_SliderTrackActive {--background0:hsla(112, 22%, 59%, 1);--background025:hsla(191, 32%, 50%, 1);--background05:hsla(191, 32%, 46%, 1);--background075:hsla(191, 32%, 41%, 1);--color0:hsla(191, 32%, 28%, 1);--color025:hsla(191, 32%, 24%, 1);--color05:hsla(191, 32%, 19%, 1);--color075:hsla(191, 32%, 15%, 1);--background:hsla(191, 32%, 41%, 1);--backgroundHover:hsla(191, 32%, 37%, 1);--backgroundPress:hsla(191, 32%, 32%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(191, 32%, 24%, 1);--colorHover:hsla(191, 32%, 28%, 1);--colorPress:hsla(191, 32%, 24%, 1);--colorFocus:hsla(191, 32%, 28%, 1);--placeholderColor:hsla(191, 32%, 37%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 24%, 1);--borderColorFocus:hsla(191, 32%, 19%, 1);--borderColorPress:hsla(191, 32%, 24%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_alt2_SliderTrackActive, .t_disabled_SliderTrackActive, .t_light .t_dark .t_alt2_SliderTrackActive, .t_light .t_dark .t_disabled_SliderTrackActive {--background0:hsla(112, 22%, 59%, 1);--background025:hsla(191, 32%, 50%, 1);--background05:hsla(191, 32%, 46%, 1);--background075:hsla(191, 32%, 41%, 1);--color0:hsla(191, 32%, 28%, 1);--color025:hsla(191, 32%, 24%, 1);--color05:hsla(191, 32%, 19%, 1);--color075:hsla(191, 32%, 15%, 1);--background:hsla(191, 32%, 41%, 1);--backgroundHover:hsla(191, 32%, 37%, 1);--backgroundPress:hsla(191, 32%, 32%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(191, 32%, 24%, 1);--colorHover:hsla(191, 32%, 28%, 1);--colorPress:hsla(191, 32%, 24%, 1);--colorFocus:hsla(191, 32%, 28%, 1);--placeholderColor:hsla(191, 32%, 37%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 24%, 1);--borderColorFocus:hsla(191, 32%, 19%, 1);--borderColorPress:hsla(191, 32%, 24%, 1);} + } +:root.t_dark .t_dim, :root.t_dark .t_light .t_dark .t_dim, :root.t_light .t_dark .t_dim, :root.t_light .t_dark .t_light .t_dark .t_dim {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);--color1:hsla(191, 32%, 15%, 1);--color2:hsla(191, 32%, 19%, 1);--color3:hsla(191, 32%, 24%, 1);--color4:hsla(191, 32%, 28%, 1);--color5:hsla(191, 32%, 32%, 1);--color6:hsla(191, 32%, 37%, 1);--color7:hsla(191, 32%, 41%, 1);--color8:hsla(191, 32%, 46%, 1);--color9:hsla(191, 32%, 50%, 1);--color10:hsla(112, 22%, 59%, 1);--color11:hsla(112, 22%, 100%, 1);--color12:hsla(0, 0%, 100%, 0.75);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_dim, .t_light .t_dark .t_dim {--background0:hsla(191, 33%, 10%, 0.5);--background025:hsla(191, 33%, 10%, 0.75);--background05:hsla(191, 32%, 10%, 1);--background075:hsla(191, 32%, 15%, 1);--color0:hsla(112, 22%, 59%, 1);--color025:hsla(112, 22%, 100%, 1);--color05:hsla(0, 0%, 100%, 0.75);--color075:hsla(0, 0%, 100%, 0.5);--background:hsla(191, 32%, 15%, 1);--backgroundHover:hsla(191, 32%, 19%, 1);--backgroundPress:hsla(191, 32%, 24%, 1);--backgroundFocus:hsla(191, 32%, 28%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 46%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 46%, 1);--placeholderColor:hsla(191, 32%, 46%, 1);--borderColor:hsla(191, 32%, 28%, 1);--borderColorHover:hsla(191, 32%, 32%, 1);--borderColorFocus:hsla(191, 32%, 37%, 1);--borderColorPress:hsla(191, 32%, 32%, 1);--color1:hsla(191, 32%, 15%, 1);--color2:hsla(191, 32%, 19%, 1);--color3:hsla(191, 32%, 24%, 1);--color4:hsla(191, 32%, 28%, 1);--color5:hsla(191, 32%, 32%, 1);--color6:hsla(191, 32%, 37%, 1);--color7:hsla(191, 32%, 41%, 1);--color8:hsla(191, 32%, 46%, 1);--color9:hsla(191, 32%, 50%, 1);--color10:hsla(112, 22%, 59%, 1);--color11:hsla(112, 22%, 100%, 1);--color12:hsla(0, 0%, 100%, 0.75);} + } +:root.t_dark .t_disabled, :root.t_dark .t_light .t_dark .t_disabled, :root.t_light .t_dark .t_disabled, :root.t_light .t_dark .t_light .t_dark .t_disabled {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);--color1:hsla(191, 32%, 19%, 1);--color2:hsla(191, 32%, 24%, 1);--color3:hsla(191, 32%, 28%, 1);--color4:hsla(191, 32%, 32%, 1);--color5:hsla(191, 32%, 37%, 1);--color6:hsla(191, 32%, 41%, 1);--color7:hsla(191, 32%, 46%, 1);--color8:hsla(191, 32%, 50%, 1);--color9:hsla(112, 22%, 59%, 1);--color10:hsla(112, 22%, 100%, 1);--color11:hsla(0, 0%, 100%, 0.75);--color12:hsla(0, 0%, 100%, 0.5);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_disabled, .t_light .t_dark .t_disabled {--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 15%, 1);--background075:hsla(191, 32%, 19%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(112, 22%, 59%, 1);--color05:hsla(112, 22%, 100%, 1);--color075:hsla(0, 0%, 100%, 0.75);--background:hsla(191, 32%, 19%, 1);--backgroundHover:hsla(191, 32%, 24%, 1);--backgroundPress:hsla(191, 32%, 28%, 1);--backgroundFocus:hsla(191, 32%, 32%, 1);--color:hsla(191, 32%, 46%, 1);--colorHover:hsla(191, 32%, 41%, 1);--colorPress:hsla(191, 32%, 46%, 1);--colorFocus:hsla(191, 32%, 41%, 1);--placeholderColor:hsla(191, 32%, 41%, 1);--borderColor:hsla(191, 32%, 32%, 1);--borderColorHover:hsla(191, 32%, 37%, 1);--borderColorFocus:hsla(191, 32%, 41%, 1);--borderColorPress:hsla(191, 32%, 37%, 1);--color1:hsla(191, 32%, 19%, 1);--color2:hsla(191, 32%, 24%, 1);--color3:hsla(191, 32%, 28%, 1);--color4:hsla(191, 32%, 32%, 1);--color5:hsla(191, 32%, 37%, 1);--color6:hsla(191, 32%, 41%, 1);--color7:hsla(191, 32%, 46%, 1);--color8:hsla(191, 32%, 50%, 1);--color9:hsla(112, 22%, 59%, 1);--color10:hsla(112, 22%, 100%, 1);--color11:hsla(0, 0%, 100%, 0.75);--color12:hsla(0, 0%, 100%, 0.5);} + } +:root.t_dark .t_error, :root.t_dark .t_light .t_dark .t_error, :root.t_dark .t_light .t_dark .t_red, :root.t_dark .t_red, :root.t_light .t_dark .t_error, :root.t_light .t_dark .t_light .t_dark .t_error, :root.t_light .t_dark .t_light .t_dark .t_red, :root.t_light .t_dark .t_red {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(0, 69%, 10%, 0.25);--background025:hsla(0, 69%, 10%, 0.5);--background05:hsla(0, 69%, 10%, 0.75);--background075:hsla(0, 70%, 10%, 1);--color0:hsla(0, 70%, 95%, 1);--color025:hsla(0, 69%, 95%, 0.75);--color05:hsla(0, 69%, 95%, 0.5);--color075:hsla(0, 69%, 95%, 0.25);--background:hsla(0, 70%, 10%, 1);--backgroundHover:hsla(0, 70%, 14%, 1);--backgroundPress:hsla(0, 70%, 19%, 1);--backgroundFocus:hsla(0, 70%, 23%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 50%, 1);--borderColor:hsla(0, 70%, 23%, 1);--borderColorHover:hsla(0, 70%, 28%, 1);--borderColorFocus:hsla(0, 70%, 32%, 1);--borderColorPress:hsla(0, 70%, 28%, 1);--color1:hsla(0, 70%, 10%, 1);--color2:hsla(0, 70%, 14%, 1);--color3:hsla(0, 70%, 19%, 1);--color4:hsla(0, 70%, 23%, 1);--color5:hsla(0, 70%, 28%, 1);--color6:hsla(0, 70%, 32%, 1);--color7:hsla(0, 70%, 37%, 1);--color8:hsla(0, 70%, 41%, 1);--color9:hsla(0, 70%, 46%, 1);--color10:hsla(0, 70%, 50%, 1);--color11:hsla(0, 70%, 93%, 1);--color12:hsla(0, 70%, 95%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_error, .t_light .t_dark .t_error, .t_light .t_dark .t_red, .t_red {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(0, 69%, 10%, 0.25);--background025:hsla(0, 69%, 10%, 0.5);--background05:hsla(0, 69%, 10%, 0.75);--background075:hsla(0, 70%, 10%, 1);--color0:hsla(0, 70%, 95%, 1);--color025:hsla(0, 69%, 95%, 0.75);--color05:hsla(0, 69%, 95%, 0.5);--color075:hsla(0, 69%, 95%, 0.25);--background:hsla(0, 70%, 10%, 1);--backgroundHover:hsla(0, 70%, 14%, 1);--backgroundPress:hsla(0, 70%, 19%, 1);--backgroundFocus:hsla(0, 70%, 23%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 50%, 1);--borderColor:hsla(0, 70%, 23%, 1);--borderColorHover:hsla(0, 70%, 28%, 1);--borderColorFocus:hsla(0, 70%, 32%, 1);--borderColorPress:hsla(0, 70%, 28%, 1);--color1:hsla(0, 70%, 10%, 1);--color2:hsla(0, 70%, 14%, 1);--color3:hsla(0, 70%, 19%, 1);--color4:hsla(0, 70%, 23%, 1);--color5:hsla(0, 70%, 28%, 1);--color6:hsla(0, 70%, 32%, 1);--color7:hsla(0, 70%, 37%, 1);--color8:hsla(0, 70%, 41%, 1);--color9:hsla(0, 70%, 46%, 1);--color10:hsla(0, 70%, 50%, 1);--color11:hsla(0, 70%, 93%, 1);--color12:hsla(0, 70%, 95%, 1);} + } +:root.t_dark .t_error_Button, :root.t_dark .t_error_SliderTrack, :root.t_dark .t_error_Switch, :root.t_dark .t_error_TooltipContent, :root.t_dark .t_light .t_dark .t_error_Button, :root.t_dark .t_light .t_dark .t_error_SliderTrack, :root.t_dark .t_light .t_dark .t_error_Switch, :root.t_dark .t_light .t_dark .t_error_TooltipContent, :root.t_dark .t_light .t_dark .t_red_Button, :root.t_dark .t_light .t_dark .t_red_SliderTrack, :root.t_dark .t_light .t_dark .t_red_Switch, :root.t_dark .t_light .t_dark .t_red_TooltipContent, :root.t_dark .t_red_Button, :root.t_dark .t_red_SliderTrack, :root.t_dark .t_red_Switch, :root.t_dark .t_red_TooltipContent, :root.t_light .t_dark .t_error_Button, :root.t_light .t_dark .t_error_SliderTrack, :root.t_light .t_dark .t_error_Switch, :root.t_light .t_dark .t_error_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_error_Button, :root.t_light .t_dark .t_light .t_dark .t_error_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_error_Switch, :root.t_light .t_dark .t_light .t_dark .t_error_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_red_Button, :root.t_light .t_dark .t_light .t_dark .t_red_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_red_Switch, :root.t_light .t_dark .t_light .t_dark .t_red_TooltipContent, :root.t_light .t_dark .t_red_Button, :root.t_light .t_dark .t_red_SliderTrack, :root.t_light .t_dark .t_red_Switch, :root.t_light .t_dark .t_red_TooltipContent {--background0:hsla(0, 69%, 10%, 0.75);--background025:hsla(0, 70%, 10%, 1);--background05:hsla(0, 70%, 14%, 1);--background075:hsla(0, 70%, 19%, 1);--color0:hsla(0, 70%, 50%, 1);--color025:hsla(0, 70%, 93%, 1);--color05:hsla(0, 70%, 95%, 1);--color075:hsla(0, 69%, 95%, 0.75);--background:hsla(0, 70%, 19%, 1);--backgroundHover:hsla(0, 70%, 23%, 1);--backgroundPress:hsla(0, 70%, 28%, 1);--backgroundFocus:hsla(0, 70%, 32%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 41%, 1);--borderColor:hsla(0, 70%, 32%, 1);--borderColorHover:hsla(0, 70%, 37%, 1);--borderColorFocus:hsla(0, 70%, 41%, 1);--borderColorPress:hsla(0, 70%, 37%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_error_Button, .t_error_SliderTrack, .t_error_Switch, .t_error_TooltipContent, .t_light .t_dark .t_error_Button, .t_light .t_dark .t_error_SliderTrack, .t_light .t_dark .t_error_Switch, .t_light .t_dark .t_error_TooltipContent, .t_light .t_dark .t_red_Button, .t_light .t_dark .t_red_SliderTrack, .t_light .t_dark .t_red_Switch, .t_light .t_dark .t_red_TooltipContent, .t_red_Button, .t_red_SliderTrack, .t_red_Switch, .t_red_TooltipContent {--background0:hsla(0, 69%, 10%, 0.75);--background025:hsla(0, 70%, 10%, 1);--background05:hsla(0, 70%, 14%, 1);--background075:hsla(0, 70%, 19%, 1);--color0:hsla(0, 70%, 50%, 1);--color025:hsla(0, 70%, 93%, 1);--color05:hsla(0, 70%, 95%, 1);--color075:hsla(0, 69%, 95%, 0.75);--background:hsla(0, 70%, 19%, 1);--backgroundHover:hsla(0, 70%, 23%, 1);--backgroundPress:hsla(0, 70%, 28%, 1);--backgroundFocus:hsla(0, 70%, 32%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 41%, 1);--borderColor:hsla(0, 70%, 32%, 1);--borderColorHover:hsla(0, 70%, 37%, 1);--borderColorFocus:hsla(0, 70%, 41%, 1);--borderColorPress:hsla(0, 70%, 37%, 1);} + } +:root.t_dark .t_error_Card, :root.t_dark .t_error_DrawerFrame, :root.t_dark .t_error_Progress, :root.t_dark .t_error_TooltipArrow, :root.t_dark .t_light .t_dark .t_error_Card, :root.t_dark .t_light .t_dark .t_error_DrawerFrame, :root.t_dark .t_light .t_dark .t_error_Progress, :root.t_dark .t_light .t_dark .t_error_TooltipArrow, :root.t_dark .t_light .t_dark .t_red_Card, :root.t_dark .t_light .t_dark .t_red_DrawerFrame, :root.t_dark .t_light .t_dark .t_red_Progress, :root.t_dark .t_light .t_dark .t_red_TooltipArrow, :root.t_dark .t_red_Card, :root.t_dark .t_red_DrawerFrame, :root.t_dark .t_red_Progress, :root.t_dark .t_red_TooltipArrow, :root.t_light .t_dark .t_error_Card, :root.t_light .t_dark .t_error_DrawerFrame, :root.t_light .t_dark .t_error_Progress, :root.t_light .t_dark .t_error_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_error_Card, :root.t_light .t_dark .t_light .t_dark .t_error_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_error_Progress, :root.t_light .t_dark .t_light .t_dark .t_error_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_red_Card, :root.t_light .t_dark .t_light .t_dark .t_red_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_red_Progress, :root.t_light .t_dark .t_light .t_dark .t_red_TooltipArrow, :root.t_light .t_dark .t_red_Card, :root.t_light .t_dark .t_red_DrawerFrame, :root.t_light .t_dark .t_red_Progress, :root.t_light .t_dark .t_red_TooltipArrow {--background0:hsla(0, 69%, 10%, 0.5);--background025:hsla(0, 69%, 10%, 0.75);--background05:hsla(0, 70%, 10%, 1);--background075:hsla(0, 70%, 14%, 1);--color0:hsla(0, 70%, 93%, 1);--color025:hsla(0, 70%, 95%, 1);--color05:hsla(0, 69%, 95%, 0.75);--color075:hsla(0, 69%, 95%, 0.5);--background:hsla(0, 70%, 14%, 1);--backgroundHover:hsla(0, 70%, 19%, 1);--backgroundPress:hsla(0, 70%, 23%, 1);--backgroundFocus:hsla(0, 70%, 28%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 46%, 1);--borderColor:hsla(0, 70%, 28%, 1);--borderColorHover:hsla(0, 70%, 32%, 1);--borderColorFocus:hsla(0, 70%, 37%, 1);--borderColorPress:hsla(0, 70%, 32%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_error_Card, .t_error_DrawerFrame, .t_error_Progress, .t_error_TooltipArrow, .t_light .t_dark .t_error_Card, .t_light .t_dark .t_error_DrawerFrame, .t_light .t_dark .t_error_Progress, .t_light .t_dark .t_error_TooltipArrow, .t_light .t_dark .t_red_Card, .t_light .t_dark .t_red_DrawerFrame, .t_light .t_dark .t_red_Progress, .t_light .t_dark .t_red_TooltipArrow, .t_red_Card, .t_red_DrawerFrame, .t_red_Progress, .t_red_TooltipArrow {--background0:hsla(0, 69%, 10%, 0.5);--background025:hsla(0, 69%, 10%, 0.75);--background05:hsla(0, 70%, 10%, 1);--background075:hsla(0, 70%, 14%, 1);--color0:hsla(0, 70%, 93%, 1);--color025:hsla(0, 70%, 95%, 1);--color05:hsla(0, 69%, 95%, 0.75);--color075:hsla(0, 69%, 95%, 0.5);--background:hsla(0, 70%, 14%, 1);--backgroundHover:hsla(0, 70%, 19%, 1);--backgroundPress:hsla(0, 70%, 23%, 1);--backgroundFocus:hsla(0, 70%, 28%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 46%, 1);--borderColor:hsla(0, 70%, 28%, 1);--borderColorHover:hsla(0, 70%, 32%, 1);--borderColorFocus:hsla(0, 70%, 37%, 1);--borderColorPress:hsla(0, 70%, 32%, 1);} + } +:root.t_dark .t_error_Checkbox, :root.t_dark .t_error_Input, :root.t_dark .t_error_RadioGroupItem, :root.t_dark .t_error_TextArea, :root.t_dark .t_light .t_dark .t_error_Checkbox, :root.t_dark .t_light .t_dark .t_error_Input, :root.t_dark .t_light .t_dark .t_error_RadioGroupItem, :root.t_dark .t_light .t_dark .t_error_TextArea, :root.t_dark .t_light .t_dark .t_red_Checkbox, :root.t_dark .t_light .t_dark .t_red_Input, :root.t_dark .t_light .t_dark .t_red_RadioGroupItem, :root.t_dark .t_light .t_dark .t_red_TextArea, :root.t_dark .t_red_Checkbox, :root.t_dark .t_red_Input, :root.t_dark .t_red_RadioGroupItem, :root.t_dark .t_red_TextArea, :root.t_light .t_dark .t_error_Checkbox, :root.t_light .t_dark .t_error_Input, :root.t_light .t_dark .t_error_RadioGroupItem, :root.t_light .t_dark .t_error_TextArea, :root.t_light .t_dark .t_light .t_dark .t_error_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_error_Input, :root.t_light .t_dark .t_light .t_dark .t_error_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_error_TextArea, :root.t_light .t_dark .t_light .t_dark .t_red_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_red_Input, :root.t_light .t_dark .t_light .t_dark .t_red_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_red_TextArea, :root.t_light .t_dark .t_red_Checkbox, :root.t_light .t_dark .t_red_Input, :root.t_light .t_dark .t_red_RadioGroupItem, :root.t_light .t_dark .t_red_TextArea {--accentBackground:hsla(0, 69%, 10%, 0);--accentColor:hsla(0, 69%, 10%, 0);--background0:hsla(0, 69%, 10%, 0.25);--background025:hsla(0, 69%, 10%, 0.5);--background05:hsla(0, 69%, 10%, 0.75);--background075:hsla(0, 70%, 10%, 1);--color0:hsla(0, 70%, 95%, 1);--color025:hsla(0, 69%, 95%, 0.75);--color05:hsla(0, 69%, 95%, 0.5);--color075:hsla(0, 69%, 95%, 0.25);--background:hsla(0, 70%, 10%, 1);--backgroundHover:hsla(0, 70%, 14%, 1);--backgroundPress:hsla(0, 70%, 19%, 1);--backgroundFocus:hsla(0, 70%, 23%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 50%, 1);--borderColor:hsla(0, 70%, 32%, 1);--borderColorHover:hsla(0, 70%, 37%, 1);--borderColorFocus:hsla(0, 70%, 41%, 1);--borderColorPress:hsla(0, 70%, 37%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_error_Checkbox, .t_error_Input, .t_error_RadioGroupItem, .t_error_TextArea, .t_light .t_dark .t_error_Checkbox, .t_light .t_dark .t_error_Input, .t_light .t_dark .t_error_RadioGroupItem, .t_light .t_dark .t_error_TextArea, .t_light .t_dark .t_red_Checkbox, .t_light .t_dark .t_red_Input, .t_light .t_dark .t_red_RadioGroupItem, .t_light .t_dark .t_red_TextArea, .t_red_Checkbox, .t_red_Input, .t_red_RadioGroupItem, .t_red_TextArea {--accentBackground:hsla(0, 69%, 10%, 0);--accentColor:hsla(0, 69%, 10%, 0);--background0:hsla(0, 69%, 10%, 0.25);--background025:hsla(0, 69%, 10%, 0.5);--background05:hsla(0, 69%, 10%, 0.75);--background075:hsla(0, 70%, 10%, 1);--color0:hsla(0, 70%, 95%, 1);--color025:hsla(0, 69%, 95%, 0.75);--color05:hsla(0, 69%, 95%, 0.5);--color075:hsla(0, 69%, 95%, 0.25);--background:hsla(0, 70%, 10%, 1);--backgroundHover:hsla(0, 70%, 14%, 1);--backgroundPress:hsla(0, 70%, 19%, 1);--backgroundFocus:hsla(0, 70%, 23%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 50%, 1);--borderColor:hsla(0, 70%, 32%, 1);--borderColorHover:hsla(0, 70%, 37%, 1);--borderColorFocus:hsla(0, 70%, 41%, 1);--borderColorPress:hsla(0, 70%, 37%, 1);} + } +:root.t_dark .t_error_ProgressIndicator, :root.t_dark .t_error_SliderThumb, :root.t_dark .t_error_SwitchThumb, :root.t_dark .t_error_Tooltip, :root.t_dark .t_light .t_dark .t_error_ProgressIndicator, :root.t_dark .t_light .t_dark .t_error_SliderThumb, :root.t_dark .t_light .t_dark .t_error_SwitchThumb, :root.t_dark .t_light .t_dark .t_error_Tooltip, :root.t_dark .t_light .t_dark .t_red_ProgressIndicator, :root.t_dark .t_light .t_dark .t_red_SliderThumb, :root.t_dark .t_light .t_dark .t_red_SwitchThumb, :root.t_dark .t_light .t_dark .t_red_Tooltip, :root.t_dark .t_red_ProgressIndicator, :root.t_dark .t_red_SliderThumb, :root.t_dark .t_red_SwitchThumb, :root.t_dark .t_red_Tooltip, :root.t_light .t_dark .t_error_ProgressIndicator, :root.t_light .t_dark .t_error_SliderThumb, :root.t_light .t_dark .t_error_SwitchThumb, :root.t_light .t_dark .t_error_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_error_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_error_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_error_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_error_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_red_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_red_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_red_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_red_Tooltip, :root.t_light .t_dark .t_red_ProgressIndicator, :root.t_light .t_dark .t_red_SliderThumb, :root.t_light .t_dark .t_red_SwitchThumb, :root.t_light .t_dark .t_red_Tooltip {--accentBackground:hsla(0, 69%, 10%, 0);--accentColor:hsla(0, 69%, 10%, 0);--background0:hsla(0, 69%, 95%, 0.25);--background025:hsla(0, 69%, 95%, 0.5);--background05:hsla(0, 69%, 95%, 0.75);--background075:hsla(0, 70%, 95%, 1);--color0:hsla(0, 70%, 10%, 1);--color025:hsla(0, 69%, 10%, 0.75);--color05:hsla(0, 69%, 10%, 0.5);--color075:hsla(0, 69%, 10%, 0.25);--background:hsla(0, 70%, 95%, 1);--backgroundHover:hsla(0, 70%, 93%, 1);--backgroundPress:hsla(0, 70%, 50%, 1);--backgroundFocus:hsla(0, 70%, 46%, 1);--color:hsla(0, 70%, 14%, 1);--colorHover:hsla(0, 70%, 19%, 1);--colorPress:hsla(0, 70%, 14%, 1);--colorFocus:hsla(0, 70%, 19%, 1);--placeholderColor:hsla(0, 70%, 19%, 1);--borderColor:hsla(0, 70%, 46%, 1);--borderColorHover:hsla(0, 70%, 41%, 1);--borderColorFocus:hsla(0, 70%, 37%, 1);--borderColorPress:hsla(0, 70%, 41%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_error_ProgressIndicator, .t_error_SliderThumb, .t_error_SwitchThumb, .t_error_Tooltip, .t_light .t_dark .t_error_ProgressIndicator, .t_light .t_dark .t_error_SliderThumb, .t_light .t_dark .t_error_SwitchThumb, .t_light .t_dark .t_error_Tooltip, .t_light .t_dark .t_red_ProgressIndicator, .t_light .t_dark .t_red_SliderThumb, .t_light .t_dark .t_red_SwitchThumb, .t_light .t_dark .t_red_Tooltip, .t_red_ProgressIndicator, .t_red_SliderThumb, .t_red_SwitchThumb, .t_red_Tooltip {--accentBackground:hsla(0, 69%, 10%, 0);--accentColor:hsla(0, 69%, 10%, 0);--background0:hsla(0, 69%, 95%, 0.25);--background025:hsla(0, 69%, 95%, 0.5);--background05:hsla(0, 69%, 95%, 0.75);--background075:hsla(0, 70%, 95%, 1);--color0:hsla(0, 70%, 10%, 1);--color025:hsla(0, 69%, 10%, 0.75);--color05:hsla(0, 69%, 10%, 0.5);--color075:hsla(0, 69%, 10%, 0.25);--background:hsla(0, 70%, 95%, 1);--backgroundHover:hsla(0, 70%, 93%, 1);--backgroundPress:hsla(0, 70%, 50%, 1);--backgroundFocus:hsla(0, 70%, 46%, 1);--color:hsla(0, 70%, 14%, 1);--colorHover:hsla(0, 70%, 19%, 1);--colorPress:hsla(0, 70%, 14%, 1);--colorFocus:hsla(0, 70%, 19%, 1);--placeholderColor:hsla(0, 70%, 19%, 1);--borderColor:hsla(0, 70%, 46%, 1);--borderColorHover:hsla(0, 70%, 41%, 1);--borderColorFocus:hsla(0, 70%, 37%, 1);--borderColorPress:hsla(0, 70%, 41%, 1);} + } +:root.t_dark .t_error_SliderTrackActive, :root.t_dark .t_light .t_dark .t_error_SliderTrackActive, :root.t_dark .t_light .t_dark .t_red_SliderTrackActive, :root.t_dark .t_red_SliderTrackActive, :root.t_light .t_dark .t_error_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_error_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_red_SliderTrackActive, :root.t_light .t_dark .t_red_SliderTrackActive {--accentBackground:hsla(0, 69%, 10%, 0);--accentColor:hsla(0, 69%, 10%, 0);--background0:hsla(0, 69%, 95%, 0.75);--background025:hsla(0, 70%, 95%, 1);--background05:hsla(0, 70%, 93%, 1);--background075:hsla(0, 70%, 50%, 1);--color0:hsla(0, 70%, 19%, 1);--color025:hsla(0, 70%, 14%, 1);--color05:hsla(0, 70%, 10%, 1);--color075:hsla(0, 69%, 10%, 0.75);--background:hsla(0, 70%, 50%, 1);--backgroundHover:hsla(0, 70%, 46%, 1);--backgroundPress:hsla(0, 70%, 41%, 1);--backgroundFocus:hsla(0, 70%, 37%, 1);--color:hsla(0, 70%, 14%, 1);--colorHover:hsla(0, 70%, 19%, 1);--colorPress:hsla(0, 70%, 14%, 1);--colorFocus:hsla(0, 70%, 19%, 1);--placeholderColor:hsla(0, 70%, 28%, 1);--borderColor:hsla(0, 70%, 37%, 1);--borderColorHover:hsla(0, 70%, 32%, 1);--borderColorFocus:hsla(0, 70%, 28%, 1);--borderColorPress:hsla(0, 70%, 32%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_error_SliderTrackActive, .t_light .t_dark .t_error_SliderTrackActive, .t_light .t_dark .t_red_SliderTrackActive, .t_red_SliderTrackActive {--accentBackground:hsla(0, 69%, 10%, 0);--accentColor:hsla(0, 69%, 10%, 0);--background0:hsla(0, 69%, 95%, 0.75);--background025:hsla(0, 70%, 95%, 1);--background05:hsla(0, 70%, 93%, 1);--background075:hsla(0, 70%, 50%, 1);--color0:hsla(0, 70%, 19%, 1);--color025:hsla(0, 70%, 14%, 1);--color05:hsla(0, 70%, 10%, 1);--color075:hsla(0, 69%, 10%, 0.75);--background:hsla(0, 70%, 50%, 1);--backgroundHover:hsla(0, 70%, 46%, 1);--backgroundPress:hsla(0, 70%, 41%, 1);--backgroundFocus:hsla(0, 70%, 37%, 1);--color:hsla(0, 70%, 14%, 1);--colorHover:hsla(0, 70%, 19%, 1);--colorPress:hsla(0, 70%, 14%, 1);--colorFocus:hsla(0, 70%, 19%, 1);--placeholderColor:hsla(0, 70%, 28%, 1);--borderColor:hsla(0, 70%, 37%, 1);--borderColorHover:hsla(0, 70%, 32%, 1);--borderColorFocus:hsla(0, 70%, 28%, 1);--borderColorPress:hsla(0, 70%, 32%, 1);} + } +:root.t_dark .t_light .t_dark .t_success, :root.t_dark .t_success, :root.t_light .t_dark .t_light .t_dark .t_success, :root.t_light .t_dark .t_success {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(153, 69%, 10%, 0.25);--background025:hsla(153, 69%, 10%, 0.5);--background05:hsla(153, 69%, 10%, 0.75);--background075:hsla(153, 70%, 10%, 1);--color0:hsla(153, 70%, 95%, 1);--color025:hsla(153, 69%, 95%, 0.75);--color05:hsla(153, 69%, 95%, 0.5);--color075:hsla(153, 69%, 95%, 0.25);--background:hsla(153, 70%, 10%, 1);--backgroundHover:hsla(153, 70%, 14%, 1);--backgroundPress:hsla(153, 70%, 19%, 1);--backgroundFocus:hsla(153, 70%, 23%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 50%, 1);--borderColor:hsla(153, 70%, 23%, 1);--borderColorHover:hsla(153, 70%, 28%, 1);--borderColorFocus:hsla(153, 70%, 32%, 1);--borderColorPress:hsla(153, 70%, 28%, 1);--color1:hsla(153, 70%, 10%, 1);--color2:hsla(153, 70%, 14%, 1);--color3:hsla(153, 70%, 19%, 1);--color4:hsla(153, 70%, 23%, 1);--color5:hsla(153, 70%, 28%, 1);--color6:hsla(153, 70%, 32%, 1);--color7:hsla(153, 70%, 37%, 1);--color8:hsla(153, 70%, 41%, 1);--color9:hsla(153, 70%, 46%, 1);--color10:hsla(153, 70%, 50%, 1);--color11:hsla(153, 70%, 93%, 1);--color12:hsla(153, 70%, 95%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_light .t_dark .t_success, .t_success {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(153, 69%, 10%, 0.25);--background025:hsla(153, 69%, 10%, 0.5);--background05:hsla(153, 69%, 10%, 0.75);--background075:hsla(153, 70%, 10%, 1);--color0:hsla(153, 70%, 95%, 1);--color025:hsla(153, 69%, 95%, 0.75);--color05:hsla(153, 69%, 95%, 0.5);--color075:hsla(153, 69%, 95%, 0.25);--background:hsla(153, 70%, 10%, 1);--backgroundHover:hsla(153, 70%, 14%, 1);--backgroundPress:hsla(153, 70%, 19%, 1);--backgroundFocus:hsla(153, 70%, 23%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 50%, 1);--borderColor:hsla(153, 70%, 23%, 1);--borderColorHover:hsla(153, 70%, 28%, 1);--borderColorFocus:hsla(153, 70%, 32%, 1);--borderColorPress:hsla(153, 70%, 28%, 1);--color1:hsla(153, 70%, 10%, 1);--color2:hsla(153, 70%, 14%, 1);--color3:hsla(153, 70%, 19%, 1);--color4:hsla(153, 70%, 23%, 1);--color5:hsla(153, 70%, 28%, 1);--color6:hsla(153, 70%, 32%, 1);--color7:hsla(153, 70%, 37%, 1);--color8:hsla(153, 70%, 41%, 1);--color9:hsla(153, 70%, 46%, 1);--color10:hsla(153, 70%, 50%, 1);--color11:hsla(153, 70%, 93%, 1);--color12:hsla(153, 70%, 95%, 1);} + } +:root.t_dark .t_light .t_dark .t_success_Button, :root.t_dark .t_light .t_dark .t_success_SliderTrack, :root.t_dark .t_light .t_dark .t_success_Switch, :root.t_dark .t_light .t_dark .t_success_TooltipContent, :root.t_dark .t_success_Button, :root.t_dark .t_success_SliderTrack, :root.t_dark .t_success_Switch, :root.t_dark .t_success_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_success_Button, :root.t_light .t_dark .t_light .t_dark .t_success_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_success_Switch, :root.t_light .t_dark .t_light .t_dark .t_success_TooltipContent, :root.t_light .t_dark .t_success_Button, :root.t_light .t_dark .t_success_SliderTrack, :root.t_light .t_dark .t_success_Switch, :root.t_light .t_dark .t_success_TooltipContent {--background0:hsla(153, 69%, 10%, 0.75);--background025:hsla(153, 70%, 10%, 1);--background05:hsla(153, 70%, 14%, 1);--background075:hsla(153, 70%, 19%, 1);--color0:hsla(153, 70%, 50%, 1);--color025:hsla(153, 70%, 93%, 1);--color05:hsla(153, 70%, 95%, 1);--color075:hsla(153, 69%, 95%, 0.75);--background:hsla(153, 70%, 19%, 1);--backgroundHover:hsla(153, 70%, 23%, 1);--backgroundPress:hsla(153, 70%, 28%, 1);--backgroundFocus:hsla(153, 70%, 32%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 41%, 1);--borderColor:hsla(153, 70%, 32%, 1);--borderColorHover:hsla(153, 70%, 37%, 1);--borderColorFocus:hsla(153, 70%, 41%, 1);--borderColorPress:hsla(153, 70%, 37%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_light .t_dark .t_success_Button, .t_light .t_dark .t_success_SliderTrack, .t_light .t_dark .t_success_Switch, .t_light .t_dark .t_success_TooltipContent, .t_success_Button, .t_success_SliderTrack, .t_success_Switch, .t_success_TooltipContent {--background0:hsla(153, 69%, 10%, 0.75);--background025:hsla(153, 70%, 10%, 1);--background05:hsla(153, 70%, 14%, 1);--background075:hsla(153, 70%, 19%, 1);--color0:hsla(153, 70%, 50%, 1);--color025:hsla(153, 70%, 93%, 1);--color05:hsla(153, 70%, 95%, 1);--color075:hsla(153, 69%, 95%, 0.75);--background:hsla(153, 70%, 19%, 1);--backgroundHover:hsla(153, 70%, 23%, 1);--backgroundPress:hsla(153, 70%, 28%, 1);--backgroundFocus:hsla(153, 70%, 32%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 41%, 1);--borderColor:hsla(153, 70%, 32%, 1);--borderColorHover:hsla(153, 70%, 37%, 1);--borderColorFocus:hsla(153, 70%, 41%, 1);--borderColorPress:hsla(153, 70%, 37%, 1);} + } +:root.t_dark .t_light .t_dark .t_success_Card, :root.t_dark .t_light .t_dark .t_success_DrawerFrame, :root.t_dark .t_light .t_dark .t_success_Progress, :root.t_dark .t_light .t_dark .t_success_TooltipArrow, :root.t_dark .t_success_Card, :root.t_dark .t_success_DrawerFrame, :root.t_dark .t_success_Progress, :root.t_dark .t_success_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_success_Card, :root.t_light .t_dark .t_light .t_dark .t_success_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_success_Progress, :root.t_light .t_dark .t_light .t_dark .t_success_TooltipArrow, :root.t_light .t_dark .t_success_Card, :root.t_light .t_dark .t_success_DrawerFrame, :root.t_light .t_dark .t_success_Progress, :root.t_light .t_dark .t_success_TooltipArrow {--background0:hsla(153, 69%, 10%, 0.5);--background025:hsla(153, 69%, 10%, 0.75);--background05:hsla(153, 70%, 10%, 1);--background075:hsla(153, 70%, 14%, 1);--color0:hsla(153, 70%, 93%, 1);--color025:hsla(153, 70%, 95%, 1);--color05:hsla(153, 69%, 95%, 0.75);--color075:hsla(153, 69%, 95%, 0.5);--background:hsla(153, 70%, 14%, 1);--backgroundHover:hsla(153, 70%, 19%, 1);--backgroundPress:hsla(153, 70%, 23%, 1);--backgroundFocus:hsla(153, 70%, 28%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 46%, 1);--borderColor:hsla(153, 70%, 28%, 1);--borderColorHover:hsla(153, 70%, 32%, 1);--borderColorFocus:hsla(153, 70%, 37%, 1);--borderColorPress:hsla(153, 70%, 32%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_light .t_dark .t_success_Card, .t_light .t_dark .t_success_DrawerFrame, .t_light .t_dark .t_success_Progress, .t_light .t_dark .t_success_TooltipArrow, .t_success_Card, .t_success_DrawerFrame, .t_success_Progress, .t_success_TooltipArrow {--background0:hsla(153, 69%, 10%, 0.5);--background025:hsla(153, 69%, 10%, 0.75);--background05:hsla(153, 70%, 10%, 1);--background075:hsla(153, 70%, 14%, 1);--color0:hsla(153, 70%, 93%, 1);--color025:hsla(153, 70%, 95%, 1);--color05:hsla(153, 69%, 95%, 0.75);--color075:hsla(153, 69%, 95%, 0.5);--background:hsla(153, 70%, 14%, 1);--backgroundHover:hsla(153, 70%, 19%, 1);--backgroundPress:hsla(153, 70%, 23%, 1);--backgroundFocus:hsla(153, 70%, 28%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 46%, 1);--borderColor:hsla(153, 70%, 28%, 1);--borderColorHover:hsla(153, 70%, 32%, 1);--borderColorFocus:hsla(153, 70%, 37%, 1);--borderColorPress:hsla(153, 70%, 32%, 1);} + } +:root.t_dark .t_light .t_dark .t_success_Checkbox, :root.t_dark .t_light .t_dark .t_success_Input, :root.t_dark .t_light .t_dark .t_success_RadioGroupItem, :root.t_dark .t_light .t_dark .t_success_TextArea, :root.t_dark .t_success_Checkbox, :root.t_dark .t_success_Input, :root.t_dark .t_success_RadioGroupItem, :root.t_dark .t_success_TextArea, :root.t_light .t_dark .t_light .t_dark .t_success_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_success_Input, :root.t_light .t_dark .t_light .t_dark .t_success_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_success_TextArea, :root.t_light .t_dark .t_success_Checkbox, :root.t_light .t_dark .t_success_Input, :root.t_light .t_dark .t_success_RadioGroupItem, :root.t_light .t_dark .t_success_TextArea {--accentBackground:hsla(153, 69%, 10%, 0);--accentColor:hsla(153, 69%, 10%, 0);--background0:hsla(153, 69%, 10%, 0.25);--background025:hsla(153, 69%, 10%, 0.5);--background05:hsla(153, 69%, 10%, 0.75);--background075:hsla(153, 70%, 10%, 1);--color0:hsla(153, 70%, 95%, 1);--color025:hsla(153, 69%, 95%, 0.75);--color05:hsla(153, 69%, 95%, 0.5);--color075:hsla(153, 69%, 95%, 0.25);--background:hsla(153, 70%, 10%, 1);--backgroundHover:hsla(153, 70%, 14%, 1);--backgroundPress:hsla(153, 70%, 19%, 1);--backgroundFocus:hsla(153, 70%, 23%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 50%, 1);--borderColor:hsla(153, 70%, 32%, 1);--borderColorHover:hsla(153, 70%, 37%, 1);--borderColorFocus:hsla(153, 70%, 41%, 1);--borderColorPress:hsla(153, 70%, 37%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_light .t_dark .t_success_Checkbox, .t_light .t_dark .t_success_Input, .t_light .t_dark .t_success_RadioGroupItem, .t_light .t_dark .t_success_TextArea, .t_success_Checkbox, .t_success_Input, .t_success_RadioGroupItem, .t_success_TextArea {--accentBackground:hsla(153, 69%, 10%, 0);--accentColor:hsla(153, 69%, 10%, 0);--background0:hsla(153, 69%, 10%, 0.25);--background025:hsla(153, 69%, 10%, 0.5);--background05:hsla(153, 69%, 10%, 0.75);--background075:hsla(153, 70%, 10%, 1);--color0:hsla(153, 70%, 95%, 1);--color025:hsla(153, 69%, 95%, 0.75);--color05:hsla(153, 69%, 95%, 0.5);--color075:hsla(153, 69%, 95%, 0.25);--background:hsla(153, 70%, 10%, 1);--backgroundHover:hsla(153, 70%, 14%, 1);--backgroundPress:hsla(153, 70%, 19%, 1);--backgroundFocus:hsla(153, 70%, 23%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 50%, 1);--borderColor:hsla(153, 70%, 32%, 1);--borderColorHover:hsla(153, 70%, 37%, 1);--borderColorFocus:hsla(153, 70%, 41%, 1);--borderColorPress:hsla(153, 70%, 37%, 1);} + } +:root.t_dark .t_light .t_dark .t_success_ProgressIndicator, :root.t_dark .t_light .t_dark .t_success_SliderThumb, :root.t_dark .t_light .t_dark .t_success_SwitchThumb, :root.t_dark .t_light .t_dark .t_success_Tooltip, :root.t_dark .t_success_ProgressIndicator, :root.t_dark .t_success_SliderThumb, :root.t_dark .t_success_SwitchThumb, :root.t_dark .t_success_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_success_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_success_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_success_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_success_Tooltip, :root.t_light .t_dark .t_success_ProgressIndicator, :root.t_light .t_dark .t_success_SliderThumb, :root.t_light .t_dark .t_success_SwitchThumb, :root.t_light .t_dark .t_success_Tooltip {--accentBackground:hsla(153, 69%, 10%, 0);--accentColor:hsla(153, 69%, 10%, 0);--background0:hsla(153, 69%, 95%, 0.25);--background025:hsla(153, 69%, 95%, 0.5);--background05:hsla(153, 69%, 95%, 0.75);--background075:hsla(153, 70%, 95%, 1);--color0:hsla(153, 70%, 10%, 1);--color025:hsla(153, 69%, 10%, 0.75);--color05:hsla(153, 69%, 10%, 0.5);--color075:hsla(153, 69%, 10%, 0.25);--background:hsla(153, 70%, 95%, 1);--backgroundHover:hsla(153, 70%, 93%, 1);--backgroundPress:hsla(153, 70%, 50%, 1);--backgroundFocus:hsla(153, 70%, 46%, 1);--color:hsla(153, 70%, 14%, 1);--colorHover:hsla(153, 70%, 19%, 1);--colorPress:hsla(153, 70%, 14%, 1);--colorFocus:hsla(153, 70%, 19%, 1);--placeholderColor:hsla(153, 70%, 19%, 1);--borderColor:hsla(153, 70%, 46%, 1);--borderColorHover:hsla(153, 70%, 41%, 1);--borderColorFocus:hsla(153, 70%, 37%, 1);--borderColorPress:hsla(153, 70%, 41%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_light .t_dark .t_success_ProgressIndicator, .t_light .t_dark .t_success_SliderThumb, .t_light .t_dark .t_success_SwitchThumb, .t_light .t_dark .t_success_Tooltip, .t_success_ProgressIndicator, .t_success_SliderThumb, .t_success_SwitchThumb, .t_success_Tooltip {--accentBackground:hsla(153, 69%, 10%, 0);--accentColor:hsla(153, 69%, 10%, 0);--background0:hsla(153, 69%, 95%, 0.25);--background025:hsla(153, 69%, 95%, 0.5);--background05:hsla(153, 69%, 95%, 0.75);--background075:hsla(153, 70%, 95%, 1);--color0:hsla(153, 70%, 10%, 1);--color025:hsla(153, 69%, 10%, 0.75);--color05:hsla(153, 69%, 10%, 0.5);--color075:hsla(153, 69%, 10%, 0.25);--background:hsla(153, 70%, 95%, 1);--backgroundHover:hsla(153, 70%, 93%, 1);--backgroundPress:hsla(153, 70%, 50%, 1);--backgroundFocus:hsla(153, 70%, 46%, 1);--color:hsla(153, 70%, 14%, 1);--colorHover:hsla(153, 70%, 19%, 1);--colorPress:hsla(153, 70%, 14%, 1);--colorFocus:hsla(153, 70%, 19%, 1);--placeholderColor:hsla(153, 70%, 19%, 1);--borderColor:hsla(153, 70%, 46%, 1);--borderColorHover:hsla(153, 70%, 41%, 1);--borderColorFocus:hsla(153, 70%, 37%, 1);--borderColorPress:hsla(153, 70%, 41%, 1);} + } +:root.t_dark .t_light .t_dark .t_success_SliderTrackActive, :root.t_dark .t_success_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_success_SliderTrackActive, :root.t_light .t_dark .t_success_SliderTrackActive {--accentBackground:hsla(153, 69%, 10%, 0);--accentColor:hsla(153, 69%, 10%, 0);--background0:hsla(153, 69%, 95%, 0.75);--background025:hsla(153, 70%, 95%, 1);--background05:hsla(153, 70%, 93%, 1);--background075:hsla(153, 70%, 50%, 1);--color0:hsla(153, 70%, 19%, 1);--color025:hsla(153, 70%, 14%, 1);--color05:hsla(153, 70%, 10%, 1);--color075:hsla(153, 69%, 10%, 0.75);--background:hsla(153, 70%, 50%, 1);--backgroundHover:hsla(153, 70%, 46%, 1);--backgroundPress:hsla(153, 70%, 41%, 1);--backgroundFocus:hsla(153, 70%, 37%, 1);--color:hsla(153, 70%, 14%, 1);--colorHover:hsla(153, 70%, 19%, 1);--colorPress:hsla(153, 70%, 14%, 1);--colorFocus:hsla(153, 70%, 19%, 1);--placeholderColor:hsla(153, 70%, 28%, 1);--borderColor:hsla(153, 70%, 37%, 1);--borderColorHover:hsla(153, 70%, 32%, 1);--borderColorFocus:hsla(153, 70%, 28%, 1);--borderColorPress:hsla(153, 70%, 32%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_light .t_dark .t_success_SliderTrackActive, .t_success_SliderTrackActive {--accentBackground:hsla(153, 69%, 10%, 0);--accentColor:hsla(153, 69%, 10%, 0);--background0:hsla(153, 69%, 95%, 0.75);--background025:hsla(153, 70%, 95%, 1);--background05:hsla(153, 70%, 93%, 1);--background075:hsla(153, 70%, 50%, 1);--color0:hsla(153, 70%, 19%, 1);--color025:hsla(153, 70%, 14%, 1);--color05:hsla(153, 70%, 10%, 1);--color075:hsla(153, 69%, 10%, 0.75);--background:hsla(153, 70%, 50%, 1);--backgroundHover:hsla(153, 70%, 46%, 1);--backgroundPress:hsla(153, 70%, 41%, 1);--backgroundFocus:hsla(153, 70%, 37%, 1);--color:hsla(153, 70%, 14%, 1);--colorHover:hsla(153, 70%, 19%, 1);--colorPress:hsla(153, 70%, 14%, 1);--colorFocus:hsla(153, 70%, 19%, 1);--placeholderColor:hsla(153, 70%, 28%, 1);--borderColor:hsla(153, 70%, 37%, 1);--borderColorHover:hsla(153, 70%, 32%, 1);--borderColorFocus:hsla(153, 70%, 28%, 1);--borderColorPress:hsla(153, 70%, 32%, 1);} + } +:root.t_dark .t_light .t_dark .t_warning, :root.t_dark .t_warning, :root.t_light .t_dark .t_light .t_dark .t_warning, :root.t_light .t_dark .t_warning {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(48, 69%, 10%, 0.25);--background025:hsla(48, 69%, 10%, 0.5);--background05:hsla(48, 69%, 10%, 0.75);--background075:hsla(48, 70%, 10%, 1);--color0:hsla(48, 70%, 95%, 1);--color025:hsla(50, 69%, 95%, 0.75);--color05:hsla(50, 69%, 95%, 0.5);--color075:hsla(50, 69%, 95%, 0.25);--background:hsla(48, 70%, 10%, 1);--backgroundHover:hsla(48, 70%, 14%, 1);--backgroundPress:hsla(48, 70%, 19%, 1);--backgroundFocus:hsla(48, 70%, 23%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 50%, 1);--borderColor:hsla(48, 70%, 23%, 1);--borderColorHover:hsla(48, 70%, 28%, 1);--borderColorFocus:hsla(48, 70%, 32%, 1);--borderColorPress:hsla(48, 70%, 28%, 1);--color1:hsla(48, 70%, 10%, 1);--color2:hsla(48, 70%, 14%, 1);--color3:hsla(48, 70%, 19%, 1);--color4:hsla(48, 70%, 23%, 1);--color5:hsla(48, 70%, 28%, 1);--color6:hsla(48, 70%, 32%, 1);--color7:hsla(48, 70%, 37%, 1);--color8:hsla(48, 70%, 41%, 1);--color9:hsla(48, 70%, 46%, 1);--color10:hsla(48, 70%, 50%, 1);--color11:hsla(48, 70%, 93%, 1);--color12:hsla(48, 70%, 95%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_light .t_dark .t_warning, .t_warning {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(48, 69%, 10%, 0.25);--background025:hsla(48, 69%, 10%, 0.5);--background05:hsla(48, 69%, 10%, 0.75);--background075:hsla(48, 70%, 10%, 1);--color0:hsla(48, 70%, 95%, 1);--color025:hsla(50, 69%, 95%, 0.75);--color05:hsla(50, 69%, 95%, 0.5);--color075:hsla(50, 69%, 95%, 0.25);--background:hsla(48, 70%, 10%, 1);--backgroundHover:hsla(48, 70%, 14%, 1);--backgroundPress:hsla(48, 70%, 19%, 1);--backgroundFocus:hsla(48, 70%, 23%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 50%, 1);--borderColor:hsla(48, 70%, 23%, 1);--borderColorHover:hsla(48, 70%, 28%, 1);--borderColorFocus:hsla(48, 70%, 32%, 1);--borderColorPress:hsla(48, 70%, 28%, 1);--color1:hsla(48, 70%, 10%, 1);--color2:hsla(48, 70%, 14%, 1);--color3:hsla(48, 70%, 19%, 1);--color4:hsla(48, 70%, 23%, 1);--color5:hsla(48, 70%, 28%, 1);--color6:hsla(48, 70%, 32%, 1);--color7:hsla(48, 70%, 37%, 1);--color8:hsla(48, 70%, 41%, 1);--color9:hsla(48, 70%, 46%, 1);--color10:hsla(48, 70%, 50%, 1);--color11:hsla(48, 70%, 93%, 1);--color12:hsla(48, 70%, 95%, 1);} + } +:root.t_dark .t_light .t_dark .t_warning_Button, :root.t_dark .t_light .t_dark .t_warning_SliderTrack, :root.t_dark .t_light .t_dark .t_warning_Switch, :root.t_dark .t_light .t_dark .t_warning_TooltipContent, :root.t_dark .t_warning_Button, :root.t_dark .t_warning_SliderTrack, :root.t_dark .t_warning_Switch, :root.t_dark .t_warning_TooltipContent, :root.t_light .t_dark .t_light .t_dark .t_warning_Button, :root.t_light .t_dark .t_light .t_dark .t_warning_SliderTrack, :root.t_light .t_dark .t_light .t_dark .t_warning_Switch, :root.t_light .t_dark .t_light .t_dark .t_warning_TooltipContent, :root.t_light .t_dark .t_warning_Button, :root.t_light .t_dark .t_warning_SliderTrack, :root.t_light .t_dark .t_warning_Switch, :root.t_light .t_dark .t_warning_TooltipContent {--background0:hsla(48, 69%, 10%, 0.75);--background025:hsla(48, 70%, 10%, 1);--background05:hsla(48, 70%, 14%, 1);--background075:hsla(48, 70%, 19%, 1);--color0:hsla(48, 70%, 50%, 1);--color025:hsla(48, 70%, 93%, 1);--color05:hsla(48, 70%, 95%, 1);--color075:hsla(50, 69%, 95%, 0.75);--background:hsla(48, 70%, 19%, 1);--backgroundHover:hsla(48, 70%, 23%, 1);--backgroundPress:hsla(48, 70%, 28%, 1);--backgroundFocus:hsla(48, 70%, 32%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 41%, 1);--borderColor:hsla(48, 70%, 32%, 1);--borderColorHover:hsla(48, 70%, 37%, 1);--borderColorFocus:hsla(48, 70%, 41%, 1);--borderColorPress:hsla(48, 70%, 37%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_light .t_dark .t_warning_Button, .t_light .t_dark .t_warning_SliderTrack, .t_light .t_dark .t_warning_Switch, .t_light .t_dark .t_warning_TooltipContent, .t_warning_Button, .t_warning_SliderTrack, .t_warning_Switch, .t_warning_TooltipContent {--background0:hsla(48, 69%, 10%, 0.75);--background025:hsla(48, 70%, 10%, 1);--background05:hsla(48, 70%, 14%, 1);--background075:hsla(48, 70%, 19%, 1);--color0:hsla(48, 70%, 50%, 1);--color025:hsla(48, 70%, 93%, 1);--color05:hsla(48, 70%, 95%, 1);--color075:hsla(50, 69%, 95%, 0.75);--background:hsla(48, 70%, 19%, 1);--backgroundHover:hsla(48, 70%, 23%, 1);--backgroundPress:hsla(48, 70%, 28%, 1);--backgroundFocus:hsla(48, 70%, 32%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 41%, 1);--borderColor:hsla(48, 70%, 32%, 1);--borderColorHover:hsla(48, 70%, 37%, 1);--borderColorFocus:hsla(48, 70%, 41%, 1);--borderColorPress:hsla(48, 70%, 37%, 1);} + } +:root.t_dark .t_light .t_dark .t_warning_Card, :root.t_dark .t_light .t_dark .t_warning_DrawerFrame, :root.t_dark .t_light .t_dark .t_warning_Progress, :root.t_dark .t_light .t_dark .t_warning_TooltipArrow, :root.t_dark .t_warning_Card, :root.t_dark .t_warning_DrawerFrame, :root.t_dark .t_warning_Progress, :root.t_dark .t_warning_TooltipArrow, :root.t_light .t_dark .t_light .t_dark .t_warning_Card, :root.t_light .t_dark .t_light .t_dark .t_warning_DrawerFrame, :root.t_light .t_dark .t_light .t_dark .t_warning_Progress, :root.t_light .t_dark .t_light .t_dark .t_warning_TooltipArrow, :root.t_light .t_dark .t_warning_Card, :root.t_light .t_dark .t_warning_DrawerFrame, :root.t_light .t_dark .t_warning_Progress, :root.t_light .t_dark .t_warning_TooltipArrow {--background0:hsla(48, 69%, 10%, 0.5);--background025:hsla(48, 69%, 10%, 0.75);--background05:hsla(48, 70%, 10%, 1);--background075:hsla(48, 70%, 14%, 1);--color0:hsla(48, 70%, 93%, 1);--color025:hsla(48, 70%, 95%, 1);--color05:hsla(50, 69%, 95%, 0.75);--color075:hsla(50, 69%, 95%, 0.5);--background:hsla(48, 70%, 14%, 1);--backgroundHover:hsla(48, 70%, 19%, 1);--backgroundPress:hsla(48, 70%, 23%, 1);--backgroundFocus:hsla(48, 70%, 28%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 46%, 1);--borderColor:hsla(48, 70%, 28%, 1);--borderColorHover:hsla(48, 70%, 32%, 1);--borderColorFocus:hsla(48, 70%, 37%, 1);--borderColorPress:hsla(48, 70%, 32%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_light .t_dark .t_warning_Card, .t_light .t_dark .t_warning_DrawerFrame, .t_light .t_dark .t_warning_Progress, .t_light .t_dark .t_warning_TooltipArrow, .t_warning_Card, .t_warning_DrawerFrame, .t_warning_Progress, .t_warning_TooltipArrow {--background0:hsla(48, 69%, 10%, 0.5);--background025:hsla(48, 69%, 10%, 0.75);--background05:hsla(48, 70%, 10%, 1);--background075:hsla(48, 70%, 14%, 1);--color0:hsla(48, 70%, 93%, 1);--color025:hsla(48, 70%, 95%, 1);--color05:hsla(50, 69%, 95%, 0.75);--color075:hsla(50, 69%, 95%, 0.5);--background:hsla(48, 70%, 14%, 1);--backgroundHover:hsla(48, 70%, 19%, 1);--backgroundPress:hsla(48, 70%, 23%, 1);--backgroundFocus:hsla(48, 70%, 28%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 46%, 1);--borderColor:hsla(48, 70%, 28%, 1);--borderColorHover:hsla(48, 70%, 32%, 1);--borderColorFocus:hsla(48, 70%, 37%, 1);--borderColorPress:hsla(48, 70%, 32%, 1);} + } +:root.t_dark .t_light .t_dark .t_warning_Checkbox, :root.t_dark .t_light .t_dark .t_warning_Input, :root.t_dark .t_light .t_dark .t_warning_RadioGroupItem, :root.t_dark .t_light .t_dark .t_warning_TextArea, :root.t_dark .t_warning_Checkbox, :root.t_dark .t_warning_Input, :root.t_dark .t_warning_RadioGroupItem, :root.t_dark .t_warning_TextArea, :root.t_light .t_dark .t_light .t_dark .t_warning_Checkbox, :root.t_light .t_dark .t_light .t_dark .t_warning_Input, :root.t_light .t_dark .t_light .t_dark .t_warning_RadioGroupItem, :root.t_light .t_dark .t_light .t_dark .t_warning_TextArea, :root.t_light .t_dark .t_warning_Checkbox, :root.t_light .t_dark .t_warning_Input, :root.t_light .t_dark .t_warning_RadioGroupItem, :root.t_light .t_dark .t_warning_TextArea {--accentBackground:hsla(48, 69%, 10%, 0);--accentColor:hsla(48, 69%, 10%, 0);--background0:hsla(48, 69%, 10%, 0.25);--background025:hsla(48, 69%, 10%, 0.5);--background05:hsla(48, 69%, 10%, 0.75);--background075:hsla(48, 70%, 10%, 1);--color0:hsla(48, 70%, 95%, 1);--color025:hsla(50, 69%, 95%, 0.75);--color05:hsla(50, 69%, 95%, 0.5);--color075:hsla(50, 69%, 95%, 0.25);--background:hsla(48, 70%, 10%, 1);--backgroundHover:hsla(48, 70%, 14%, 1);--backgroundPress:hsla(48, 70%, 19%, 1);--backgroundFocus:hsla(48, 70%, 23%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 50%, 1);--borderColor:hsla(48, 70%, 32%, 1);--borderColorHover:hsla(48, 70%, 37%, 1);--borderColorFocus:hsla(48, 70%, 41%, 1);--borderColorPress:hsla(48, 70%, 37%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_light .t_dark .t_warning_Checkbox, .t_light .t_dark .t_warning_Input, .t_light .t_dark .t_warning_RadioGroupItem, .t_light .t_dark .t_warning_TextArea, .t_warning_Checkbox, .t_warning_Input, .t_warning_RadioGroupItem, .t_warning_TextArea {--accentBackground:hsla(48, 69%, 10%, 0);--accentColor:hsla(48, 69%, 10%, 0);--background0:hsla(48, 69%, 10%, 0.25);--background025:hsla(48, 69%, 10%, 0.5);--background05:hsla(48, 69%, 10%, 0.75);--background075:hsla(48, 70%, 10%, 1);--color0:hsla(48, 70%, 95%, 1);--color025:hsla(50, 69%, 95%, 0.75);--color05:hsla(50, 69%, 95%, 0.5);--color075:hsla(50, 69%, 95%, 0.25);--background:hsla(48, 70%, 10%, 1);--backgroundHover:hsla(48, 70%, 14%, 1);--backgroundPress:hsla(48, 70%, 19%, 1);--backgroundFocus:hsla(48, 70%, 23%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 50%, 1);--borderColor:hsla(48, 70%, 32%, 1);--borderColorHover:hsla(48, 70%, 37%, 1);--borderColorFocus:hsla(48, 70%, 41%, 1);--borderColorPress:hsla(48, 70%, 37%, 1);} + } +:root.t_dark .t_light .t_dark .t_warning_ProgressIndicator, :root.t_dark .t_light .t_dark .t_warning_SliderThumb, :root.t_dark .t_light .t_dark .t_warning_SwitchThumb, :root.t_dark .t_light .t_dark .t_warning_Tooltip, :root.t_dark .t_warning_ProgressIndicator, :root.t_dark .t_warning_SliderThumb, :root.t_dark .t_warning_SwitchThumb, :root.t_dark .t_warning_Tooltip, :root.t_light .t_dark .t_light .t_dark .t_warning_ProgressIndicator, :root.t_light .t_dark .t_light .t_dark .t_warning_SliderThumb, :root.t_light .t_dark .t_light .t_dark .t_warning_SwitchThumb, :root.t_light .t_dark .t_light .t_dark .t_warning_Tooltip, :root.t_light .t_dark .t_warning_ProgressIndicator, :root.t_light .t_dark .t_warning_SliderThumb, :root.t_light .t_dark .t_warning_SwitchThumb, :root.t_light .t_dark .t_warning_Tooltip {--accentBackground:hsla(48, 69%, 10%, 0);--accentColor:hsla(48, 69%, 10%, 0);--background0:hsla(50, 69%, 95%, 0.25);--background025:hsla(50, 69%, 95%, 0.5);--background05:hsla(50, 69%, 95%, 0.75);--background075:hsla(48, 70%, 95%, 1);--color0:hsla(48, 70%, 10%, 1);--color025:hsla(48, 69%, 10%, 0.75);--color05:hsla(48, 69%, 10%, 0.5);--color075:hsla(48, 69%, 10%, 0.25);--background:hsla(48, 70%, 95%, 1);--backgroundHover:hsla(48, 70%, 93%, 1);--backgroundPress:hsla(48, 70%, 50%, 1);--backgroundFocus:hsla(48, 70%, 46%, 1);--color:hsla(48, 70%, 14%, 1);--colorHover:hsla(48, 70%, 19%, 1);--colorPress:hsla(48, 70%, 14%, 1);--colorFocus:hsla(48, 70%, 19%, 1);--placeholderColor:hsla(48, 70%, 19%, 1);--borderColor:hsla(48, 70%, 46%, 1);--borderColorHover:hsla(48, 70%, 41%, 1);--borderColorFocus:hsla(48, 70%, 37%, 1);--borderColorPress:hsla(48, 70%, 41%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_light .t_dark .t_warning_ProgressIndicator, .t_light .t_dark .t_warning_SliderThumb, .t_light .t_dark .t_warning_SwitchThumb, .t_light .t_dark .t_warning_Tooltip, .t_warning_ProgressIndicator, .t_warning_SliderThumb, .t_warning_SwitchThumb, .t_warning_Tooltip {--accentBackground:hsla(48, 69%, 10%, 0);--accentColor:hsla(48, 69%, 10%, 0);--background0:hsla(50, 69%, 95%, 0.25);--background025:hsla(50, 69%, 95%, 0.5);--background05:hsla(50, 69%, 95%, 0.75);--background075:hsla(48, 70%, 95%, 1);--color0:hsla(48, 70%, 10%, 1);--color025:hsla(48, 69%, 10%, 0.75);--color05:hsla(48, 69%, 10%, 0.5);--color075:hsla(48, 69%, 10%, 0.25);--background:hsla(48, 70%, 95%, 1);--backgroundHover:hsla(48, 70%, 93%, 1);--backgroundPress:hsla(48, 70%, 50%, 1);--backgroundFocus:hsla(48, 70%, 46%, 1);--color:hsla(48, 70%, 14%, 1);--colorHover:hsla(48, 70%, 19%, 1);--colorPress:hsla(48, 70%, 14%, 1);--colorFocus:hsla(48, 70%, 19%, 1);--placeholderColor:hsla(48, 70%, 19%, 1);--borderColor:hsla(48, 70%, 46%, 1);--borderColorHover:hsla(48, 70%, 41%, 1);--borderColorFocus:hsla(48, 70%, 37%, 1);--borderColorPress:hsla(48, 70%, 41%, 1);} + } +:root.t_dark .t_light .t_dark .t_warning_SliderTrackActive, :root.t_dark .t_warning_SliderTrackActive, :root.t_light .t_dark .t_light .t_dark .t_warning_SliderTrackActive, :root.t_light .t_dark .t_warning_SliderTrackActive {--accentBackground:hsla(48, 69%, 10%, 0);--accentColor:hsla(48, 69%, 10%, 0);--background0:hsla(50, 69%, 95%, 0.75);--background025:hsla(48, 70%, 95%, 1);--background05:hsla(48, 70%, 93%, 1);--background075:hsla(48, 70%, 50%, 1);--color0:hsla(48, 70%, 19%, 1);--color025:hsla(48, 70%, 14%, 1);--color05:hsla(48, 70%, 10%, 1);--color075:hsla(48, 69%, 10%, 0.75);--background:hsla(48, 70%, 50%, 1);--backgroundHover:hsla(48, 70%, 46%, 1);--backgroundPress:hsla(48, 70%, 41%, 1);--backgroundFocus:hsla(48, 70%, 37%, 1);--color:hsla(48, 70%, 14%, 1);--colorHover:hsla(48, 70%, 19%, 1);--colorPress:hsla(48, 70%, 14%, 1);--colorFocus:hsla(48, 70%, 19%, 1);--placeholderColor:hsla(48, 70%, 28%, 1);--borderColor:hsla(48, 70%, 37%, 1);--borderColorHover:hsla(48, 70%, 32%, 1);--borderColorFocus:hsla(48, 70%, 28%, 1);--borderColorPress:hsla(48, 70%, 32%, 1);} +@media(prefers-color-scheme:dark){ + body{background:var(--background);color:var(--color)} + .t_light .t_dark .t_warning_SliderTrackActive, .t_warning_SliderTrackActive {--accentBackground:hsla(48, 69%, 10%, 0);--accentColor:hsla(48, 69%, 10%, 0);--background0:hsla(50, 69%, 95%, 0.75);--background025:hsla(48, 70%, 95%, 1);--background05:hsla(48, 70%, 93%, 1);--background075:hsla(48, 70%, 50%, 1);--color0:hsla(48, 70%, 19%, 1);--color025:hsla(48, 70%, 14%, 1);--color05:hsla(48, 70%, 10%, 1);--color075:hsla(48, 69%, 10%, 0.75);--background:hsla(48, 70%, 50%, 1);--backgroundHover:hsla(48, 70%, 46%, 1);--backgroundPress:hsla(48, 70%, 41%, 1);--backgroundFocus:hsla(48, 70%, 37%, 1);--color:hsla(48, 70%, 14%, 1);--colorHover:hsla(48, 70%, 19%, 1);--colorPress:hsla(48, 70%, 14%, 1);--colorFocus:hsla(48, 70%, 19%, 1);--placeholderColor:hsla(48, 70%, 28%, 1);--borderColor:hsla(48, 70%, 37%, 1);--borderColorHover:hsla(48, 70%, 32%, 1);--borderColorFocus:hsla(48, 70%, 28%, 1);--borderColorPress:hsla(48, 70%, 32%, 1);} + } +:root.t_dark .t_light, :root.t_dark .t_light .t_dark .t_light, :root.t_light, :root.t_light .t_dark .t_light {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(180, 20%, 99%, 0.25);--background025:hsla(180, 20%, 99%, 0.5);--background05:hsla(180, 20%, 99%, 0.75);--background075:hsla(191, 32%, 99%, 1);--color0:hsla(112, 22%, 0%, 1);--color025:hsla(0, 0%, 0%, 0.75);--color05:hsla(0, 0%, 0%, 0.5);--color075:hsla(0, 0%, 0%, 0.25);--background:hsla(191, 32%, 99%, 1);--backgroundHover:hsla(191, 32%, 93%, 1);--backgroundPress:hsla(191, 32%, 88%, 1);--backgroundFocus:hsla(191, 32%, 83%, 1);--color:hsla(96, 16%, 25%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(96, 16%, 25%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 83%, 1);--borderColorHover:hsla(191, 32%, 77%, 1);--borderColorFocus:hsla(191, 32%, 72%, 1);--borderColorPress:hsla(191, 32%, 77%, 1);--color1:hsla(191, 32%, 99%, 1);--color2:hsla(191, 32%, 93%, 1);--color3:hsla(191, 32%, 88%, 1);--color4:hsla(191, 32%, 83%, 1);--color5:hsla(191, 32%, 77%, 1);--color6:hsla(191, 32%, 72%, 1);--color7:hsla(191, 32%, 66%, 1);--color8:hsla(191, 32%, 61%, 1);--color9:hsla(191, 32%, 55%, 1);--color10:hsla(191, 32%, 50%, 1);--color11:hsla(96, 16%, 25%, 1);--color12:hsla(112, 22%, 0%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + :root, .t_dark .t_light {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(180, 20%, 99%, 0.25);--background025:hsla(180, 20%, 99%, 0.5);--background05:hsla(180, 20%, 99%, 0.75);--background075:hsla(191, 32%, 99%, 1);--color0:hsla(112, 22%, 0%, 1);--color025:hsla(0, 0%, 0%, 0.75);--color05:hsla(0, 0%, 0%, 0.5);--color075:hsla(0, 0%, 0%, 0.25);--background:hsla(191, 32%, 99%, 1);--backgroundHover:hsla(191, 32%, 93%, 1);--backgroundPress:hsla(191, 32%, 88%, 1);--backgroundFocus:hsla(191, 32%, 83%, 1);--color:hsla(96, 16%, 25%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(96, 16%, 25%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 83%, 1);--borderColorHover:hsla(191, 32%, 77%, 1);--borderColorFocus:hsla(191, 32%, 72%, 1);--borderColorPress:hsla(191, 32%, 77%, 1);--color1:hsla(191, 32%, 99%, 1);--color2:hsla(191, 32%, 93%, 1);--color3:hsla(191, 32%, 88%, 1);--color4:hsla(191, 32%, 83%, 1);--color5:hsla(191, 32%, 77%, 1);--color6:hsla(191, 32%, 72%, 1);--color7:hsla(191, 32%, 66%, 1);--color8:hsla(191, 32%, 61%, 1);--color9:hsla(191, 32%, 55%, 1);--color10:hsla(191, 32%, 50%, 1);--color11:hsla(96, 16%, 25%, 1);--color12:hsla(112, 22%, 0%, 1);} + } +:root.t_dark .t_light .t_Button, :root.t_dark .t_light .t_dark .t_light .t_Button, :root.t_dark .t_light .t_dark .t_light .t_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_Switch, :root.t_dark .t_light .t_dark .t_light .t_TooltipContent, :root.t_dark .t_light .t_SliderTrack, :root.t_dark .t_light .t_Switch, :root.t_dark .t_light .t_TooltipContent, :root.t_light .t_Button, :root.t_light .t_dark .t_light .t_Button, :root.t_light .t_dark .t_light .t_SliderTrack, :root.t_light .t_dark .t_light .t_Switch, :root.t_light .t_dark .t_light .t_TooltipContent, :root.t_light .t_SliderTrack, :root.t_light .t_Switch, :root.t_light .t_TooltipContent {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(96, 16%, 25%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(96, 16%, 25%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_Button, .t_dark .t_light .t_Button, .t_dark .t_light .t_SliderTrack, .t_dark .t_light .t_Switch, .t_dark .t_light .t_TooltipContent, .t_SliderTrack, .t_Switch, .t_TooltipContent {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(96, 16%, 25%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(96, 16%, 25%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} + } +:root.t_dark .t_light .t_Card, :root.t_dark .t_light .t_dark .t_light .t_Card, :root.t_dark .t_light .t_dark .t_light .t_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_Progress, :root.t_dark .t_light .t_dark .t_light .t_TooltipArrow, :root.t_dark .t_light .t_DrawerFrame, :root.t_dark .t_light .t_Progress, :root.t_dark .t_light .t_TooltipArrow, :root.t_light .t_Card, :root.t_light .t_dark .t_light .t_Card, :root.t_light .t_dark .t_light .t_DrawerFrame, :root.t_light .t_dark .t_light .t_Progress, :root.t_light .t_dark .t_light .t_TooltipArrow, :root.t_light .t_DrawerFrame, :root.t_light .t_Progress, :root.t_light .t_TooltipArrow {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(96, 16%, 25%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(96, 16%, 25%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_Card, .t_dark .t_light .t_Card, .t_dark .t_light .t_DrawerFrame, .t_dark .t_light .t_Progress, .t_dark .t_light .t_TooltipArrow, .t_DrawerFrame, .t_Progress, .t_TooltipArrow {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(96, 16%, 25%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(96, 16%, 25%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} + } +:root.t_dark .t_light .t_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_Input, :root.t_dark .t_light .t_dark .t_light .t_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_TextArea, :root.t_dark .t_light .t_Input, :root.t_dark .t_light .t_RadioGroupItem, :root.t_dark .t_light .t_TextArea, :root.t_light .t_Checkbox, :root.t_light .t_dark .t_light .t_Checkbox, :root.t_light .t_dark .t_light .t_Input, :root.t_light .t_dark .t_light .t_RadioGroupItem, :root.t_light .t_dark .t_light .t_TextArea, :root.t_light .t_Input, :root.t_light .t_RadioGroupItem, :root.t_light .t_TextArea {--accentBackground:hsla(180, 20%, 99%, 0);--accentColor:hsla(180, 20%, 99%, 0);--background0:hsla(180, 20%, 99%, 0.25);--background025:hsla(180, 20%, 99%, 0.5);--background05:hsla(180, 20%, 99%, 0.75);--background075:hsla(191, 32%, 99%, 1);--color0:hsla(112, 22%, 0%, 1);--color025:hsla(0, 0%, 0%, 0.75);--color05:hsla(0, 0%, 0%, 0.5);--color075:hsla(0, 0%, 0%, 0.25);--background:hsla(191, 32%, 99%, 1);--backgroundHover:hsla(191, 32%, 93%, 1);--backgroundPress:hsla(191, 32%, 88%, 1);--backgroundFocus:hsla(191, 32%, 83%, 1);--color:hsla(96, 16%, 25%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(96, 16%, 25%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_Checkbox, .t_dark .t_light .t_Checkbox, .t_dark .t_light .t_Input, .t_dark .t_light .t_RadioGroupItem, .t_dark .t_light .t_TextArea, .t_Input, .t_RadioGroupItem, .t_TextArea {--accentBackground:hsla(180, 20%, 99%, 0);--accentColor:hsla(180, 20%, 99%, 0);--background0:hsla(180, 20%, 99%, 0.25);--background025:hsla(180, 20%, 99%, 0.5);--background05:hsla(180, 20%, 99%, 0.75);--background075:hsla(191, 32%, 99%, 1);--color0:hsla(112, 22%, 0%, 1);--color025:hsla(0, 0%, 0%, 0.75);--color05:hsla(0, 0%, 0%, 0.5);--color075:hsla(0, 0%, 0%, 0.25);--background:hsla(191, 32%, 99%, 1);--backgroundHover:hsla(191, 32%, 93%, 1);--backgroundPress:hsla(191, 32%, 88%, 1);--backgroundFocus:hsla(191, 32%, 83%, 1);--color:hsla(96, 16%, 25%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(96, 16%, 25%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} + } +:root.t_dark .t_light .t_accent_DialogOverlay, :root.t_dark .t_light .t_accent_ModalOverlay, :root.t_dark .t_light .t_accent_SheetOverlay, :root.t_dark .t_light .t_active_accent_DialogOverlay, :root.t_dark .t_light .t_active_accent_ModalOverlay, :root.t_dark .t_light .t_active_accent_SheetOverlay, :root.t_dark .t_light .t_active_DialogOverlay, :root.t_dark .t_light .t_active_ModalOverlay, :root.t_dark .t_light .t_active_SheetOverlay, :root.t_dark .t_light .t_alt1_accent_DialogOverlay, :root.t_dark .t_light .t_alt1_accent_ModalOverlay, :root.t_dark .t_light .t_alt1_accent_SheetOverlay, :root.t_dark .t_light .t_alt1_DialogOverlay, :root.t_dark .t_light .t_alt1_ModalOverlay, :root.t_dark .t_light .t_alt1_SheetOverlay, :root.t_dark .t_light .t_alt2_accent_DialogOverlay, :root.t_dark .t_light .t_alt2_accent_ModalOverlay, :root.t_dark .t_light .t_alt2_accent_SheetOverlay, :root.t_dark .t_light .t_alt2_DialogOverlay, :root.t_dark .t_light .t_alt2_ModalOverlay, :root.t_dark .t_light .t_alt2_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_active_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_active_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_active_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_active_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_active_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_active_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt1_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt1_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt1_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt2_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt2_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_alt2_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_dim_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_dim_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_dim_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_disabled_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_disabled_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_disabled_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_error_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_error_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_error_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_error_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_error_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_error_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_red_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_red_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_red_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_red_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_red_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_red_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_success_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_success_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_success_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_success_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_success_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_success_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_SheetOverlay, :root.t_dark .t_light .t_dark .t_light .t_warning_DialogOverlay, :root.t_dark .t_light .t_dark .t_light .t_warning_ModalOverlay, :root.t_dark .t_light .t_dark .t_light .t_warning_SheetOverlay, :root.t_dark .t_light .t_DialogOverlay, :root.t_dark .t_light .t_dim_accent_DialogOverlay, :root.t_dark .t_light .t_dim_accent_ModalOverlay, :root.t_dark .t_light .t_dim_accent_SheetOverlay, :root.t_dark .t_light .t_dim_DialogOverlay, :root.t_dark .t_light .t_dim_ModalOverlay, :root.t_dark .t_light .t_dim_SheetOverlay, :root.t_dark .t_light .t_disabled_accent_DialogOverlay, :root.t_dark .t_light .t_disabled_accent_ModalOverlay, :root.t_dark .t_light .t_disabled_accent_SheetOverlay, :root.t_dark .t_light .t_disabled_DialogOverlay, :root.t_dark .t_light .t_disabled_ModalOverlay, :root.t_dark .t_light .t_disabled_SheetOverlay, :root.t_dark .t_light .t_error_accent_DialogOverlay, :root.t_dark .t_light .t_error_accent_ModalOverlay, :root.t_dark .t_light .t_error_accent_SheetOverlay, :root.t_dark .t_light .t_error_DialogOverlay, :root.t_dark .t_light .t_error_ModalOverlay, :root.t_dark .t_light .t_error_SheetOverlay, :root.t_dark .t_light .t_ModalOverlay, :root.t_dark .t_light .t_red_accent_DialogOverlay, :root.t_dark .t_light .t_red_accent_ModalOverlay, :root.t_dark .t_light .t_red_accent_SheetOverlay, :root.t_dark .t_light .t_red_DialogOverlay, :root.t_dark .t_light .t_red_ModalOverlay, :root.t_dark .t_light .t_red_SheetOverlay, :root.t_dark .t_light .t_SheetOverlay, :root.t_dark .t_light .t_success_accent_DialogOverlay, :root.t_dark .t_light .t_success_accent_ModalOverlay, :root.t_dark .t_light .t_success_accent_SheetOverlay, :root.t_dark .t_light .t_success_DialogOverlay, :root.t_dark .t_light .t_success_ModalOverlay, :root.t_dark .t_light .t_success_SheetOverlay, :root.t_dark .t_light .t_warning_accent_DialogOverlay, :root.t_dark .t_light .t_warning_accent_ModalOverlay, :root.t_dark .t_light .t_warning_accent_SheetOverlay, :root.t_dark .t_light .t_warning_DialogOverlay, :root.t_dark .t_light .t_warning_ModalOverlay, :root.t_dark .t_light .t_warning_SheetOverlay, :root.t_light .t_accent_DialogOverlay, :root.t_light .t_accent_ModalOverlay, :root.t_light .t_accent_SheetOverlay, :root.t_light .t_active_accent_DialogOverlay, :root.t_light .t_active_accent_ModalOverlay, :root.t_light .t_active_accent_SheetOverlay, :root.t_light .t_active_DialogOverlay, :root.t_light .t_active_ModalOverlay, :root.t_light .t_active_SheetOverlay, :root.t_light .t_alt1_accent_DialogOverlay, :root.t_light .t_alt1_accent_ModalOverlay, :root.t_light .t_alt1_accent_SheetOverlay, :root.t_light .t_alt1_DialogOverlay, :root.t_light .t_alt1_ModalOverlay, :root.t_light .t_alt1_SheetOverlay, :root.t_light .t_alt2_accent_DialogOverlay, :root.t_light .t_alt2_accent_ModalOverlay, :root.t_light .t_alt2_accent_SheetOverlay, :root.t_light .t_alt2_DialogOverlay, :root.t_light .t_alt2_ModalOverlay, :root.t_light .t_alt2_SheetOverlay, :root.t_light .t_dark .t_light .t_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_active_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_active_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_active_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_active_DialogOverlay, :root.t_light .t_dark .t_light .t_active_ModalOverlay, :root.t_light .t_dark .t_light .t_active_SheetOverlay, :root.t_light .t_dark .t_light .t_alt1_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_alt1_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_alt1_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_alt1_DialogOverlay, :root.t_light .t_dark .t_light .t_alt1_ModalOverlay, :root.t_light .t_dark .t_light .t_alt1_SheetOverlay, :root.t_light .t_dark .t_light .t_alt2_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_alt2_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_alt2_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_alt2_DialogOverlay, :root.t_light .t_dark .t_light .t_alt2_ModalOverlay, :root.t_light .t_dark .t_light .t_alt2_SheetOverlay, :root.t_light .t_dark .t_light .t_DialogOverlay, :root.t_light .t_dark .t_light .t_dim_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_dim_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_dim_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_dim_DialogOverlay, :root.t_light .t_dark .t_light .t_dim_ModalOverlay, :root.t_light .t_dark .t_light .t_dim_SheetOverlay, :root.t_light .t_dark .t_light .t_disabled_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_disabled_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_disabled_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_disabled_DialogOverlay, :root.t_light .t_dark .t_light .t_disabled_ModalOverlay, :root.t_light .t_dark .t_light .t_disabled_SheetOverlay, :root.t_light .t_dark .t_light .t_error_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_error_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_error_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_error_DialogOverlay, :root.t_light .t_dark .t_light .t_error_ModalOverlay, :root.t_light .t_dark .t_light .t_error_SheetOverlay, :root.t_light .t_dark .t_light .t_ModalOverlay, :root.t_light .t_dark .t_light .t_red_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_red_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_red_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_red_DialogOverlay, :root.t_light .t_dark .t_light .t_red_ModalOverlay, :root.t_light .t_dark .t_light .t_red_SheetOverlay, :root.t_light .t_dark .t_light .t_SheetOverlay, :root.t_light .t_dark .t_light .t_success_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_success_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_success_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_success_DialogOverlay, :root.t_light .t_dark .t_light .t_success_ModalOverlay, :root.t_light .t_dark .t_light .t_success_SheetOverlay, :root.t_light .t_dark .t_light .t_warning_accent_DialogOverlay, :root.t_light .t_dark .t_light .t_warning_accent_ModalOverlay, :root.t_light .t_dark .t_light .t_warning_accent_SheetOverlay, :root.t_light .t_dark .t_light .t_warning_DialogOverlay, :root.t_light .t_dark .t_light .t_warning_ModalOverlay, :root.t_light .t_dark .t_light .t_warning_SheetOverlay, :root.t_light .t_DialogOverlay, :root.t_light .t_dim_accent_DialogOverlay, :root.t_light .t_dim_accent_ModalOverlay, :root.t_light .t_dim_accent_SheetOverlay, :root.t_light .t_dim_DialogOverlay, :root.t_light .t_dim_ModalOverlay, :root.t_light .t_dim_SheetOverlay, :root.t_light .t_disabled_accent_DialogOverlay, :root.t_light .t_disabled_accent_ModalOverlay, :root.t_light .t_disabled_accent_SheetOverlay, :root.t_light .t_disabled_DialogOverlay, :root.t_light .t_disabled_ModalOverlay, :root.t_light .t_disabled_SheetOverlay, :root.t_light .t_error_accent_DialogOverlay, :root.t_light .t_error_accent_ModalOverlay, :root.t_light .t_error_accent_SheetOverlay, :root.t_light .t_error_DialogOverlay, :root.t_light .t_error_ModalOverlay, :root.t_light .t_error_SheetOverlay, :root.t_light .t_ModalOverlay, :root.t_light .t_red_accent_DialogOverlay, :root.t_light .t_red_accent_ModalOverlay, :root.t_light .t_red_accent_SheetOverlay, :root.t_light .t_red_DialogOverlay, :root.t_light .t_red_ModalOverlay, :root.t_light .t_red_SheetOverlay, :root.t_light .t_SheetOverlay, :root.t_light .t_success_accent_DialogOverlay, :root.t_light .t_success_accent_ModalOverlay, :root.t_light .t_success_accent_SheetOverlay, :root.t_light .t_success_DialogOverlay, :root.t_light .t_success_ModalOverlay, :root.t_light .t_success_SheetOverlay, :root.t_light .t_warning_accent_DialogOverlay, :root.t_light .t_warning_accent_ModalOverlay, :root.t_light .t_warning_accent_SheetOverlay, :root.t_light .t_warning_DialogOverlay, :root.t_light .t_warning_ModalOverlay, :root.t_light .t_warning_SheetOverlay {--background:rgba(0,0,0,0.5);} +@media(prefers-color-scheme:light){ + body{background:var(--background);} + .t_accent_DialogOverlay, .t_accent_ModalOverlay, .t_accent_SheetOverlay, .t_active_accent_DialogOverlay, .t_active_accent_ModalOverlay, .t_active_accent_SheetOverlay, .t_active_DialogOverlay, .t_active_ModalOverlay, .t_active_SheetOverlay, .t_alt1_accent_DialogOverlay, .t_alt1_accent_ModalOverlay, .t_alt1_accent_SheetOverlay, .t_alt1_DialogOverlay, .t_alt1_ModalOverlay, .t_alt1_SheetOverlay, .t_alt2_accent_DialogOverlay, .t_alt2_accent_ModalOverlay, .t_alt2_accent_SheetOverlay, .t_alt2_DialogOverlay, .t_alt2_ModalOverlay, .t_alt2_SheetOverlay, .t_dark .t_light .t_accent_DialogOverlay, .t_dark .t_light .t_accent_ModalOverlay, .t_dark .t_light .t_accent_SheetOverlay, .t_dark .t_light .t_active_accent_DialogOverlay, .t_dark .t_light .t_active_accent_ModalOverlay, .t_dark .t_light .t_active_accent_SheetOverlay, .t_dark .t_light .t_active_DialogOverlay, .t_dark .t_light .t_active_ModalOverlay, .t_dark .t_light .t_active_SheetOverlay, .t_dark .t_light .t_alt1_accent_DialogOverlay, .t_dark .t_light .t_alt1_accent_ModalOverlay, .t_dark .t_light .t_alt1_accent_SheetOverlay, .t_dark .t_light .t_alt1_DialogOverlay, .t_dark .t_light .t_alt1_ModalOverlay, .t_dark .t_light .t_alt1_SheetOverlay, .t_dark .t_light .t_alt2_accent_DialogOverlay, .t_dark .t_light .t_alt2_accent_ModalOverlay, .t_dark .t_light .t_alt2_accent_SheetOverlay, .t_dark .t_light .t_alt2_DialogOverlay, .t_dark .t_light .t_alt2_ModalOverlay, .t_dark .t_light .t_alt2_SheetOverlay, .t_dark .t_light .t_DialogOverlay, .t_dark .t_light .t_dim_accent_DialogOverlay, .t_dark .t_light .t_dim_accent_ModalOverlay, .t_dark .t_light .t_dim_accent_SheetOverlay, .t_dark .t_light .t_dim_DialogOverlay, .t_dark .t_light .t_dim_ModalOverlay, .t_dark .t_light .t_dim_SheetOverlay, .t_dark .t_light .t_disabled_accent_DialogOverlay, .t_dark .t_light .t_disabled_accent_ModalOverlay, .t_dark .t_light .t_disabled_accent_SheetOverlay, .t_dark .t_light .t_disabled_DialogOverlay, .t_dark .t_light .t_disabled_ModalOverlay, .t_dark .t_light .t_disabled_SheetOverlay, .t_dark .t_light .t_error_accent_DialogOverlay, .t_dark .t_light .t_error_accent_ModalOverlay, .t_dark .t_light .t_error_accent_SheetOverlay, .t_dark .t_light .t_error_DialogOverlay, .t_dark .t_light .t_error_ModalOverlay, .t_dark .t_light .t_error_SheetOverlay, .t_dark .t_light .t_ModalOverlay, .t_dark .t_light .t_red_accent_DialogOverlay, .t_dark .t_light .t_red_accent_ModalOverlay, .t_dark .t_light .t_red_accent_SheetOverlay, .t_dark .t_light .t_red_DialogOverlay, .t_dark .t_light .t_red_ModalOverlay, .t_dark .t_light .t_red_SheetOverlay, .t_dark .t_light .t_SheetOverlay, .t_dark .t_light .t_success_accent_DialogOverlay, .t_dark .t_light .t_success_accent_ModalOverlay, .t_dark .t_light .t_success_accent_SheetOverlay, .t_dark .t_light .t_success_DialogOverlay, .t_dark .t_light .t_success_ModalOverlay, .t_dark .t_light .t_success_SheetOverlay, .t_dark .t_light .t_warning_accent_DialogOverlay, .t_dark .t_light .t_warning_accent_ModalOverlay, .t_dark .t_light .t_warning_accent_SheetOverlay, .t_dark .t_light .t_warning_DialogOverlay, .t_dark .t_light .t_warning_ModalOverlay, .t_dark .t_light .t_warning_SheetOverlay, .t_DialogOverlay, .t_dim_accent_DialogOverlay, .t_dim_accent_ModalOverlay, .t_dim_accent_SheetOverlay, .t_dim_DialogOverlay, .t_dim_ModalOverlay, .t_dim_SheetOverlay, .t_disabled_accent_DialogOverlay, .t_disabled_accent_ModalOverlay, .t_disabled_accent_SheetOverlay, .t_disabled_DialogOverlay, .t_disabled_ModalOverlay, .t_disabled_SheetOverlay, .t_error_accent_DialogOverlay, .t_error_accent_ModalOverlay, .t_error_accent_SheetOverlay, .t_error_DialogOverlay, .t_error_ModalOverlay, .t_error_SheetOverlay, .t_ModalOverlay, .t_red_accent_DialogOverlay, .t_red_accent_ModalOverlay, .t_red_accent_SheetOverlay, .t_red_DialogOverlay, .t_red_ModalOverlay, .t_red_SheetOverlay, .t_SheetOverlay, .t_success_accent_DialogOverlay, .t_success_accent_ModalOverlay, .t_success_accent_SheetOverlay, .t_success_DialogOverlay, .t_success_ModalOverlay, .t_success_SheetOverlay, .t_warning_accent_DialogOverlay, .t_warning_accent_ModalOverlay, .t_warning_accent_SheetOverlay, .t_warning_DialogOverlay, .t_warning_ModalOverlay, .t_warning_SheetOverlay {--background:rgba(0,0,0,0.5);} + } +:root.t_dark .t_light .t_dark .t_light .t_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_Tooltip, :root.t_dark .t_light .t_ProgressIndicator, :root.t_dark .t_light .t_SliderThumb, :root.t_dark .t_light .t_SwitchThumb, :root.t_dark .t_light .t_Tooltip, :root.t_light .t_dark .t_light .t_ProgressIndicator, :root.t_light .t_dark .t_light .t_SliderThumb, :root.t_light .t_dark .t_light .t_SwitchThumb, :root.t_light .t_dark .t_light .t_Tooltip, :root.t_light .t_ProgressIndicator, :root.t_light .t_SliderThumb, :root.t_light .t_SwitchThumb, :root.t_light .t_Tooltip {--accentBackground:hsla(180, 20%, 99%, 0);--accentColor:hsla(180, 20%, 99%, 0);--background0:hsla(0, 0%, 0%, 0.25);--background025:hsla(0, 0%, 0%, 0.5);--background05:hsla(0, 0%, 0%, 0.75);--background075:hsla(112, 22%, 0%, 1);--color0:hsla(191, 32%, 99%, 1);--color025:hsla(180, 20%, 99%, 0.75);--color05:hsla(180, 20%, 99%, 0.5);--color075:hsla(180, 20%, 99%, 0.25);--background:hsla(112, 22%, 0%, 1);--backgroundHover:hsla(96, 16%, 25%, 1);--backgroundPress:hsla(191, 32%, 50%, 1);--backgroundFocus:hsla(191, 32%, 55%, 1);--color:hsla(191, 32%, 93%, 1);--colorHover:hsla(191, 32%, 88%, 1);--colorPress:hsla(191, 32%, 93%, 1);--colorFocus:hsla(191, 32%, 88%, 1);--placeholderColor:hsla(191, 32%, 88%, 1);--borderColor:hsla(191, 32%, 55%, 1);--borderColorHover:hsla(191, 32%, 61%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 61%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_ProgressIndicator, .t_dark .t_light .t_SliderThumb, .t_dark .t_light .t_SwitchThumb, .t_dark .t_light .t_Tooltip, .t_ProgressIndicator, .t_SliderThumb, .t_SwitchThumb, .t_Tooltip {--accentBackground:hsla(180, 20%, 99%, 0);--accentColor:hsla(180, 20%, 99%, 0);--background0:hsla(0, 0%, 0%, 0.25);--background025:hsla(0, 0%, 0%, 0.5);--background05:hsla(0, 0%, 0%, 0.75);--background075:hsla(112, 22%, 0%, 1);--color0:hsla(191, 32%, 99%, 1);--color025:hsla(180, 20%, 99%, 0.75);--color05:hsla(180, 20%, 99%, 0.5);--color075:hsla(180, 20%, 99%, 0.25);--background:hsla(112, 22%, 0%, 1);--backgroundHover:hsla(96, 16%, 25%, 1);--backgroundPress:hsla(191, 32%, 50%, 1);--backgroundFocus:hsla(191, 32%, 55%, 1);--color:hsla(191, 32%, 93%, 1);--colorHover:hsla(191, 32%, 88%, 1);--colorPress:hsla(191, 32%, 93%, 1);--colorFocus:hsla(191, 32%, 88%, 1);--placeholderColor:hsla(191, 32%, 88%, 1);--borderColor:hsla(191, 32%, 55%, 1);--borderColorHover:hsla(191, 32%, 61%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 61%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_SliderTrackActive, :root.t_dark .t_light .t_SliderTrackActive, :root.t_light .t_dark .t_light .t_SliderTrackActive, :root.t_light .t_SliderTrackActive {--accentBackground:hsla(180, 20%, 99%, 0);--accentColor:hsla(180, 20%, 99%, 0);--background0:hsla(0, 0%, 0%, 0.75);--background025:hsla(112, 22%, 0%, 1);--background05:hsla(96, 16%, 25%, 1);--background075:hsla(191, 32%, 50%, 1);--color0:hsla(191, 32%, 88%, 1);--color025:hsla(191, 32%, 93%, 1);--color05:hsla(191, 32%, 99%, 1);--color075:hsla(180, 20%, 99%, 0.75);--background:hsla(191, 32%, 50%, 1);--backgroundHover:hsla(191, 32%, 55%, 1);--backgroundPress:hsla(191, 32%, 61%, 1);--backgroundFocus:hsla(191, 32%, 66%, 1);--color:hsla(191, 32%, 93%, 1);--colorHover:hsla(191, 32%, 88%, 1);--colorPress:hsla(191, 32%, 93%, 1);--colorFocus:hsla(191, 32%, 88%, 1);--placeholderColor:hsla(191, 32%, 77%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 77%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_SliderTrackActive, .t_SliderTrackActive {--accentBackground:hsla(180, 20%, 99%, 0);--accentColor:hsla(180, 20%, 99%, 0);--background0:hsla(0, 0%, 0%, 0.75);--background025:hsla(112, 22%, 0%, 1);--background05:hsla(96, 16%, 25%, 1);--background075:hsla(191, 32%, 50%, 1);--color0:hsla(191, 32%, 88%, 1);--color025:hsla(191, 32%, 93%, 1);--color05:hsla(191, 32%, 99%, 1);--color075:hsla(180, 20%, 99%, 0.75);--background:hsla(191, 32%, 50%, 1);--backgroundHover:hsla(191, 32%, 55%, 1);--backgroundPress:hsla(191, 32%, 61%, 1);--backgroundFocus:hsla(191, 32%, 66%, 1);--color:hsla(191, 32%, 93%, 1);--colorHover:hsla(191, 32%, 88%, 1);--colorPress:hsla(191, 32%, 93%, 1);--colorFocus:hsla(191, 32%, 88%, 1);--placeholderColor:hsla(191, 32%, 77%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 77%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} + } +:root.t_dark .t_light .t_accent, :root.t_dark .t_light .t_active_accent, :root.t_dark .t_light .t_alt1_accent, :root.t_dark .t_light .t_alt2_accent, :root.t_dark .t_light .t_dark .t_light .t_accent, :root.t_dark .t_light .t_dark .t_light .t_active_accent, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent, :root.t_dark .t_light .t_dark .t_light .t_dim_accent, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent, :root.t_dark .t_light .t_dark .t_light .t_error_accent, :root.t_dark .t_light .t_dark .t_light .t_red_accent, :root.t_dark .t_light .t_dark .t_light .t_success_accent, :root.t_dark .t_light .t_dark .t_light .t_warning_accent, :root.t_dark .t_light .t_dim_accent, :root.t_dark .t_light .t_disabled_accent, :root.t_dark .t_light .t_error_accent, :root.t_dark .t_light .t_red_accent, :root.t_dark .t_light .t_success_accent, :root.t_dark .t_light .t_warning_accent, :root.t_light .t_accent, :root.t_light .t_active_accent, :root.t_light .t_alt1_accent, :root.t_light .t_alt2_accent, :root.t_light .t_dark .t_light .t_accent, :root.t_light .t_dark .t_light .t_active_accent, :root.t_light .t_dark .t_light .t_alt1_accent, :root.t_light .t_dark .t_light .t_alt2_accent, :root.t_light .t_dark .t_light .t_dim_accent, :root.t_light .t_dark .t_light .t_disabled_accent, :root.t_light .t_dark .t_light .t_error_accent, :root.t_light .t_dark .t_light .t_red_accent, :root.t_light .t_dark .t_light .t_success_accent, :root.t_light .t_dark .t_light .t_warning_accent, :root.t_light .t_dim_accent, :root.t_light .t_disabled_accent, :root.t_light .t_error_accent, :root.t_light .t_red_accent, :root.t_light .t_success_accent, :root.t_light .t_warning_accent {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-231);--backgroundHover:var(--color-232);--backgroundPress:var(--color-233);--backgroundFocus:var(--color-234);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-234);--borderColorHover:var(--color-235);--borderColorFocus:var(--color-236);--borderColorPress:var(--color-235);--color1:var(--color-231);--color2:var(--color-232);--color3:var(--color-233);--color4:var(--color-234);--color5:var(--color-235);--color6:var(--color-236);--color7:var(--color-237);--color8:var(--color-238);--color9:var(--color-239);--color10:var(--color-240);--color11:hsla(191, 32%, 10%, 1);--color12:hsla(191, 32%, 10%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_accent, .t_active_accent, .t_alt1_accent, .t_alt2_accent, .t_dark .t_light .t_accent, .t_dark .t_light .t_active_accent, .t_dark .t_light .t_alt1_accent, .t_dark .t_light .t_alt2_accent, .t_dark .t_light .t_dim_accent, .t_dark .t_light .t_disabled_accent, .t_dark .t_light .t_error_accent, .t_dark .t_light .t_red_accent, .t_dark .t_light .t_success_accent, .t_dark .t_light .t_warning_accent, .t_dim_accent, .t_disabled_accent, .t_error_accent, .t_red_accent, .t_success_accent, .t_warning_accent {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-231);--backgroundHover:var(--color-232);--backgroundPress:var(--color-233);--backgroundFocus:var(--color-234);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-234);--borderColorHover:var(--color-235);--borderColorFocus:var(--color-236);--borderColorPress:var(--color-235);--color1:var(--color-231);--color2:var(--color-232);--color3:var(--color-233);--color4:var(--color-234);--color5:var(--color-235);--color6:var(--color-236);--color7:var(--color-237);--color8:var(--color-238);--color9:var(--color-239);--color10:var(--color-240);--color11:hsla(191, 32%, 10%, 1);--color12:hsla(191, 32%, 10%, 1);} + } +:root.t_dark .t_light .t_accent_Button, :root.t_dark .t_light .t_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_accent_Switch, :root.t_light .t_accent_Button, :root.t_light .t_accent_Switch, :root.t_light .t_dark .t_light .t_accent_Button, :root.t_light .t_dark .t_light .t_accent_Switch {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-234);--backgroundHover:var(--color-235);--backgroundPress:var(--color-236);--backgroundFocus:var(--color-237);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-237);--borderColorHover:var(--color-238);--borderColorFocus:var(--color-239);--borderColorPress:var(--color-238);--color1:var(--color-231);--color2:var(--color-232);--color3:var(--color-233);--color4:var(--color-234);--color5:var(--color-235);--color6:var(--color-236);--color7:var(--color-237);--color8:var(--color-238);--color9:var(--color-239);--color10:var(--color-240);--color11:hsla(191, 32%, 10%, 1);--color12:hsla(191, 32%, 10%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_accent_Button, .t_accent_Switch, .t_dark .t_light .t_accent_Button, .t_dark .t_light .t_accent_Switch {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-234);--backgroundHover:var(--color-235);--backgroundPress:var(--color-236);--backgroundFocus:var(--color-237);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-237);--borderColorHover:var(--color-238);--borderColorFocus:var(--color-239);--borderColorPress:var(--color-238);--color1:var(--color-231);--color2:var(--color-232);--color3:var(--color-233);--color4:var(--color-234);--color5:var(--color-235);--color6:var(--color-236);--color7:var(--color-237);--color8:var(--color-238);--color9:var(--color-239);--color10:var(--color-240);--color11:hsla(191, 32%, 10%, 1);--color12:hsla(191, 32%, 10%, 1);} + } +:root.t_dark .t_light .t_accent_Card, :root.t_dark .t_light .t_accent_DrawerFrame, :root.t_dark .t_light .t_accent_Progress, :root.t_dark .t_light .t_accent_TooltipArrow, :root.t_dark .t_light .t_active_accent_Card, :root.t_dark .t_light .t_active_accent_DrawerFrame, :root.t_dark .t_light .t_active_accent_Progress, :root.t_dark .t_light .t_active_accent_TooltipArrow, :root.t_dark .t_light .t_alt1_accent_Card, :root.t_dark .t_light .t_alt1_accent_DrawerFrame, :root.t_dark .t_light .t_alt1_accent_Progress, :root.t_dark .t_light .t_alt1_accent_TooltipArrow, :root.t_dark .t_light .t_alt2_accent_Card, :root.t_dark .t_light .t_alt2_accent_DrawerFrame, :root.t_dark .t_light .t_alt2_accent_Progress, :root.t_dark .t_light .t_alt2_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_active_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_active_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_active_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_active_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_error_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_error_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_error_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_error_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_red_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_red_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_red_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_red_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_success_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_success_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_success_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_success_accent_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_Card, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_Progress, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_TooltipArrow, :root.t_dark .t_light .t_dim_accent_Card, :root.t_dark .t_light .t_dim_accent_DrawerFrame, :root.t_dark .t_light .t_dim_accent_Progress, :root.t_dark .t_light .t_dim_accent_TooltipArrow, :root.t_dark .t_light .t_disabled_accent_Card, :root.t_dark .t_light .t_disabled_accent_DrawerFrame, :root.t_dark .t_light .t_disabled_accent_Progress, :root.t_dark .t_light .t_disabled_accent_TooltipArrow, :root.t_dark .t_light .t_error_accent_Card, :root.t_dark .t_light .t_error_accent_DrawerFrame, :root.t_dark .t_light .t_error_accent_Progress, :root.t_dark .t_light .t_error_accent_TooltipArrow, :root.t_dark .t_light .t_red_accent_Card, :root.t_dark .t_light .t_red_accent_DrawerFrame, :root.t_dark .t_light .t_red_accent_Progress, :root.t_dark .t_light .t_red_accent_TooltipArrow, :root.t_dark .t_light .t_success_accent_Card, :root.t_dark .t_light .t_success_accent_DrawerFrame, :root.t_dark .t_light .t_success_accent_Progress, :root.t_dark .t_light .t_success_accent_TooltipArrow, :root.t_dark .t_light .t_warning_accent_Card, :root.t_dark .t_light .t_warning_accent_DrawerFrame, :root.t_dark .t_light .t_warning_accent_Progress, :root.t_dark .t_light .t_warning_accent_TooltipArrow, :root.t_light .t_accent_Card, :root.t_light .t_accent_DrawerFrame, :root.t_light .t_accent_Progress, :root.t_light .t_accent_TooltipArrow, :root.t_light .t_active_accent_Card, :root.t_light .t_active_accent_DrawerFrame, :root.t_light .t_active_accent_Progress, :root.t_light .t_active_accent_TooltipArrow, :root.t_light .t_alt1_accent_Card, :root.t_light .t_alt1_accent_DrawerFrame, :root.t_light .t_alt1_accent_Progress, :root.t_light .t_alt1_accent_TooltipArrow, :root.t_light .t_alt2_accent_Card, :root.t_light .t_alt2_accent_DrawerFrame, :root.t_light .t_alt2_accent_Progress, :root.t_light .t_alt2_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_accent_Card, :root.t_light .t_dark .t_light .t_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_accent_Progress, :root.t_light .t_dark .t_light .t_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_active_accent_Card, :root.t_light .t_dark .t_light .t_active_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_active_accent_Progress, :root.t_light .t_dark .t_light .t_active_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_alt1_accent_Card, :root.t_light .t_dark .t_light .t_alt1_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_alt1_accent_Progress, :root.t_light .t_dark .t_light .t_alt1_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_alt2_accent_Card, :root.t_light .t_dark .t_light .t_alt2_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_alt2_accent_Progress, :root.t_light .t_dark .t_light .t_alt2_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_dim_accent_Card, :root.t_light .t_dark .t_light .t_dim_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_dim_accent_Progress, :root.t_light .t_dark .t_light .t_dim_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_disabled_accent_Card, :root.t_light .t_dark .t_light .t_disabled_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_disabled_accent_Progress, :root.t_light .t_dark .t_light .t_disabled_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_error_accent_Card, :root.t_light .t_dark .t_light .t_error_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_error_accent_Progress, :root.t_light .t_dark .t_light .t_error_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_red_accent_Card, :root.t_light .t_dark .t_light .t_red_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_red_accent_Progress, :root.t_light .t_dark .t_light .t_red_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_success_accent_Card, :root.t_light .t_dark .t_light .t_success_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_success_accent_Progress, :root.t_light .t_dark .t_light .t_success_accent_TooltipArrow, :root.t_light .t_dark .t_light .t_warning_accent_Card, :root.t_light .t_dark .t_light .t_warning_accent_DrawerFrame, :root.t_light .t_dark .t_light .t_warning_accent_Progress, :root.t_light .t_dark .t_light .t_warning_accent_TooltipArrow, :root.t_light .t_dim_accent_Card, :root.t_light .t_dim_accent_DrawerFrame, :root.t_light .t_dim_accent_Progress, :root.t_light .t_dim_accent_TooltipArrow, :root.t_light .t_disabled_accent_Card, :root.t_light .t_disabled_accent_DrawerFrame, :root.t_light .t_disabled_accent_Progress, :root.t_light .t_disabled_accent_TooltipArrow, :root.t_light .t_error_accent_Card, :root.t_light .t_error_accent_DrawerFrame, :root.t_light .t_error_accent_Progress, :root.t_light .t_error_accent_TooltipArrow, :root.t_light .t_red_accent_Card, :root.t_light .t_red_accent_DrawerFrame, :root.t_light .t_red_accent_Progress, :root.t_light .t_red_accent_TooltipArrow, :root.t_light .t_success_accent_Card, :root.t_light .t_success_accent_DrawerFrame, :root.t_light .t_success_accent_Progress, :root.t_light .t_success_accent_TooltipArrow, :root.t_light .t_warning_accent_Card, :root.t_light .t_warning_accent_DrawerFrame, :root.t_light .t_warning_accent_Progress, :root.t_light .t_warning_accent_TooltipArrow {--background0:var(--color-229);--background025:var(--color-230);--background05:var(--color-231);--background075:var(--color-232);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 33%, 10%, 0.75);--color075:hsla(191, 33%, 10%, 0.5);--background:var(--color-232);--backgroundHover:var(--color-233);--backgroundPress:var(--color-234);--backgroundFocus:var(--color-235);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-239);--borderColor:var(--color-235);--borderColorHover:var(--color-236);--borderColorFocus:var(--color-237);--borderColorPress:var(--color-236);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_accent_Card, .t_accent_DrawerFrame, .t_accent_Progress, .t_accent_TooltipArrow, .t_active_accent_Card, .t_active_accent_DrawerFrame, .t_active_accent_Progress, .t_active_accent_TooltipArrow, .t_alt1_accent_Card, .t_alt1_accent_DrawerFrame, .t_alt1_accent_Progress, .t_alt1_accent_TooltipArrow, .t_alt2_accent_Card, .t_alt2_accent_DrawerFrame, .t_alt2_accent_Progress, .t_alt2_accent_TooltipArrow, .t_dark .t_light .t_accent_Card, .t_dark .t_light .t_accent_DrawerFrame, .t_dark .t_light .t_accent_Progress, .t_dark .t_light .t_accent_TooltipArrow, .t_dark .t_light .t_active_accent_Card, .t_dark .t_light .t_active_accent_DrawerFrame, .t_dark .t_light .t_active_accent_Progress, .t_dark .t_light .t_active_accent_TooltipArrow, .t_dark .t_light .t_alt1_accent_Card, .t_dark .t_light .t_alt1_accent_DrawerFrame, .t_dark .t_light .t_alt1_accent_Progress, .t_dark .t_light .t_alt1_accent_TooltipArrow, .t_dark .t_light .t_alt2_accent_Card, .t_dark .t_light .t_alt2_accent_DrawerFrame, .t_dark .t_light .t_alt2_accent_Progress, .t_dark .t_light .t_alt2_accent_TooltipArrow, .t_dark .t_light .t_dim_accent_Card, .t_dark .t_light .t_dim_accent_DrawerFrame, .t_dark .t_light .t_dim_accent_Progress, .t_dark .t_light .t_dim_accent_TooltipArrow, .t_dark .t_light .t_disabled_accent_Card, .t_dark .t_light .t_disabled_accent_DrawerFrame, .t_dark .t_light .t_disabled_accent_Progress, .t_dark .t_light .t_disabled_accent_TooltipArrow, .t_dark .t_light .t_error_accent_Card, .t_dark .t_light .t_error_accent_DrawerFrame, .t_dark .t_light .t_error_accent_Progress, .t_dark .t_light .t_error_accent_TooltipArrow, .t_dark .t_light .t_red_accent_Card, .t_dark .t_light .t_red_accent_DrawerFrame, .t_dark .t_light .t_red_accent_Progress, .t_dark .t_light .t_red_accent_TooltipArrow, .t_dark .t_light .t_success_accent_Card, .t_dark .t_light .t_success_accent_DrawerFrame, .t_dark .t_light .t_success_accent_Progress, .t_dark .t_light .t_success_accent_TooltipArrow, .t_dark .t_light .t_warning_accent_Card, .t_dark .t_light .t_warning_accent_DrawerFrame, .t_dark .t_light .t_warning_accent_Progress, .t_dark .t_light .t_warning_accent_TooltipArrow, .t_dim_accent_Card, .t_dim_accent_DrawerFrame, .t_dim_accent_Progress, .t_dim_accent_TooltipArrow, .t_disabled_accent_Card, .t_disabled_accent_DrawerFrame, .t_disabled_accent_Progress, .t_disabled_accent_TooltipArrow, .t_error_accent_Card, .t_error_accent_DrawerFrame, .t_error_accent_Progress, .t_error_accent_TooltipArrow, .t_red_accent_Card, .t_red_accent_DrawerFrame, .t_red_accent_Progress, .t_red_accent_TooltipArrow, .t_success_accent_Card, .t_success_accent_DrawerFrame, .t_success_accent_Progress, .t_success_accent_TooltipArrow, .t_warning_accent_Card, .t_warning_accent_DrawerFrame, .t_warning_accent_Progress, .t_warning_accent_TooltipArrow {--background0:var(--color-229);--background025:var(--color-230);--background05:var(--color-231);--background075:var(--color-232);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 33%, 10%, 0.75);--color075:hsla(191, 33%, 10%, 0.5);--background:var(--color-232);--backgroundHover:var(--color-233);--backgroundPress:var(--color-234);--backgroundFocus:var(--color-235);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-239);--borderColor:var(--color-235);--borderColorHover:var(--color-236);--borderColorFocus:var(--color-237);--borderColorPress:var(--color-236);} + } +:root.t_dark .t_light .t_accent_Checkbox, :root.t_dark .t_light .t_accent_Input, :root.t_dark .t_light .t_accent_RadioGroupItem, :root.t_dark .t_light .t_accent_TextArea, :root.t_dark .t_light .t_active_accent_Checkbox, :root.t_dark .t_light .t_active_accent_Input, :root.t_dark .t_light .t_active_accent_RadioGroupItem, :root.t_dark .t_light .t_active_accent_TextArea, :root.t_dark .t_light .t_alt1_accent_Checkbox, :root.t_dark .t_light .t_alt1_accent_Input, :root.t_dark .t_light .t_alt1_accent_RadioGroupItem, :root.t_dark .t_light .t_alt1_accent_TextArea, :root.t_dark .t_light .t_alt2_accent_Checkbox, :root.t_dark .t_light .t_alt2_accent_Input, :root.t_dark .t_light .t_alt2_accent_RadioGroupItem, :root.t_dark .t_light .t_alt2_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_active_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_active_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_active_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_active_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_error_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_error_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_error_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_error_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_red_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_red_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_red_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_red_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_success_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_success_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_success_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_success_accent_TextArea, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_Input, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_TextArea, :root.t_dark .t_light .t_dim_accent_Checkbox, :root.t_dark .t_light .t_dim_accent_Input, :root.t_dark .t_light .t_dim_accent_RadioGroupItem, :root.t_dark .t_light .t_dim_accent_TextArea, :root.t_dark .t_light .t_disabled_accent_Checkbox, :root.t_dark .t_light .t_disabled_accent_Input, :root.t_dark .t_light .t_disabled_accent_RadioGroupItem, :root.t_dark .t_light .t_disabled_accent_TextArea, :root.t_dark .t_light .t_error_accent_Checkbox, :root.t_dark .t_light .t_error_accent_Input, :root.t_dark .t_light .t_error_accent_RadioGroupItem, :root.t_dark .t_light .t_error_accent_TextArea, :root.t_dark .t_light .t_red_accent_Checkbox, :root.t_dark .t_light .t_red_accent_Input, :root.t_dark .t_light .t_red_accent_RadioGroupItem, :root.t_dark .t_light .t_red_accent_TextArea, :root.t_dark .t_light .t_success_accent_Checkbox, :root.t_dark .t_light .t_success_accent_Input, :root.t_dark .t_light .t_success_accent_RadioGroupItem, :root.t_dark .t_light .t_success_accent_TextArea, :root.t_dark .t_light .t_warning_accent_Checkbox, :root.t_dark .t_light .t_warning_accent_Input, :root.t_dark .t_light .t_warning_accent_RadioGroupItem, :root.t_dark .t_light .t_warning_accent_TextArea, :root.t_light .t_accent_Checkbox, :root.t_light .t_accent_Input, :root.t_light .t_accent_RadioGroupItem, :root.t_light .t_accent_TextArea, :root.t_light .t_active_accent_Checkbox, :root.t_light .t_active_accent_Input, :root.t_light .t_active_accent_RadioGroupItem, :root.t_light .t_active_accent_TextArea, :root.t_light .t_alt1_accent_Checkbox, :root.t_light .t_alt1_accent_Input, :root.t_light .t_alt1_accent_RadioGroupItem, :root.t_light .t_alt1_accent_TextArea, :root.t_light .t_alt2_accent_Checkbox, :root.t_light .t_alt2_accent_Input, :root.t_light .t_alt2_accent_RadioGroupItem, :root.t_light .t_alt2_accent_TextArea, :root.t_light .t_dark .t_light .t_accent_Checkbox, :root.t_light .t_dark .t_light .t_accent_Input, :root.t_light .t_dark .t_light .t_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_accent_TextArea, :root.t_light .t_dark .t_light .t_active_accent_Checkbox, :root.t_light .t_dark .t_light .t_active_accent_Input, :root.t_light .t_dark .t_light .t_active_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_active_accent_TextArea, :root.t_light .t_dark .t_light .t_alt1_accent_Checkbox, :root.t_light .t_dark .t_light .t_alt1_accent_Input, :root.t_light .t_dark .t_light .t_alt1_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_alt1_accent_TextArea, :root.t_light .t_dark .t_light .t_alt2_accent_Checkbox, :root.t_light .t_dark .t_light .t_alt2_accent_Input, :root.t_light .t_dark .t_light .t_alt2_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_alt2_accent_TextArea, :root.t_light .t_dark .t_light .t_dim_accent_Checkbox, :root.t_light .t_dark .t_light .t_dim_accent_Input, :root.t_light .t_dark .t_light .t_dim_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_dim_accent_TextArea, :root.t_light .t_dark .t_light .t_disabled_accent_Checkbox, :root.t_light .t_dark .t_light .t_disabled_accent_Input, :root.t_light .t_dark .t_light .t_disabled_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_disabled_accent_TextArea, :root.t_light .t_dark .t_light .t_error_accent_Checkbox, :root.t_light .t_dark .t_light .t_error_accent_Input, :root.t_light .t_dark .t_light .t_error_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_error_accent_TextArea, :root.t_light .t_dark .t_light .t_red_accent_Checkbox, :root.t_light .t_dark .t_light .t_red_accent_Input, :root.t_light .t_dark .t_light .t_red_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_red_accent_TextArea, :root.t_light .t_dark .t_light .t_success_accent_Checkbox, :root.t_light .t_dark .t_light .t_success_accent_Input, :root.t_light .t_dark .t_light .t_success_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_success_accent_TextArea, :root.t_light .t_dark .t_light .t_warning_accent_Checkbox, :root.t_light .t_dark .t_light .t_warning_accent_Input, :root.t_light .t_dark .t_light .t_warning_accent_RadioGroupItem, :root.t_light .t_dark .t_light .t_warning_accent_TextArea, :root.t_light .t_dim_accent_Checkbox, :root.t_light .t_dim_accent_Input, :root.t_light .t_dim_accent_RadioGroupItem, :root.t_light .t_dim_accent_TextArea, :root.t_light .t_disabled_accent_Checkbox, :root.t_light .t_disabled_accent_Input, :root.t_light .t_disabled_accent_RadioGroupItem, :root.t_light .t_disabled_accent_TextArea, :root.t_light .t_error_accent_Checkbox, :root.t_light .t_error_accent_Input, :root.t_light .t_error_accent_RadioGroupItem, :root.t_light .t_error_accent_TextArea, :root.t_light .t_red_accent_Checkbox, :root.t_light .t_red_accent_Input, :root.t_light .t_red_accent_RadioGroupItem, :root.t_light .t_red_accent_TextArea, :root.t_light .t_success_accent_Checkbox, :root.t_light .t_success_accent_Input, :root.t_light .t_success_accent_RadioGroupItem, :root.t_light .t_success_accent_TextArea, :root.t_light .t_warning_accent_Checkbox, :root.t_light .t_warning_accent_Input, :root.t_light .t_warning_accent_RadioGroupItem, :root.t_light .t_warning_accent_TextArea {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-231);--backgroundHover:var(--color-232);--backgroundPress:var(--color-233);--backgroundFocus:var(--color-234);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-236);--borderColorHover:var(--color-237);--borderColorFocus:var(--color-238);--borderColorPress:var(--color-237);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_accent_Checkbox, .t_accent_Input, .t_accent_RadioGroupItem, .t_accent_TextArea, .t_active_accent_Checkbox, .t_active_accent_Input, .t_active_accent_RadioGroupItem, .t_active_accent_TextArea, .t_alt1_accent_Checkbox, .t_alt1_accent_Input, .t_alt1_accent_RadioGroupItem, .t_alt1_accent_TextArea, .t_alt2_accent_Checkbox, .t_alt2_accent_Input, .t_alt2_accent_RadioGroupItem, .t_alt2_accent_TextArea, .t_dark .t_light .t_accent_Checkbox, .t_dark .t_light .t_accent_Input, .t_dark .t_light .t_accent_RadioGroupItem, .t_dark .t_light .t_accent_TextArea, .t_dark .t_light .t_active_accent_Checkbox, .t_dark .t_light .t_active_accent_Input, .t_dark .t_light .t_active_accent_RadioGroupItem, .t_dark .t_light .t_active_accent_TextArea, .t_dark .t_light .t_alt1_accent_Checkbox, .t_dark .t_light .t_alt1_accent_Input, .t_dark .t_light .t_alt1_accent_RadioGroupItem, .t_dark .t_light .t_alt1_accent_TextArea, .t_dark .t_light .t_alt2_accent_Checkbox, .t_dark .t_light .t_alt2_accent_Input, .t_dark .t_light .t_alt2_accent_RadioGroupItem, .t_dark .t_light .t_alt2_accent_TextArea, .t_dark .t_light .t_dim_accent_Checkbox, .t_dark .t_light .t_dim_accent_Input, .t_dark .t_light .t_dim_accent_RadioGroupItem, .t_dark .t_light .t_dim_accent_TextArea, .t_dark .t_light .t_disabled_accent_Checkbox, .t_dark .t_light .t_disabled_accent_Input, .t_dark .t_light .t_disabled_accent_RadioGroupItem, .t_dark .t_light .t_disabled_accent_TextArea, .t_dark .t_light .t_error_accent_Checkbox, .t_dark .t_light .t_error_accent_Input, .t_dark .t_light .t_error_accent_RadioGroupItem, .t_dark .t_light .t_error_accent_TextArea, .t_dark .t_light .t_red_accent_Checkbox, .t_dark .t_light .t_red_accent_Input, .t_dark .t_light .t_red_accent_RadioGroupItem, .t_dark .t_light .t_red_accent_TextArea, .t_dark .t_light .t_success_accent_Checkbox, .t_dark .t_light .t_success_accent_Input, .t_dark .t_light .t_success_accent_RadioGroupItem, .t_dark .t_light .t_success_accent_TextArea, .t_dark .t_light .t_warning_accent_Checkbox, .t_dark .t_light .t_warning_accent_Input, .t_dark .t_light .t_warning_accent_RadioGroupItem, .t_dark .t_light .t_warning_accent_TextArea, .t_dim_accent_Checkbox, .t_dim_accent_Input, .t_dim_accent_RadioGroupItem, .t_dim_accent_TextArea, .t_disabled_accent_Checkbox, .t_disabled_accent_Input, .t_disabled_accent_RadioGroupItem, .t_disabled_accent_TextArea, .t_error_accent_Checkbox, .t_error_accent_Input, .t_error_accent_RadioGroupItem, .t_error_accent_TextArea, .t_red_accent_Checkbox, .t_red_accent_Input, .t_red_accent_RadioGroupItem, .t_red_accent_TextArea, .t_success_accent_Checkbox, .t_success_accent_Input, .t_success_accent_RadioGroupItem, .t_success_accent_TextArea, .t_warning_accent_Checkbox, .t_warning_accent_Input, .t_warning_accent_RadioGroupItem, .t_warning_accent_TextArea {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(125, 96%, 40%, 0.25);--background025:var(--color-229);--background05:var(--color-230);--background075:var(--color-231);--color0:hsla(191, 32%, 10%, 1);--color025:hsla(191, 33%, 10%, 0.75);--color05:hsla(191, 33%, 10%, 0.5);--color075:hsla(191, 33%, 10%, 0.25);--background:var(--color-231);--backgroundHover:var(--color-232);--backgroundPress:var(--color-233);--backgroundFocus:var(--color-234);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-240);--borderColor:var(--color-236);--borderColorHover:var(--color-237);--borderColorFocus:var(--color-238);--borderColorPress:var(--color-237);} + } +:root.t_dark .t_light .t_accent_ProgressIndicator, :root.t_dark .t_light .t_accent_SliderThumb, :root.t_dark .t_light .t_accent_SwitchThumb, :root.t_dark .t_light .t_accent_Tooltip, :root.t_dark .t_light .t_active_accent_ProgressIndicator, :root.t_dark .t_light .t_active_accent_SliderThumb, :root.t_dark .t_light .t_active_accent_SwitchThumb, :root.t_dark .t_light .t_active_accent_Tooltip, :root.t_dark .t_light .t_alt1_accent_ProgressIndicator, :root.t_dark .t_light .t_alt1_accent_SliderThumb, :root.t_dark .t_light .t_alt1_accent_SwitchThumb, :root.t_dark .t_light .t_alt1_accent_Tooltip, :root.t_dark .t_light .t_alt2_accent_ProgressIndicator, :root.t_dark .t_light .t_alt2_accent_SliderThumb, :root.t_dark .t_light .t_alt2_accent_SwitchThumb, :root.t_dark .t_light .t_alt2_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_active_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_active_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_active_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_active_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_error_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_error_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_error_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_error_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_red_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_red_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_red_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_red_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_success_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_success_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_success_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_success_accent_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_Tooltip, :root.t_dark .t_light .t_dim_accent_ProgressIndicator, :root.t_dark .t_light .t_dim_accent_SliderThumb, :root.t_dark .t_light .t_dim_accent_SwitchThumb, :root.t_dark .t_light .t_dim_accent_Tooltip, :root.t_dark .t_light .t_disabled_accent_ProgressIndicator, :root.t_dark .t_light .t_disabled_accent_SliderThumb, :root.t_dark .t_light .t_disabled_accent_SwitchThumb, :root.t_dark .t_light .t_disabled_accent_Tooltip, :root.t_dark .t_light .t_error_accent_ProgressIndicator, :root.t_dark .t_light .t_error_accent_SliderThumb, :root.t_dark .t_light .t_error_accent_SwitchThumb, :root.t_dark .t_light .t_error_accent_Tooltip, :root.t_dark .t_light .t_red_accent_ProgressIndicator, :root.t_dark .t_light .t_red_accent_SliderThumb, :root.t_dark .t_light .t_red_accent_SwitchThumb, :root.t_dark .t_light .t_red_accent_Tooltip, :root.t_dark .t_light .t_success_accent_ProgressIndicator, :root.t_dark .t_light .t_success_accent_SliderThumb, :root.t_dark .t_light .t_success_accent_SwitchThumb, :root.t_dark .t_light .t_success_accent_Tooltip, :root.t_dark .t_light .t_warning_accent_ProgressIndicator, :root.t_dark .t_light .t_warning_accent_SliderThumb, :root.t_dark .t_light .t_warning_accent_SwitchThumb, :root.t_dark .t_light .t_warning_accent_Tooltip, :root.t_light .t_accent_ProgressIndicator, :root.t_light .t_accent_SliderThumb, :root.t_light .t_accent_SwitchThumb, :root.t_light .t_accent_Tooltip, :root.t_light .t_active_accent_ProgressIndicator, :root.t_light .t_active_accent_SliderThumb, :root.t_light .t_active_accent_SwitchThumb, :root.t_light .t_active_accent_Tooltip, :root.t_light .t_alt1_accent_ProgressIndicator, :root.t_light .t_alt1_accent_SliderThumb, :root.t_light .t_alt1_accent_SwitchThumb, :root.t_light .t_alt1_accent_Tooltip, :root.t_light .t_alt2_accent_ProgressIndicator, :root.t_light .t_alt2_accent_SliderThumb, :root.t_light .t_alt2_accent_SwitchThumb, :root.t_light .t_alt2_accent_Tooltip, :root.t_light .t_dark .t_light .t_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_accent_SliderThumb, :root.t_light .t_dark .t_light .t_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_accent_Tooltip, :root.t_light .t_dark .t_light .t_active_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_active_accent_SliderThumb, :root.t_light .t_dark .t_light .t_active_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_active_accent_Tooltip, :root.t_light .t_dark .t_light .t_alt1_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_alt1_accent_SliderThumb, :root.t_light .t_dark .t_light .t_alt1_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_alt1_accent_Tooltip, :root.t_light .t_dark .t_light .t_alt2_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_alt2_accent_SliderThumb, :root.t_light .t_dark .t_light .t_alt2_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_alt2_accent_Tooltip, :root.t_light .t_dark .t_light .t_dim_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_dim_accent_SliderThumb, :root.t_light .t_dark .t_light .t_dim_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_dim_accent_Tooltip, :root.t_light .t_dark .t_light .t_disabled_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_disabled_accent_SliderThumb, :root.t_light .t_dark .t_light .t_disabled_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_disabled_accent_Tooltip, :root.t_light .t_dark .t_light .t_error_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_error_accent_SliderThumb, :root.t_light .t_dark .t_light .t_error_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_error_accent_Tooltip, :root.t_light .t_dark .t_light .t_red_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_red_accent_SliderThumb, :root.t_light .t_dark .t_light .t_red_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_red_accent_Tooltip, :root.t_light .t_dark .t_light .t_success_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_success_accent_SliderThumb, :root.t_light .t_dark .t_light .t_success_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_success_accent_Tooltip, :root.t_light .t_dark .t_light .t_warning_accent_ProgressIndicator, :root.t_light .t_dark .t_light .t_warning_accent_SliderThumb, :root.t_light .t_dark .t_light .t_warning_accent_SwitchThumb, :root.t_light .t_dark .t_light .t_warning_accent_Tooltip, :root.t_light .t_dim_accent_ProgressIndicator, :root.t_light .t_dim_accent_SliderThumb, :root.t_light .t_dim_accent_SwitchThumb, :root.t_light .t_dim_accent_Tooltip, :root.t_light .t_disabled_accent_ProgressIndicator, :root.t_light .t_disabled_accent_SliderThumb, :root.t_light .t_disabled_accent_SwitchThumb, :root.t_light .t_disabled_accent_Tooltip, :root.t_light .t_error_accent_ProgressIndicator, :root.t_light .t_error_accent_SliderThumb, :root.t_light .t_error_accent_SwitchThumb, :root.t_light .t_error_accent_Tooltip, :root.t_light .t_red_accent_ProgressIndicator, :root.t_light .t_red_accent_SliderThumb, :root.t_light .t_red_accent_SwitchThumb, :root.t_light .t_red_accent_Tooltip, :root.t_light .t_success_accent_ProgressIndicator, :root.t_light .t_success_accent_SliderThumb, :root.t_light .t_success_accent_SwitchThumb, :root.t_light .t_success_accent_Tooltip, :root.t_light .t_warning_accent_ProgressIndicator, :root.t_light .t_warning_accent_SliderThumb, :root.t_light .t_warning_accent_SwitchThumb, :root.t_light .t_warning_accent_Tooltip {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:var(--color-231);--color025:var(--color-230);--color05:var(--color-229);--color075:hsla(125, 96%, 40%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 10%, 1);--backgroundPress:var(--color-240);--backgroundFocus:var(--color-239);--color:var(--color-232);--colorHover:var(--color-233);--colorPress:var(--color-232);--colorFocus:var(--color-233);--placeholderColor:var(--color-233);--borderColor:var(--color-239);--borderColorHover:var(--color-238);--borderColorFocus:var(--color-237);--borderColorPress:var(--color-238);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_accent_ProgressIndicator, .t_accent_SliderThumb, .t_accent_SwitchThumb, .t_accent_Tooltip, .t_active_accent_ProgressIndicator, .t_active_accent_SliderThumb, .t_active_accent_SwitchThumb, .t_active_accent_Tooltip, .t_alt1_accent_ProgressIndicator, .t_alt1_accent_SliderThumb, .t_alt1_accent_SwitchThumb, .t_alt1_accent_Tooltip, .t_alt2_accent_ProgressIndicator, .t_alt2_accent_SliderThumb, .t_alt2_accent_SwitchThumb, .t_alt2_accent_Tooltip, .t_dark .t_light .t_accent_ProgressIndicator, .t_dark .t_light .t_accent_SliderThumb, .t_dark .t_light .t_accent_SwitchThumb, .t_dark .t_light .t_accent_Tooltip, .t_dark .t_light .t_active_accent_ProgressIndicator, .t_dark .t_light .t_active_accent_SliderThumb, .t_dark .t_light .t_active_accent_SwitchThumb, .t_dark .t_light .t_active_accent_Tooltip, .t_dark .t_light .t_alt1_accent_ProgressIndicator, .t_dark .t_light .t_alt1_accent_SliderThumb, .t_dark .t_light .t_alt1_accent_SwitchThumb, .t_dark .t_light .t_alt1_accent_Tooltip, .t_dark .t_light .t_alt2_accent_ProgressIndicator, .t_dark .t_light .t_alt2_accent_SliderThumb, .t_dark .t_light .t_alt2_accent_SwitchThumb, .t_dark .t_light .t_alt2_accent_Tooltip, .t_dark .t_light .t_dim_accent_ProgressIndicator, .t_dark .t_light .t_dim_accent_SliderThumb, .t_dark .t_light .t_dim_accent_SwitchThumb, .t_dark .t_light .t_dim_accent_Tooltip, .t_dark .t_light .t_disabled_accent_ProgressIndicator, .t_dark .t_light .t_disabled_accent_SliderThumb, .t_dark .t_light .t_disabled_accent_SwitchThumb, .t_dark .t_light .t_disabled_accent_Tooltip, .t_dark .t_light .t_error_accent_ProgressIndicator, .t_dark .t_light .t_error_accent_SliderThumb, .t_dark .t_light .t_error_accent_SwitchThumb, .t_dark .t_light .t_error_accent_Tooltip, .t_dark .t_light .t_red_accent_ProgressIndicator, .t_dark .t_light .t_red_accent_SliderThumb, .t_dark .t_light .t_red_accent_SwitchThumb, .t_dark .t_light .t_red_accent_Tooltip, .t_dark .t_light .t_success_accent_ProgressIndicator, .t_dark .t_light .t_success_accent_SliderThumb, .t_dark .t_light .t_success_accent_SwitchThumb, .t_dark .t_light .t_success_accent_Tooltip, .t_dark .t_light .t_warning_accent_ProgressIndicator, .t_dark .t_light .t_warning_accent_SliderThumb, .t_dark .t_light .t_warning_accent_SwitchThumb, .t_dark .t_light .t_warning_accent_Tooltip, .t_dim_accent_ProgressIndicator, .t_dim_accent_SliderThumb, .t_dim_accent_SwitchThumb, .t_dim_accent_Tooltip, .t_disabled_accent_ProgressIndicator, .t_disabled_accent_SliderThumb, .t_disabled_accent_SwitchThumb, .t_disabled_accent_Tooltip, .t_error_accent_ProgressIndicator, .t_error_accent_SliderThumb, .t_error_accent_SwitchThumb, .t_error_accent_Tooltip, .t_red_accent_ProgressIndicator, .t_red_accent_SliderThumb, .t_red_accent_SwitchThumb, .t_red_accent_Tooltip, .t_success_accent_ProgressIndicator, .t_success_accent_SliderThumb, .t_success_accent_SwitchThumb, .t_success_accent_Tooltip, .t_warning_accent_ProgressIndicator, .t_warning_accent_SliderThumb, .t_warning_accent_SwitchThumb, .t_warning_accent_Tooltip {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:var(--color-231);--color025:var(--color-230);--color05:var(--color-229);--color075:hsla(125, 96%, 40%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 10%, 1);--backgroundPress:var(--color-240);--backgroundFocus:var(--color-239);--color:var(--color-232);--colorHover:var(--color-233);--colorPress:var(--color-232);--colorFocus:var(--color-233);--placeholderColor:var(--color-233);--borderColor:var(--color-239);--borderColorHover:var(--color-238);--borderColorFocus:var(--color-237);--borderColorPress:var(--color-238);} + } +:root.t_dark .t_light .t_accent_SliderTrack, :root.t_dark .t_light .t_accent_TooltipContent, :root.t_dark .t_light .t_active_accent_Button, :root.t_dark .t_light .t_active_accent_SliderTrack, :root.t_dark .t_light .t_active_accent_Switch, :root.t_dark .t_light .t_active_accent_TooltipContent, :root.t_dark .t_light .t_alt1_accent_Button, :root.t_dark .t_light .t_alt1_accent_SliderTrack, :root.t_dark .t_light .t_alt1_accent_Switch, :root.t_dark .t_light .t_alt1_accent_TooltipContent, :root.t_dark .t_light .t_alt2_accent_Button, :root.t_dark .t_light .t_alt2_accent_SliderTrack, :root.t_dark .t_light .t_alt2_accent_Switch, :root.t_dark .t_light .t_alt2_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_active_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_active_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_active_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_active_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_error_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_error_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_error_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_error_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_red_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_red_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_red_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_red_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_success_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_success_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_success_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_success_accent_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_Button, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_Switch, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_TooltipContent, :root.t_dark .t_light .t_dim_accent_Button, :root.t_dark .t_light .t_dim_accent_SliderTrack, :root.t_dark .t_light .t_dim_accent_Switch, :root.t_dark .t_light .t_dim_accent_TooltipContent, :root.t_dark .t_light .t_disabled_accent_Button, :root.t_dark .t_light .t_disabled_accent_SliderTrack, :root.t_dark .t_light .t_disabled_accent_Switch, :root.t_dark .t_light .t_disabled_accent_TooltipContent, :root.t_dark .t_light .t_error_accent_Button, :root.t_dark .t_light .t_error_accent_SliderTrack, :root.t_dark .t_light .t_error_accent_Switch, :root.t_dark .t_light .t_error_accent_TooltipContent, :root.t_dark .t_light .t_red_accent_Button, :root.t_dark .t_light .t_red_accent_SliderTrack, :root.t_dark .t_light .t_red_accent_Switch, :root.t_dark .t_light .t_red_accent_TooltipContent, :root.t_dark .t_light .t_success_accent_Button, :root.t_dark .t_light .t_success_accent_SliderTrack, :root.t_dark .t_light .t_success_accent_Switch, :root.t_dark .t_light .t_success_accent_TooltipContent, :root.t_dark .t_light .t_warning_accent_Button, :root.t_dark .t_light .t_warning_accent_SliderTrack, :root.t_dark .t_light .t_warning_accent_Switch, :root.t_dark .t_light .t_warning_accent_TooltipContent, :root.t_light .t_accent_SliderTrack, :root.t_light .t_accent_TooltipContent, :root.t_light .t_active_accent_Button, :root.t_light .t_active_accent_SliderTrack, :root.t_light .t_active_accent_Switch, :root.t_light .t_active_accent_TooltipContent, :root.t_light .t_alt1_accent_Button, :root.t_light .t_alt1_accent_SliderTrack, :root.t_light .t_alt1_accent_Switch, :root.t_light .t_alt1_accent_TooltipContent, :root.t_light .t_alt2_accent_Button, :root.t_light .t_alt2_accent_SliderTrack, :root.t_light .t_alt2_accent_Switch, :root.t_light .t_alt2_accent_TooltipContent, :root.t_light .t_dark .t_light .t_accent_SliderTrack, :root.t_light .t_dark .t_light .t_accent_TooltipContent, :root.t_light .t_dark .t_light .t_active_accent_Button, :root.t_light .t_dark .t_light .t_active_accent_SliderTrack, :root.t_light .t_dark .t_light .t_active_accent_Switch, :root.t_light .t_dark .t_light .t_active_accent_TooltipContent, :root.t_light .t_dark .t_light .t_alt1_accent_Button, :root.t_light .t_dark .t_light .t_alt1_accent_SliderTrack, :root.t_light .t_dark .t_light .t_alt1_accent_Switch, :root.t_light .t_dark .t_light .t_alt1_accent_TooltipContent, :root.t_light .t_dark .t_light .t_alt2_accent_Button, :root.t_light .t_dark .t_light .t_alt2_accent_SliderTrack, :root.t_light .t_dark .t_light .t_alt2_accent_Switch, :root.t_light .t_dark .t_light .t_alt2_accent_TooltipContent, :root.t_light .t_dark .t_light .t_dim_accent_Button, :root.t_light .t_dark .t_light .t_dim_accent_SliderTrack, :root.t_light .t_dark .t_light .t_dim_accent_Switch, :root.t_light .t_dark .t_light .t_dim_accent_TooltipContent, :root.t_light .t_dark .t_light .t_disabled_accent_Button, :root.t_light .t_dark .t_light .t_disabled_accent_SliderTrack, :root.t_light .t_dark .t_light .t_disabled_accent_Switch, :root.t_light .t_dark .t_light .t_disabled_accent_TooltipContent, :root.t_light .t_dark .t_light .t_error_accent_Button, :root.t_light .t_dark .t_light .t_error_accent_SliderTrack, :root.t_light .t_dark .t_light .t_error_accent_Switch, :root.t_light .t_dark .t_light .t_error_accent_TooltipContent, :root.t_light .t_dark .t_light .t_red_accent_Button, :root.t_light .t_dark .t_light .t_red_accent_SliderTrack, :root.t_light .t_dark .t_light .t_red_accent_Switch, :root.t_light .t_dark .t_light .t_red_accent_TooltipContent, :root.t_light .t_dark .t_light .t_success_accent_Button, :root.t_light .t_dark .t_light .t_success_accent_SliderTrack, :root.t_light .t_dark .t_light .t_success_accent_Switch, :root.t_light .t_dark .t_light .t_success_accent_TooltipContent, :root.t_light .t_dark .t_light .t_warning_accent_Button, :root.t_light .t_dark .t_light .t_warning_accent_SliderTrack, :root.t_light .t_dark .t_light .t_warning_accent_Switch, :root.t_light .t_dark .t_light .t_warning_accent_TooltipContent, :root.t_light .t_dim_accent_Button, :root.t_light .t_dim_accent_SliderTrack, :root.t_light .t_dim_accent_Switch, :root.t_light .t_dim_accent_TooltipContent, :root.t_light .t_disabled_accent_Button, :root.t_light .t_disabled_accent_SliderTrack, :root.t_light .t_disabled_accent_Switch, :root.t_light .t_disabled_accent_TooltipContent, :root.t_light .t_error_accent_Button, :root.t_light .t_error_accent_SliderTrack, :root.t_light .t_error_accent_Switch, :root.t_light .t_error_accent_TooltipContent, :root.t_light .t_red_accent_Button, :root.t_light .t_red_accent_SliderTrack, :root.t_light .t_red_accent_Switch, :root.t_light .t_red_accent_TooltipContent, :root.t_light .t_success_accent_Button, :root.t_light .t_success_accent_SliderTrack, :root.t_light .t_success_accent_Switch, :root.t_light .t_success_accent_TooltipContent, :root.t_light .t_warning_accent_Button, :root.t_light .t_warning_accent_SliderTrack, :root.t_light .t_warning_accent_Switch, :root.t_light .t_warning_accent_TooltipContent {--background0:var(--color-230);--background025:var(--color-231);--background05:var(--color-232);--background075:var(--color-233);--color0:var(--color-240);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 32%, 10%, 1);--color075:hsla(191, 33%, 10%, 0.75);--background:var(--color-233);--backgroundHover:var(--color-234);--backgroundPress:var(--color-235);--backgroundFocus:var(--color-236);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-238);--borderColor:var(--color-236);--borderColorHover:var(--color-237);--borderColorFocus:var(--color-238);--borderColorPress:var(--color-237);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_accent_SliderTrack, .t_accent_TooltipContent, .t_active_accent_Button, .t_active_accent_SliderTrack, .t_active_accent_Switch, .t_active_accent_TooltipContent, .t_alt1_accent_Button, .t_alt1_accent_SliderTrack, .t_alt1_accent_Switch, .t_alt1_accent_TooltipContent, .t_alt2_accent_Button, .t_alt2_accent_SliderTrack, .t_alt2_accent_Switch, .t_alt2_accent_TooltipContent, .t_dark .t_light .t_accent_SliderTrack, .t_dark .t_light .t_accent_TooltipContent, .t_dark .t_light .t_active_accent_Button, .t_dark .t_light .t_active_accent_SliderTrack, .t_dark .t_light .t_active_accent_Switch, .t_dark .t_light .t_active_accent_TooltipContent, .t_dark .t_light .t_alt1_accent_Button, .t_dark .t_light .t_alt1_accent_SliderTrack, .t_dark .t_light .t_alt1_accent_Switch, .t_dark .t_light .t_alt1_accent_TooltipContent, .t_dark .t_light .t_alt2_accent_Button, .t_dark .t_light .t_alt2_accent_SliderTrack, .t_dark .t_light .t_alt2_accent_Switch, .t_dark .t_light .t_alt2_accent_TooltipContent, .t_dark .t_light .t_dim_accent_Button, .t_dark .t_light .t_dim_accent_SliderTrack, .t_dark .t_light .t_dim_accent_Switch, .t_dark .t_light .t_dim_accent_TooltipContent, .t_dark .t_light .t_disabled_accent_Button, .t_dark .t_light .t_disabled_accent_SliderTrack, .t_dark .t_light .t_disabled_accent_Switch, .t_dark .t_light .t_disabled_accent_TooltipContent, .t_dark .t_light .t_error_accent_Button, .t_dark .t_light .t_error_accent_SliderTrack, .t_dark .t_light .t_error_accent_Switch, .t_dark .t_light .t_error_accent_TooltipContent, .t_dark .t_light .t_red_accent_Button, .t_dark .t_light .t_red_accent_SliderTrack, .t_dark .t_light .t_red_accent_Switch, .t_dark .t_light .t_red_accent_TooltipContent, .t_dark .t_light .t_success_accent_Button, .t_dark .t_light .t_success_accent_SliderTrack, .t_dark .t_light .t_success_accent_Switch, .t_dark .t_light .t_success_accent_TooltipContent, .t_dark .t_light .t_warning_accent_Button, .t_dark .t_light .t_warning_accent_SliderTrack, .t_dark .t_light .t_warning_accent_Switch, .t_dark .t_light .t_warning_accent_TooltipContent, .t_dim_accent_Button, .t_dim_accent_SliderTrack, .t_dim_accent_Switch, .t_dim_accent_TooltipContent, .t_disabled_accent_Button, .t_disabled_accent_SliderTrack, .t_disabled_accent_Switch, .t_disabled_accent_TooltipContent, .t_error_accent_Button, .t_error_accent_SliderTrack, .t_error_accent_Switch, .t_error_accent_TooltipContent, .t_red_accent_Button, .t_red_accent_SliderTrack, .t_red_accent_Switch, .t_red_accent_TooltipContent, .t_success_accent_Button, .t_success_accent_SliderTrack, .t_success_accent_Switch, .t_success_accent_TooltipContent, .t_warning_accent_Button, .t_warning_accent_SliderTrack, .t_warning_accent_Switch, .t_warning_accent_TooltipContent {--background0:var(--color-230);--background025:var(--color-231);--background05:var(--color-232);--background075:var(--color-233);--color0:var(--color-240);--color025:hsla(191, 32%, 10%, 1);--color05:hsla(191, 32%, 10%, 1);--color075:hsla(191, 33%, 10%, 0.75);--background:var(--color-233);--backgroundHover:var(--color-234);--backgroundPress:var(--color-235);--backgroundFocus:var(--color-236);--color:hsla(191, 32%, 10%, 1);--colorHover:var(--color-240);--colorPress:hsla(191, 32%, 10%, 1);--colorFocus:var(--color-240);--placeholderColor:var(--color-238);--borderColor:var(--color-236);--borderColorHover:var(--color-237);--borderColorFocus:var(--color-238);--borderColorPress:var(--color-237);} + } +:root.t_dark .t_light .t_accent_SliderTrackActive, :root.t_dark .t_light .t_active_accent_SliderTrackActive, :root.t_dark .t_light .t_alt1_accent_SliderTrackActive, :root.t_dark .t_light .t_alt2_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_active_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_dim_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_error_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_red_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_success_accent_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_warning_accent_SliderTrackActive, :root.t_dark .t_light .t_dim_accent_SliderTrackActive, :root.t_dark .t_light .t_disabled_accent_SliderTrackActive, :root.t_dark .t_light .t_error_accent_SliderTrackActive, :root.t_dark .t_light .t_red_accent_SliderTrackActive, :root.t_dark .t_light .t_success_accent_SliderTrackActive, :root.t_dark .t_light .t_warning_accent_SliderTrackActive, :root.t_light .t_accent_SliderTrackActive, :root.t_light .t_active_accent_SliderTrackActive, :root.t_light .t_alt1_accent_SliderTrackActive, :root.t_light .t_alt2_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_active_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_alt1_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_alt2_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_dim_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_disabled_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_error_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_red_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_success_accent_SliderTrackActive, :root.t_light .t_dark .t_light .t_warning_accent_SliderTrackActive, :root.t_light .t_dim_accent_SliderTrackActive, :root.t_light .t_disabled_accent_SliderTrackActive, :root.t_light .t_error_accent_SliderTrackActive, :root.t_light .t_red_accent_SliderTrackActive, :root.t_light .t_success_accent_SliderTrackActive, :root.t_light .t_warning_accent_SliderTrackActive {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 10%, 1);--background075:var(--color-240);--color0:var(--color-233);--color025:var(--color-232);--color05:var(--color-231);--color075:var(--color-230);--background:var(--color-240);--backgroundHover:var(--color-239);--backgroundPress:var(--color-238);--backgroundFocus:var(--color-237);--color:var(--color-232);--colorHover:var(--color-233);--colorPress:var(--color-232);--colorFocus:var(--color-233);--placeholderColor:var(--color-235);--borderColor:var(--color-237);--borderColorHover:var(--color-236);--borderColorFocus:var(--color-235);--borderColorPress:var(--color-236);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_accent_SliderTrackActive, .t_active_accent_SliderTrackActive, .t_alt1_accent_SliderTrackActive, .t_alt2_accent_SliderTrackActive, .t_dark .t_light .t_accent_SliderTrackActive, .t_dark .t_light .t_active_accent_SliderTrackActive, .t_dark .t_light .t_alt1_accent_SliderTrackActive, .t_dark .t_light .t_alt2_accent_SliderTrackActive, .t_dark .t_light .t_dim_accent_SliderTrackActive, .t_dark .t_light .t_disabled_accent_SliderTrackActive, .t_dark .t_light .t_error_accent_SliderTrackActive, .t_dark .t_light .t_red_accent_SliderTrackActive, .t_dark .t_light .t_success_accent_SliderTrackActive, .t_dark .t_light .t_warning_accent_SliderTrackActive, .t_dim_accent_SliderTrackActive, .t_disabled_accent_SliderTrackActive, .t_error_accent_SliderTrackActive, .t_red_accent_SliderTrackActive, .t_success_accent_SliderTrackActive, .t_warning_accent_SliderTrackActive {--accentBackground:hsla(125, 96%, 40%, 0);--accentColor:hsla(125, 96%, 40%, 0);--background0:hsla(191, 33%, 10%, 0.75);--background025:hsla(191, 32%, 10%, 1);--background05:hsla(191, 32%, 10%, 1);--background075:var(--color-240);--color0:var(--color-233);--color025:var(--color-232);--color05:var(--color-231);--color075:var(--color-230);--background:var(--color-240);--backgroundHover:var(--color-239);--backgroundPress:var(--color-238);--backgroundFocus:var(--color-237);--color:var(--color-232);--colorHover:var(--color-233);--colorPress:var(--color-232);--colorFocus:var(--color-233);--placeholderColor:var(--color-235);--borderColor:var(--color-237);--borderColorHover:var(--color-236);--borderColorFocus:var(--color-235);--borderColorPress:var(--color-236);} + } +:root.t_dark .t_light .t_active, :root.t_dark .t_light .t_dark .t_light .t_active, :root.t_light .t_active, :root.t_light .t_dark .t_light .t_active {--background0:hsla(180, 20%, 99%, 0);--background025:hsla(180, 20%, 99%, 0.25);--background05:hsla(180, 20%, 99%, 0.5);--background075:hsla(180, 20%, 99%, 0.75);--color0:hsla(0, 0%, 0%, 0.75);--color025:hsla(0, 0%, 0%, 0.5);--color05:hsla(0, 0%, 0%, 0.25);--color075:hsla(0, 0%, 0%, 0);--background:hsla(180, 20%, 99%, 0.75);--backgroundHover:hsla(191, 32%, 99%, 1);--backgroundPress:hsla(191, 32%, 93%, 1);--backgroundFocus:hsla(191, 32%, 88%, 1);--colorHover:hsla(96, 16%, 25%, 1);--colorPress:hsla(112, 22%, 0%, 1);--colorFocus:hsla(96, 16%, 25%, 1);--placeholderColor:hsla(96, 16%, 25%, 1);--borderColor:hsla(191, 32%, 88%, 1);--borderColorHover:hsla(191, 32%, 83%, 1);--borderColorFocus:hsla(191, 32%, 77%, 1);--borderColorPress:hsla(191, 32%, 83%, 1);--color1:hsla(180, 20%, 99%, 0.75);--color2:hsla(191, 32%, 99%, 1);--color3:hsla(191, 32%, 93%, 1);--color4:hsla(191, 32%, 88%, 1);--color5:hsla(191, 32%, 83%, 1);--color6:hsla(191, 32%, 77%, 1);--color7:hsla(191, 32%, 72%, 1);--color8:hsla(191, 32%, 66%, 1);--color9:hsla(191, 32%, 61%, 1);--color10:hsla(191, 32%, 55%, 1);--color11:hsla(191, 32%, 50%, 1);--color12:hsla(96, 16%, 25%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);} + .t_active, .t_dark .t_light .t_active {--background0:hsla(180, 20%, 99%, 0);--background025:hsla(180, 20%, 99%, 0.25);--background05:hsla(180, 20%, 99%, 0.5);--background075:hsla(180, 20%, 99%, 0.75);--color0:hsla(0, 0%, 0%, 0.75);--color025:hsla(0, 0%, 0%, 0.5);--color05:hsla(0, 0%, 0%, 0.25);--color075:hsla(0, 0%, 0%, 0);--background:hsla(180, 20%, 99%, 0.75);--backgroundHover:hsla(191, 32%, 99%, 1);--backgroundPress:hsla(191, 32%, 93%, 1);--backgroundFocus:hsla(191, 32%, 88%, 1);--colorHover:hsla(96, 16%, 25%, 1);--colorPress:hsla(112, 22%, 0%, 1);--colorFocus:hsla(96, 16%, 25%, 1);--placeholderColor:hsla(96, 16%, 25%, 1);--borderColor:hsla(191, 32%, 88%, 1);--borderColorHover:hsla(191, 32%, 83%, 1);--borderColorFocus:hsla(191, 32%, 77%, 1);--borderColorPress:hsla(191, 32%, 83%, 1);--color1:hsla(180, 20%, 99%, 0.75);--color2:hsla(191, 32%, 99%, 1);--color3:hsla(191, 32%, 93%, 1);--color4:hsla(191, 32%, 88%, 1);--color5:hsla(191, 32%, 83%, 1);--color6:hsla(191, 32%, 77%, 1);--color7:hsla(191, 32%, 72%, 1);--color8:hsla(191, 32%, 66%, 1);--color9:hsla(191, 32%, 61%, 1);--color10:hsla(191, 32%, 55%, 1);--color11:hsla(191, 32%, 50%, 1);--color12:hsla(96, 16%, 25%, 1);} + } +:root.t_dark .t_light .t_active_Button, :root.t_dark .t_light .t_active_SliderTrack, :root.t_dark .t_light .t_active_Switch, :root.t_dark .t_light .t_active_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_active_Button, :root.t_dark .t_light .t_dark .t_light .t_active_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_active_Switch, :root.t_dark .t_light .t_dark .t_light .t_active_TooltipContent, :root.t_light .t_active_Button, :root.t_light .t_active_SliderTrack, :root.t_light .t_active_Switch, :root.t_light .t_active_TooltipContent, :root.t_light .t_dark .t_light .t_active_Button, :root.t_light .t_dark .t_light .t_active_SliderTrack, :root.t_light .t_dark .t_light .t_active_Switch, :root.t_light .t_dark .t_light .t_active_TooltipContent {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--colorHover:hsla(96, 16%, 25%, 1);--colorPress:hsla(112, 22%, 0%, 1);--colorFocus:hsla(96, 16%, 25%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);} + .t_active_Button, .t_active_SliderTrack, .t_active_Switch, .t_active_TooltipContent, .t_dark .t_light .t_active_Button, .t_dark .t_light .t_active_SliderTrack, .t_dark .t_light .t_active_Switch, .t_dark .t_light .t_active_TooltipContent {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--colorHover:hsla(96, 16%, 25%, 1);--colorPress:hsla(112, 22%, 0%, 1);--colorFocus:hsla(96, 16%, 25%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} + } +:root.t_dark .t_light .t_active_Card, :root.t_dark .t_light .t_active_DrawerFrame, :root.t_dark .t_light .t_active_Progress, :root.t_dark .t_light .t_active_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_active_Card, :root.t_dark .t_light .t_dark .t_light .t_active_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_active_Progress, :root.t_dark .t_light .t_dark .t_light .t_active_TooltipArrow, :root.t_light .t_active_Card, :root.t_light .t_active_DrawerFrame, :root.t_light .t_active_Progress, :root.t_light .t_active_TooltipArrow, :root.t_light .t_dark .t_light .t_active_Card, :root.t_light .t_dark .t_light .t_active_DrawerFrame, :root.t_light .t_dark .t_light .t_active_Progress, :root.t_light .t_dark .t_light .t_active_TooltipArrow {--background0:hsla(180, 20%, 99%, 0.25);--background025:hsla(180, 20%, 99%, 0.5);--background05:hsla(180, 20%, 99%, 0.75);--background075:hsla(191, 32%, 99%, 1);--color0:hsla(112, 22%, 0%, 1);--color025:hsla(0, 0%, 0%, 0.75);--color05:hsla(0, 0%, 0%, 0.5);--color075:hsla(0, 0%, 0%, 0.25);--background:hsla(191, 32%, 99%, 1);--backgroundHover:hsla(191, 32%, 93%, 1);--backgroundPress:hsla(191, 32%, 88%, 1);--backgroundFocus:hsla(191, 32%, 83%, 1);--colorHover:hsla(96, 16%, 25%, 1);--colorPress:hsla(112, 22%, 0%, 1);--colorFocus:hsla(96, 16%, 25%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 83%, 1);--borderColorHover:hsla(191, 32%, 77%, 1);--borderColorFocus:hsla(191, 32%, 72%, 1);--borderColorPress:hsla(191, 32%, 77%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);} + .t_active_Card, .t_active_DrawerFrame, .t_active_Progress, .t_active_TooltipArrow, .t_dark .t_light .t_active_Card, .t_dark .t_light .t_active_DrawerFrame, .t_dark .t_light .t_active_Progress, .t_dark .t_light .t_active_TooltipArrow {--background0:hsla(180, 20%, 99%, 0.25);--background025:hsla(180, 20%, 99%, 0.5);--background05:hsla(180, 20%, 99%, 0.75);--background075:hsla(191, 32%, 99%, 1);--color0:hsla(112, 22%, 0%, 1);--color025:hsla(0, 0%, 0%, 0.75);--color05:hsla(0, 0%, 0%, 0.5);--color075:hsla(0, 0%, 0%, 0.25);--background:hsla(191, 32%, 99%, 1);--backgroundHover:hsla(191, 32%, 93%, 1);--backgroundPress:hsla(191, 32%, 88%, 1);--backgroundFocus:hsla(191, 32%, 83%, 1);--colorHover:hsla(96, 16%, 25%, 1);--colorPress:hsla(112, 22%, 0%, 1);--colorFocus:hsla(96, 16%, 25%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 83%, 1);--borderColorHover:hsla(191, 32%, 77%, 1);--borderColorFocus:hsla(191, 32%, 72%, 1);--borderColorPress:hsla(191, 32%, 77%, 1);} + } +:root.t_dark .t_light .t_active_Checkbox, :root.t_dark .t_light .t_active_Input, :root.t_dark .t_light .t_active_RadioGroupItem, :root.t_dark .t_light .t_active_TextArea, :root.t_dark .t_light .t_dark .t_light .t_active_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_active_Input, :root.t_dark .t_light .t_dark .t_light .t_active_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_active_TextArea, :root.t_light .t_active_Checkbox, :root.t_light .t_active_Input, :root.t_light .t_active_RadioGroupItem, :root.t_light .t_active_TextArea, :root.t_light .t_dark .t_light .t_active_Checkbox, :root.t_light .t_dark .t_light .t_active_Input, :root.t_light .t_dark .t_light .t_active_RadioGroupItem, :root.t_light .t_dark .t_light .t_active_TextArea {--background0:hsla(180, 20%, 99%, 0);--background025:hsla(180, 20%, 99%, 0.25);--background05:hsla(180, 20%, 99%, 0.5);--background075:hsla(180, 20%, 99%, 0.75);--color0:hsla(0, 0%, 0%, 0.75);--color025:hsla(0, 0%, 0%, 0.5);--color05:hsla(0, 0%, 0%, 0.25);--color075:hsla(0, 0%, 0%, 0);--background:hsla(180, 20%, 99%, 0.75);--backgroundHover:hsla(191, 32%, 99%, 1);--backgroundPress:hsla(191, 32%, 93%, 1);--backgroundFocus:hsla(191, 32%, 88%, 1);--colorHover:hsla(96, 16%, 25%, 1);--colorPress:hsla(112, 22%, 0%, 1);--colorFocus:hsla(96, 16%, 25%, 1);--placeholderColor:hsla(96, 16%, 25%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);} + .t_active_Checkbox, .t_active_Input, .t_active_RadioGroupItem, .t_active_TextArea, .t_dark .t_light .t_active_Checkbox, .t_dark .t_light .t_active_Input, .t_dark .t_light .t_active_RadioGroupItem, .t_dark .t_light .t_active_TextArea {--background0:hsla(180, 20%, 99%, 0);--background025:hsla(180, 20%, 99%, 0.25);--background05:hsla(180, 20%, 99%, 0.5);--background075:hsla(180, 20%, 99%, 0.75);--color0:hsla(0, 0%, 0%, 0.75);--color025:hsla(0, 0%, 0%, 0.5);--color05:hsla(0, 0%, 0%, 0.25);--color075:hsla(0, 0%, 0%, 0);--background:hsla(180, 20%, 99%, 0.75);--backgroundHover:hsla(191, 32%, 99%, 1);--backgroundPress:hsla(191, 32%, 93%, 1);--backgroundFocus:hsla(191, 32%, 88%, 1);--colorHover:hsla(96, 16%, 25%, 1);--colorPress:hsla(112, 22%, 0%, 1);--colorFocus:hsla(96, 16%, 25%, 1);--placeholderColor:hsla(96, 16%, 25%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} + } +:root.t_dark .t_light .t_active_ProgressIndicator, :root.t_dark .t_light .t_active_SliderThumb, :root.t_dark .t_light .t_active_SwitchThumb, :root.t_dark .t_light .t_active_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_active_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_active_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_active_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_active_Tooltip, :root.t_light .t_active_ProgressIndicator, :root.t_light .t_active_SliderThumb, :root.t_light .t_active_SwitchThumb, :root.t_light .t_active_Tooltip, :root.t_light .t_dark .t_light .t_active_ProgressIndicator, :root.t_light .t_dark .t_light .t_active_SliderThumb, :root.t_light .t_dark .t_light .t_active_SwitchThumb, :root.t_light .t_dark .t_light .t_active_Tooltip {--background0:hsla(0, 0%, 0%, 0);--background025:hsla(0, 0%, 0%, 0.25);--background05:hsla(0, 0%, 0%, 0.5);--background075:hsla(0, 0%, 0%, 0.75);--color0:hsla(180, 20%, 99%, 0.75);--color025:hsla(180, 20%, 99%, 0.5);--color05:hsla(180, 20%, 99%, 0.25);--color075:hsla(180, 20%, 99%, 0);--background:hsla(0, 0%, 0%, 0.75);--backgroundHover:hsla(112, 22%, 0%, 1);--backgroundPress:hsla(96, 16%, 25%, 1);--backgroundFocus:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 93%, 1);--colorPress:hsla(191, 32%, 99%, 1);--colorFocus:hsla(191, 32%, 93%, 1);--placeholderColor:hsla(191, 32%, 93%, 1);--borderColor:hsla(191, 32%, 50%, 1);--borderColorHover:hsla(191, 32%, 55%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 55%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);} + .t_active_ProgressIndicator, .t_active_SliderThumb, .t_active_SwitchThumb, .t_active_Tooltip, .t_dark .t_light .t_active_ProgressIndicator, .t_dark .t_light .t_active_SliderThumb, .t_dark .t_light .t_active_SwitchThumb, .t_dark .t_light .t_active_Tooltip {--background0:hsla(0, 0%, 0%, 0);--background025:hsla(0, 0%, 0%, 0.25);--background05:hsla(0, 0%, 0%, 0.5);--background075:hsla(0, 0%, 0%, 0.75);--color0:hsla(180, 20%, 99%, 0.75);--color025:hsla(180, 20%, 99%, 0.5);--color05:hsla(180, 20%, 99%, 0.25);--color075:hsla(180, 20%, 99%, 0);--background:hsla(0, 0%, 0%, 0.75);--backgroundHover:hsla(112, 22%, 0%, 1);--backgroundPress:hsla(96, 16%, 25%, 1);--backgroundFocus:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 93%, 1);--colorPress:hsla(191, 32%, 99%, 1);--colorFocus:hsla(191, 32%, 93%, 1);--placeholderColor:hsla(191, 32%, 93%, 1);--borderColor:hsla(191, 32%, 50%, 1);--borderColorHover:hsla(191, 32%, 55%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 55%, 1);} + } +:root.t_dark .t_light .t_active_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_active_SliderTrackActive, :root.t_light .t_active_SliderTrackActive, :root.t_light .t_dark .t_light .t_active_SliderTrackActive {--background0:hsla(0, 0%, 0%, 0.5);--background025:hsla(0, 0%, 0%, 0.75);--background05:hsla(112, 22%, 0%, 1);--background075:hsla(96, 16%, 25%, 1);--color0:hsla(191, 32%, 93%, 1);--color025:hsla(191, 32%, 99%, 1);--color05:hsla(180, 20%, 99%, 0.75);--color075:hsla(180, 20%, 99%, 0.5);--background:hsla(96, 16%, 25%, 1);--backgroundHover:hsla(191, 32%, 50%, 1);--backgroundPress:hsla(191, 32%, 55%, 1);--backgroundFocus:hsla(191, 32%, 61%, 1);--colorHover:hsla(191, 32%, 93%, 1);--colorPress:hsla(191, 32%, 99%, 1);--colorFocus:hsla(191, 32%, 93%, 1);--placeholderColor:hsla(191, 32%, 83%, 1);--borderColor:hsla(191, 32%, 61%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 72%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);} + .t_active_SliderTrackActive, .t_dark .t_light .t_active_SliderTrackActive {--background0:hsla(0, 0%, 0%, 0.5);--background025:hsla(0, 0%, 0%, 0.75);--background05:hsla(112, 22%, 0%, 1);--background075:hsla(96, 16%, 25%, 1);--color0:hsla(191, 32%, 93%, 1);--color025:hsla(191, 32%, 99%, 1);--color05:hsla(180, 20%, 99%, 0.75);--color075:hsla(180, 20%, 99%, 0.5);--background:hsla(96, 16%, 25%, 1);--backgroundHover:hsla(191, 32%, 50%, 1);--backgroundPress:hsla(191, 32%, 55%, 1);--backgroundFocus:hsla(191, 32%, 61%, 1);--colorHover:hsla(191, 32%, 93%, 1);--colorPress:hsla(191, 32%, 99%, 1);--colorFocus:hsla(191, 32%, 93%, 1);--placeholderColor:hsla(191, 32%, 83%, 1);--borderColor:hsla(191, 32%, 61%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 72%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} + } +:root.t_dark .t_light .t_alt1, :root.t_dark .t_light .t_dark .t_light .t_alt1, :root.t_light .t_alt1, :root.t_light .t_dark .t_light .t_alt1 {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);--color1:hsla(191, 32%, 93%, 1);--color2:hsla(191, 32%, 88%, 1);--color3:hsla(191, 32%, 83%, 1);--color4:hsla(191, 32%, 77%, 1);--color5:hsla(191, 32%, 72%, 1);--color6:hsla(191, 32%, 66%, 1);--color7:hsla(191, 32%, 61%, 1);--color8:hsla(191, 32%, 55%, 1);--color9:hsla(191, 32%, 55%, 1);--color10:hsla(191, 32%, 55%, 1);--color11:hsla(191, 32%, 55%, 1);--color12:hsla(191, 32%, 55%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_alt1, .t_dark .t_light .t_alt1 {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);--color1:hsla(191, 32%, 93%, 1);--color2:hsla(191, 32%, 88%, 1);--color3:hsla(191, 32%, 83%, 1);--color4:hsla(191, 32%, 77%, 1);--color5:hsla(191, 32%, 72%, 1);--color6:hsla(191, 32%, 66%, 1);--color7:hsla(191, 32%, 61%, 1);--color8:hsla(191, 32%, 55%, 1);--color9:hsla(191, 32%, 55%, 1);--color10:hsla(191, 32%, 55%, 1);--color11:hsla(191, 32%, 55%, 1);--color12:hsla(191, 32%, 55%, 1);} + } +:root.t_dark .t_light .t_alt1_Button, :root.t_dark .t_light .t_alt1_SliderTrack, :root.t_dark .t_light .t_alt1_Switch, :root.t_dark .t_light .t_alt1_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_alt1_Button, :root.t_dark .t_light .t_dark .t_light .t_alt1_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_alt1_Switch, :root.t_dark .t_light .t_dark .t_light .t_alt1_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_dim_Button, :root.t_dark .t_light .t_dark .t_light .t_dim_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_dim_Switch, :root.t_dark .t_light .t_dark .t_light .t_dim_TooltipContent, :root.t_dark .t_light .t_dim_Button, :root.t_dark .t_light .t_dim_SliderTrack, :root.t_dark .t_light .t_dim_Switch, :root.t_dark .t_light .t_dim_TooltipContent, :root.t_light .t_alt1_Button, :root.t_light .t_alt1_SliderTrack, :root.t_light .t_alt1_Switch, :root.t_light .t_alt1_TooltipContent, :root.t_light .t_dark .t_light .t_alt1_Button, :root.t_light .t_dark .t_light .t_alt1_SliderTrack, :root.t_light .t_dark .t_light .t_alt1_Switch, :root.t_light .t_dark .t_light .t_alt1_TooltipContent, :root.t_light .t_dark .t_light .t_dim_Button, :root.t_light .t_dark .t_light .t_dim_SliderTrack, :root.t_light .t_dark .t_light .t_dim_Switch, :root.t_light .t_dark .t_light .t_dim_TooltipContent, :root.t_light .t_dim_Button, :root.t_light .t_dim_SliderTrack, :root.t_light .t_dim_Switch, :root.t_light .t_dim_TooltipContent {--background0:hsla(191, 32%, 99%, 1);--background025:hsla(191, 32%, 93%, 1);--background05:hsla(191, 32%, 88%, 1);--background075:hsla(191, 32%, 83%, 1);--color0:hsla(191, 32%, 55%, 1);--color025:hsla(191, 32%, 50%, 1);--color05:hsla(96, 16%, 25%, 1);--color075:hsla(112, 22%, 0%, 1);--background:hsla(191, 32%, 83%, 1);--backgroundHover:hsla(191, 32%, 77%, 1);--backgroundPress:hsla(191, 32%, 72%, 1);--backgroundFocus:hsla(191, 32%, 66%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 66%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 61%, 1);--borderColorFocus:hsla(191, 32%, 55%, 1);--borderColorPress:hsla(191, 32%, 61%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_alt1_Button, .t_alt1_SliderTrack, .t_alt1_Switch, .t_alt1_TooltipContent, .t_dark .t_light .t_alt1_Button, .t_dark .t_light .t_alt1_SliderTrack, .t_dark .t_light .t_alt1_Switch, .t_dark .t_light .t_alt1_TooltipContent, .t_dark .t_light .t_dim_Button, .t_dark .t_light .t_dim_SliderTrack, .t_dark .t_light .t_dim_Switch, .t_dark .t_light .t_dim_TooltipContent, .t_dim_Button, .t_dim_SliderTrack, .t_dim_Switch, .t_dim_TooltipContent {--background0:hsla(191, 32%, 99%, 1);--background025:hsla(191, 32%, 93%, 1);--background05:hsla(191, 32%, 88%, 1);--background075:hsla(191, 32%, 83%, 1);--color0:hsla(191, 32%, 55%, 1);--color025:hsla(191, 32%, 50%, 1);--color05:hsla(96, 16%, 25%, 1);--color075:hsla(112, 22%, 0%, 1);--background:hsla(191, 32%, 83%, 1);--backgroundHover:hsla(191, 32%, 77%, 1);--backgroundPress:hsla(191, 32%, 72%, 1);--backgroundFocus:hsla(191, 32%, 66%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 66%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 61%, 1);--borderColorFocus:hsla(191, 32%, 55%, 1);--borderColorPress:hsla(191, 32%, 61%, 1);} + } +:root.t_dark .t_light .t_alt1_Card, :root.t_dark .t_light .t_alt1_DrawerFrame, :root.t_dark .t_light .t_alt1_Progress, :root.t_dark .t_light .t_alt1_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_alt1_Card, :root.t_dark .t_light .t_dark .t_light .t_alt1_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_alt1_Progress, :root.t_dark .t_light .t_dark .t_light .t_alt1_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_dim_Card, :root.t_dark .t_light .t_dark .t_light .t_dim_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_dim_Progress, :root.t_dark .t_light .t_dark .t_light .t_dim_TooltipArrow, :root.t_dark .t_light .t_dim_Card, :root.t_dark .t_light .t_dim_DrawerFrame, :root.t_dark .t_light .t_dim_Progress, :root.t_dark .t_light .t_dim_TooltipArrow, :root.t_light .t_alt1_Card, :root.t_light .t_alt1_DrawerFrame, :root.t_light .t_alt1_Progress, :root.t_light .t_alt1_TooltipArrow, :root.t_light .t_dark .t_light .t_alt1_Card, :root.t_light .t_dark .t_light .t_alt1_DrawerFrame, :root.t_light .t_dark .t_light .t_alt1_Progress, :root.t_light .t_dark .t_light .t_alt1_TooltipArrow, :root.t_light .t_dark .t_light .t_dim_Card, :root.t_light .t_dark .t_light .t_dim_DrawerFrame, :root.t_light .t_dark .t_light .t_dim_Progress, :root.t_light .t_dark .t_light .t_dim_TooltipArrow, :root.t_light .t_dim_Card, :root.t_light .t_dim_DrawerFrame, :root.t_light .t_dim_Progress, :root.t_light .t_dim_TooltipArrow {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_alt1_Card, .t_alt1_DrawerFrame, .t_alt1_Progress, .t_alt1_TooltipArrow, .t_dark .t_light .t_alt1_Card, .t_dark .t_light .t_alt1_DrawerFrame, .t_dark .t_light .t_alt1_Progress, .t_dark .t_light .t_alt1_TooltipArrow, .t_dark .t_light .t_dim_Card, .t_dark .t_light .t_dim_DrawerFrame, .t_dark .t_light .t_dim_Progress, .t_dark .t_light .t_dim_TooltipArrow, .t_dim_Card, .t_dim_DrawerFrame, .t_dim_Progress, .t_dim_TooltipArrow {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} + } +:root.t_dark .t_light .t_alt1_Checkbox, :root.t_dark .t_light .t_alt1_Input, :root.t_dark .t_light .t_alt1_RadioGroupItem, :root.t_dark .t_light .t_alt1_TextArea, :root.t_dark .t_light .t_dark .t_light .t_alt1_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_alt1_Input, :root.t_dark .t_light .t_dark .t_light .t_alt1_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_alt1_TextArea, :root.t_dark .t_light .t_dark .t_light .t_dim_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_dim_Input, :root.t_dark .t_light .t_dark .t_light .t_dim_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_dim_TextArea, :root.t_dark .t_light .t_dim_Checkbox, :root.t_dark .t_light .t_dim_Input, :root.t_dark .t_light .t_dim_RadioGroupItem, :root.t_dark .t_light .t_dim_TextArea, :root.t_light .t_alt1_Checkbox, :root.t_light .t_alt1_Input, :root.t_light .t_alt1_RadioGroupItem, :root.t_light .t_alt1_TextArea, :root.t_light .t_dark .t_light .t_alt1_Checkbox, :root.t_light .t_dark .t_light .t_alt1_Input, :root.t_light .t_dark .t_light .t_alt1_RadioGroupItem, :root.t_light .t_dark .t_light .t_alt1_TextArea, :root.t_light .t_dark .t_light .t_dim_Checkbox, :root.t_light .t_dark .t_light .t_dim_Input, :root.t_light .t_dark .t_light .t_dim_RadioGroupItem, :root.t_light .t_dark .t_light .t_dim_TextArea, :root.t_light .t_dim_Checkbox, :root.t_light .t_dim_Input, :root.t_light .t_dim_RadioGroupItem, :root.t_light .t_dim_TextArea {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 61%, 1);--borderColorFocus:hsla(191, 32%, 55%, 1);--borderColorPress:hsla(191, 32%, 61%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_alt1_Checkbox, .t_alt1_Input, .t_alt1_RadioGroupItem, .t_alt1_TextArea, .t_dark .t_light .t_alt1_Checkbox, .t_dark .t_light .t_alt1_Input, .t_dark .t_light .t_alt1_RadioGroupItem, .t_dark .t_light .t_alt1_TextArea, .t_dark .t_light .t_dim_Checkbox, .t_dark .t_light .t_dim_Input, .t_dark .t_light .t_dim_RadioGroupItem, .t_dark .t_light .t_dim_TextArea, .t_dim_Checkbox, .t_dim_Input, .t_dim_RadioGroupItem, .t_dim_TextArea {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 61%, 1);--borderColorFocus:hsla(191, 32%, 55%, 1);--borderColorPress:hsla(191, 32%, 61%, 1);} + } +:root.t_dark .t_light .t_alt1_ProgressIndicator, :root.t_dark .t_light .t_alt1_SliderThumb, :root.t_dark .t_light .t_alt1_SwitchThumb, :root.t_dark .t_light .t_alt1_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_alt1_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_alt1_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_alt1_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_alt1_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_dim_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_dim_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_dim_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_dim_Tooltip, :root.t_dark .t_light .t_dim_ProgressIndicator, :root.t_dark .t_light .t_dim_SliderThumb, :root.t_dark .t_light .t_dim_SwitchThumb, :root.t_dark .t_light .t_dim_Tooltip, :root.t_light .t_alt1_ProgressIndicator, :root.t_light .t_alt1_SliderThumb, :root.t_light .t_alt1_SwitchThumb, :root.t_light .t_alt1_Tooltip, :root.t_light .t_dark .t_light .t_alt1_ProgressIndicator, :root.t_light .t_dark .t_light .t_alt1_SliderThumb, :root.t_light .t_dark .t_light .t_alt1_SwitchThumb, :root.t_light .t_dark .t_light .t_alt1_Tooltip, :root.t_light .t_dark .t_light .t_dim_ProgressIndicator, :root.t_light .t_dark .t_light .t_dim_SliderThumb, :root.t_light .t_dark .t_light .t_dim_SwitchThumb, :root.t_light .t_dark .t_light .t_dim_Tooltip, :root.t_light .t_dim_ProgressIndicator, :root.t_light .t_dim_SliderThumb, :root.t_light .t_dim_SwitchThumb, :root.t_light .t_dim_Tooltip {--background0:hsla(0, 0%, 0%, 0.5);--background025:hsla(0, 0%, 0%, 0.75);--background05:hsla(112, 22%, 0%, 1);--background075:hsla(96, 16%, 25%, 1);--color0:hsla(191, 32%, 93%, 1);--color025:hsla(191, 32%, 99%, 1);--color05:hsla(180, 20%, 99%, 0.75);--color075:hsla(180, 20%, 99%, 0.5);--background:hsla(96, 16%, 25%, 1);--backgroundHover:hsla(191, 32%, 50%, 1);--backgroundPress:hsla(191, 32%, 55%, 1);--backgroundFocus:hsla(191, 32%, 61%, 1);--color:hsla(191, 32%, 88%, 1);--colorHover:hsla(191, 32%, 83%, 1);--colorPress:hsla(191, 32%, 88%, 1);--colorFocus:hsla(191, 32%, 83%, 1);--placeholderColor:hsla(191, 32%, 83%, 1);--borderColor:hsla(191, 32%, 61%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 72%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_alt1_ProgressIndicator, .t_alt1_SliderThumb, .t_alt1_SwitchThumb, .t_alt1_Tooltip, .t_dark .t_light .t_alt1_ProgressIndicator, .t_dark .t_light .t_alt1_SliderThumb, .t_dark .t_light .t_alt1_SwitchThumb, .t_dark .t_light .t_alt1_Tooltip, .t_dark .t_light .t_dim_ProgressIndicator, .t_dark .t_light .t_dim_SliderThumb, .t_dark .t_light .t_dim_SwitchThumb, .t_dark .t_light .t_dim_Tooltip, .t_dim_ProgressIndicator, .t_dim_SliderThumb, .t_dim_SwitchThumb, .t_dim_Tooltip {--background0:hsla(0, 0%, 0%, 0.5);--background025:hsla(0, 0%, 0%, 0.75);--background05:hsla(112, 22%, 0%, 1);--background075:hsla(96, 16%, 25%, 1);--color0:hsla(191, 32%, 93%, 1);--color025:hsla(191, 32%, 99%, 1);--color05:hsla(180, 20%, 99%, 0.75);--color075:hsla(180, 20%, 99%, 0.5);--background:hsla(96, 16%, 25%, 1);--backgroundHover:hsla(191, 32%, 50%, 1);--backgroundPress:hsla(191, 32%, 55%, 1);--backgroundFocus:hsla(191, 32%, 61%, 1);--color:hsla(191, 32%, 88%, 1);--colorHover:hsla(191, 32%, 83%, 1);--colorPress:hsla(191, 32%, 88%, 1);--colorFocus:hsla(191, 32%, 83%, 1);--placeholderColor:hsla(191, 32%, 83%, 1);--borderColor:hsla(191, 32%, 61%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 72%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);} + } +:root.t_dark .t_light .t_alt1_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_alt1_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_dim_SliderTrackActive, :root.t_dark .t_light .t_dim_SliderTrackActive, :root.t_light .t_alt1_SliderTrackActive, :root.t_light .t_dark .t_light .t_alt1_SliderTrackActive, :root.t_light .t_dark .t_light .t_dim_SliderTrackActive, :root.t_light .t_dim_SliderTrackActive {--background0:hsla(112, 22%, 0%, 1);--background025:hsla(96, 16%, 25%, 1);--background05:hsla(191, 32%, 50%, 1);--background075:hsla(191, 32%, 55%, 1);--color0:hsla(191, 32%, 83%, 1);--color025:hsla(191, 32%, 88%, 1);--color05:hsla(191, 32%, 93%, 1);--color075:hsla(191, 32%, 99%, 1);--background:hsla(191, 32%, 55%, 1);--backgroundHover:hsla(191, 32%, 61%, 1);--backgroundPress:hsla(191, 32%, 66%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 88%, 1);--colorHover:hsla(191, 32%, 83%, 1);--colorPress:hsla(191, 32%, 88%, 1);--colorFocus:hsla(191, 32%, 83%, 1);--placeholderColor:hsla(191, 32%, 72%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 77%, 1);--borderColorFocus:hsla(191, 32%, 83%, 1);--borderColorPress:hsla(191, 32%, 77%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_alt1_SliderTrackActive, .t_dark .t_light .t_alt1_SliderTrackActive, .t_dark .t_light .t_dim_SliderTrackActive, .t_dim_SliderTrackActive {--background0:hsla(112, 22%, 0%, 1);--background025:hsla(96, 16%, 25%, 1);--background05:hsla(191, 32%, 50%, 1);--background075:hsla(191, 32%, 55%, 1);--color0:hsla(191, 32%, 83%, 1);--color025:hsla(191, 32%, 88%, 1);--color05:hsla(191, 32%, 93%, 1);--color075:hsla(191, 32%, 99%, 1);--background:hsla(191, 32%, 55%, 1);--backgroundHover:hsla(191, 32%, 61%, 1);--backgroundPress:hsla(191, 32%, 66%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 88%, 1);--colorHover:hsla(191, 32%, 83%, 1);--colorPress:hsla(191, 32%, 88%, 1);--colorFocus:hsla(191, 32%, 83%, 1);--placeholderColor:hsla(191, 32%, 72%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 77%, 1);--borderColorFocus:hsla(191, 32%, 83%, 1);--borderColorPress:hsla(191, 32%, 77%, 1);} + } +:root.t_dark .t_light .t_alt2, :root.t_dark .t_light .t_dark .t_light .t_alt2, :root.t_light .t_alt2, :root.t_light .t_dark .t_light .t_alt2 {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);--color1:hsla(191, 32%, 88%, 1);--color2:hsla(191, 32%, 83%, 1);--color3:hsla(191, 32%, 77%, 1);--color4:hsla(191, 32%, 72%, 1);--color5:hsla(191, 32%, 66%, 1);--color6:hsla(191, 32%, 61%, 1);--color7:hsla(191, 32%, 55%, 1);--color8:hsla(191, 32%, 55%, 1);--color9:hsla(191, 32%, 55%, 1);--color10:hsla(191, 32%, 55%, 1);--color11:hsla(191, 32%, 55%, 1);--color12:hsla(191, 32%, 55%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_alt2, .t_dark .t_light .t_alt2 {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);--color1:hsla(191, 32%, 88%, 1);--color2:hsla(191, 32%, 83%, 1);--color3:hsla(191, 32%, 77%, 1);--color4:hsla(191, 32%, 72%, 1);--color5:hsla(191, 32%, 66%, 1);--color6:hsla(191, 32%, 61%, 1);--color7:hsla(191, 32%, 55%, 1);--color8:hsla(191, 32%, 55%, 1);--color9:hsla(191, 32%, 55%, 1);--color10:hsla(191, 32%, 55%, 1);--color11:hsla(191, 32%, 55%, 1);--color12:hsla(191, 32%, 55%, 1);} + } +:root.t_dark .t_light .t_alt2_Button, :root.t_dark .t_light .t_alt2_SliderTrack, :root.t_dark .t_light .t_alt2_Switch, :root.t_dark .t_light .t_alt2_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_alt2_Button, :root.t_dark .t_light .t_dark .t_light .t_alt2_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_alt2_Switch, :root.t_dark .t_light .t_dark .t_light .t_alt2_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_disabled_Button, :root.t_dark .t_light .t_dark .t_light .t_disabled_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_disabled_Switch, :root.t_dark .t_light .t_dark .t_light .t_disabled_TooltipContent, :root.t_dark .t_light .t_disabled_Button, :root.t_dark .t_light .t_disabled_SliderTrack, :root.t_dark .t_light .t_disabled_Switch, :root.t_dark .t_light .t_disabled_TooltipContent, :root.t_light .t_alt2_Button, :root.t_light .t_alt2_SliderTrack, :root.t_light .t_alt2_Switch, :root.t_light .t_alt2_TooltipContent, :root.t_light .t_dark .t_light .t_alt2_Button, :root.t_light .t_dark .t_light .t_alt2_SliderTrack, :root.t_light .t_dark .t_light .t_alt2_Switch, :root.t_light .t_dark .t_light .t_alt2_TooltipContent, :root.t_light .t_dark .t_light .t_disabled_Button, :root.t_light .t_dark .t_light .t_disabled_SliderTrack, :root.t_light .t_dark .t_light .t_disabled_Switch, :root.t_light .t_dark .t_light .t_disabled_TooltipContent, :root.t_light .t_disabled_Button, :root.t_light .t_disabled_SliderTrack, :root.t_light .t_disabled_Switch, :root.t_light .t_disabled_TooltipContent {--background0:hsla(191, 32%, 93%, 1);--background025:hsla(191, 32%, 88%, 1);--background05:hsla(191, 32%, 83%, 1);--background075:hsla(191, 32%, 77%, 1);--color0:hsla(191, 32%, 61%, 1);--color025:hsla(191, 32%, 55%, 1);--color05:hsla(191, 32%, 50%, 1);--color075:hsla(96, 16%, 25%, 1);--background:hsla(191, 32%, 77%, 1);--backgroundHover:hsla(191, 32%, 72%, 1);--backgroundPress:hsla(191, 32%, 66%, 1);--backgroundFocus:hsla(191, 32%, 61%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 72%, 1);--borderColor:hsla(191, 32%, 61%, 1);--borderColorHover:hsla(191, 32%, 55%, 1);--borderColorFocus:hsla(191, 32%, 50%, 1);--borderColorPress:hsla(191, 32%, 55%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_alt2_Button, .t_alt2_SliderTrack, .t_alt2_Switch, .t_alt2_TooltipContent, .t_dark .t_light .t_alt2_Button, .t_dark .t_light .t_alt2_SliderTrack, .t_dark .t_light .t_alt2_Switch, .t_dark .t_light .t_alt2_TooltipContent, .t_dark .t_light .t_disabled_Button, .t_dark .t_light .t_disabled_SliderTrack, .t_dark .t_light .t_disabled_Switch, .t_dark .t_light .t_disabled_TooltipContent, .t_disabled_Button, .t_disabled_SliderTrack, .t_disabled_Switch, .t_disabled_TooltipContent {--background0:hsla(191, 32%, 93%, 1);--background025:hsla(191, 32%, 88%, 1);--background05:hsla(191, 32%, 83%, 1);--background075:hsla(191, 32%, 77%, 1);--color0:hsla(191, 32%, 61%, 1);--color025:hsla(191, 32%, 55%, 1);--color05:hsla(191, 32%, 50%, 1);--color075:hsla(96, 16%, 25%, 1);--background:hsla(191, 32%, 77%, 1);--backgroundHover:hsla(191, 32%, 72%, 1);--backgroundPress:hsla(191, 32%, 66%, 1);--backgroundFocus:hsla(191, 32%, 61%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 72%, 1);--borderColor:hsla(191, 32%, 61%, 1);--borderColorHover:hsla(191, 32%, 55%, 1);--borderColorFocus:hsla(191, 32%, 50%, 1);--borderColorPress:hsla(191, 32%, 55%, 1);} + } +:root.t_dark .t_light .t_alt2_Card, :root.t_dark .t_light .t_alt2_DrawerFrame, :root.t_dark .t_light .t_alt2_Progress, :root.t_dark .t_light .t_alt2_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_alt2_Card, :root.t_dark .t_light .t_dark .t_light .t_alt2_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_alt2_Progress, :root.t_dark .t_light .t_dark .t_light .t_alt2_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_disabled_Card, :root.t_dark .t_light .t_dark .t_light .t_disabled_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_disabled_Progress, :root.t_dark .t_light .t_dark .t_light .t_disabled_TooltipArrow, :root.t_dark .t_light .t_disabled_Card, :root.t_dark .t_light .t_disabled_DrawerFrame, :root.t_dark .t_light .t_disabled_Progress, :root.t_dark .t_light .t_disabled_TooltipArrow, :root.t_light .t_alt2_Card, :root.t_light .t_alt2_DrawerFrame, :root.t_light .t_alt2_Progress, :root.t_light .t_alt2_TooltipArrow, :root.t_light .t_dark .t_light .t_alt2_Card, :root.t_light .t_dark .t_light .t_alt2_DrawerFrame, :root.t_light .t_dark .t_light .t_alt2_Progress, :root.t_light .t_dark .t_light .t_alt2_TooltipArrow, :root.t_light .t_dark .t_light .t_disabled_Card, :root.t_light .t_dark .t_light .t_disabled_DrawerFrame, :root.t_light .t_dark .t_light .t_disabled_Progress, :root.t_light .t_dark .t_light .t_disabled_TooltipArrow, :root.t_light .t_disabled_Card, :root.t_light .t_disabled_DrawerFrame, :root.t_light .t_disabled_Progress, :root.t_light .t_disabled_TooltipArrow {--background0:hsla(191, 32%, 99%, 1);--background025:hsla(191, 32%, 93%, 1);--background05:hsla(191, 32%, 88%, 1);--background075:hsla(191, 32%, 83%, 1);--color0:hsla(191, 32%, 55%, 1);--color025:hsla(191, 32%, 50%, 1);--color05:hsla(96, 16%, 25%, 1);--color075:hsla(112, 22%, 0%, 1);--background:hsla(191, 32%, 83%, 1);--backgroundHover:hsla(191, 32%, 77%, 1);--backgroundPress:hsla(191, 32%, 72%, 1);--backgroundFocus:hsla(191, 32%, 66%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 66%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 61%, 1);--borderColorFocus:hsla(191, 32%, 55%, 1);--borderColorPress:hsla(191, 32%, 61%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_alt2_Card, .t_alt2_DrawerFrame, .t_alt2_Progress, .t_alt2_TooltipArrow, .t_dark .t_light .t_alt2_Card, .t_dark .t_light .t_alt2_DrawerFrame, .t_dark .t_light .t_alt2_Progress, .t_dark .t_light .t_alt2_TooltipArrow, .t_dark .t_light .t_disabled_Card, .t_dark .t_light .t_disabled_DrawerFrame, .t_dark .t_light .t_disabled_Progress, .t_dark .t_light .t_disabled_TooltipArrow, .t_disabled_Card, .t_disabled_DrawerFrame, .t_disabled_Progress, .t_disabled_TooltipArrow {--background0:hsla(191, 32%, 99%, 1);--background025:hsla(191, 32%, 93%, 1);--background05:hsla(191, 32%, 88%, 1);--background075:hsla(191, 32%, 83%, 1);--color0:hsla(191, 32%, 55%, 1);--color025:hsla(191, 32%, 50%, 1);--color05:hsla(96, 16%, 25%, 1);--color075:hsla(112, 22%, 0%, 1);--background:hsla(191, 32%, 83%, 1);--backgroundHover:hsla(191, 32%, 77%, 1);--backgroundPress:hsla(191, 32%, 72%, 1);--backgroundFocus:hsla(191, 32%, 66%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 66%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 61%, 1);--borderColorFocus:hsla(191, 32%, 55%, 1);--borderColorPress:hsla(191, 32%, 61%, 1);} + } +:root.t_dark .t_light .t_alt2_Checkbox, :root.t_dark .t_light .t_alt2_Input, :root.t_dark .t_light .t_alt2_RadioGroupItem, :root.t_dark .t_light .t_alt2_TextArea, :root.t_dark .t_light .t_dark .t_light .t_alt2_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_alt2_Input, :root.t_dark .t_light .t_dark .t_light .t_alt2_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_alt2_TextArea, :root.t_dark .t_light .t_dark .t_light .t_disabled_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_disabled_Input, :root.t_dark .t_light .t_dark .t_light .t_disabled_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_disabled_TextArea, :root.t_dark .t_light .t_disabled_Checkbox, :root.t_dark .t_light .t_disabled_Input, :root.t_dark .t_light .t_disabled_RadioGroupItem, :root.t_dark .t_light .t_disabled_TextArea, :root.t_light .t_alt2_Checkbox, :root.t_light .t_alt2_Input, :root.t_light .t_alt2_RadioGroupItem, :root.t_light .t_alt2_TextArea, :root.t_light .t_dark .t_light .t_alt2_Checkbox, :root.t_light .t_dark .t_light .t_alt2_Input, :root.t_light .t_dark .t_light .t_alt2_RadioGroupItem, :root.t_light .t_dark .t_light .t_alt2_TextArea, :root.t_light .t_dark .t_light .t_disabled_Checkbox, :root.t_light .t_dark .t_light .t_disabled_Input, :root.t_light .t_dark .t_light .t_disabled_RadioGroupItem, :root.t_light .t_dark .t_light .t_disabled_TextArea, :root.t_light .t_disabled_Checkbox, :root.t_light .t_disabled_Input, :root.t_light .t_disabled_RadioGroupItem, :root.t_light .t_disabled_TextArea {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 61%, 1);--borderColorHover:hsla(191, 32%, 55%, 1);--borderColorFocus:hsla(191, 32%, 50%, 1);--borderColorPress:hsla(191, 32%, 55%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_alt2_Checkbox, .t_alt2_Input, .t_alt2_RadioGroupItem, .t_alt2_TextArea, .t_dark .t_light .t_alt2_Checkbox, .t_dark .t_light .t_alt2_Input, .t_dark .t_light .t_alt2_RadioGroupItem, .t_dark .t_light .t_alt2_TextArea, .t_dark .t_light .t_disabled_Checkbox, .t_dark .t_light .t_disabled_Input, .t_dark .t_light .t_disabled_RadioGroupItem, .t_dark .t_light .t_disabled_TextArea, .t_disabled_Checkbox, .t_disabled_Input, .t_disabled_RadioGroupItem, .t_disabled_TextArea {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 61%, 1);--borderColorHover:hsla(191, 32%, 55%, 1);--borderColorFocus:hsla(191, 32%, 50%, 1);--borderColorPress:hsla(191, 32%, 55%, 1);} + } +:root.t_dark .t_light .t_alt2_ProgressIndicator, :root.t_dark .t_light .t_alt2_SliderThumb, :root.t_dark .t_light .t_alt2_SwitchThumb, :root.t_dark .t_light .t_alt2_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_alt2_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_alt2_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_alt2_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_alt2_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_disabled_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_disabled_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_disabled_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_disabled_Tooltip, :root.t_dark .t_light .t_disabled_ProgressIndicator, :root.t_dark .t_light .t_disabled_SliderThumb, :root.t_dark .t_light .t_disabled_SwitchThumb, :root.t_dark .t_light .t_disabled_Tooltip, :root.t_light .t_alt2_ProgressIndicator, :root.t_light .t_alt2_SliderThumb, :root.t_light .t_alt2_SwitchThumb, :root.t_light .t_alt2_Tooltip, :root.t_light .t_dark .t_light .t_alt2_ProgressIndicator, :root.t_light .t_dark .t_light .t_alt2_SliderThumb, :root.t_light .t_dark .t_light .t_alt2_SwitchThumb, :root.t_light .t_dark .t_light .t_alt2_Tooltip, :root.t_light .t_dark .t_light .t_disabled_ProgressIndicator, :root.t_light .t_dark .t_light .t_disabled_SliderThumb, :root.t_light .t_dark .t_light .t_disabled_SwitchThumb, :root.t_light .t_dark .t_light .t_disabled_Tooltip, :root.t_light .t_disabled_ProgressIndicator, :root.t_light .t_disabled_SliderThumb, :root.t_light .t_disabled_SwitchThumb, :root.t_light .t_disabled_Tooltip {--background0:hsla(0, 0%, 0%, 0.75);--background025:hsla(112, 22%, 0%, 1);--background05:hsla(96, 16%, 25%, 1);--background075:hsla(191, 32%, 50%, 1);--color0:hsla(191, 32%, 88%, 1);--color025:hsla(191, 32%, 93%, 1);--color05:hsla(191, 32%, 99%, 1);--color075:hsla(180, 20%, 99%, 0.75);--background:hsla(191, 32%, 50%, 1);--backgroundHover:hsla(191, 32%, 55%, 1);--backgroundPress:hsla(191, 32%, 61%, 1);--backgroundFocus:hsla(191, 32%, 66%, 1);--color:hsla(191, 32%, 83%, 1);--colorHover:hsla(191, 32%, 77%, 1);--colorPress:hsla(191, 32%, 83%, 1);--colorFocus:hsla(191, 32%, 77%, 1);--placeholderColor:hsla(191, 32%, 77%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 77%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_alt2_ProgressIndicator, .t_alt2_SliderThumb, .t_alt2_SwitchThumb, .t_alt2_Tooltip, .t_dark .t_light .t_alt2_ProgressIndicator, .t_dark .t_light .t_alt2_SliderThumb, .t_dark .t_light .t_alt2_SwitchThumb, .t_dark .t_light .t_alt2_Tooltip, .t_dark .t_light .t_disabled_ProgressIndicator, .t_dark .t_light .t_disabled_SliderThumb, .t_dark .t_light .t_disabled_SwitchThumb, .t_dark .t_light .t_disabled_Tooltip, .t_disabled_ProgressIndicator, .t_disabled_SliderThumb, .t_disabled_SwitchThumb, .t_disabled_Tooltip {--background0:hsla(0, 0%, 0%, 0.75);--background025:hsla(112, 22%, 0%, 1);--background05:hsla(96, 16%, 25%, 1);--background075:hsla(191, 32%, 50%, 1);--color0:hsla(191, 32%, 88%, 1);--color025:hsla(191, 32%, 93%, 1);--color05:hsla(191, 32%, 99%, 1);--color075:hsla(180, 20%, 99%, 0.75);--background:hsla(191, 32%, 50%, 1);--backgroundHover:hsla(191, 32%, 55%, 1);--backgroundPress:hsla(191, 32%, 61%, 1);--backgroundFocus:hsla(191, 32%, 66%, 1);--color:hsla(191, 32%, 83%, 1);--colorHover:hsla(191, 32%, 77%, 1);--colorPress:hsla(191, 32%, 83%, 1);--colorFocus:hsla(191, 32%, 77%, 1);--placeholderColor:hsla(191, 32%, 77%, 1);--borderColor:hsla(191, 32%, 66%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 77%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);} + } +:root.t_dark .t_light .t_alt2_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_alt2_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_disabled_SliderTrackActive, :root.t_dark .t_light .t_disabled_SliderTrackActive, :root.t_light .t_alt2_SliderTrackActive, :root.t_light .t_dark .t_light .t_alt2_SliderTrackActive, :root.t_light .t_dark .t_light .t_disabled_SliderTrackActive, :root.t_light .t_disabled_SliderTrackActive {--background0:hsla(96, 16%, 25%, 1);--background025:hsla(191, 32%, 50%, 1);--background05:hsla(191, 32%, 55%, 1);--background075:hsla(191, 32%, 61%, 1);--color0:hsla(191, 32%, 77%, 1);--color025:hsla(191, 32%, 83%, 1);--color05:hsla(191, 32%, 88%, 1);--color075:hsla(191, 32%, 93%, 1);--background:hsla(191, 32%, 61%, 1);--backgroundHover:hsla(191, 32%, 66%, 1);--backgroundPress:hsla(191, 32%, 72%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(191, 32%, 83%, 1);--colorHover:hsla(191, 32%, 77%, 1);--colorPress:hsla(191, 32%, 83%, 1);--colorFocus:hsla(191, 32%, 77%, 1);--placeholderColor:hsla(191, 32%, 66%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 83%, 1);--borderColorFocus:hsla(191, 32%, 88%, 1);--borderColorPress:hsla(191, 32%, 83%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_alt2_SliderTrackActive, .t_dark .t_light .t_alt2_SliderTrackActive, .t_dark .t_light .t_disabled_SliderTrackActive, .t_disabled_SliderTrackActive {--background0:hsla(96, 16%, 25%, 1);--background025:hsla(191, 32%, 50%, 1);--background05:hsla(191, 32%, 55%, 1);--background075:hsla(191, 32%, 61%, 1);--color0:hsla(191, 32%, 77%, 1);--color025:hsla(191, 32%, 83%, 1);--color05:hsla(191, 32%, 88%, 1);--color075:hsla(191, 32%, 93%, 1);--background:hsla(191, 32%, 61%, 1);--backgroundHover:hsla(191, 32%, 66%, 1);--backgroundPress:hsla(191, 32%, 72%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(191, 32%, 83%, 1);--colorHover:hsla(191, 32%, 77%, 1);--colorPress:hsla(191, 32%, 83%, 1);--colorFocus:hsla(191, 32%, 77%, 1);--placeholderColor:hsla(191, 32%, 66%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 83%, 1);--borderColorFocus:hsla(191, 32%, 88%, 1);--borderColorPress:hsla(191, 32%, 83%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_dim, :root.t_dark .t_light .t_dim, :root.t_light .t_dark .t_light .t_dim, :root.t_light .t_dim {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);--color1:hsla(191, 32%, 93%, 1);--color2:hsla(191, 32%, 88%, 1);--color3:hsla(191, 32%, 83%, 1);--color4:hsla(191, 32%, 77%, 1);--color5:hsla(191, 32%, 72%, 1);--color6:hsla(191, 32%, 66%, 1);--color7:hsla(191, 32%, 61%, 1);--color8:hsla(191, 32%, 55%, 1);--color9:hsla(191, 32%, 50%, 1);--color10:hsla(96, 16%, 25%, 1);--color11:hsla(112, 22%, 0%, 1);--color12:hsla(0, 0%, 0%, 0.75);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_dim, .t_dim {--background0:hsla(180, 20%, 99%, 0.5);--background025:hsla(180, 20%, 99%, 0.75);--background05:hsla(191, 32%, 99%, 1);--background075:hsla(191, 32%, 93%, 1);--color0:hsla(96, 16%, 25%, 1);--color025:hsla(112, 22%, 0%, 1);--color05:hsla(0, 0%, 0%, 0.75);--color075:hsla(0, 0%, 0%, 0.5);--background:hsla(191, 32%, 93%, 1);--backgroundHover:hsla(191, 32%, 88%, 1);--backgroundPress:hsla(191, 32%, 83%, 1);--backgroundFocus:hsla(191, 32%, 77%, 1);--color:hsla(191, 32%, 50%, 1);--colorHover:hsla(191, 32%, 55%, 1);--colorPress:hsla(191, 32%, 50%, 1);--colorFocus:hsla(191, 32%, 55%, 1);--placeholderColor:hsla(191, 32%, 55%, 1);--borderColor:hsla(191, 32%, 77%, 1);--borderColorHover:hsla(191, 32%, 72%, 1);--borderColorFocus:hsla(191, 32%, 66%, 1);--borderColorPress:hsla(191, 32%, 72%, 1);--color1:hsla(191, 32%, 93%, 1);--color2:hsla(191, 32%, 88%, 1);--color3:hsla(191, 32%, 83%, 1);--color4:hsla(191, 32%, 77%, 1);--color5:hsla(191, 32%, 72%, 1);--color6:hsla(191, 32%, 66%, 1);--color7:hsla(191, 32%, 61%, 1);--color8:hsla(191, 32%, 55%, 1);--color9:hsla(191, 32%, 50%, 1);--color10:hsla(96, 16%, 25%, 1);--color11:hsla(112, 22%, 0%, 1);--color12:hsla(0, 0%, 0%, 0.75);} + } +:root.t_dark .t_light .t_dark .t_light .t_disabled, :root.t_dark .t_light .t_disabled, :root.t_light .t_dark .t_light .t_disabled, :root.t_light .t_disabled {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);--color1:hsla(191, 32%, 88%, 1);--color2:hsla(191, 32%, 83%, 1);--color3:hsla(191, 32%, 77%, 1);--color4:hsla(191, 32%, 72%, 1);--color5:hsla(191, 32%, 66%, 1);--color6:hsla(191, 32%, 61%, 1);--color7:hsla(191, 32%, 55%, 1);--color8:hsla(191, 32%, 50%, 1);--color9:hsla(96, 16%, 25%, 1);--color10:hsla(112, 22%, 0%, 1);--color11:hsla(0, 0%, 0%, 0.75);--color12:hsla(0, 0%, 0%, 0.5);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_disabled, .t_disabled {--background0:hsla(180, 20%, 99%, 0.75);--background025:hsla(191, 32%, 99%, 1);--background05:hsla(191, 32%, 93%, 1);--background075:hsla(191, 32%, 88%, 1);--color0:hsla(191, 32%, 50%, 1);--color025:hsla(96, 16%, 25%, 1);--color05:hsla(112, 22%, 0%, 1);--color075:hsla(0, 0%, 0%, 0.75);--background:hsla(191, 32%, 88%, 1);--backgroundHover:hsla(191, 32%, 83%, 1);--backgroundPress:hsla(191, 32%, 77%, 1);--backgroundFocus:hsla(191, 32%, 72%, 1);--color:hsla(191, 32%, 55%, 1);--colorHover:hsla(191, 32%, 61%, 1);--colorPress:hsla(191, 32%, 55%, 1);--colorFocus:hsla(191, 32%, 61%, 1);--placeholderColor:hsla(191, 32%, 61%, 1);--borderColor:hsla(191, 32%, 72%, 1);--borderColorHover:hsla(191, 32%, 66%, 1);--borderColorFocus:hsla(191, 32%, 61%, 1);--borderColorPress:hsla(191, 32%, 66%, 1);--color1:hsla(191, 32%, 88%, 1);--color2:hsla(191, 32%, 83%, 1);--color3:hsla(191, 32%, 77%, 1);--color4:hsla(191, 32%, 72%, 1);--color5:hsla(191, 32%, 66%, 1);--color6:hsla(191, 32%, 61%, 1);--color7:hsla(191, 32%, 55%, 1);--color8:hsla(191, 32%, 50%, 1);--color9:hsla(96, 16%, 25%, 1);--color10:hsla(112, 22%, 0%, 1);--color11:hsla(0, 0%, 0%, 0.75);--color12:hsla(0, 0%, 0%, 0.5);} + } +:root.t_dark .t_light .t_dark .t_light .t_error, :root.t_dark .t_light .t_dark .t_light .t_red, :root.t_dark .t_light .t_error, :root.t_dark .t_light .t_red, :root.t_light .t_dark .t_light .t_error, :root.t_light .t_dark .t_light .t_red, :root.t_light .t_error, :root.t_light .t_red {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(0, 60%, 99%, 0.25);--background025:hsla(0, 60%, 99%, 0.5);--background05:hsla(0, 60%, 99%, 0.75);--background075:hsla(0, 70%, 99%, 1);--color0:hsla(0, 70%, 10%, 1);--color025:hsla(0, 69%, 10%, 0.75);--color05:hsla(0, 69%, 10%, 0.5);--color075:hsla(0, 69%, 10%, 0.25);--background:hsla(0, 70%, 99%, 1);--backgroundHover:hsla(0, 70%, 93%, 1);--backgroundPress:hsla(0, 70%, 88%, 1);--backgroundFocus:hsla(0, 70%, 82%, 1);--color:hsla(0, 70%, 15%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 15%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 50%, 1);--borderColor:hsla(0, 70%, 82%, 1);--borderColorHover:hsla(0, 70%, 77%, 1);--borderColorFocus:hsla(0, 70%, 72%, 1);--borderColorPress:hsla(0, 70%, 77%, 1);--color1:hsla(0, 70%, 99%, 1);--color2:hsla(0, 70%, 93%, 1);--color3:hsla(0, 70%, 88%, 1);--color4:hsla(0, 70%, 82%, 1);--color5:hsla(0, 70%, 77%, 1);--color6:hsla(0, 70%, 72%, 1);--color7:hsla(0, 70%, 66%, 1);--color8:hsla(0, 70%, 61%, 1);--color9:hsla(0, 70%, 55%, 1);--color10:hsla(0, 70%, 50%, 1);--color11:hsla(0, 70%, 15%, 1);--color12:hsla(0, 70%, 10%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_error, .t_dark .t_light .t_red, .t_error, .t_red {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(0, 60%, 99%, 0.25);--background025:hsla(0, 60%, 99%, 0.5);--background05:hsla(0, 60%, 99%, 0.75);--background075:hsla(0, 70%, 99%, 1);--color0:hsla(0, 70%, 10%, 1);--color025:hsla(0, 69%, 10%, 0.75);--color05:hsla(0, 69%, 10%, 0.5);--color075:hsla(0, 69%, 10%, 0.25);--background:hsla(0, 70%, 99%, 1);--backgroundHover:hsla(0, 70%, 93%, 1);--backgroundPress:hsla(0, 70%, 88%, 1);--backgroundFocus:hsla(0, 70%, 82%, 1);--color:hsla(0, 70%, 15%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 15%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 50%, 1);--borderColor:hsla(0, 70%, 82%, 1);--borderColorHover:hsla(0, 70%, 77%, 1);--borderColorFocus:hsla(0, 70%, 72%, 1);--borderColorPress:hsla(0, 70%, 77%, 1);--color1:hsla(0, 70%, 99%, 1);--color2:hsla(0, 70%, 93%, 1);--color3:hsla(0, 70%, 88%, 1);--color4:hsla(0, 70%, 82%, 1);--color5:hsla(0, 70%, 77%, 1);--color6:hsla(0, 70%, 72%, 1);--color7:hsla(0, 70%, 66%, 1);--color8:hsla(0, 70%, 61%, 1);--color9:hsla(0, 70%, 55%, 1);--color10:hsla(0, 70%, 50%, 1);--color11:hsla(0, 70%, 15%, 1);--color12:hsla(0, 70%, 10%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_error_Button, :root.t_dark .t_light .t_dark .t_light .t_error_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_error_Switch, :root.t_dark .t_light .t_dark .t_light .t_error_TooltipContent, :root.t_dark .t_light .t_dark .t_light .t_red_Button, :root.t_dark .t_light .t_dark .t_light .t_red_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_red_Switch, :root.t_dark .t_light .t_dark .t_light .t_red_TooltipContent, :root.t_dark .t_light .t_error_Button, :root.t_dark .t_light .t_error_SliderTrack, :root.t_dark .t_light .t_error_Switch, :root.t_dark .t_light .t_error_TooltipContent, :root.t_dark .t_light .t_red_Button, :root.t_dark .t_light .t_red_SliderTrack, :root.t_dark .t_light .t_red_Switch, :root.t_dark .t_light .t_red_TooltipContent, :root.t_light .t_dark .t_light .t_error_Button, :root.t_light .t_dark .t_light .t_error_SliderTrack, :root.t_light .t_dark .t_light .t_error_Switch, :root.t_light .t_dark .t_light .t_error_TooltipContent, :root.t_light .t_dark .t_light .t_red_Button, :root.t_light .t_dark .t_light .t_red_SliderTrack, :root.t_light .t_dark .t_light .t_red_Switch, :root.t_light .t_dark .t_light .t_red_TooltipContent, :root.t_light .t_error_Button, :root.t_light .t_error_SliderTrack, :root.t_light .t_error_Switch, :root.t_light .t_error_TooltipContent, :root.t_light .t_red_Button, :root.t_light .t_red_SliderTrack, :root.t_light .t_red_Switch, :root.t_light .t_red_TooltipContent {--background0:hsla(0, 60%, 99%, 0.75);--background025:hsla(0, 70%, 99%, 1);--background05:hsla(0, 70%, 93%, 1);--background075:hsla(0, 70%, 88%, 1);--color0:hsla(0, 70%, 50%, 1);--color025:hsla(0, 70%, 15%, 1);--color05:hsla(0, 70%, 10%, 1);--color075:hsla(0, 69%, 10%, 0.75);--background:hsla(0, 70%, 88%, 1);--backgroundHover:hsla(0, 70%, 82%, 1);--backgroundPress:hsla(0, 70%, 77%, 1);--backgroundFocus:hsla(0, 70%, 72%, 1);--color:hsla(0, 70%, 15%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 15%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 61%, 1);--borderColor:hsla(0, 70%, 72%, 1);--borderColorHover:hsla(0, 70%, 66%, 1);--borderColorFocus:hsla(0, 70%, 61%, 1);--borderColorPress:hsla(0, 70%, 66%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_error_Button, .t_dark .t_light .t_error_SliderTrack, .t_dark .t_light .t_error_Switch, .t_dark .t_light .t_error_TooltipContent, .t_dark .t_light .t_red_Button, .t_dark .t_light .t_red_SliderTrack, .t_dark .t_light .t_red_Switch, .t_dark .t_light .t_red_TooltipContent, .t_error_Button, .t_error_SliderTrack, .t_error_Switch, .t_error_TooltipContent, .t_red_Button, .t_red_SliderTrack, .t_red_Switch, .t_red_TooltipContent {--background0:hsla(0, 60%, 99%, 0.75);--background025:hsla(0, 70%, 99%, 1);--background05:hsla(0, 70%, 93%, 1);--background075:hsla(0, 70%, 88%, 1);--color0:hsla(0, 70%, 50%, 1);--color025:hsla(0, 70%, 15%, 1);--color05:hsla(0, 70%, 10%, 1);--color075:hsla(0, 69%, 10%, 0.75);--background:hsla(0, 70%, 88%, 1);--backgroundHover:hsla(0, 70%, 82%, 1);--backgroundPress:hsla(0, 70%, 77%, 1);--backgroundFocus:hsla(0, 70%, 72%, 1);--color:hsla(0, 70%, 15%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 15%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 61%, 1);--borderColor:hsla(0, 70%, 72%, 1);--borderColorHover:hsla(0, 70%, 66%, 1);--borderColorFocus:hsla(0, 70%, 61%, 1);--borderColorPress:hsla(0, 70%, 66%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_error_Card, :root.t_dark .t_light .t_dark .t_light .t_error_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_error_Progress, :root.t_dark .t_light .t_dark .t_light .t_error_TooltipArrow, :root.t_dark .t_light .t_dark .t_light .t_red_Card, :root.t_dark .t_light .t_dark .t_light .t_red_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_red_Progress, :root.t_dark .t_light .t_dark .t_light .t_red_TooltipArrow, :root.t_dark .t_light .t_error_Card, :root.t_dark .t_light .t_error_DrawerFrame, :root.t_dark .t_light .t_error_Progress, :root.t_dark .t_light .t_error_TooltipArrow, :root.t_dark .t_light .t_red_Card, :root.t_dark .t_light .t_red_DrawerFrame, :root.t_dark .t_light .t_red_Progress, :root.t_dark .t_light .t_red_TooltipArrow, :root.t_light .t_dark .t_light .t_error_Card, :root.t_light .t_dark .t_light .t_error_DrawerFrame, :root.t_light .t_dark .t_light .t_error_Progress, :root.t_light .t_dark .t_light .t_error_TooltipArrow, :root.t_light .t_dark .t_light .t_red_Card, :root.t_light .t_dark .t_light .t_red_DrawerFrame, :root.t_light .t_dark .t_light .t_red_Progress, :root.t_light .t_dark .t_light .t_red_TooltipArrow, :root.t_light .t_error_Card, :root.t_light .t_error_DrawerFrame, :root.t_light .t_error_Progress, :root.t_light .t_error_TooltipArrow, :root.t_light .t_red_Card, :root.t_light .t_red_DrawerFrame, :root.t_light .t_red_Progress, :root.t_light .t_red_TooltipArrow {--background0:hsla(0, 60%, 99%, 0.5);--background025:hsla(0, 60%, 99%, 0.75);--background05:hsla(0, 70%, 99%, 1);--background075:hsla(0, 70%, 93%, 1);--color0:hsla(0, 70%, 15%, 1);--color025:hsla(0, 70%, 10%, 1);--color05:hsla(0, 69%, 10%, 0.75);--color075:hsla(0, 69%, 10%, 0.5);--background:hsla(0, 70%, 93%, 1);--backgroundHover:hsla(0, 70%, 88%, 1);--backgroundPress:hsla(0, 70%, 82%, 1);--backgroundFocus:hsla(0, 70%, 77%, 1);--color:hsla(0, 70%, 15%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 15%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 55%, 1);--borderColor:hsla(0, 70%, 77%, 1);--borderColorHover:hsla(0, 70%, 72%, 1);--borderColorFocus:hsla(0, 70%, 66%, 1);--borderColorPress:hsla(0, 70%, 72%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_error_Card, .t_dark .t_light .t_error_DrawerFrame, .t_dark .t_light .t_error_Progress, .t_dark .t_light .t_error_TooltipArrow, .t_dark .t_light .t_red_Card, .t_dark .t_light .t_red_DrawerFrame, .t_dark .t_light .t_red_Progress, .t_dark .t_light .t_red_TooltipArrow, .t_error_Card, .t_error_DrawerFrame, .t_error_Progress, .t_error_TooltipArrow, .t_red_Card, .t_red_DrawerFrame, .t_red_Progress, .t_red_TooltipArrow {--background0:hsla(0, 60%, 99%, 0.5);--background025:hsla(0, 60%, 99%, 0.75);--background05:hsla(0, 70%, 99%, 1);--background075:hsla(0, 70%, 93%, 1);--color0:hsla(0, 70%, 15%, 1);--color025:hsla(0, 70%, 10%, 1);--color05:hsla(0, 69%, 10%, 0.75);--color075:hsla(0, 69%, 10%, 0.5);--background:hsla(0, 70%, 93%, 1);--backgroundHover:hsla(0, 70%, 88%, 1);--backgroundPress:hsla(0, 70%, 82%, 1);--backgroundFocus:hsla(0, 70%, 77%, 1);--color:hsla(0, 70%, 15%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 15%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 55%, 1);--borderColor:hsla(0, 70%, 77%, 1);--borderColorHover:hsla(0, 70%, 72%, 1);--borderColorFocus:hsla(0, 70%, 66%, 1);--borderColorPress:hsla(0, 70%, 72%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_error_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_error_Input, :root.t_dark .t_light .t_dark .t_light .t_error_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_error_TextArea, :root.t_dark .t_light .t_dark .t_light .t_red_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_red_Input, :root.t_dark .t_light .t_dark .t_light .t_red_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_red_TextArea, :root.t_dark .t_light .t_error_Checkbox, :root.t_dark .t_light .t_error_Input, :root.t_dark .t_light .t_error_RadioGroupItem, :root.t_dark .t_light .t_error_TextArea, :root.t_dark .t_light .t_red_Checkbox, :root.t_dark .t_light .t_red_Input, :root.t_dark .t_light .t_red_RadioGroupItem, :root.t_dark .t_light .t_red_TextArea, :root.t_light .t_dark .t_light .t_error_Checkbox, :root.t_light .t_dark .t_light .t_error_Input, :root.t_light .t_dark .t_light .t_error_RadioGroupItem, :root.t_light .t_dark .t_light .t_error_TextArea, :root.t_light .t_dark .t_light .t_red_Checkbox, :root.t_light .t_dark .t_light .t_red_Input, :root.t_light .t_dark .t_light .t_red_RadioGroupItem, :root.t_light .t_dark .t_light .t_red_TextArea, :root.t_light .t_error_Checkbox, :root.t_light .t_error_Input, :root.t_light .t_error_RadioGroupItem, :root.t_light .t_error_TextArea, :root.t_light .t_red_Checkbox, :root.t_light .t_red_Input, :root.t_light .t_red_RadioGroupItem, :root.t_light .t_red_TextArea {--accentBackground:hsla(0, 60%, 99%, 0);--accentColor:hsla(0, 60%, 99%, 0);--background0:hsla(0, 60%, 99%, 0.25);--background025:hsla(0, 60%, 99%, 0.5);--background05:hsla(0, 60%, 99%, 0.75);--background075:hsla(0, 70%, 99%, 1);--color0:hsla(0, 70%, 10%, 1);--color025:hsla(0, 69%, 10%, 0.75);--color05:hsla(0, 69%, 10%, 0.5);--color075:hsla(0, 69%, 10%, 0.25);--background:hsla(0, 70%, 99%, 1);--backgroundHover:hsla(0, 70%, 93%, 1);--backgroundPress:hsla(0, 70%, 88%, 1);--backgroundFocus:hsla(0, 70%, 82%, 1);--color:hsla(0, 70%, 15%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 15%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 50%, 1);--borderColor:hsla(0, 70%, 72%, 1);--borderColorHover:hsla(0, 70%, 66%, 1);--borderColorFocus:hsla(0, 70%, 61%, 1);--borderColorPress:hsla(0, 70%, 66%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_error_Checkbox, .t_dark .t_light .t_error_Input, .t_dark .t_light .t_error_RadioGroupItem, .t_dark .t_light .t_error_TextArea, .t_dark .t_light .t_red_Checkbox, .t_dark .t_light .t_red_Input, .t_dark .t_light .t_red_RadioGroupItem, .t_dark .t_light .t_red_TextArea, .t_error_Checkbox, .t_error_Input, .t_error_RadioGroupItem, .t_error_TextArea, .t_red_Checkbox, .t_red_Input, .t_red_RadioGroupItem, .t_red_TextArea {--accentBackground:hsla(0, 60%, 99%, 0);--accentColor:hsla(0, 60%, 99%, 0);--background0:hsla(0, 60%, 99%, 0.25);--background025:hsla(0, 60%, 99%, 0.5);--background05:hsla(0, 60%, 99%, 0.75);--background075:hsla(0, 70%, 99%, 1);--color0:hsla(0, 70%, 10%, 1);--color025:hsla(0, 69%, 10%, 0.75);--color05:hsla(0, 69%, 10%, 0.5);--color075:hsla(0, 69%, 10%, 0.25);--background:hsla(0, 70%, 99%, 1);--backgroundHover:hsla(0, 70%, 93%, 1);--backgroundPress:hsla(0, 70%, 88%, 1);--backgroundFocus:hsla(0, 70%, 82%, 1);--color:hsla(0, 70%, 15%, 1);--colorHover:hsla(0, 70%, 50%, 1);--colorPress:hsla(0, 70%, 15%, 1);--colorFocus:hsla(0, 70%, 50%, 1);--placeholderColor:hsla(0, 70%, 50%, 1);--borderColor:hsla(0, 70%, 72%, 1);--borderColorHover:hsla(0, 70%, 66%, 1);--borderColorFocus:hsla(0, 70%, 61%, 1);--borderColorPress:hsla(0, 70%, 66%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_error_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_error_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_error_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_error_Tooltip, :root.t_dark .t_light .t_dark .t_light .t_red_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_red_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_red_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_red_Tooltip, :root.t_dark .t_light .t_error_ProgressIndicator, :root.t_dark .t_light .t_error_SliderThumb, :root.t_dark .t_light .t_error_SwitchThumb, :root.t_dark .t_light .t_error_Tooltip, :root.t_dark .t_light .t_red_ProgressIndicator, :root.t_dark .t_light .t_red_SliderThumb, :root.t_dark .t_light .t_red_SwitchThumb, :root.t_dark .t_light .t_red_Tooltip, :root.t_light .t_dark .t_light .t_error_ProgressIndicator, :root.t_light .t_dark .t_light .t_error_SliderThumb, :root.t_light .t_dark .t_light .t_error_SwitchThumb, :root.t_light .t_dark .t_light .t_error_Tooltip, :root.t_light .t_dark .t_light .t_red_ProgressIndicator, :root.t_light .t_dark .t_light .t_red_SliderThumb, :root.t_light .t_dark .t_light .t_red_SwitchThumb, :root.t_light .t_dark .t_light .t_red_Tooltip, :root.t_light .t_error_ProgressIndicator, :root.t_light .t_error_SliderThumb, :root.t_light .t_error_SwitchThumb, :root.t_light .t_error_Tooltip, :root.t_light .t_red_ProgressIndicator, :root.t_light .t_red_SliderThumb, :root.t_light .t_red_SwitchThumb, :root.t_light .t_red_Tooltip {--accentBackground:hsla(0, 60%, 99%, 0);--accentColor:hsla(0, 60%, 99%, 0);--background0:hsla(0, 69%, 10%, 0.25);--background025:hsla(0, 69%, 10%, 0.5);--background05:hsla(0, 69%, 10%, 0.75);--background075:hsla(0, 70%, 10%, 1);--color0:hsla(0, 70%, 99%, 1);--color025:hsla(0, 60%, 99%, 0.75);--color05:hsla(0, 60%, 99%, 0.5);--color075:hsla(0, 60%, 99%, 0.25);--background:hsla(0, 70%, 10%, 1);--backgroundHover:hsla(0, 70%, 15%, 1);--backgroundPress:hsla(0, 70%, 50%, 1);--backgroundFocus:hsla(0, 70%, 55%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 88%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 88%, 1);--placeholderColor:hsla(0, 70%, 88%, 1);--borderColor:hsla(0, 70%, 55%, 1);--borderColorHover:hsla(0, 70%, 61%, 1);--borderColorFocus:hsla(0, 70%, 66%, 1);--borderColorPress:hsla(0, 70%, 61%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_error_ProgressIndicator, .t_dark .t_light .t_error_SliderThumb, .t_dark .t_light .t_error_SwitchThumb, .t_dark .t_light .t_error_Tooltip, .t_dark .t_light .t_red_ProgressIndicator, .t_dark .t_light .t_red_SliderThumb, .t_dark .t_light .t_red_SwitchThumb, .t_dark .t_light .t_red_Tooltip, .t_error_ProgressIndicator, .t_error_SliderThumb, .t_error_SwitchThumb, .t_error_Tooltip, .t_red_ProgressIndicator, .t_red_SliderThumb, .t_red_SwitchThumb, .t_red_Tooltip {--accentBackground:hsla(0, 60%, 99%, 0);--accentColor:hsla(0, 60%, 99%, 0);--background0:hsla(0, 69%, 10%, 0.25);--background025:hsla(0, 69%, 10%, 0.5);--background05:hsla(0, 69%, 10%, 0.75);--background075:hsla(0, 70%, 10%, 1);--color0:hsla(0, 70%, 99%, 1);--color025:hsla(0, 60%, 99%, 0.75);--color05:hsla(0, 60%, 99%, 0.5);--color075:hsla(0, 60%, 99%, 0.25);--background:hsla(0, 70%, 10%, 1);--backgroundHover:hsla(0, 70%, 15%, 1);--backgroundPress:hsla(0, 70%, 50%, 1);--backgroundFocus:hsla(0, 70%, 55%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 88%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 88%, 1);--placeholderColor:hsla(0, 70%, 88%, 1);--borderColor:hsla(0, 70%, 55%, 1);--borderColorHover:hsla(0, 70%, 61%, 1);--borderColorFocus:hsla(0, 70%, 66%, 1);--borderColorPress:hsla(0, 70%, 61%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_error_SliderTrackActive, :root.t_dark .t_light .t_dark .t_light .t_red_SliderTrackActive, :root.t_dark .t_light .t_error_SliderTrackActive, :root.t_dark .t_light .t_red_SliderTrackActive, :root.t_light .t_dark .t_light .t_error_SliderTrackActive, :root.t_light .t_dark .t_light .t_red_SliderTrackActive, :root.t_light .t_error_SliderTrackActive, :root.t_light .t_red_SliderTrackActive {--accentBackground:hsla(0, 60%, 99%, 0);--accentColor:hsla(0, 60%, 99%, 0);--background0:hsla(0, 69%, 10%, 0.75);--background025:hsla(0, 70%, 10%, 1);--background05:hsla(0, 70%, 15%, 1);--background075:hsla(0, 70%, 50%, 1);--color0:hsla(0, 70%, 88%, 1);--color025:hsla(0, 70%, 93%, 1);--color05:hsla(0, 70%, 99%, 1);--color075:hsla(0, 60%, 99%, 0.75);--background:hsla(0, 70%, 50%, 1);--backgroundHover:hsla(0, 70%, 55%, 1);--backgroundPress:hsla(0, 70%, 61%, 1);--backgroundFocus:hsla(0, 70%, 66%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 88%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 88%, 1);--placeholderColor:hsla(0, 70%, 77%, 1);--borderColor:hsla(0, 70%, 66%, 1);--borderColorHover:hsla(0, 70%, 72%, 1);--borderColorFocus:hsla(0, 70%, 77%, 1);--borderColorPress:hsla(0, 70%, 72%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_error_SliderTrackActive, .t_dark .t_light .t_red_SliderTrackActive, .t_error_SliderTrackActive, .t_red_SliderTrackActive {--accentBackground:hsla(0, 60%, 99%, 0);--accentColor:hsla(0, 60%, 99%, 0);--background0:hsla(0, 69%, 10%, 0.75);--background025:hsla(0, 70%, 10%, 1);--background05:hsla(0, 70%, 15%, 1);--background075:hsla(0, 70%, 50%, 1);--color0:hsla(0, 70%, 88%, 1);--color025:hsla(0, 70%, 93%, 1);--color05:hsla(0, 70%, 99%, 1);--color075:hsla(0, 60%, 99%, 0.75);--background:hsla(0, 70%, 50%, 1);--backgroundHover:hsla(0, 70%, 55%, 1);--backgroundPress:hsla(0, 70%, 61%, 1);--backgroundFocus:hsla(0, 70%, 66%, 1);--color:hsla(0, 70%, 93%, 1);--colorHover:hsla(0, 70%, 88%, 1);--colorPress:hsla(0, 70%, 93%, 1);--colorFocus:hsla(0, 70%, 88%, 1);--placeholderColor:hsla(0, 70%, 77%, 1);--borderColor:hsla(0, 70%, 66%, 1);--borderColorHover:hsla(0, 70%, 72%, 1);--borderColorFocus:hsla(0, 70%, 77%, 1);--borderColorPress:hsla(0, 70%, 72%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_success, :root.t_dark .t_light .t_success, :root.t_light .t_dark .t_light .t_success, :root.t_light .t_success {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(160, 60%, 99%, 0.25);--background025:hsla(160, 60%, 99%, 0.5);--background05:hsla(160, 60%, 99%, 0.75);--background075:hsla(153, 70%, 99%, 1);--color0:hsla(153, 70%, 10%, 1);--color025:hsla(153, 69%, 10%, 0.75);--color05:hsla(153, 69%, 10%, 0.5);--color075:hsla(153, 69%, 10%, 0.25);--background:hsla(153, 70%, 99%, 1);--backgroundHover:hsla(153, 70%, 93%, 1);--backgroundPress:hsla(153, 70%, 88%, 1);--backgroundFocus:hsla(153, 70%, 82%, 1);--color:hsla(153, 70%, 15%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 15%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 50%, 1);--borderColor:hsla(153, 70%, 82%, 1);--borderColorHover:hsla(153, 70%, 77%, 1);--borderColorFocus:hsla(153, 70%, 72%, 1);--borderColorPress:hsla(153, 70%, 77%, 1);--color1:hsla(153, 70%, 99%, 1);--color2:hsla(153, 70%, 93%, 1);--color3:hsla(153, 70%, 88%, 1);--color4:hsla(153, 70%, 82%, 1);--color5:hsla(153, 70%, 77%, 1);--color6:hsla(153, 70%, 72%, 1);--color7:hsla(153, 70%, 66%, 1);--color8:hsla(153, 70%, 61%, 1);--color9:hsla(153, 70%, 55%, 1);--color10:hsla(153, 70%, 50%, 1);--color11:hsla(153, 70%, 15%, 1);--color12:hsla(153, 70%, 10%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_success, .t_success {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(160, 60%, 99%, 0.25);--background025:hsla(160, 60%, 99%, 0.5);--background05:hsla(160, 60%, 99%, 0.75);--background075:hsla(153, 70%, 99%, 1);--color0:hsla(153, 70%, 10%, 1);--color025:hsla(153, 69%, 10%, 0.75);--color05:hsla(153, 69%, 10%, 0.5);--color075:hsla(153, 69%, 10%, 0.25);--background:hsla(153, 70%, 99%, 1);--backgroundHover:hsla(153, 70%, 93%, 1);--backgroundPress:hsla(153, 70%, 88%, 1);--backgroundFocus:hsla(153, 70%, 82%, 1);--color:hsla(153, 70%, 15%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 15%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 50%, 1);--borderColor:hsla(153, 70%, 82%, 1);--borderColorHover:hsla(153, 70%, 77%, 1);--borderColorFocus:hsla(153, 70%, 72%, 1);--borderColorPress:hsla(153, 70%, 77%, 1);--color1:hsla(153, 70%, 99%, 1);--color2:hsla(153, 70%, 93%, 1);--color3:hsla(153, 70%, 88%, 1);--color4:hsla(153, 70%, 82%, 1);--color5:hsla(153, 70%, 77%, 1);--color6:hsla(153, 70%, 72%, 1);--color7:hsla(153, 70%, 66%, 1);--color8:hsla(153, 70%, 61%, 1);--color9:hsla(153, 70%, 55%, 1);--color10:hsla(153, 70%, 50%, 1);--color11:hsla(153, 70%, 15%, 1);--color12:hsla(153, 70%, 10%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_success_Button, :root.t_dark .t_light .t_dark .t_light .t_success_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_success_Switch, :root.t_dark .t_light .t_dark .t_light .t_success_TooltipContent, :root.t_dark .t_light .t_success_Button, :root.t_dark .t_light .t_success_SliderTrack, :root.t_dark .t_light .t_success_Switch, :root.t_dark .t_light .t_success_TooltipContent, :root.t_light .t_dark .t_light .t_success_Button, :root.t_light .t_dark .t_light .t_success_SliderTrack, :root.t_light .t_dark .t_light .t_success_Switch, :root.t_light .t_dark .t_light .t_success_TooltipContent, :root.t_light .t_success_Button, :root.t_light .t_success_SliderTrack, :root.t_light .t_success_Switch, :root.t_light .t_success_TooltipContent {--background0:hsla(160, 60%, 99%, 0.75);--background025:hsla(153, 70%, 99%, 1);--background05:hsla(153, 70%, 93%, 1);--background075:hsla(153, 70%, 88%, 1);--color0:hsla(153, 70%, 50%, 1);--color025:hsla(153, 70%, 15%, 1);--color05:hsla(153, 70%, 10%, 1);--color075:hsla(153, 69%, 10%, 0.75);--background:hsla(153, 70%, 88%, 1);--backgroundHover:hsla(153, 70%, 82%, 1);--backgroundPress:hsla(153, 70%, 77%, 1);--backgroundFocus:hsla(153, 70%, 72%, 1);--color:hsla(153, 70%, 15%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 15%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 61%, 1);--borderColor:hsla(153, 70%, 72%, 1);--borderColorHover:hsla(153, 70%, 66%, 1);--borderColorFocus:hsla(153, 70%, 61%, 1);--borderColorPress:hsla(153, 70%, 66%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_success_Button, .t_dark .t_light .t_success_SliderTrack, .t_dark .t_light .t_success_Switch, .t_dark .t_light .t_success_TooltipContent, .t_success_Button, .t_success_SliderTrack, .t_success_Switch, .t_success_TooltipContent {--background0:hsla(160, 60%, 99%, 0.75);--background025:hsla(153, 70%, 99%, 1);--background05:hsla(153, 70%, 93%, 1);--background075:hsla(153, 70%, 88%, 1);--color0:hsla(153, 70%, 50%, 1);--color025:hsla(153, 70%, 15%, 1);--color05:hsla(153, 70%, 10%, 1);--color075:hsla(153, 69%, 10%, 0.75);--background:hsla(153, 70%, 88%, 1);--backgroundHover:hsla(153, 70%, 82%, 1);--backgroundPress:hsla(153, 70%, 77%, 1);--backgroundFocus:hsla(153, 70%, 72%, 1);--color:hsla(153, 70%, 15%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 15%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 61%, 1);--borderColor:hsla(153, 70%, 72%, 1);--borderColorHover:hsla(153, 70%, 66%, 1);--borderColorFocus:hsla(153, 70%, 61%, 1);--borderColorPress:hsla(153, 70%, 66%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_success_Card, :root.t_dark .t_light .t_dark .t_light .t_success_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_success_Progress, :root.t_dark .t_light .t_dark .t_light .t_success_TooltipArrow, :root.t_dark .t_light .t_success_Card, :root.t_dark .t_light .t_success_DrawerFrame, :root.t_dark .t_light .t_success_Progress, :root.t_dark .t_light .t_success_TooltipArrow, :root.t_light .t_dark .t_light .t_success_Card, :root.t_light .t_dark .t_light .t_success_DrawerFrame, :root.t_light .t_dark .t_light .t_success_Progress, :root.t_light .t_dark .t_light .t_success_TooltipArrow, :root.t_light .t_success_Card, :root.t_light .t_success_DrawerFrame, :root.t_light .t_success_Progress, :root.t_light .t_success_TooltipArrow {--background0:hsla(160, 60%, 99%, 0.5);--background025:hsla(160, 60%, 99%, 0.75);--background05:hsla(153, 70%, 99%, 1);--background075:hsla(153, 70%, 93%, 1);--color0:hsla(153, 70%, 15%, 1);--color025:hsla(153, 70%, 10%, 1);--color05:hsla(153, 69%, 10%, 0.75);--color075:hsla(153, 69%, 10%, 0.5);--background:hsla(153, 70%, 93%, 1);--backgroundHover:hsla(153, 70%, 88%, 1);--backgroundPress:hsla(153, 70%, 82%, 1);--backgroundFocus:hsla(153, 70%, 77%, 1);--color:hsla(153, 70%, 15%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 15%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 55%, 1);--borderColor:hsla(153, 70%, 77%, 1);--borderColorHover:hsla(153, 70%, 72%, 1);--borderColorFocus:hsla(153, 70%, 66%, 1);--borderColorPress:hsla(153, 70%, 72%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_success_Card, .t_dark .t_light .t_success_DrawerFrame, .t_dark .t_light .t_success_Progress, .t_dark .t_light .t_success_TooltipArrow, .t_success_Card, .t_success_DrawerFrame, .t_success_Progress, .t_success_TooltipArrow {--background0:hsla(160, 60%, 99%, 0.5);--background025:hsla(160, 60%, 99%, 0.75);--background05:hsla(153, 70%, 99%, 1);--background075:hsla(153, 70%, 93%, 1);--color0:hsla(153, 70%, 15%, 1);--color025:hsla(153, 70%, 10%, 1);--color05:hsla(153, 69%, 10%, 0.75);--color075:hsla(153, 69%, 10%, 0.5);--background:hsla(153, 70%, 93%, 1);--backgroundHover:hsla(153, 70%, 88%, 1);--backgroundPress:hsla(153, 70%, 82%, 1);--backgroundFocus:hsla(153, 70%, 77%, 1);--color:hsla(153, 70%, 15%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 15%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 55%, 1);--borderColor:hsla(153, 70%, 77%, 1);--borderColorHover:hsla(153, 70%, 72%, 1);--borderColorFocus:hsla(153, 70%, 66%, 1);--borderColorPress:hsla(153, 70%, 72%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_success_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_success_Input, :root.t_dark .t_light .t_dark .t_light .t_success_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_success_TextArea, :root.t_dark .t_light .t_success_Checkbox, :root.t_dark .t_light .t_success_Input, :root.t_dark .t_light .t_success_RadioGroupItem, :root.t_dark .t_light .t_success_TextArea, :root.t_light .t_dark .t_light .t_success_Checkbox, :root.t_light .t_dark .t_light .t_success_Input, :root.t_light .t_dark .t_light .t_success_RadioGroupItem, :root.t_light .t_dark .t_light .t_success_TextArea, :root.t_light .t_success_Checkbox, :root.t_light .t_success_Input, :root.t_light .t_success_RadioGroupItem, :root.t_light .t_success_TextArea {--accentBackground:hsla(160, 60%, 99%, 0);--accentColor:hsla(160, 60%, 99%, 0);--background0:hsla(160, 60%, 99%, 0.25);--background025:hsla(160, 60%, 99%, 0.5);--background05:hsla(160, 60%, 99%, 0.75);--background075:hsla(153, 70%, 99%, 1);--color0:hsla(153, 70%, 10%, 1);--color025:hsla(153, 69%, 10%, 0.75);--color05:hsla(153, 69%, 10%, 0.5);--color075:hsla(153, 69%, 10%, 0.25);--background:hsla(153, 70%, 99%, 1);--backgroundHover:hsla(153, 70%, 93%, 1);--backgroundPress:hsla(153, 70%, 88%, 1);--backgroundFocus:hsla(153, 70%, 82%, 1);--color:hsla(153, 70%, 15%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 15%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 50%, 1);--borderColor:hsla(153, 70%, 72%, 1);--borderColorHover:hsla(153, 70%, 66%, 1);--borderColorFocus:hsla(153, 70%, 61%, 1);--borderColorPress:hsla(153, 70%, 66%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_success_Checkbox, .t_dark .t_light .t_success_Input, .t_dark .t_light .t_success_RadioGroupItem, .t_dark .t_light .t_success_TextArea, .t_success_Checkbox, .t_success_Input, .t_success_RadioGroupItem, .t_success_TextArea {--accentBackground:hsla(160, 60%, 99%, 0);--accentColor:hsla(160, 60%, 99%, 0);--background0:hsla(160, 60%, 99%, 0.25);--background025:hsla(160, 60%, 99%, 0.5);--background05:hsla(160, 60%, 99%, 0.75);--background075:hsla(153, 70%, 99%, 1);--color0:hsla(153, 70%, 10%, 1);--color025:hsla(153, 69%, 10%, 0.75);--color05:hsla(153, 69%, 10%, 0.5);--color075:hsla(153, 69%, 10%, 0.25);--background:hsla(153, 70%, 99%, 1);--backgroundHover:hsla(153, 70%, 93%, 1);--backgroundPress:hsla(153, 70%, 88%, 1);--backgroundFocus:hsla(153, 70%, 82%, 1);--color:hsla(153, 70%, 15%, 1);--colorHover:hsla(153, 70%, 50%, 1);--colorPress:hsla(153, 70%, 15%, 1);--colorFocus:hsla(153, 70%, 50%, 1);--placeholderColor:hsla(153, 70%, 50%, 1);--borderColor:hsla(153, 70%, 72%, 1);--borderColorHover:hsla(153, 70%, 66%, 1);--borderColorFocus:hsla(153, 70%, 61%, 1);--borderColorPress:hsla(153, 70%, 66%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_success_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_success_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_success_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_success_Tooltip, :root.t_dark .t_light .t_success_ProgressIndicator, :root.t_dark .t_light .t_success_SliderThumb, :root.t_dark .t_light .t_success_SwitchThumb, :root.t_dark .t_light .t_success_Tooltip, :root.t_light .t_dark .t_light .t_success_ProgressIndicator, :root.t_light .t_dark .t_light .t_success_SliderThumb, :root.t_light .t_dark .t_light .t_success_SwitchThumb, :root.t_light .t_dark .t_light .t_success_Tooltip, :root.t_light .t_success_ProgressIndicator, :root.t_light .t_success_SliderThumb, :root.t_light .t_success_SwitchThumb, :root.t_light .t_success_Tooltip {--accentBackground:hsla(160, 60%, 99%, 0);--accentColor:hsla(160, 60%, 99%, 0);--background0:hsla(153, 69%, 10%, 0.25);--background025:hsla(153, 69%, 10%, 0.5);--background05:hsla(153, 69%, 10%, 0.75);--background075:hsla(153, 70%, 10%, 1);--color0:hsla(153, 70%, 99%, 1);--color025:hsla(160, 60%, 99%, 0.75);--color05:hsla(160, 60%, 99%, 0.5);--color075:hsla(160, 60%, 99%, 0.25);--background:hsla(153, 70%, 10%, 1);--backgroundHover:hsla(153, 70%, 15%, 1);--backgroundPress:hsla(153, 70%, 50%, 1);--backgroundFocus:hsla(153, 70%, 55%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 88%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 88%, 1);--placeholderColor:hsla(153, 70%, 88%, 1);--borderColor:hsla(153, 70%, 55%, 1);--borderColorHover:hsla(153, 70%, 61%, 1);--borderColorFocus:hsla(153, 70%, 66%, 1);--borderColorPress:hsla(153, 70%, 61%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_success_ProgressIndicator, .t_dark .t_light .t_success_SliderThumb, .t_dark .t_light .t_success_SwitchThumb, .t_dark .t_light .t_success_Tooltip, .t_success_ProgressIndicator, .t_success_SliderThumb, .t_success_SwitchThumb, .t_success_Tooltip {--accentBackground:hsla(160, 60%, 99%, 0);--accentColor:hsla(160, 60%, 99%, 0);--background0:hsla(153, 69%, 10%, 0.25);--background025:hsla(153, 69%, 10%, 0.5);--background05:hsla(153, 69%, 10%, 0.75);--background075:hsla(153, 70%, 10%, 1);--color0:hsla(153, 70%, 99%, 1);--color025:hsla(160, 60%, 99%, 0.75);--color05:hsla(160, 60%, 99%, 0.5);--color075:hsla(160, 60%, 99%, 0.25);--background:hsla(153, 70%, 10%, 1);--backgroundHover:hsla(153, 70%, 15%, 1);--backgroundPress:hsla(153, 70%, 50%, 1);--backgroundFocus:hsla(153, 70%, 55%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 88%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 88%, 1);--placeholderColor:hsla(153, 70%, 88%, 1);--borderColor:hsla(153, 70%, 55%, 1);--borderColorHover:hsla(153, 70%, 61%, 1);--borderColorFocus:hsla(153, 70%, 66%, 1);--borderColorPress:hsla(153, 70%, 61%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_success_SliderTrackActive, :root.t_dark .t_light .t_success_SliderTrackActive, :root.t_light .t_dark .t_light .t_success_SliderTrackActive, :root.t_light .t_success_SliderTrackActive {--accentBackground:hsla(160, 60%, 99%, 0);--accentColor:hsla(160, 60%, 99%, 0);--background0:hsla(153, 69%, 10%, 0.75);--background025:hsla(153, 70%, 10%, 1);--background05:hsla(153, 70%, 15%, 1);--background075:hsla(153, 70%, 50%, 1);--color0:hsla(153, 70%, 88%, 1);--color025:hsla(153, 70%, 93%, 1);--color05:hsla(153, 70%, 99%, 1);--color075:hsla(160, 60%, 99%, 0.75);--background:hsla(153, 70%, 50%, 1);--backgroundHover:hsla(153, 70%, 55%, 1);--backgroundPress:hsla(153, 70%, 61%, 1);--backgroundFocus:hsla(153, 70%, 66%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 88%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 88%, 1);--placeholderColor:hsla(153, 70%, 77%, 1);--borderColor:hsla(153, 70%, 66%, 1);--borderColorHover:hsla(153, 70%, 72%, 1);--borderColorFocus:hsla(153, 70%, 77%, 1);--borderColorPress:hsla(153, 70%, 72%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_success_SliderTrackActive, .t_success_SliderTrackActive {--accentBackground:hsla(160, 60%, 99%, 0);--accentColor:hsla(160, 60%, 99%, 0);--background0:hsla(153, 69%, 10%, 0.75);--background025:hsla(153, 70%, 10%, 1);--background05:hsla(153, 70%, 15%, 1);--background075:hsla(153, 70%, 50%, 1);--color0:hsla(153, 70%, 88%, 1);--color025:hsla(153, 70%, 93%, 1);--color05:hsla(153, 70%, 99%, 1);--color075:hsla(160, 60%, 99%, 0.75);--background:hsla(153, 70%, 50%, 1);--backgroundHover:hsla(153, 70%, 55%, 1);--backgroundPress:hsla(153, 70%, 61%, 1);--backgroundFocus:hsla(153, 70%, 66%, 1);--color:hsla(153, 70%, 93%, 1);--colorHover:hsla(153, 70%, 88%, 1);--colorPress:hsla(153, 70%, 93%, 1);--colorFocus:hsla(153, 70%, 88%, 1);--placeholderColor:hsla(153, 70%, 77%, 1);--borderColor:hsla(153, 70%, 66%, 1);--borderColorHover:hsla(153, 70%, 72%, 1);--borderColorFocus:hsla(153, 70%, 77%, 1);--borderColorPress:hsla(153, 70%, 72%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_warning, :root.t_dark .t_light .t_warning, :root.t_light .t_dark .t_light .t_warning, :root.t_light .t_warning {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(60, 60%, 99%, 0.25);--background025:hsla(60, 60%, 99%, 0.5);--background05:hsla(60, 60%, 99%, 0.75);--background075:hsla(48, 70%, 99%, 1);--color0:hsla(48, 70%, 10%, 1);--color025:hsla(48, 69%, 10%, 0.75);--color05:hsla(48, 69%, 10%, 0.5);--color075:hsla(48, 69%, 10%, 0.25);--background:hsla(48, 70%, 99%, 1);--backgroundHover:hsla(48, 70%, 93%, 1);--backgroundPress:hsla(48, 70%, 88%, 1);--backgroundFocus:hsla(48, 70%, 82%, 1);--color:hsla(48, 70%, 15%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 15%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 50%, 1);--borderColor:hsla(48, 70%, 82%, 1);--borderColorHover:hsla(48, 70%, 77%, 1);--borderColorFocus:hsla(48, 70%, 72%, 1);--borderColorPress:hsla(48, 70%, 77%, 1);--color1:hsla(48, 70%, 99%, 1);--color2:hsla(48, 70%, 93%, 1);--color3:hsla(48, 70%, 88%, 1);--color4:hsla(48, 70%, 82%, 1);--color5:hsla(48, 70%, 77%, 1);--color6:hsla(48, 70%, 72%, 1);--color7:hsla(48, 70%, 66%, 1);--color8:hsla(48, 70%, 61%, 1);--color9:hsla(48, 70%, 55%, 1);--color10:hsla(48, 70%, 50%, 1);--color11:hsla(48, 70%, 15%, 1);--color12:hsla(48, 70%, 10%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_warning, .t_warning {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(60, 60%, 99%, 0.25);--background025:hsla(60, 60%, 99%, 0.5);--background05:hsla(60, 60%, 99%, 0.75);--background075:hsla(48, 70%, 99%, 1);--color0:hsla(48, 70%, 10%, 1);--color025:hsla(48, 69%, 10%, 0.75);--color05:hsla(48, 69%, 10%, 0.5);--color075:hsla(48, 69%, 10%, 0.25);--background:hsla(48, 70%, 99%, 1);--backgroundHover:hsla(48, 70%, 93%, 1);--backgroundPress:hsla(48, 70%, 88%, 1);--backgroundFocus:hsla(48, 70%, 82%, 1);--color:hsla(48, 70%, 15%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 15%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 50%, 1);--borderColor:hsla(48, 70%, 82%, 1);--borderColorHover:hsla(48, 70%, 77%, 1);--borderColorFocus:hsla(48, 70%, 72%, 1);--borderColorPress:hsla(48, 70%, 77%, 1);--color1:hsla(48, 70%, 99%, 1);--color2:hsla(48, 70%, 93%, 1);--color3:hsla(48, 70%, 88%, 1);--color4:hsla(48, 70%, 82%, 1);--color5:hsla(48, 70%, 77%, 1);--color6:hsla(48, 70%, 72%, 1);--color7:hsla(48, 70%, 66%, 1);--color8:hsla(48, 70%, 61%, 1);--color9:hsla(48, 70%, 55%, 1);--color10:hsla(48, 70%, 50%, 1);--color11:hsla(48, 70%, 15%, 1);--color12:hsla(48, 70%, 10%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_warning_Button, :root.t_dark .t_light .t_dark .t_light .t_warning_SliderTrack, :root.t_dark .t_light .t_dark .t_light .t_warning_Switch, :root.t_dark .t_light .t_dark .t_light .t_warning_TooltipContent, :root.t_dark .t_light .t_warning_Button, :root.t_dark .t_light .t_warning_SliderTrack, :root.t_dark .t_light .t_warning_Switch, :root.t_dark .t_light .t_warning_TooltipContent, :root.t_light .t_dark .t_light .t_warning_Button, :root.t_light .t_dark .t_light .t_warning_SliderTrack, :root.t_light .t_dark .t_light .t_warning_Switch, :root.t_light .t_dark .t_light .t_warning_TooltipContent, :root.t_light .t_warning_Button, :root.t_light .t_warning_SliderTrack, :root.t_light .t_warning_Switch, :root.t_light .t_warning_TooltipContent {--background0:hsla(60, 60%, 99%, 0.75);--background025:hsla(48, 70%, 99%, 1);--background05:hsla(48, 70%, 93%, 1);--background075:hsla(48, 70%, 88%, 1);--color0:hsla(48, 70%, 50%, 1);--color025:hsla(48, 70%, 15%, 1);--color05:hsla(48, 70%, 10%, 1);--color075:hsla(48, 69%, 10%, 0.75);--background:hsla(48, 70%, 88%, 1);--backgroundHover:hsla(48, 70%, 82%, 1);--backgroundPress:hsla(48, 70%, 77%, 1);--backgroundFocus:hsla(48, 70%, 72%, 1);--color:hsla(48, 70%, 15%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 15%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 61%, 1);--borderColor:hsla(48, 70%, 72%, 1);--borderColorHover:hsla(48, 70%, 66%, 1);--borderColorFocus:hsla(48, 70%, 61%, 1);--borderColorPress:hsla(48, 70%, 66%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_warning_Button, .t_dark .t_light .t_warning_SliderTrack, .t_dark .t_light .t_warning_Switch, .t_dark .t_light .t_warning_TooltipContent, .t_warning_Button, .t_warning_SliderTrack, .t_warning_Switch, .t_warning_TooltipContent {--background0:hsla(60, 60%, 99%, 0.75);--background025:hsla(48, 70%, 99%, 1);--background05:hsla(48, 70%, 93%, 1);--background075:hsla(48, 70%, 88%, 1);--color0:hsla(48, 70%, 50%, 1);--color025:hsla(48, 70%, 15%, 1);--color05:hsla(48, 70%, 10%, 1);--color075:hsla(48, 69%, 10%, 0.75);--background:hsla(48, 70%, 88%, 1);--backgroundHover:hsla(48, 70%, 82%, 1);--backgroundPress:hsla(48, 70%, 77%, 1);--backgroundFocus:hsla(48, 70%, 72%, 1);--color:hsla(48, 70%, 15%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 15%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 61%, 1);--borderColor:hsla(48, 70%, 72%, 1);--borderColorHover:hsla(48, 70%, 66%, 1);--borderColorFocus:hsla(48, 70%, 61%, 1);--borderColorPress:hsla(48, 70%, 66%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_warning_Card, :root.t_dark .t_light .t_dark .t_light .t_warning_DrawerFrame, :root.t_dark .t_light .t_dark .t_light .t_warning_Progress, :root.t_dark .t_light .t_dark .t_light .t_warning_TooltipArrow, :root.t_dark .t_light .t_warning_Card, :root.t_dark .t_light .t_warning_DrawerFrame, :root.t_dark .t_light .t_warning_Progress, :root.t_dark .t_light .t_warning_TooltipArrow, :root.t_light .t_dark .t_light .t_warning_Card, :root.t_light .t_dark .t_light .t_warning_DrawerFrame, :root.t_light .t_dark .t_light .t_warning_Progress, :root.t_light .t_dark .t_light .t_warning_TooltipArrow, :root.t_light .t_warning_Card, :root.t_light .t_warning_DrawerFrame, :root.t_light .t_warning_Progress, :root.t_light .t_warning_TooltipArrow {--background0:hsla(60, 60%, 99%, 0.5);--background025:hsla(60, 60%, 99%, 0.75);--background05:hsla(48, 70%, 99%, 1);--background075:hsla(48, 70%, 93%, 1);--color0:hsla(48, 70%, 15%, 1);--color025:hsla(48, 70%, 10%, 1);--color05:hsla(48, 69%, 10%, 0.75);--color075:hsla(48, 69%, 10%, 0.5);--background:hsla(48, 70%, 93%, 1);--backgroundHover:hsla(48, 70%, 88%, 1);--backgroundPress:hsla(48, 70%, 82%, 1);--backgroundFocus:hsla(48, 70%, 77%, 1);--color:hsla(48, 70%, 15%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 15%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 55%, 1);--borderColor:hsla(48, 70%, 77%, 1);--borderColorHover:hsla(48, 70%, 72%, 1);--borderColorFocus:hsla(48, 70%, 66%, 1);--borderColorPress:hsla(48, 70%, 72%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_warning_Card, .t_dark .t_light .t_warning_DrawerFrame, .t_dark .t_light .t_warning_Progress, .t_dark .t_light .t_warning_TooltipArrow, .t_warning_Card, .t_warning_DrawerFrame, .t_warning_Progress, .t_warning_TooltipArrow {--background0:hsla(60, 60%, 99%, 0.5);--background025:hsla(60, 60%, 99%, 0.75);--background05:hsla(48, 70%, 99%, 1);--background075:hsla(48, 70%, 93%, 1);--color0:hsla(48, 70%, 15%, 1);--color025:hsla(48, 70%, 10%, 1);--color05:hsla(48, 69%, 10%, 0.75);--color075:hsla(48, 69%, 10%, 0.5);--background:hsla(48, 70%, 93%, 1);--backgroundHover:hsla(48, 70%, 88%, 1);--backgroundPress:hsla(48, 70%, 82%, 1);--backgroundFocus:hsla(48, 70%, 77%, 1);--color:hsla(48, 70%, 15%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 15%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 55%, 1);--borderColor:hsla(48, 70%, 77%, 1);--borderColorHover:hsla(48, 70%, 72%, 1);--borderColorFocus:hsla(48, 70%, 66%, 1);--borderColorPress:hsla(48, 70%, 72%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_warning_Checkbox, :root.t_dark .t_light .t_dark .t_light .t_warning_Input, :root.t_dark .t_light .t_dark .t_light .t_warning_RadioGroupItem, :root.t_dark .t_light .t_dark .t_light .t_warning_TextArea, :root.t_dark .t_light .t_warning_Checkbox, :root.t_dark .t_light .t_warning_Input, :root.t_dark .t_light .t_warning_RadioGroupItem, :root.t_dark .t_light .t_warning_TextArea, :root.t_light .t_dark .t_light .t_warning_Checkbox, :root.t_light .t_dark .t_light .t_warning_Input, :root.t_light .t_dark .t_light .t_warning_RadioGroupItem, :root.t_light .t_dark .t_light .t_warning_TextArea, :root.t_light .t_warning_Checkbox, :root.t_light .t_warning_Input, :root.t_light .t_warning_RadioGroupItem, :root.t_light .t_warning_TextArea {--accentBackground:hsla(60, 60%, 99%, 0);--accentColor:hsla(60, 60%, 99%, 0);--background0:hsla(60, 60%, 99%, 0.25);--background025:hsla(60, 60%, 99%, 0.5);--background05:hsla(60, 60%, 99%, 0.75);--background075:hsla(48, 70%, 99%, 1);--color0:hsla(48, 70%, 10%, 1);--color025:hsla(48, 69%, 10%, 0.75);--color05:hsla(48, 69%, 10%, 0.5);--color075:hsla(48, 69%, 10%, 0.25);--background:hsla(48, 70%, 99%, 1);--backgroundHover:hsla(48, 70%, 93%, 1);--backgroundPress:hsla(48, 70%, 88%, 1);--backgroundFocus:hsla(48, 70%, 82%, 1);--color:hsla(48, 70%, 15%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 15%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 50%, 1);--borderColor:hsla(48, 70%, 72%, 1);--borderColorHover:hsla(48, 70%, 66%, 1);--borderColorFocus:hsla(48, 70%, 61%, 1);--borderColorPress:hsla(48, 70%, 66%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_warning_Checkbox, .t_dark .t_light .t_warning_Input, .t_dark .t_light .t_warning_RadioGroupItem, .t_dark .t_light .t_warning_TextArea, .t_warning_Checkbox, .t_warning_Input, .t_warning_RadioGroupItem, .t_warning_TextArea {--accentBackground:hsla(60, 60%, 99%, 0);--accentColor:hsla(60, 60%, 99%, 0);--background0:hsla(60, 60%, 99%, 0.25);--background025:hsla(60, 60%, 99%, 0.5);--background05:hsla(60, 60%, 99%, 0.75);--background075:hsla(48, 70%, 99%, 1);--color0:hsla(48, 70%, 10%, 1);--color025:hsla(48, 69%, 10%, 0.75);--color05:hsla(48, 69%, 10%, 0.5);--color075:hsla(48, 69%, 10%, 0.25);--background:hsla(48, 70%, 99%, 1);--backgroundHover:hsla(48, 70%, 93%, 1);--backgroundPress:hsla(48, 70%, 88%, 1);--backgroundFocus:hsla(48, 70%, 82%, 1);--color:hsla(48, 70%, 15%, 1);--colorHover:hsla(48, 70%, 50%, 1);--colorPress:hsla(48, 70%, 15%, 1);--colorFocus:hsla(48, 70%, 50%, 1);--placeholderColor:hsla(48, 70%, 50%, 1);--borderColor:hsla(48, 70%, 72%, 1);--borderColorHover:hsla(48, 70%, 66%, 1);--borderColorFocus:hsla(48, 70%, 61%, 1);--borderColorPress:hsla(48, 70%, 66%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_warning_ProgressIndicator, :root.t_dark .t_light .t_dark .t_light .t_warning_SliderThumb, :root.t_dark .t_light .t_dark .t_light .t_warning_SwitchThumb, :root.t_dark .t_light .t_dark .t_light .t_warning_Tooltip, :root.t_dark .t_light .t_warning_ProgressIndicator, :root.t_dark .t_light .t_warning_SliderThumb, :root.t_dark .t_light .t_warning_SwitchThumb, :root.t_dark .t_light .t_warning_Tooltip, :root.t_light .t_dark .t_light .t_warning_ProgressIndicator, :root.t_light .t_dark .t_light .t_warning_SliderThumb, :root.t_light .t_dark .t_light .t_warning_SwitchThumb, :root.t_light .t_dark .t_light .t_warning_Tooltip, :root.t_light .t_warning_ProgressIndicator, :root.t_light .t_warning_SliderThumb, :root.t_light .t_warning_SwitchThumb, :root.t_light .t_warning_Tooltip {--accentBackground:hsla(60, 60%, 99%, 0);--accentColor:hsla(60, 60%, 99%, 0);--background0:hsla(48, 69%, 10%, 0.25);--background025:hsla(48, 69%, 10%, 0.5);--background05:hsla(48, 69%, 10%, 0.75);--background075:hsla(48, 70%, 10%, 1);--color0:hsla(48, 70%, 99%, 1);--color025:hsla(60, 60%, 99%, 0.75);--color05:hsla(60, 60%, 99%, 0.5);--color075:hsla(60, 60%, 99%, 0.25);--background:hsla(48, 70%, 10%, 1);--backgroundHover:hsla(48, 70%, 15%, 1);--backgroundPress:hsla(48, 70%, 50%, 1);--backgroundFocus:hsla(48, 70%, 55%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 88%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 88%, 1);--placeholderColor:hsla(48, 70%, 88%, 1);--borderColor:hsla(48, 70%, 55%, 1);--borderColorHover:hsla(48, 70%, 61%, 1);--borderColorFocus:hsla(48, 70%, 66%, 1);--borderColorPress:hsla(48, 70%, 61%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_warning_ProgressIndicator, .t_dark .t_light .t_warning_SliderThumb, .t_dark .t_light .t_warning_SwitchThumb, .t_dark .t_light .t_warning_Tooltip, .t_warning_ProgressIndicator, .t_warning_SliderThumb, .t_warning_SwitchThumb, .t_warning_Tooltip {--accentBackground:hsla(60, 60%, 99%, 0);--accentColor:hsla(60, 60%, 99%, 0);--background0:hsla(48, 69%, 10%, 0.25);--background025:hsla(48, 69%, 10%, 0.5);--background05:hsla(48, 69%, 10%, 0.75);--background075:hsla(48, 70%, 10%, 1);--color0:hsla(48, 70%, 99%, 1);--color025:hsla(60, 60%, 99%, 0.75);--color05:hsla(60, 60%, 99%, 0.5);--color075:hsla(60, 60%, 99%, 0.25);--background:hsla(48, 70%, 10%, 1);--backgroundHover:hsla(48, 70%, 15%, 1);--backgroundPress:hsla(48, 70%, 50%, 1);--backgroundFocus:hsla(48, 70%, 55%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 88%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 88%, 1);--placeholderColor:hsla(48, 70%, 88%, 1);--borderColor:hsla(48, 70%, 55%, 1);--borderColorHover:hsla(48, 70%, 61%, 1);--borderColorFocus:hsla(48, 70%, 66%, 1);--borderColorPress:hsla(48, 70%, 61%, 1);} + } +:root.t_dark .t_light .t_dark .t_light .t_warning_SliderTrackActive, :root.t_dark .t_light .t_warning_SliderTrackActive, :root.t_light .t_dark .t_light .t_warning_SliderTrackActive, :root.t_light .t_warning_SliderTrackActive {--accentBackground:hsla(60, 60%, 99%, 0);--accentColor:hsla(60, 60%, 99%, 0);--background0:hsla(48, 69%, 10%, 0.75);--background025:hsla(48, 70%, 10%, 1);--background05:hsla(48, 70%, 15%, 1);--background075:hsla(48, 70%, 50%, 1);--color0:hsla(48, 70%, 88%, 1);--color025:hsla(48, 70%, 93%, 1);--color05:hsla(48, 70%, 99%, 1);--color075:hsla(60, 60%, 99%, 0.75);--background:hsla(48, 70%, 50%, 1);--backgroundHover:hsla(48, 70%, 55%, 1);--backgroundPress:hsla(48, 70%, 61%, 1);--backgroundFocus:hsla(48, 70%, 66%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 88%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 88%, 1);--placeholderColor:hsla(48, 70%, 77%, 1);--borderColor:hsla(48, 70%, 66%, 1);--borderColorHover:hsla(48, 70%, 72%, 1);--borderColorFocus:hsla(48, 70%, 77%, 1);--borderColorPress:hsla(48, 70%, 72%, 1);} +@media(prefers-color-scheme:light){ + body{background:var(--background);color:var(--color)} + .t_dark .t_light .t_warning_SliderTrackActive, .t_warning_SliderTrackActive {--accentBackground:hsla(60, 60%, 99%, 0);--accentColor:hsla(60, 60%, 99%, 0);--background0:hsla(48, 69%, 10%, 0.75);--background025:hsla(48, 70%, 10%, 1);--background05:hsla(48, 70%, 15%, 1);--background075:hsla(48, 70%, 50%, 1);--color0:hsla(48, 70%, 88%, 1);--color025:hsla(48, 70%, 93%, 1);--color05:hsla(48, 70%, 99%, 1);--color075:hsla(60, 60%, 99%, 0.75);--background:hsla(48, 70%, 50%, 1);--backgroundHover:hsla(48, 70%, 55%, 1);--backgroundPress:hsla(48, 70%, 61%, 1);--backgroundFocus:hsla(48, 70%, 66%, 1);--color:hsla(48, 70%, 93%, 1);--colorHover:hsla(48, 70%, 88%, 1);--colorPress:hsla(48, 70%, 93%, 1);--colorFocus:hsla(48, 70%, 88%, 1);--placeholderColor:hsla(48, 70%, 77%, 1);--borderColor:hsla(48, 70%, 66%, 1);--borderColorHover:hsla(48, 70%, 72%, 1);--borderColorFocus:hsla(48, 70%, 77%, 1);--borderColorPress:hsla(48, 70%, 72%, 1);} } - - :root, - .t_light .t_dark { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(191, 33%, 10%, 0.25); - --background025: hsla(191, 33%, 10%, 0.5); - --background05: hsla(191, 33%, 10%, 0.75); - --background075: hsla(191, 32%, 10%, 1); - --color0: hsla(112, 22%, 100%, 1); - --color025: hsla(0, 0%, 100%, 0.75); - --color05: hsla(0, 0%, 100%, 0.5); - --color075: hsla(0, 0%, 100%, 0.25); - --background: hsla(191, 32%, 10%, 1); - --backgroundHover: hsla(191, 32%, 15%, 1); - --backgroundPress: hsla(191, 32%, 19%, 1); - --backgroundFocus: hsla(191, 32%, 24%, 1); - --color: hsla(112, 22%, 59%, 1); - --colorHover: hsla(191, 32%, 50%, 1); - --colorPress: hsla(112, 22%, 59%, 1); - --colorFocus: hsla(191, 32%, 50%, 1); - --placeholderColor: hsla(191, 32%, 50%, 1); - --borderColor: hsla(191, 32%, 24%, 1); - --borderColorHover: hsla(191, 32%, 28%, 1); - --borderColorFocus: hsla(191, 32%, 32%, 1); - --borderColorPress: hsla(191, 32%, 28%, 1); - --color1: hsla(191, 32%, 10%, 1); - --color2: hsla(191, 32%, 15%, 1); - --color3: hsla(191, 32%, 19%, 1); - --color4: hsla(191, 32%, 24%, 1); - --color5: hsla(191, 32%, 28%, 1); - --color6: hsla(191, 32%, 32%, 1); - --color7: hsla(191, 32%, 37%, 1); - --color8: hsla(191, 32%, 41%, 1); - --color9: hsla(191, 32%, 46%, 1); - --color10: hsla(191, 32%, 50%, 1); - --color11: hsla(112, 22%, 59%, 1); - --color12: hsla(112, 22%, 100%, 1); - } -} - -:root.t_dark .t_Button, -:root.t_dark .t_light .t_dark .t_Button, -:root.t_dark .t_light .t_dark .t_SliderTrack, -:root.t_dark .t_light .t_dark .t_Switch, -:root.t_dark .t_light .t_dark .t_TooltipContent, -:root.t_dark .t_SliderTrack, -:root.t_dark .t_Switch, -:root.t_dark .t_TooltipContent, -:root.t_light .t_dark .t_Button, -:root.t_light .t_dark .t_light .t_dark .t_Button, -:root.t_light .t_dark .t_light .t_dark .t_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_Switch, -:root.t_light .t_dark .t_light .t_dark .t_TooltipContent, -:root.t_light .t_dark .t_SliderTrack, -:root.t_light .t_dark .t_Switch, -:root.t_light .t_dark .t_TooltipContent { - --background0: hsla(191, 33%, 10%, 0.75); - --background025: hsla(191, 32%, 10%, 1); - --background05: hsla(191, 32%, 15%, 1); - --background075: hsla(191, 32%, 19%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(112, 22%, 59%, 1); - --color05: hsla(112, 22%, 100%, 1); - --color075: hsla(0, 0%, 100%, 0.75); - --background: hsla(191, 32%, 19%, 1); - --backgroundHover: hsla(191, 32%, 24%, 1); - --backgroundPress: hsla(191, 32%, 28%, 1); - --backgroundFocus: hsla(191, 32%, 32%, 1); - --color: hsla(112, 22%, 59%, 1); - --colorHover: hsla(191, 32%, 50%, 1); - --colorPress: hsla(112, 22%, 59%, 1); - --colorFocus: hsla(191, 32%, 50%, 1); - --placeholderColor: hsla(191, 32%, 41%, 1); - --borderColor: hsla(191, 32%, 32%, 1); - --borderColorHover: hsla(191, 32%, 37%, 1); - --borderColorFocus: hsla(191, 32%, 41%, 1); - --borderColorPress: hsla(191, 32%, 37%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_Button, - .t_light .t_dark .t_Button, - .t_light .t_dark .t_SliderTrack, - .t_light .t_dark .t_Switch, - .t_light .t_dark .t_TooltipContent, - .t_SliderTrack, - .t_Switch, - .t_TooltipContent { - --background0: hsla(191, 33%, 10%, 0.75); - --background025: hsla(191, 32%, 10%, 1); - --background05: hsla(191, 32%, 15%, 1); - --background075: hsla(191, 32%, 19%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(112, 22%, 59%, 1); - --color05: hsla(112, 22%, 100%, 1); - --color075: hsla(0, 0%, 100%, 0.75); - --background: hsla(191, 32%, 19%, 1); - --backgroundHover: hsla(191, 32%, 24%, 1); - --backgroundPress: hsla(191, 32%, 28%, 1); - --backgroundFocus: hsla(191, 32%, 32%, 1); - --color: hsla(112, 22%, 59%, 1); - --colorHover: hsla(191, 32%, 50%, 1); - --colorPress: hsla(112, 22%, 59%, 1); - --colorFocus: hsla(191, 32%, 50%, 1); - --placeholderColor: hsla(191, 32%, 41%, 1); - --borderColor: hsla(191, 32%, 32%, 1); - --borderColorHover: hsla(191, 32%, 37%, 1); - --borderColorFocus: hsla(191, 32%, 41%, 1); - --borderColorPress: hsla(191, 32%, 37%, 1); - } -} - -:root.t_dark .t_Card, -:root.t_dark .t_DrawerFrame, -:root.t_dark .t_light .t_dark .t_Card, -:root.t_dark .t_light .t_dark .t_DrawerFrame, -:root.t_dark .t_light .t_dark .t_Progress, -:root.t_dark .t_light .t_dark .t_TooltipArrow, -:root.t_dark .t_Progress, -:root.t_dark .t_TooltipArrow, -:root.t_light .t_dark .t_Card, -:root.t_light .t_dark .t_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_Card, -:root.t_light .t_dark .t_light .t_dark .t_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_Progress, -:root.t_light .t_dark .t_light .t_dark .t_TooltipArrow, -:root.t_light .t_dark .t_Progress, -:root.t_light .t_dark .t_TooltipArrow { - --background0: hsla(191, 33%, 10%, 0.5); - --background025: hsla(191, 33%, 10%, 0.75); - --background05: hsla(191, 32%, 10%, 1); - --background075: hsla(191, 32%, 15%, 1); - --color0: hsla(112, 22%, 59%, 1); - --color025: hsla(112, 22%, 100%, 1); - --color05: hsla(0, 0%, 100%, 0.75); - --color075: hsla(0, 0%, 100%, 0.5); - --background: hsla(191, 32%, 15%, 1); - --backgroundHover: hsla(191, 32%, 19%, 1); - --backgroundPress: hsla(191, 32%, 24%, 1); - --backgroundFocus: hsla(191, 32%, 28%, 1); - --color: hsla(112, 22%, 59%, 1); - --colorHover: hsla(191, 32%, 50%, 1); - --colorPress: hsla(112, 22%, 59%, 1); - --colorFocus: hsla(191, 32%, 50%, 1); - --placeholderColor: hsla(191, 32%, 46%, 1); - --borderColor: hsla(191, 32%, 28%, 1); - --borderColorHover: hsla(191, 32%, 32%, 1); - --borderColorFocus: hsla(191, 32%, 37%, 1); - --borderColorPress: hsla(191, 32%, 32%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_Card, - .t_DrawerFrame, - .t_light .t_dark .t_Card, - .t_light .t_dark .t_DrawerFrame, - .t_light .t_dark .t_Progress, - .t_light .t_dark .t_TooltipArrow, - .t_Progress, - .t_TooltipArrow { - --background0: hsla(191, 33%, 10%, 0.5); - --background025: hsla(191, 33%, 10%, 0.75); - --background05: hsla(191, 32%, 10%, 1); - --background075: hsla(191, 32%, 15%, 1); - --color0: hsla(112, 22%, 59%, 1); - --color025: hsla(112, 22%, 100%, 1); - --color05: hsla(0, 0%, 100%, 0.75); - --color075: hsla(0, 0%, 100%, 0.5); - --background: hsla(191, 32%, 15%, 1); - --backgroundHover: hsla(191, 32%, 19%, 1); - --backgroundPress: hsla(191, 32%, 24%, 1); - --backgroundFocus: hsla(191, 32%, 28%, 1); - --color: hsla(112, 22%, 59%, 1); - --colorHover: hsla(191, 32%, 50%, 1); - --colorPress: hsla(112, 22%, 59%, 1); - --colorFocus: hsla(191, 32%, 50%, 1); - --placeholderColor: hsla(191, 32%, 46%, 1); - --borderColor: hsla(191, 32%, 28%, 1); - --borderColorHover: hsla(191, 32%, 32%, 1); - --borderColorFocus: hsla(191, 32%, 37%, 1); - --borderColorPress: hsla(191, 32%, 32%, 1); - } -} - -:root.t_dark .t_Checkbox, -:root.t_dark .t_Input, -:root.t_dark .t_light .t_dark .t_Checkbox, -:root.t_dark .t_light .t_dark .t_Input, -:root.t_dark .t_light .t_dark .t_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_TextArea, -:root.t_dark .t_RadioGroupItem, -:root.t_dark .t_TextArea, -:root.t_light .t_dark .t_Checkbox, -:root.t_light .t_dark .t_Input, -:root.t_light .t_dark .t_light .t_dark .t_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_Input, -:root.t_light .t_dark .t_light .t_dark .t_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_TextArea, -:root.t_light .t_dark .t_RadioGroupItem, -:root.t_light .t_dark .t_TextArea { - --accentBackground: hsla(191, 33%, 10%, 0); - --accentColor: hsla(191, 33%, 10%, 0); - --background0: hsla(191, 33%, 10%, 0.25); - --background025: hsla(191, 33%, 10%, 0.5); - --background05: hsla(191, 33%, 10%, 0.75); - --background075: hsla(191, 32%, 10%, 1); - --color0: hsla(112, 22%, 100%, 1); - --color025: hsla(0, 0%, 100%, 0.75); - --color05: hsla(0, 0%, 100%, 0.5); - --color075: hsla(0, 0%, 100%, 0.25); - --background: hsla(191, 32%, 10%, 1); - --backgroundHover: hsla(191, 32%, 15%, 1); - --backgroundPress: hsla(191, 32%, 19%, 1); - --backgroundFocus: hsla(191, 32%, 24%, 1); - --color: hsla(112, 22%, 59%, 1); - --colorHover: hsla(191, 32%, 50%, 1); - --colorPress: hsla(112, 22%, 59%, 1); - --colorFocus: hsla(191, 32%, 50%, 1); - --placeholderColor: hsla(191, 32%, 50%, 1); - --borderColor: hsla(191, 32%, 32%, 1); - --borderColorHover: hsla(191, 32%, 37%, 1); - --borderColorFocus: hsla(191, 32%, 41%, 1); - --borderColorPress: hsla(191, 32%, 37%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_Checkbox, - .t_Input, - .t_light .t_dark .t_Checkbox, - .t_light .t_dark .t_Input, - .t_light .t_dark .t_RadioGroupItem, - .t_light .t_dark .t_TextArea, - .t_RadioGroupItem, - .t_TextArea { - --accentBackground: hsla(191, 33%, 10%, 0); - --accentColor: hsla(191, 33%, 10%, 0); - --background0: hsla(191, 33%, 10%, 0.25); - --background025: hsla(191, 33%, 10%, 0.5); - --background05: hsla(191, 33%, 10%, 0.75); - --background075: hsla(191, 32%, 10%, 1); - --color0: hsla(112, 22%, 100%, 1); - --color025: hsla(0, 0%, 100%, 0.75); - --color05: hsla(0, 0%, 100%, 0.5); - --color075: hsla(0, 0%, 100%, 0.25); - --background: hsla(191, 32%, 10%, 1); - --backgroundHover: hsla(191, 32%, 15%, 1); - --backgroundPress: hsla(191, 32%, 19%, 1); - --backgroundFocus: hsla(191, 32%, 24%, 1); - --color: hsla(112, 22%, 59%, 1); - --colorHover: hsla(191, 32%, 50%, 1); - --colorPress: hsla(112, 22%, 59%, 1); - --colorFocus: hsla(191, 32%, 50%, 1); - --placeholderColor: hsla(191, 32%, 50%, 1); - --borderColor: hsla(191, 32%, 32%, 1); - --borderColorHover: hsla(191, 32%, 37%, 1); - --borderColorFocus: hsla(191, 32%, 41%, 1); - --borderColorPress: hsla(191, 32%, 37%, 1); - } -} - -:root.t_dark .t_accent_DialogOverlay, -:root.t_dark .t_accent_ModalOverlay, -:root.t_dark .t_accent_SheetOverlay, -:root.t_dark .t_active_accent_DialogOverlay, -:root.t_dark .t_active_accent_ModalOverlay, -:root.t_dark .t_active_accent_SheetOverlay, -:root.t_dark .t_active_DialogOverlay, -:root.t_dark .t_active_ModalOverlay, -:root.t_dark .t_active_SheetOverlay, -:root.t_dark .t_alt1_accent_DialogOverlay, -:root.t_dark .t_alt1_accent_ModalOverlay, -:root.t_dark .t_alt1_accent_SheetOverlay, -:root.t_dark .t_alt1_DialogOverlay, -:root.t_dark .t_alt1_ModalOverlay, -:root.t_dark .t_alt1_SheetOverlay, -:root.t_dark .t_alt2_accent_DialogOverlay, -:root.t_dark .t_alt2_accent_ModalOverlay, -:root.t_dark .t_alt2_accent_SheetOverlay, -:root.t_dark .t_alt2_DialogOverlay, -:root.t_dark .t_alt2_ModalOverlay, -:root.t_dark .t_alt2_SheetOverlay, -:root.t_dark .t_DialogOverlay, -:root.t_dark .t_dim_accent_DialogOverlay, -:root.t_dark .t_dim_accent_ModalOverlay, -:root.t_dark .t_dim_accent_SheetOverlay, -:root.t_dark .t_dim_DialogOverlay, -:root.t_dark .t_dim_ModalOverlay, -:root.t_dark .t_dim_SheetOverlay, -:root.t_dark .t_disabled_accent_DialogOverlay, -:root.t_dark .t_disabled_accent_ModalOverlay, -:root.t_dark .t_disabled_accent_SheetOverlay, -:root.t_dark .t_disabled_DialogOverlay, -:root.t_dark .t_disabled_ModalOverlay, -:root.t_dark .t_disabled_SheetOverlay, -:root.t_dark .t_error_accent_DialogOverlay, -:root.t_dark .t_error_accent_ModalOverlay, -:root.t_dark .t_error_accent_SheetOverlay, -:root.t_dark .t_error_DialogOverlay, -:root.t_dark .t_error_ModalOverlay, -:root.t_dark .t_error_SheetOverlay, -:root.t_dark .t_light .t_dark .t_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_active_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_active_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_active_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_active_DialogOverlay, -:root.t_dark .t_light .t_dark .t_active_ModalOverlay, -:root.t_dark .t_light .t_dark .t_active_SheetOverlay, -:root.t_dark .t_light .t_dark .t_alt1_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_alt1_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_alt1_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_alt1_DialogOverlay, -:root.t_dark .t_light .t_dark .t_alt1_ModalOverlay, -:root.t_dark .t_light .t_dark .t_alt1_SheetOverlay, -:root.t_dark .t_light .t_dark .t_alt2_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_alt2_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_alt2_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_alt2_DialogOverlay, -:root.t_dark .t_light .t_dark .t_alt2_ModalOverlay, -:root.t_dark .t_light .t_dark .t_alt2_SheetOverlay, -:root.t_dark .t_light .t_dark .t_DialogOverlay, -:root.t_dark .t_light .t_dark .t_dim_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_dim_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_dim_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_dim_DialogOverlay, -:root.t_dark .t_light .t_dark .t_dim_ModalOverlay, -:root.t_dark .t_light .t_dark .t_dim_SheetOverlay, -:root.t_dark .t_light .t_dark .t_disabled_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_disabled_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_disabled_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_disabled_DialogOverlay, -:root.t_dark .t_light .t_dark .t_disabled_ModalOverlay, -:root.t_dark .t_light .t_dark .t_disabled_SheetOverlay, -:root.t_dark .t_light .t_dark .t_error_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_error_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_error_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_error_DialogOverlay, -:root.t_dark .t_light .t_dark .t_error_ModalOverlay, -:root.t_dark .t_light .t_dark .t_error_SheetOverlay, -:root.t_dark .t_light .t_dark .t_ModalOverlay, -:root.t_dark .t_light .t_dark .t_red_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_red_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_red_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_red_DialogOverlay, -:root.t_dark .t_light .t_dark .t_red_ModalOverlay, -:root.t_dark .t_light .t_dark .t_red_SheetOverlay, -:root.t_dark .t_light .t_dark .t_SheetOverlay, -:root.t_dark .t_light .t_dark .t_success_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_success_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_success_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_success_DialogOverlay, -:root.t_dark .t_light .t_dark .t_success_ModalOverlay, -:root.t_dark .t_light .t_dark .t_success_SheetOverlay, -:root.t_dark .t_light .t_dark .t_warning_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_warning_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_warning_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_warning_DialogOverlay, -:root.t_dark .t_light .t_dark .t_warning_ModalOverlay, -:root.t_dark .t_light .t_dark .t_warning_SheetOverlay, -:root.t_dark .t_ModalOverlay, -:root.t_dark .t_red_accent_DialogOverlay, -:root.t_dark .t_red_accent_ModalOverlay, -:root.t_dark .t_red_accent_SheetOverlay, -:root.t_dark .t_red_DialogOverlay, -:root.t_dark .t_red_ModalOverlay, -:root.t_dark .t_red_SheetOverlay, -:root.t_dark .t_SheetOverlay, -:root.t_dark .t_success_accent_DialogOverlay, -:root.t_dark .t_success_accent_ModalOverlay, -:root.t_dark .t_success_accent_SheetOverlay, -:root.t_dark .t_success_DialogOverlay, -:root.t_dark .t_success_ModalOverlay, -:root.t_dark .t_success_SheetOverlay, -:root.t_dark .t_warning_accent_DialogOverlay, -:root.t_dark .t_warning_accent_ModalOverlay, -:root.t_dark .t_warning_accent_SheetOverlay, -:root.t_dark .t_warning_DialogOverlay, -:root.t_dark .t_warning_ModalOverlay, -:root.t_dark .t_warning_SheetOverlay, -:root.t_light .t_dark .t_accent_DialogOverlay, -:root.t_light .t_dark .t_accent_ModalOverlay, -:root.t_light .t_dark .t_accent_SheetOverlay, -:root.t_light .t_dark .t_active_accent_DialogOverlay, -:root.t_light .t_dark .t_active_accent_ModalOverlay, -:root.t_light .t_dark .t_active_accent_SheetOverlay, -:root.t_light .t_dark .t_active_DialogOverlay, -:root.t_light .t_dark .t_active_ModalOverlay, -:root.t_light .t_dark .t_active_SheetOverlay, -:root.t_light .t_dark .t_alt1_accent_DialogOverlay, -:root.t_light .t_dark .t_alt1_accent_ModalOverlay, -:root.t_light .t_dark .t_alt1_accent_SheetOverlay, -:root.t_light .t_dark .t_alt1_DialogOverlay, -:root.t_light .t_dark .t_alt1_ModalOverlay, -:root.t_light .t_dark .t_alt1_SheetOverlay, -:root.t_light .t_dark .t_alt2_accent_DialogOverlay, -:root.t_light .t_dark .t_alt2_accent_ModalOverlay, -:root.t_light .t_dark .t_alt2_accent_SheetOverlay, -:root.t_light .t_dark .t_alt2_DialogOverlay, -:root.t_light .t_dark .t_alt2_ModalOverlay, -:root.t_light .t_dark .t_alt2_SheetOverlay, -:root.t_light .t_dark .t_DialogOverlay, -:root.t_light .t_dark .t_dim_accent_DialogOverlay, -:root.t_light .t_dark .t_dim_accent_ModalOverlay, -:root.t_light .t_dark .t_dim_accent_SheetOverlay, -:root.t_light .t_dark .t_dim_DialogOverlay, -:root.t_light .t_dark .t_dim_ModalOverlay, -:root.t_light .t_dark .t_dim_SheetOverlay, -:root.t_light .t_dark .t_disabled_accent_DialogOverlay, -:root.t_light .t_dark .t_disabled_accent_ModalOverlay, -:root.t_light .t_dark .t_disabled_accent_SheetOverlay, -:root.t_light .t_dark .t_disabled_DialogOverlay, -:root.t_light .t_dark .t_disabled_ModalOverlay, -:root.t_light .t_dark .t_disabled_SheetOverlay, -:root.t_light .t_dark .t_error_accent_DialogOverlay, -:root.t_light .t_dark .t_error_accent_ModalOverlay, -:root.t_light .t_dark .t_error_accent_SheetOverlay, -:root.t_light .t_dark .t_error_DialogOverlay, -:root.t_light .t_dark .t_error_ModalOverlay, -:root.t_light .t_dark .t_error_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_active_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_active_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_active_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_alt1_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_alt1_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_alt1_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_alt2_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_alt2_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_alt2_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_dim_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_dim_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_dim_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_disabled_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_disabled_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_disabled_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_error_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_error_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_error_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_red_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_red_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_red_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_success_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_success_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_success_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_dark .t_warning_DialogOverlay, -:root.t_light .t_dark .t_light .t_dark .t_warning_ModalOverlay, -:root.t_light .t_dark .t_light .t_dark .t_warning_SheetOverlay, -:root.t_light .t_dark .t_ModalOverlay, -:root.t_light .t_dark .t_red_accent_DialogOverlay, -:root.t_light .t_dark .t_red_accent_ModalOverlay, -:root.t_light .t_dark .t_red_accent_SheetOverlay, -:root.t_light .t_dark .t_red_DialogOverlay, -:root.t_light .t_dark .t_red_ModalOverlay, -:root.t_light .t_dark .t_red_SheetOverlay, -:root.t_light .t_dark .t_SheetOverlay, -:root.t_light .t_dark .t_success_accent_DialogOverlay, -:root.t_light .t_dark .t_success_accent_ModalOverlay, -:root.t_light .t_dark .t_success_accent_SheetOverlay, -:root.t_light .t_dark .t_success_DialogOverlay, -:root.t_light .t_dark .t_success_ModalOverlay, -:root.t_light .t_dark .t_success_SheetOverlay, -:root.t_light .t_dark .t_warning_accent_DialogOverlay, -:root.t_light .t_dark .t_warning_accent_ModalOverlay, -:root.t_light .t_dark .t_warning_accent_SheetOverlay, -:root.t_light .t_dark .t_warning_DialogOverlay, -:root.t_light .t_dark .t_warning_ModalOverlay, -:root.t_light .t_dark .t_warning_SheetOverlay { - --background: rgba(0, 0, 0, 0.9); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - } - - .t_accent_DialogOverlay, - .t_accent_ModalOverlay, - .t_accent_SheetOverlay, - .t_active_accent_DialogOverlay, - .t_active_accent_ModalOverlay, - .t_active_accent_SheetOverlay, - .t_active_DialogOverlay, - .t_active_ModalOverlay, - .t_active_SheetOverlay, - .t_alt1_accent_DialogOverlay, - .t_alt1_accent_ModalOverlay, - .t_alt1_accent_SheetOverlay, - .t_alt1_DialogOverlay, - .t_alt1_ModalOverlay, - .t_alt1_SheetOverlay, - .t_alt2_accent_DialogOverlay, - .t_alt2_accent_ModalOverlay, - .t_alt2_accent_SheetOverlay, - .t_alt2_DialogOverlay, - .t_alt2_ModalOverlay, - .t_alt2_SheetOverlay, - .t_DialogOverlay, - .t_dim_accent_DialogOverlay, - .t_dim_accent_ModalOverlay, - .t_dim_accent_SheetOverlay, - .t_dim_DialogOverlay, - .t_dim_ModalOverlay, - .t_dim_SheetOverlay, - .t_disabled_accent_DialogOverlay, - .t_disabled_accent_ModalOverlay, - .t_disabled_accent_SheetOverlay, - .t_disabled_DialogOverlay, - .t_disabled_ModalOverlay, - .t_disabled_SheetOverlay, - .t_error_accent_DialogOverlay, - .t_error_accent_ModalOverlay, - .t_error_accent_SheetOverlay, - .t_error_DialogOverlay, - .t_error_ModalOverlay, - .t_error_SheetOverlay, - .t_light .t_dark .t_accent_DialogOverlay, - .t_light .t_dark .t_accent_ModalOverlay, - .t_light .t_dark .t_accent_SheetOverlay, - .t_light .t_dark .t_active_accent_DialogOverlay, - .t_light .t_dark .t_active_accent_ModalOverlay, - .t_light .t_dark .t_active_accent_SheetOverlay, - .t_light .t_dark .t_active_DialogOverlay, - .t_light .t_dark .t_active_ModalOverlay, - .t_light .t_dark .t_active_SheetOverlay, - .t_light .t_dark .t_alt1_accent_DialogOverlay, - .t_light .t_dark .t_alt1_accent_ModalOverlay, - .t_light .t_dark .t_alt1_accent_SheetOverlay, - .t_light .t_dark .t_alt1_DialogOverlay, - .t_light .t_dark .t_alt1_ModalOverlay, - .t_light .t_dark .t_alt1_SheetOverlay, - .t_light .t_dark .t_alt2_accent_DialogOverlay, - .t_light .t_dark .t_alt2_accent_ModalOverlay, - .t_light .t_dark .t_alt2_accent_SheetOverlay, - .t_light .t_dark .t_alt2_DialogOverlay, - .t_light .t_dark .t_alt2_ModalOverlay, - .t_light .t_dark .t_alt2_SheetOverlay, - .t_light .t_dark .t_DialogOverlay, - .t_light .t_dark .t_dim_accent_DialogOverlay, - .t_light .t_dark .t_dim_accent_ModalOverlay, - .t_light .t_dark .t_dim_accent_SheetOverlay, - .t_light .t_dark .t_dim_DialogOverlay, - .t_light .t_dark .t_dim_ModalOverlay, - .t_light .t_dark .t_dim_SheetOverlay, - .t_light .t_dark .t_disabled_accent_DialogOverlay, - .t_light .t_dark .t_disabled_accent_ModalOverlay, - .t_light .t_dark .t_disabled_accent_SheetOverlay, - .t_light .t_dark .t_disabled_DialogOverlay, - .t_light .t_dark .t_disabled_ModalOverlay, - .t_light .t_dark .t_disabled_SheetOverlay, - .t_light .t_dark .t_error_accent_DialogOverlay, - .t_light .t_dark .t_error_accent_ModalOverlay, - .t_light .t_dark .t_error_accent_SheetOverlay, - .t_light .t_dark .t_error_DialogOverlay, - .t_light .t_dark .t_error_ModalOverlay, - .t_light .t_dark .t_error_SheetOverlay, - .t_light .t_dark .t_ModalOverlay, - .t_light .t_dark .t_red_accent_DialogOverlay, - .t_light .t_dark .t_red_accent_ModalOverlay, - .t_light .t_dark .t_red_accent_SheetOverlay, - .t_light .t_dark .t_red_DialogOverlay, - .t_light .t_dark .t_red_ModalOverlay, - .t_light .t_dark .t_red_SheetOverlay, - .t_light .t_dark .t_SheetOverlay, - .t_light .t_dark .t_success_accent_DialogOverlay, - .t_light .t_dark .t_success_accent_ModalOverlay, - .t_light .t_dark .t_success_accent_SheetOverlay, - .t_light .t_dark .t_success_DialogOverlay, - .t_light .t_dark .t_success_ModalOverlay, - .t_light .t_dark .t_success_SheetOverlay, - .t_light .t_dark .t_warning_accent_DialogOverlay, - .t_light .t_dark .t_warning_accent_ModalOverlay, - .t_light .t_dark .t_warning_accent_SheetOverlay, - .t_light .t_dark .t_warning_DialogOverlay, - .t_light .t_dark .t_warning_ModalOverlay, - .t_light .t_dark .t_warning_SheetOverlay, - .t_ModalOverlay, - .t_red_accent_DialogOverlay, - .t_red_accent_ModalOverlay, - .t_red_accent_SheetOverlay, - .t_red_DialogOverlay, - .t_red_ModalOverlay, - .t_red_SheetOverlay, - .t_SheetOverlay, - .t_success_accent_DialogOverlay, - .t_success_accent_ModalOverlay, - .t_success_accent_SheetOverlay, - .t_success_DialogOverlay, - .t_success_ModalOverlay, - .t_success_SheetOverlay, - .t_warning_accent_DialogOverlay, - .t_warning_accent_ModalOverlay, - .t_warning_accent_SheetOverlay, - .t_warning_DialogOverlay, - .t_warning_ModalOverlay, - .t_warning_SheetOverlay { - --background: rgba(0, 0, 0, 0.9); - } -} - -:root.t_dark .t_light .t_dark .t_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_SliderThumb, -:root.t_dark .t_light .t_dark .t_SwitchThumb, -:root.t_dark .t_light .t_dark .t_Tooltip, -:root.t_dark .t_ProgressIndicator, -:root.t_dark .t_SliderThumb, -:root.t_dark .t_SwitchThumb, -:root.t_dark .t_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_Tooltip, -:root.t_light .t_dark .t_ProgressIndicator, -:root.t_light .t_dark .t_SliderThumb, -:root.t_light .t_dark .t_SwitchThumb, -:root.t_light .t_dark .t_Tooltip { - --accentBackground: hsla(191, 33%, 10%, 0); - --accentColor: hsla(191, 33%, 10%, 0); - --background0: hsla(0, 0%, 100%, 0.25); - --background025: hsla(0, 0%, 100%, 0.5); - --background05: hsla(0, 0%, 100%, 0.75); - --background075: hsla(112, 22%, 100%, 1); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 33%, 10%, 0.75); - --color05: hsla(191, 33%, 10%, 0.5); - --color075: hsla(191, 33%, 10%, 0.25); - --background: hsla(112, 22%, 100%, 1); - --backgroundHover: hsla(112, 22%, 59%, 1); - --backgroundPress: hsla(191, 32%, 50%, 1); - --backgroundFocus: hsla(191, 32%, 46%, 1); - --color: hsla(191, 32%, 15%, 1); - --colorHover: hsla(191, 32%, 19%, 1); - --colorPress: hsla(191, 32%, 15%, 1); - --colorFocus: hsla(191, 32%, 19%, 1); - --placeholderColor: hsla(191, 32%, 19%, 1); - --borderColor: hsla(191, 32%, 46%, 1); - --borderColorHover: hsla(191, 32%, 41%, 1); - --borderColorFocus: hsla(191, 32%, 37%, 1); - --borderColorPress: hsla(191, 32%, 41%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_light .t_dark .t_ProgressIndicator, - .t_light .t_dark .t_SliderThumb, - .t_light .t_dark .t_SwitchThumb, - .t_light .t_dark .t_Tooltip, - .t_ProgressIndicator, - .t_SliderThumb, - .t_SwitchThumb, - .t_Tooltip { - --accentBackground: hsla(191, 33%, 10%, 0); - --accentColor: hsla(191, 33%, 10%, 0); - --background0: hsla(0, 0%, 100%, 0.25); - --background025: hsla(0, 0%, 100%, 0.5); - --background05: hsla(0, 0%, 100%, 0.75); - --background075: hsla(112, 22%, 100%, 1); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 33%, 10%, 0.75); - --color05: hsla(191, 33%, 10%, 0.5); - --color075: hsla(191, 33%, 10%, 0.25); - --background: hsla(112, 22%, 100%, 1); - --backgroundHover: hsla(112, 22%, 59%, 1); - --backgroundPress: hsla(191, 32%, 50%, 1); - --backgroundFocus: hsla(191, 32%, 46%, 1); - --color: hsla(191, 32%, 15%, 1); - --colorHover: hsla(191, 32%, 19%, 1); - --colorPress: hsla(191, 32%, 15%, 1); - --colorFocus: hsla(191, 32%, 19%, 1); - --placeholderColor: hsla(191, 32%, 19%, 1); - --borderColor: hsla(191, 32%, 46%, 1); - --borderColorHover: hsla(191, 32%, 41%, 1); - --borderColorFocus: hsla(191, 32%, 37%, 1); - --borderColorPress: hsla(191, 32%, 41%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_SliderTrackActive, -:root.t_dark .t_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_SliderTrackActive, -:root.t_light .t_dark .t_SliderTrackActive { - --accentBackground: hsla(191, 33%, 10%, 0); - --accentColor: hsla(191, 33%, 10%, 0); - --background0: hsla(0, 0%, 100%, 0.75); - --background025: hsla(112, 22%, 100%, 1); - --background05: hsla(112, 22%, 59%, 1); - --background075: hsla(191, 32%, 50%, 1); - --color0: hsla(191, 32%, 19%, 1); - --color025: hsla(191, 32%, 15%, 1); - --color05: hsla(191, 32%, 10%, 1); - --color075: hsla(191, 33%, 10%, 0.75); - --background: hsla(191, 32%, 50%, 1); - --backgroundHover: hsla(191, 32%, 46%, 1); - --backgroundPress: hsla(191, 32%, 41%, 1); - --backgroundFocus: hsla(191, 32%, 37%, 1); - --color: hsla(191, 32%, 15%, 1); - --colorHover: hsla(191, 32%, 19%, 1); - --colorPress: hsla(191, 32%, 15%, 1); - --colorFocus: hsla(191, 32%, 19%, 1); - --placeholderColor: hsla(191, 32%, 28%, 1); - --borderColor: hsla(191, 32%, 37%, 1); - --borderColorHover: hsla(191, 32%, 32%, 1); - --borderColorFocus: hsla(191, 32%, 28%, 1); - --borderColorPress: hsla(191, 32%, 32%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_light .t_dark .t_SliderTrackActive, - .t_SliderTrackActive { - --accentBackground: hsla(191, 33%, 10%, 0); - --accentColor: hsla(191, 33%, 10%, 0); - --background0: hsla(0, 0%, 100%, 0.75); - --background025: hsla(112, 22%, 100%, 1); - --background05: hsla(112, 22%, 59%, 1); - --background075: hsla(191, 32%, 50%, 1); - --color0: hsla(191, 32%, 19%, 1); - --color025: hsla(191, 32%, 15%, 1); - --color05: hsla(191, 32%, 10%, 1); - --color075: hsla(191, 33%, 10%, 0.75); - --background: hsla(191, 32%, 50%, 1); - --backgroundHover: hsla(191, 32%, 46%, 1); - --backgroundPress: hsla(191, 32%, 41%, 1); - --backgroundFocus: hsla(191, 32%, 37%, 1); - --color: hsla(191, 32%, 15%, 1); - --colorHover: hsla(191, 32%, 19%, 1); - --colorPress: hsla(191, 32%, 15%, 1); - --colorFocus: hsla(191, 32%, 19%, 1); - --placeholderColor: hsla(191, 32%, 28%, 1); - --borderColor: hsla(191, 32%, 37%, 1); - --borderColorHover: hsla(191, 32%, 32%, 1); - --borderColorFocus: hsla(191, 32%, 28%, 1); - --borderColorPress: hsla(191, 32%, 32%, 1); - } -} - -:root.t_dark .t_accent, -:root.t_dark .t_active_accent, -:root.t_dark .t_alt1_accent, -:root.t_dark .t_alt2_accent, -:root.t_dark .t_dim_accent, -:root.t_dark .t_disabled_accent, -:root.t_dark .t_error_accent, -:root.t_dark .t_light .t_dark .t_accent, -:root.t_dark .t_light .t_dark .t_active_accent, -:root.t_dark .t_light .t_dark .t_alt1_accent, -:root.t_dark .t_light .t_dark .t_alt2_accent, -:root.t_dark .t_light .t_dark .t_dim_accent, -:root.t_dark .t_light .t_dark .t_disabled_accent, -:root.t_dark .t_light .t_dark .t_error_accent, -:root.t_dark .t_light .t_dark .t_red_accent, -:root.t_dark .t_light .t_dark .t_success_accent, -:root.t_dark .t_light .t_dark .t_warning_accent, -:root.t_dark .t_red_accent, -:root.t_dark .t_success_accent, -:root.t_dark .t_warning_accent, -:root.t_light .t_dark .t_accent, -:root.t_light .t_dark .t_active_accent, -:root.t_light .t_dark .t_alt1_accent, -:root.t_light .t_dark .t_alt2_accent, -:root.t_light .t_dark .t_dim_accent, -:root.t_light .t_dark .t_disabled_accent, -:root.t_light .t_dark .t_error_accent, -:root.t_light .t_dark .t_light .t_dark .t_accent, -:root.t_light .t_dark .t_light .t_dark .t_active_accent, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent, -:root.t_light .t_dark .t_light .t_dark .t_error_accent, -:root.t_light .t_dark .t_light .t_dark .t_red_accent, -:root.t_light .t_dark .t_light .t_dark .t_success_accent, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent, -:root.t_light .t_dark .t_red_accent, -:root.t_light .t_dark .t_success_accent, -:root.t_light .t_dark .t_warning_accent { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(125, 96%, 40%, 0.25); - --background025: var(--color-229); - --background05: var(--color-230); - --background075: var(--color-231); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 33%, 10%, 0.75); - --color05: hsla(191, 33%, 10%, 0.5); - --color075: hsla(191, 33%, 10%, 0.25); - --background: var(--color-231); - --backgroundHover: var(--color-232); - --backgroundPress: var(--color-233); - --backgroundFocus: var(--color-234); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-240); - --borderColor: var(--color-234); - --borderColorHover: var(--color-235); - --borderColorFocus: var(--color-236); - --borderColorPress: var(--color-235); - --color1: var(--color-231); - --color2: var(--color-232); - --color3: var(--color-233); - --color4: var(--color-234); - --color5: var(--color-235); - --color6: var(--color-236); - --color7: var(--color-237); - --color8: var(--color-238); - --color9: var(--color-239); - --color10: var(--color-240); - --color11: hsla(191, 32%, 10%, 1); - --color12: hsla(191, 32%, 10%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_accent, - .t_active_accent, - .t_alt1_accent, - .t_alt2_accent, - .t_dim_accent, - .t_disabled_accent, - .t_error_accent, - .t_light .t_dark .t_accent, - .t_light .t_dark .t_active_accent, - .t_light .t_dark .t_alt1_accent, - .t_light .t_dark .t_alt2_accent, - .t_light .t_dark .t_dim_accent, - .t_light .t_dark .t_disabled_accent, - .t_light .t_dark .t_error_accent, - .t_light .t_dark .t_red_accent, - .t_light .t_dark .t_success_accent, - .t_light .t_dark .t_warning_accent, - .t_red_accent, - .t_success_accent, - .t_warning_accent { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(125, 96%, 40%, 0.25); - --background025: var(--color-229); - --background05: var(--color-230); - --background075: var(--color-231); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 33%, 10%, 0.75); - --color05: hsla(191, 33%, 10%, 0.5); - --color075: hsla(191, 33%, 10%, 0.25); - --background: var(--color-231); - --backgroundHover: var(--color-232); - --backgroundPress: var(--color-233); - --backgroundFocus: var(--color-234); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-240); - --borderColor: var(--color-234); - --borderColorHover: var(--color-235); - --borderColorFocus: var(--color-236); - --borderColorPress: var(--color-235); - --color1: var(--color-231); - --color2: var(--color-232); - --color3: var(--color-233); - --color4: var(--color-234); - --color5: var(--color-235); - --color6: var(--color-236); - --color7: var(--color-237); - --color8: var(--color-238); - --color9: var(--color-239); - --color10: var(--color-240); - --color11: hsla(191, 32%, 10%, 1); - --color12: hsla(191, 32%, 10%, 1); - } -} - -:root.t_dark .t_accent_Button, -:root.t_dark .t_accent_Switch, -:root.t_dark .t_light .t_dark .t_accent_Button, -:root.t_dark .t_light .t_dark .t_accent_Switch, -:root.t_light .t_dark .t_accent_Button, -:root.t_light .t_dark .t_accent_Switch, -:root.t_light .t_dark .t_light .t_dark .t_accent_Button, -:root.t_light .t_dark .t_light .t_dark .t_accent_Switch { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(125, 96%, 40%, 0.25); - --background025: var(--color-229); - --background05: var(--color-230); - --background075: var(--color-231); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 33%, 10%, 0.75); - --color05: hsla(191, 33%, 10%, 0.5); - --color075: hsla(191, 33%, 10%, 0.25); - --background: var(--color-234); - --backgroundHover: var(--color-235); - --backgroundPress: var(--color-236); - --backgroundFocus: var(--color-237); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-240); - --borderColor: var(--color-237); - --borderColorHover: var(--color-238); - --borderColorFocus: var(--color-239); - --borderColorPress: var(--color-238); - --color1: var(--color-231); - --color2: var(--color-232); - --color3: var(--color-233); - --color4: var(--color-234); - --color5: var(--color-235); - --color6: var(--color-236); - --color7: var(--color-237); - --color8: var(--color-238); - --color9: var(--color-239); - --color10: var(--color-240); - --color11: hsla(191, 32%, 10%, 1); - --color12: hsla(191, 32%, 10%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_accent_Button, - .t_accent_Switch, - .t_light .t_dark .t_accent_Button, - .t_light .t_dark .t_accent_Switch { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(125, 96%, 40%, 0.25); - --background025: var(--color-229); - --background05: var(--color-230); - --background075: var(--color-231); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 33%, 10%, 0.75); - --color05: hsla(191, 33%, 10%, 0.5); - --color075: hsla(191, 33%, 10%, 0.25); - --background: var(--color-234); - --backgroundHover: var(--color-235); - --backgroundPress: var(--color-236); - --backgroundFocus: var(--color-237); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-240); - --borderColor: var(--color-237); - --borderColorHover: var(--color-238); - --borderColorFocus: var(--color-239); - --borderColorPress: var(--color-238); - --color1: var(--color-231); - --color2: var(--color-232); - --color3: var(--color-233); - --color4: var(--color-234); - --color5: var(--color-235); - --color6: var(--color-236); - --color7: var(--color-237); - --color8: var(--color-238); - --color9: var(--color-239); - --color10: var(--color-240); - --color11: hsla(191, 32%, 10%, 1); - --color12: hsla(191, 32%, 10%, 1); - } -} - -:root.t_dark .t_accent_Card, -:root.t_dark .t_accent_DrawerFrame, -:root.t_dark .t_accent_Progress, -:root.t_dark .t_accent_TooltipArrow, -:root.t_dark .t_active_accent_Card, -:root.t_dark .t_active_accent_DrawerFrame, -:root.t_dark .t_active_accent_Progress, -:root.t_dark .t_active_accent_TooltipArrow, -:root.t_dark .t_alt1_accent_Card, -:root.t_dark .t_alt1_accent_DrawerFrame, -:root.t_dark .t_alt1_accent_Progress, -:root.t_dark .t_alt1_accent_TooltipArrow, -:root.t_dark .t_alt2_accent_Card, -:root.t_dark .t_alt2_accent_DrawerFrame, -:root.t_dark .t_alt2_accent_Progress, -:root.t_dark .t_alt2_accent_TooltipArrow, -:root.t_dark .t_dim_accent_Card, -:root.t_dark .t_dim_accent_DrawerFrame, -:root.t_dark .t_dim_accent_Progress, -:root.t_dark .t_dim_accent_TooltipArrow, -:root.t_dark .t_disabled_accent_Card, -:root.t_dark .t_disabled_accent_DrawerFrame, -:root.t_dark .t_disabled_accent_Progress, -:root.t_dark .t_disabled_accent_TooltipArrow, -:root.t_dark .t_error_accent_Card, -:root.t_dark .t_error_accent_DrawerFrame, -:root.t_dark .t_error_accent_Progress, -:root.t_dark .t_error_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_accent_Card, -:root.t_dark .t_light .t_dark .t_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_accent_Progress, -:root.t_dark .t_light .t_dark .t_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_active_accent_Card, -:root.t_dark .t_light .t_dark .t_active_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_active_accent_Progress, -:root.t_dark .t_light .t_dark .t_active_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_alt1_accent_Card, -:root.t_dark .t_light .t_dark .t_alt1_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_alt1_accent_Progress, -:root.t_dark .t_light .t_dark .t_alt1_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_alt2_accent_Card, -:root.t_dark .t_light .t_dark .t_alt2_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_alt2_accent_Progress, -:root.t_dark .t_light .t_dark .t_alt2_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_dim_accent_Card, -:root.t_dark .t_light .t_dark .t_dim_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_dim_accent_Progress, -:root.t_dark .t_light .t_dark .t_dim_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_disabled_accent_Card, -:root.t_dark .t_light .t_dark .t_disabled_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_disabled_accent_Progress, -:root.t_dark .t_light .t_dark .t_disabled_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_error_accent_Card, -:root.t_dark .t_light .t_dark .t_error_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_error_accent_Progress, -:root.t_dark .t_light .t_dark .t_error_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_red_accent_Card, -:root.t_dark .t_light .t_dark .t_red_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_red_accent_Progress, -:root.t_dark .t_light .t_dark .t_red_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_success_accent_Card, -:root.t_dark .t_light .t_dark .t_success_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_success_accent_Progress, -:root.t_dark .t_light .t_dark .t_success_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_warning_accent_Card, -:root.t_dark .t_light .t_dark .t_warning_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_warning_accent_Progress, -:root.t_dark .t_light .t_dark .t_warning_accent_TooltipArrow, -:root.t_dark .t_red_accent_Card, -:root.t_dark .t_red_accent_DrawerFrame, -:root.t_dark .t_red_accent_Progress, -:root.t_dark .t_red_accent_TooltipArrow, -:root.t_dark .t_success_accent_Card, -:root.t_dark .t_success_accent_DrawerFrame, -:root.t_dark .t_success_accent_Progress, -:root.t_dark .t_success_accent_TooltipArrow, -:root.t_dark .t_warning_accent_Card, -:root.t_dark .t_warning_accent_DrawerFrame, -:root.t_dark .t_warning_accent_Progress, -:root.t_dark .t_warning_accent_TooltipArrow, -:root.t_light .t_dark .t_accent_Card, -:root.t_light .t_dark .t_accent_DrawerFrame, -:root.t_light .t_dark .t_accent_Progress, -:root.t_light .t_dark .t_accent_TooltipArrow, -:root.t_light .t_dark .t_active_accent_Card, -:root.t_light .t_dark .t_active_accent_DrawerFrame, -:root.t_light .t_dark .t_active_accent_Progress, -:root.t_light .t_dark .t_active_accent_TooltipArrow, -:root.t_light .t_dark .t_alt1_accent_Card, -:root.t_light .t_dark .t_alt1_accent_DrawerFrame, -:root.t_light .t_dark .t_alt1_accent_Progress, -:root.t_light .t_dark .t_alt1_accent_TooltipArrow, -:root.t_light .t_dark .t_alt2_accent_Card, -:root.t_light .t_dark .t_alt2_accent_DrawerFrame, -:root.t_light .t_dark .t_alt2_accent_Progress, -:root.t_light .t_dark .t_alt2_accent_TooltipArrow, -:root.t_light .t_dark .t_dim_accent_Card, -:root.t_light .t_dark .t_dim_accent_DrawerFrame, -:root.t_light .t_dark .t_dim_accent_Progress, -:root.t_light .t_dark .t_dim_accent_TooltipArrow, -:root.t_light .t_dark .t_disabled_accent_Card, -:root.t_light .t_dark .t_disabled_accent_DrawerFrame, -:root.t_light .t_dark .t_disabled_accent_Progress, -:root.t_light .t_dark .t_disabled_accent_TooltipArrow, -:root.t_light .t_dark .t_error_accent_Card, -:root.t_light .t_dark .t_error_accent_DrawerFrame, -:root.t_light .t_dark .t_error_accent_Progress, -:root.t_light .t_dark .t_error_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_accent_Card, -:root.t_light .t_dark .t_light .t_dark .t_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_accent_Progress, -:root.t_light .t_dark .t_light .t_dark .t_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_Card, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_Progress, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Card, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Progress, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Card, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Progress, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_Card, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_Progress, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Card, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Progress, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_Card, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_Progress, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_Card, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_Progress, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_Card, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_Progress, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_Card, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_Progress, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_TooltipArrow, -:root.t_light .t_dark .t_red_accent_Card, -:root.t_light .t_dark .t_red_accent_DrawerFrame, -:root.t_light .t_dark .t_red_accent_Progress, -:root.t_light .t_dark .t_red_accent_TooltipArrow, -:root.t_light .t_dark .t_success_accent_Card, -:root.t_light .t_dark .t_success_accent_DrawerFrame, -:root.t_light .t_dark .t_success_accent_Progress, -:root.t_light .t_dark .t_success_accent_TooltipArrow, -:root.t_light .t_dark .t_warning_accent_Card, -:root.t_light .t_dark .t_warning_accent_DrawerFrame, -:root.t_light .t_dark .t_warning_accent_Progress, -:root.t_light .t_dark .t_warning_accent_TooltipArrow { - --background0: var(--color-229); - --background025: var(--color-230); - --background05: var(--color-231); - --background075: var(--color-232); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 32%, 10%, 1); - --color05: hsla(191, 33%, 10%, 0.75); - --color075: hsla(191, 33%, 10%, 0.5); - --background: var(--color-232); - --backgroundHover: var(--color-233); - --backgroundPress: var(--color-234); - --backgroundFocus: var(--color-235); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-239); - --borderColor: var(--color-235); - --borderColorHover: var(--color-236); - --borderColorFocus: var(--color-237); - --borderColorPress: var(--color-236); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_accent_Card, - .t_accent_DrawerFrame, - .t_accent_Progress, - .t_accent_TooltipArrow, - .t_active_accent_Card, - .t_active_accent_DrawerFrame, - .t_active_accent_Progress, - .t_active_accent_TooltipArrow, - .t_alt1_accent_Card, - .t_alt1_accent_DrawerFrame, - .t_alt1_accent_Progress, - .t_alt1_accent_TooltipArrow, - .t_alt2_accent_Card, - .t_alt2_accent_DrawerFrame, - .t_alt2_accent_Progress, - .t_alt2_accent_TooltipArrow, - .t_dim_accent_Card, - .t_dim_accent_DrawerFrame, - .t_dim_accent_Progress, - .t_dim_accent_TooltipArrow, - .t_disabled_accent_Card, - .t_disabled_accent_DrawerFrame, - .t_disabled_accent_Progress, - .t_disabled_accent_TooltipArrow, - .t_error_accent_Card, - .t_error_accent_DrawerFrame, - .t_error_accent_Progress, - .t_error_accent_TooltipArrow, - .t_light .t_dark .t_accent_Card, - .t_light .t_dark .t_accent_DrawerFrame, - .t_light .t_dark .t_accent_Progress, - .t_light .t_dark .t_accent_TooltipArrow, - .t_light .t_dark .t_active_accent_Card, - .t_light .t_dark .t_active_accent_DrawerFrame, - .t_light .t_dark .t_active_accent_Progress, - .t_light .t_dark .t_active_accent_TooltipArrow, - .t_light .t_dark .t_alt1_accent_Card, - .t_light .t_dark .t_alt1_accent_DrawerFrame, - .t_light .t_dark .t_alt1_accent_Progress, - .t_light .t_dark .t_alt1_accent_TooltipArrow, - .t_light .t_dark .t_alt2_accent_Card, - .t_light .t_dark .t_alt2_accent_DrawerFrame, - .t_light .t_dark .t_alt2_accent_Progress, - .t_light .t_dark .t_alt2_accent_TooltipArrow, - .t_light .t_dark .t_dim_accent_Card, - .t_light .t_dark .t_dim_accent_DrawerFrame, - .t_light .t_dark .t_dim_accent_Progress, - .t_light .t_dark .t_dim_accent_TooltipArrow, - .t_light .t_dark .t_disabled_accent_Card, - .t_light .t_dark .t_disabled_accent_DrawerFrame, - .t_light .t_dark .t_disabled_accent_Progress, - .t_light .t_dark .t_disabled_accent_TooltipArrow, - .t_light .t_dark .t_error_accent_Card, - .t_light .t_dark .t_error_accent_DrawerFrame, - .t_light .t_dark .t_error_accent_Progress, - .t_light .t_dark .t_error_accent_TooltipArrow, - .t_light .t_dark .t_red_accent_Card, - .t_light .t_dark .t_red_accent_DrawerFrame, - .t_light .t_dark .t_red_accent_Progress, - .t_light .t_dark .t_red_accent_TooltipArrow, - .t_light .t_dark .t_success_accent_Card, - .t_light .t_dark .t_success_accent_DrawerFrame, - .t_light .t_dark .t_success_accent_Progress, - .t_light .t_dark .t_success_accent_TooltipArrow, - .t_light .t_dark .t_warning_accent_Card, - .t_light .t_dark .t_warning_accent_DrawerFrame, - .t_light .t_dark .t_warning_accent_Progress, - .t_light .t_dark .t_warning_accent_TooltipArrow, - .t_red_accent_Card, - .t_red_accent_DrawerFrame, - .t_red_accent_Progress, - .t_red_accent_TooltipArrow, - .t_success_accent_Card, - .t_success_accent_DrawerFrame, - .t_success_accent_Progress, - .t_success_accent_TooltipArrow, - .t_warning_accent_Card, - .t_warning_accent_DrawerFrame, - .t_warning_accent_Progress, - .t_warning_accent_TooltipArrow { - --background0: var(--color-229); - --background025: var(--color-230); - --background05: var(--color-231); - --background075: var(--color-232); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 32%, 10%, 1); - --color05: hsla(191, 33%, 10%, 0.75); - --color075: hsla(191, 33%, 10%, 0.5); - --background: var(--color-232); - --backgroundHover: var(--color-233); - --backgroundPress: var(--color-234); - --backgroundFocus: var(--color-235); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-239); - --borderColor: var(--color-235); - --borderColorHover: var(--color-236); - --borderColorFocus: var(--color-237); - --borderColorPress: var(--color-236); - } -} - -:root.t_dark .t_accent_Checkbox, -:root.t_dark .t_accent_Input, -:root.t_dark .t_accent_RadioGroupItem, -:root.t_dark .t_accent_TextArea, -:root.t_dark .t_active_accent_Checkbox, -:root.t_dark .t_active_accent_Input, -:root.t_dark .t_active_accent_RadioGroupItem, -:root.t_dark .t_active_accent_TextArea, -:root.t_dark .t_alt1_accent_Checkbox, -:root.t_dark .t_alt1_accent_Input, -:root.t_dark .t_alt1_accent_RadioGroupItem, -:root.t_dark .t_alt1_accent_TextArea, -:root.t_dark .t_alt2_accent_Checkbox, -:root.t_dark .t_alt2_accent_Input, -:root.t_dark .t_alt2_accent_RadioGroupItem, -:root.t_dark .t_alt2_accent_TextArea, -:root.t_dark .t_dim_accent_Checkbox, -:root.t_dark .t_dim_accent_Input, -:root.t_dark .t_dim_accent_RadioGroupItem, -:root.t_dark .t_dim_accent_TextArea, -:root.t_dark .t_disabled_accent_Checkbox, -:root.t_dark .t_disabled_accent_Input, -:root.t_dark .t_disabled_accent_RadioGroupItem, -:root.t_dark .t_disabled_accent_TextArea, -:root.t_dark .t_error_accent_Checkbox, -:root.t_dark .t_error_accent_Input, -:root.t_dark .t_error_accent_RadioGroupItem, -:root.t_dark .t_error_accent_TextArea, -:root.t_dark .t_light .t_dark .t_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_accent_Input, -:root.t_dark .t_light .t_dark .t_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_accent_TextArea, -:root.t_dark .t_light .t_dark .t_active_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_active_accent_Input, -:root.t_dark .t_light .t_dark .t_active_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_active_accent_TextArea, -:root.t_dark .t_light .t_dark .t_alt1_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_alt1_accent_Input, -:root.t_dark .t_light .t_dark .t_alt1_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_alt1_accent_TextArea, -:root.t_dark .t_light .t_dark .t_alt2_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_alt2_accent_Input, -:root.t_dark .t_light .t_dark .t_alt2_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_alt2_accent_TextArea, -:root.t_dark .t_light .t_dark .t_dim_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_dim_accent_Input, -:root.t_dark .t_light .t_dark .t_dim_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_dim_accent_TextArea, -:root.t_dark .t_light .t_dark .t_disabled_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_disabled_accent_Input, -:root.t_dark .t_light .t_dark .t_disabled_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_disabled_accent_TextArea, -:root.t_dark .t_light .t_dark .t_error_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_error_accent_Input, -:root.t_dark .t_light .t_dark .t_error_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_error_accent_TextArea, -:root.t_dark .t_light .t_dark .t_red_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_red_accent_Input, -:root.t_dark .t_light .t_dark .t_red_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_red_accent_TextArea, -:root.t_dark .t_light .t_dark .t_success_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_success_accent_Input, -:root.t_dark .t_light .t_dark .t_success_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_success_accent_TextArea, -:root.t_dark .t_light .t_dark .t_warning_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_warning_accent_Input, -:root.t_dark .t_light .t_dark .t_warning_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_warning_accent_TextArea, -:root.t_dark .t_red_accent_Checkbox, -:root.t_dark .t_red_accent_Input, -:root.t_dark .t_red_accent_RadioGroupItem, -:root.t_dark .t_red_accent_TextArea, -:root.t_dark .t_success_accent_Checkbox, -:root.t_dark .t_success_accent_Input, -:root.t_dark .t_success_accent_RadioGroupItem, -:root.t_dark .t_success_accent_TextArea, -:root.t_dark .t_warning_accent_Checkbox, -:root.t_dark .t_warning_accent_Input, -:root.t_dark .t_warning_accent_RadioGroupItem, -:root.t_dark .t_warning_accent_TextArea, -:root.t_light .t_dark .t_accent_Checkbox, -:root.t_light .t_dark .t_accent_Input, -:root.t_light .t_dark .t_accent_RadioGroupItem, -:root.t_light .t_dark .t_accent_TextArea, -:root.t_light .t_dark .t_active_accent_Checkbox, -:root.t_light .t_dark .t_active_accent_Input, -:root.t_light .t_dark .t_active_accent_RadioGroupItem, -:root.t_light .t_dark .t_active_accent_TextArea, -:root.t_light .t_dark .t_alt1_accent_Checkbox, -:root.t_light .t_dark .t_alt1_accent_Input, -:root.t_light .t_dark .t_alt1_accent_RadioGroupItem, -:root.t_light .t_dark .t_alt1_accent_TextArea, -:root.t_light .t_dark .t_alt2_accent_Checkbox, -:root.t_light .t_dark .t_alt2_accent_Input, -:root.t_light .t_dark .t_alt2_accent_RadioGroupItem, -:root.t_light .t_dark .t_alt2_accent_TextArea, -:root.t_light .t_dark .t_dim_accent_Checkbox, -:root.t_light .t_dark .t_dim_accent_Input, -:root.t_light .t_dark .t_dim_accent_RadioGroupItem, -:root.t_light .t_dark .t_dim_accent_TextArea, -:root.t_light .t_dark .t_disabled_accent_Checkbox, -:root.t_light .t_dark .t_disabled_accent_Input, -:root.t_light .t_dark .t_disabled_accent_RadioGroupItem, -:root.t_light .t_dark .t_disabled_accent_TextArea, -:root.t_light .t_dark .t_error_accent_Checkbox, -:root.t_light .t_dark .t_error_accent_Input, -:root.t_light .t_dark .t_error_accent_RadioGroupItem, -:root.t_light .t_dark .t_error_accent_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_accent_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_accent_Input, -:root.t_light .t_dark .t_light .t_dark .t_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_accent_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_Input, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Input, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Input, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_Input, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Input, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_Input, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_Input, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_Input, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_Input, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_TextArea, -:root.t_light .t_dark .t_red_accent_Checkbox, -:root.t_light .t_dark .t_red_accent_Input, -:root.t_light .t_dark .t_red_accent_RadioGroupItem, -:root.t_light .t_dark .t_red_accent_TextArea, -:root.t_light .t_dark .t_success_accent_Checkbox, -:root.t_light .t_dark .t_success_accent_Input, -:root.t_light .t_dark .t_success_accent_RadioGroupItem, -:root.t_light .t_dark .t_success_accent_TextArea, -:root.t_light .t_dark .t_warning_accent_Checkbox, -:root.t_light .t_dark .t_warning_accent_Input, -:root.t_light .t_dark .t_warning_accent_RadioGroupItem, -:root.t_light .t_dark .t_warning_accent_TextArea { - --accentBackground: hsla(125, 96%, 40%, 0); - --accentColor: hsla(125, 96%, 40%, 0); - --background0: hsla(125, 96%, 40%, 0.25); - --background025: var(--color-229); - --background05: var(--color-230); - --background075: var(--color-231); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 33%, 10%, 0.75); - --color05: hsla(191, 33%, 10%, 0.5); - --color075: hsla(191, 33%, 10%, 0.25); - --background: var(--color-231); - --backgroundHover: var(--color-232); - --backgroundPress: var(--color-233); - --backgroundFocus: var(--color-234); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-240); - --borderColor: var(--color-236); - --borderColorHover: var(--color-237); - --borderColorFocus: var(--color-238); - --borderColorPress: var(--color-237); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_accent_Checkbox, - .t_accent_Input, - .t_accent_RadioGroupItem, - .t_accent_TextArea, - .t_active_accent_Checkbox, - .t_active_accent_Input, - .t_active_accent_RadioGroupItem, - .t_active_accent_TextArea, - .t_alt1_accent_Checkbox, - .t_alt1_accent_Input, - .t_alt1_accent_RadioGroupItem, - .t_alt1_accent_TextArea, - .t_alt2_accent_Checkbox, - .t_alt2_accent_Input, - .t_alt2_accent_RadioGroupItem, - .t_alt2_accent_TextArea, - .t_dim_accent_Checkbox, - .t_dim_accent_Input, - .t_dim_accent_RadioGroupItem, - .t_dim_accent_TextArea, - .t_disabled_accent_Checkbox, - .t_disabled_accent_Input, - .t_disabled_accent_RadioGroupItem, - .t_disabled_accent_TextArea, - .t_error_accent_Checkbox, - .t_error_accent_Input, - .t_error_accent_RadioGroupItem, - .t_error_accent_TextArea, - .t_light .t_dark .t_accent_Checkbox, - .t_light .t_dark .t_accent_Input, - .t_light .t_dark .t_accent_RadioGroupItem, - .t_light .t_dark .t_accent_TextArea, - .t_light .t_dark .t_active_accent_Checkbox, - .t_light .t_dark .t_active_accent_Input, - .t_light .t_dark .t_active_accent_RadioGroupItem, - .t_light .t_dark .t_active_accent_TextArea, - .t_light .t_dark .t_alt1_accent_Checkbox, - .t_light .t_dark .t_alt1_accent_Input, - .t_light .t_dark .t_alt1_accent_RadioGroupItem, - .t_light .t_dark .t_alt1_accent_TextArea, - .t_light .t_dark .t_alt2_accent_Checkbox, - .t_light .t_dark .t_alt2_accent_Input, - .t_light .t_dark .t_alt2_accent_RadioGroupItem, - .t_light .t_dark .t_alt2_accent_TextArea, - .t_light .t_dark .t_dim_accent_Checkbox, - .t_light .t_dark .t_dim_accent_Input, - .t_light .t_dark .t_dim_accent_RadioGroupItem, - .t_light .t_dark .t_dim_accent_TextArea, - .t_light .t_dark .t_disabled_accent_Checkbox, - .t_light .t_dark .t_disabled_accent_Input, - .t_light .t_dark .t_disabled_accent_RadioGroupItem, - .t_light .t_dark .t_disabled_accent_TextArea, - .t_light .t_dark .t_error_accent_Checkbox, - .t_light .t_dark .t_error_accent_Input, - .t_light .t_dark .t_error_accent_RadioGroupItem, - .t_light .t_dark .t_error_accent_TextArea, - .t_light .t_dark .t_red_accent_Checkbox, - .t_light .t_dark .t_red_accent_Input, - .t_light .t_dark .t_red_accent_RadioGroupItem, - .t_light .t_dark .t_red_accent_TextArea, - .t_light .t_dark .t_success_accent_Checkbox, - .t_light .t_dark .t_success_accent_Input, - .t_light .t_dark .t_success_accent_RadioGroupItem, - .t_light .t_dark .t_success_accent_TextArea, - .t_light .t_dark .t_warning_accent_Checkbox, - .t_light .t_dark .t_warning_accent_Input, - .t_light .t_dark .t_warning_accent_RadioGroupItem, - .t_light .t_dark .t_warning_accent_TextArea, - .t_red_accent_Checkbox, - .t_red_accent_Input, - .t_red_accent_RadioGroupItem, - .t_red_accent_TextArea, - .t_success_accent_Checkbox, - .t_success_accent_Input, - .t_success_accent_RadioGroupItem, - .t_success_accent_TextArea, - .t_warning_accent_Checkbox, - .t_warning_accent_Input, - .t_warning_accent_RadioGroupItem, - .t_warning_accent_TextArea { - --accentBackground: hsla(125, 96%, 40%, 0); - --accentColor: hsla(125, 96%, 40%, 0); - --background0: hsla(125, 96%, 40%, 0.25); - --background025: var(--color-229); - --background05: var(--color-230); - --background075: var(--color-231); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 33%, 10%, 0.75); - --color05: hsla(191, 33%, 10%, 0.5); - --color075: hsla(191, 33%, 10%, 0.25); - --background: var(--color-231); - --backgroundHover: var(--color-232); - --backgroundPress: var(--color-233); - --backgroundFocus: var(--color-234); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-240); - --borderColor: var(--color-236); - --borderColorHover: var(--color-237); - --borderColorFocus: var(--color-238); - --borderColorPress: var(--color-237); - } -} - -:root.t_dark .t_accent_ProgressIndicator, -:root.t_dark .t_accent_SliderThumb, -:root.t_dark .t_accent_SwitchThumb, -:root.t_dark .t_accent_Tooltip, -:root.t_dark .t_active_accent_ProgressIndicator, -:root.t_dark .t_active_accent_SliderThumb, -:root.t_dark .t_active_accent_SwitchThumb, -:root.t_dark .t_active_accent_Tooltip, -:root.t_dark .t_alt1_accent_ProgressIndicator, -:root.t_dark .t_alt1_accent_SliderThumb, -:root.t_dark .t_alt1_accent_SwitchThumb, -:root.t_dark .t_alt1_accent_Tooltip, -:root.t_dark .t_alt2_accent_ProgressIndicator, -:root.t_dark .t_alt2_accent_SliderThumb, -:root.t_dark .t_alt2_accent_SwitchThumb, -:root.t_dark .t_alt2_accent_Tooltip, -:root.t_dark .t_dim_accent_ProgressIndicator, -:root.t_dark .t_dim_accent_SliderThumb, -:root.t_dark .t_dim_accent_SwitchThumb, -:root.t_dark .t_dim_accent_Tooltip, -:root.t_dark .t_disabled_accent_ProgressIndicator, -:root.t_dark .t_disabled_accent_SliderThumb, -:root.t_dark .t_disabled_accent_SwitchThumb, -:root.t_dark .t_disabled_accent_Tooltip, -:root.t_dark .t_error_accent_ProgressIndicator, -:root.t_dark .t_error_accent_SliderThumb, -:root.t_dark .t_error_accent_SwitchThumb, -:root.t_dark .t_error_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_active_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_active_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_active_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_active_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_alt1_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_alt1_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_alt1_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_alt1_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_alt2_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_alt2_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_alt2_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_alt2_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_dim_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_dim_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_dim_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_dim_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_disabled_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_disabled_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_disabled_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_disabled_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_error_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_error_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_error_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_error_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_red_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_red_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_red_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_red_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_success_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_success_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_success_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_success_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_warning_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_warning_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_warning_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_warning_accent_Tooltip, -:root.t_dark .t_red_accent_ProgressIndicator, -:root.t_dark .t_red_accent_SliderThumb, -:root.t_dark .t_red_accent_SwitchThumb, -:root.t_dark .t_red_accent_Tooltip, -:root.t_dark .t_success_accent_ProgressIndicator, -:root.t_dark .t_success_accent_SliderThumb, -:root.t_dark .t_success_accent_SwitchThumb, -:root.t_dark .t_success_accent_Tooltip, -:root.t_dark .t_warning_accent_ProgressIndicator, -:root.t_dark .t_warning_accent_SliderThumb, -:root.t_dark .t_warning_accent_SwitchThumb, -:root.t_dark .t_warning_accent_Tooltip, -:root.t_light .t_dark .t_accent_ProgressIndicator, -:root.t_light .t_dark .t_accent_SliderThumb, -:root.t_light .t_dark .t_accent_SwitchThumb, -:root.t_light .t_dark .t_accent_Tooltip, -:root.t_light .t_dark .t_active_accent_ProgressIndicator, -:root.t_light .t_dark .t_active_accent_SliderThumb, -:root.t_light .t_dark .t_active_accent_SwitchThumb, -:root.t_light .t_dark .t_active_accent_Tooltip, -:root.t_light .t_dark .t_alt1_accent_ProgressIndicator, -:root.t_light .t_dark .t_alt1_accent_SliderThumb, -:root.t_light .t_dark .t_alt1_accent_SwitchThumb, -:root.t_light .t_dark .t_alt1_accent_Tooltip, -:root.t_light .t_dark .t_alt2_accent_ProgressIndicator, -:root.t_light .t_dark .t_alt2_accent_SliderThumb, -:root.t_light .t_dark .t_alt2_accent_SwitchThumb, -:root.t_light .t_dark .t_alt2_accent_Tooltip, -:root.t_light .t_dark .t_dim_accent_ProgressIndicator, -:root.t_light .t_dark .t_dim_accent_SliderThumb, -:root.t_light .t_dark .t_dim_accent_SwitchThumb, -:root.t_light .t_dark .t_dim_accent_Tooltip, -:root.t_light .t_dark .t_disabled_accent_ProgressIndicator, -:root.t_light .t_dark .t_disabled_accent_SliderThumb, -:root.t_light .t_dark .t_disabled_accent_SwitchThumb, -:root.t_light .t_dark .t_disabled_accent_Tooltip, -:root.t_light .t_dark .t_error_accent_ProgressIndicator, -:root.t_light .t_dark .t_error_accent_SliderThumb, -:root.t_light .t_dark .t_error_accent_SwitchThumb, -:root.t_light .t_dark .t_error_accent_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_accent_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_Tooltip, -:root.t_light .t_dark .t_red_accent_ProgressIndicator, -:root.t_light .t_dark .t_red_accent_SliderThumb, -:root.t_light .t_dark .t_red_accent_SwitchThumb, -:root.t_light .t_dark .t_red_accent_Tooltip, -:root.t_light .t_dark .t_success_accent_ProgressIndicator, -:root.t_light .t_dark .t_success_accent_SliderThumb, -:root.t_light .t_dark .t_success_accent_SwitchThumb, -:root.t_light .t_dark .t_success_accent_Tooltip, -:root.t_light .t_dark .t_warning_accent_ProgressIndicator, -:root.t_light .t_dark .t_warning_accent_SliderThumb, -:root.t_light .t_dark .t_warning_accent_SwitchThumb, -:root.t_light .t_dark .t_warning_accent_Tooltip { - --accentBackground: hsla(125, 96%, 40%, 0); - --accentColor: hsla(125, 96%, 40%, 0); - --background0: hsla(191, 33%, 10%, 0.25); - --background025: hsla(191, 33%, 10%, 0.5); - --background05: hsla(191, 33%, 10%, 0.75); - --background075: hsla(191, 32%, 10%, 1); - --color0: var(--color-231); - --color025: var(--color-230); - --color05: var(--color-229); - --color075: hsla(125, 96%, 40%, 0.25); - --background: hsla(191, 32%, 10%, 1); - --backgroundHover: hsla(191, 32%, 10%, 1); - --backgroundPress: var(--color-240); - --backgroundFocus: var(--color-239); - --color: var(--color-232); - --colorHover: var(--color-233); - --colorPress: var(--color-232); - --colorFocus: var(--color-233); - --placeholderColor: var(--color-233); - --borderColor: var(--color-239); - --borderColorHover: var(--color-238); - --borderColorFocus: var(--color-237); - --borderColorPress: var(--color-238); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_accent_ProgressIndicator, - .t_accent_SliderThumb, - .t_accent_SwitchThumb, - .t_accent_Tooltip, - .t_active_accent_ProgressIndicator, - .t_active_accent_SliderThumb, - .t_active_accent_SwitchThumb, - .t_active_accent_Tooltip, - .t_alt1_accent_ProgressIndicator, - .t_alt1_accent_SliderThumb, - .t_alt1_accent_SwitchThumb, - .t_alt1_accent_Tooltip, - .t_alt2_accent_ProgressIndicator, - .t_alt2_accent_SliderThumb, - .t_alt2_accent_SwitchThumb, - .t_alt2_accent_Tooltip, - .t_dim_accent_ProgressIndicator, - .t_dim_accent_SliderThumb, - .t_dim_accent_SwitchThumb, - .t_dim_accent_Tooltip, - .t_disabled_accent_ProgressIndicator, - .t_disabled_accent_SliderThumb, - .t_disabled_accent_SwitchThumb, - .t_disabled_accent_Tooltip, - .t_error_accent_ProgressIndicator, - .t_error_accent_SliderThumb, - .t_error_accent_SwitchThumb, - .t_error_accent_Tooltip, - .t_light .t_dark .t_accent_ProgressIndicator, - .t_light .t_dark .t_accent_SliderThumb, - .t_light .t_dark .t_accent_SwitchThumb, - .t_light .t_dark .t_accent_Tooltip, - .t_light .t_dark .t_active_accent_ProgressIndicator, - .t_light .t_dark .t_active_accent_SliderThumb, - .t_light .t_dark .t_active_accent_SwitchThumb, - .t_light .t_dark .t_active_accent_Tooltip, - .t_light .t_dark .t_alt1_accent_ProgressIndicator, - .t_light .t_dark .t_alt1_accent_SliderThumb, - .t_light .t_dark .t_alt1_accent_SwitchThumb, - .t_light .t_dark .t_alt1_accent_Tooltip, - .t_light .t_dark .t_alt2_accent_ProgressIndicator, - .t_light .t_dark .t_alt2_accent_SliderThumb, - .t_light .t_dark .t_alt2_accent_SwitchThumb, - .t_light .t_dark .t_alt2_accent_Tooltip, - .t_light .t_dark .t_dim_accent_ProgressIndicator, - .t_light .t_dark .t_dim_accent_SliderThumb, - .t_light .t_dark .t_dim_accent_SwitchThumb, - .t_light .t_dark .t_dim_accent_Tooltip, - .t_light .t_dark .t_disabled_accent_ProgressIndicator, - .t_light .t_dark .t_disabled_accent_SliderThumb, - .t_light .t_dark .t_disabled_accent_SwitchThumb, - .t_light .t_dark .t_disabled_accent_Tooltip, - .t_light .t_dark .t_error_accent_ProgressIndicator, - .t_light .t_dark .t_error_accent_SliderThumb, - .t_light .t_dark .t_error_accent_SwitchThumb, - .t_light .t_dark .t_error_accent_Tooltip, - .t_light .t_dark .t_red_accent_ProgressIndicator, - .t_light .t_dark .t_red_accent_SliderThumb, - .t_light .t_dark .t_red_accent_SwitchThumb, - .t_light .t_dark .t_red_accent_Tooltip, - .t_light .t_dark .t_success_accent_ProgressIndicator, - .t_light .t_dark .t_success_accent_SliderThumb, - .t_light .t_dark .t_success_accent_SwitchThumb, - .t_light .t_dark .t_success_accent_Tooltip, - .t_light .t_dark .t_warning_accent_ProgressIndicator, - .t_light .t_dark .t_warning_accent_SliderThumb, - .t_light .t_dark .t_warning_accent_SwitchThumb, - .t_light .t_dark .t_warning_accent_Tooltip, - .t_red_accent_ProgressIndicator, - .t_red_accent_SliderThumb, - .t_red_accent_SwitchThumb, - .t_red_accent_Tooltip, - .t_success_accent_ProgressIndicator, - .t_success_accent_SliderThumb, - .t_success_accent_SwitchThumb, - .t_success_accent_Tooltip, - .t_warning_accent_ProgressIndicator, - .t_warning_accent_SliderThumb, - .t_warning_accent_SwitchThumb, - .t_warning_accent_Tooltip { - --accentBackground: hsla(125, 96%, 40%, 0); - --accentColor: hsla(125, 96%, 40%, 0); - --background0: hsla(191, 33%, 10%, 0.25); - --background025: hsla(191, 33%, 10%, 0.5); - --background05: hsla(191, 33%, 10%, 0.75); - --background075: hsla(191, 32%, 10%, 1); - --color0: var(--color-231); - --color025: var(--color-230); - --color05: var(--color-229); - --color075: hsla(125, 96%, 40%, 0.25); - --background: hsla(191, 32%, 10%, 1); - --backgroundHover: hsla(191, 32%, 10%, 1); - --backgroundPress: var(--color-240); - --backgroundFocus: var(--color-239); - --color: var(--color-232); - --colorHover: var(--color-233); - --colorPress: var(--color-232); - --colorFocus: var(--color-233); - --placeholderColor: var(--color-233); - --borderColor: var(--color-239); - --borderColorHover: var(--color-238); - --borderColorFocus: var(--color-237); - --borderColorPress: var(--color-238); - } -} - -:root.t_dark .t_accent_SliderTrack, -:root.t_dark .t_accent_TooltipContent, -:root.t_dark .t_active_accent_Button, -:root.t_dark .t_active_accent_SliderTrack, -:root.t_dark .t_active_accent_Switch, -:root.t_dark .t_active_accent_TooltipContent, -:root.t_dark .t_alt1_accent_Button, -:root.t_dark .t_alt1_accent_SliderTrack, -:root.t_dark .t_alt1_accent_Switch, -:root.t_dark .t_alt1_accent_TooltipContent, -:root.t_dark .t_alt2_accent_Button, -:root.t_dark .t_alt2_accent_SliderTrack, -:root.t_dark .t_alt2_accent_Switch, -:root.t_dark .t_alt2_accent_TooltipContent, -:root.t_dark .t_dim_accent_Button, -:root.t_dark .t_dim_accent_SliderTrack, -:root.t_dark .t_dim_accent_Switch, -:root.t_dark .t_dim_accent_TooltipContent, -:root.t_dark .t_disabled_accent_Button, -:root.t_dark .t_disabled_accent_SliderTrack, -:root.t_dark .t_disabled_accent_Switch, -:root.t_dark .t_disabled_accent_TooltipContent, -:root.t_dark .t_error_accent_Button, -:root.t_dark .t_error_accent_SliderTrack, -:root.t_dark .t_error_accent_Switch, -:root.t_dark .t_error_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_active_accent_Button, -:root.t_dark .t_light .t_dark .t_active_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_active_accent_Switch, -:root.t_dark .t_light .t_dark .t_active_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_alt1_accent_Button, -:root.t_dark .t_light .t_dark .t_alt1_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_alt1_accent_Switch, -:root.t_dark .t_light .t_dark .t_alt1_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_alt2_accent_Button, -:root.t_dark .t_light .t_dark .t_alt2_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_alt2_accent_Switch, -:root.t_dark .t_light .t_dark .t_alt2_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_dim_accent_Button, -:root.t_dark .t_light .t_dark .t_dim_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_dim_accent_Switch, -:root.t_dark .t_light .t_dark .t_dim_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_disabled_accent_Button, -:root.t_dark .t_light .t_dark .t_disabled_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_disabled_accent_Switch, -:root.t_dark .t_light .t_dark .t_disabled_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_error_accent_Button, -:root.t_dark .t_light .t_dark .t_error_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_error_accent_Switch, -:root.t_dark .t_light .t_dark .t_error_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_red_accent_Button, -:root.t_dark .t_light .t_dark .t_red_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_red_accent_Switch, -:root.t_dark .t_light .t_dark .t_red_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_success_accent_Button, -:root.t_dark .t_light .t_dark .t_success_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_success_accent_Switch, -:root.t_dark .t_light .t_dark .t_success_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_warning_accent_Button, -:root.t_dark .t_light .t_dark .t_warning_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_warning_accent_Switch, -:root.t_dark .t_light .t_dark .t_warning_accent_TooltipContent, -:root.t_dark .t_red_accent_Button, -:root.t_dark .t_red_accent_SliderTrack, -:root.t_dark .t_red_accent_Switch, -:root.t_dark .t_red_accent_TooltipContent, -:root.t_dark .t_success_accent_Button, -:root.t_dark .t_success_accent_SliderTrack, -:root.t_dark .t_success_accent_Switch, -:root.t_dark .t_success_accent_TooltipContent, -:root.t_dark .t_warning_accent_Button, -:root.t_dark .t_warning_accent_SliderTrack, -:root.t_dark .t_warning_accent_Switch, -:root.t_dark .t_warning_accent_TooltipContent, -:root.t_light .t_dark .t_accent_SliderTrack, -:root.t_light .t_dark .t_accent_TooltipContent, -:root.t_light .t_dark .t_active_accent_Button, -:root.t_light .t_dark .t_active_accent_SliderTrack, -:root.t_light .t_dark .t_active_accent_Switch, -:root.t_light .t_dark .t_active_accent_TooltipContent, -:root.t_light .t_dark .t_alt1_accent_Button, -:root.t_light .t_dark .t_alt1_accent_SliderTrack, -:root.t_light .t_dark .t_alt1_accent_Switch, -:root.t_light .t_dark .t_alt1_accent_TooltipContent, -:root.t_light .t_dark .t_alt2_accent_Button, -:root.t_light .t_dark .t_alt2_accent_SliderTrack, -:root.t_light .t_dark .t_alt2_accent_Switch, -:root.t_light .t_dark .t_alt2_accent_TooltipContent, -:root.t_light .t_dark .t_dim_accent_Button, -:root.t_light .t_dark .t_dim_accent_SliderTrack, -:root.t_light .t_dark .t_dim_accent_Switch, -:root.t_light .t_dark .t_dim_accent_TooltipContent, -:root.t_light .t_dark .t_disabled_accent_Button, -:root.t_light .t_dark .t_disabled_accent_SliderTrack, -:root.t_light .t_dark .t_disabled_accent_Switch, -:root.t_light .t_dark .t_disabled_accent_TooltipContent, -:root.t_light .t_dark .t_error_accent_Button, -:root.t_light .t_dark .t_error_accent_SliderTrack, -:root.t_light .t_dark .t_error_accent_Switch, -:root.t_light .t_dark .t_error_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_Button, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_Switch, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Button, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_Switch, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Button, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_Switch, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_Button, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_Switch, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Button, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_Switch, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_Button, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_Switch, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_Button, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_Switch, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_Button, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_Switch, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_Button, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_Switch, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_TooltipContent, -:root.t_light .t_dark .t_red_accent_Button, -:root.t_light .t_dark .t_red_accent_SliderTrack, -:root.t_light .t_dark .t_red_accent_Switch, -:root.t_light .t_dark .t_red_accent_TooltipContent, -:root.t_light .t_dark .t_success_accent_Button, -:root.t_light .t_dark .t_success_accent_SliderTrack, -:root.t_light .t_dark .t_success_accent_Switch, -:root.t_light .t_dark .t_success_accent_TooltipContent, -:root.t_light .t_dark .t_warning_accent_Button, -:root.t_light .t_dark .t_warning_accent_SliderTrack, -:root.t_light .t_dark .t_warning_accent_Switch, -:root.t_light .t_dark .t_warning_accent_TooltipContent { - --background0: var(--color-230); - --background025: var(--color-231); - --background05: var(--color-232); - --background075: var(--color-233); - --color0: var(--color-240); - --color025: hsla(191, 32%, 10%, 1); - --color05: hsla(191, 32%, 10%, 1); - --color075: hsla(191, 33%, 10%, 0.75); - --background: var(--color-233); - --backgroundHover: var(--color-234); - --backgroundPress: var(--color-235); - --backgroundFocus: var(--color-236); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-238); - --borderColor: var(--color-236); - --borderColorHover: var(--color-237); - --borderColorFocus: var(--color-238); - --borderColorPress: var(--color-237); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_accent_SliderTrack, - .t_accent_TooltipContent, - .t_active_accent_Button, - .t_active_accent_SliderTrack, - .t_active_accent_Switch, - .t_active_accent_TooltipContent, - .t_alt1_accent_Button, - .t_alt1_accent_SliderTrack, - .t_alt1_accent_Switch, - .t_alt1_accent_TooltipContent, - .t_alt2_accent_Button, - .t_alt2_accent_SliderTrack, - .t_alt2_accent_Switch, - .t_alt2_accent_TooltipContent, - .t_dim_accent_Button, - .t_dim_accent_SliderTrack, - .t_dim_accent_Switch, - .t_dim_accent_TooltipContent, - .t_disabled_accent_Button, - .t_disabled_accent_SliderTrack, - .t_disabled_accent_Switch, - .t_disabled_accent_TooltipContent, - .t_error_accent_Button, - .t_error_accent_SliderTrack, - .t_error_accent_Switch, - .t_error_accent_TooltipContent, - .t_light .t_dark .t_accent_SliderTrack, - .t_light .t_dark .t_accent_TooltipContent, - .t_light .t_dark .t_active_accent_Button, - .t_light .t_dark .t_active_accent_SliderTrack, - .t_light .t_dark .t_active_accent_Switch, - .t_light .t_dark .t_active_accent_TooltipContent, - .t_light .t_dark .t_alt1_accent_Button, - .t_light .t_dark .t_alt1_accent_SliderTrack, - .t_light .t_dark .t_alt1_accent_Switch, - .t_light .t_dark .t_alt1_accent_TooltipContent, - .t_light .t_dark .t_alt2_accent_Button, - .t_light .t_dark .t_alt2_accent_SliderTrack, - .t_light .t_dark .t_alt2_accent_Switch, - .t_light .t_dark .t_alt2_accent_TooltipContent, - .t_light .t_dark .t_dim_accent_Button, - .t_light .t_dark .t_dim_accent_SliderTrack, - .t_light .t_dark .t_dim_accent_Switch, - .t_light .t_dark .t_dim_accent_TooltipContent, - .t_light .t_dark .t_disabled_accent_Button, - .t_light .t_dark .t_disabled_accent_SliderTrack, - .t_light .t_dark .t_disabled_accent_Switch, - .t_light .t_dark .t_disabled_accent_TooltipContent, - .t_light .t_dark .t_error_accent_Button, - .t_light .t_dark .t_error_accent_SliderTrack, - .t_light .t_dark .t_error_accent_Switch, - .t_light .t_dark .t_error_accent_TooltipContent, - .t_light .t_dark .t_red_accent_Button, - .t_light .t_dark .t_red_accent_SliderTrack, - .t_light .t_dark .t_red_accent_Switch, - .t_light .t_dark .t_red_accent_TooltipContent, - .t_light .t_dark .t_success_accent_Button, - .t_light .t_dark .t_success_accent_SliderTrack, - .t_light .t_dark .t_success_accent_Switch, - .t_light .t_dark .t_success_accent_TooltipContent, - .t_light .t_dark .t_warning_accent_Button, - .t_light .t_dark .t_warning_accent_SliderTrack, - .t_light .t_dark .t_warning_accent_Switch, - .t_light .t_dark .t_warning_accent_TooltipContent, - .t_red_accent_Button, - .t_red_accent_SliderTrack, - .t_red_accent_Switch, - .t_red_accent_TooltipContent, - .t_success_accent_Button, - .t_success_accent_SliderTrack, - .t_success_accent_Switch, - .t_success_accent_TooltipContent, - .t_warning_accent_Button, - .t_warning_accent_SliderTrack, - .t_warning_accent_Switch, - .t_warning_accent_TooltipContent { - --background0: var(--color-230); - --background025: var(--color-231); - --background05: var(--color-232); - --background075: var(--color-233); - --color0: var(--color-240); - --color025: hsla(191, 32%, 10%, 1); - --color05: hsla(191, 32%, 10%, 1); - --color075: hsla(191, 33%, 10%, 0.75); - --background: var(--color-233); - --backgroundHover: var(--color-234); - --backgroundPress: var(--color-235); - --backgroundFocus: var(--color-236); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-238); - --borderColor: var(--color-236); - --borderColorHover: var(--color-237); - --borderColorFocus: var(--color-238); - --borderColorPress: var(--color-237); - } -} - -:root.t_dark .t_accent_SliderTrackActive, -:root.t_dark .t_active_accent_SliderTrackActive, -:root.t_dark .t_alt1_accent_SliderTrackActive, -:root.t_dark .t_alt2_accent_SliderTrackActive, -:root.t_dark .t_dim_accent_SliderTrackActive, -:root.t_dark .t_disabled_accent_SliderTrackActive, -:root.t_dark .t_error_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_active_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_alt1_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_alt2_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_dim_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_disabled_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_error_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_red_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_success_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_warning_accent_SliderTrackActive, -:root.t_dark .t_red_accent_SliderTrackActive, -:root.t_dark .t_success_accent_SliderTrackActive, -:root.t_dark .t_warning_accent_SliderTrackActive, -:root.t_light .t_dark .t_accent_SliderTrackActive, -:root.t_light .t_dark .t_active_accent_SliderTrackActive, -:root.t_light .t_dark .t_alt1_accent_SliderTrackActive, -:root.t_light .t_dark .t_alt2_accent_SliderTrackActive, -:root.t_light .t_dark .t_dim_accent_SliderTrackActive, -:root.t_light .t_dark .t_disabled_accent_SliderTrackActive, -:root.t_light .t_dark .t_error_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_active_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_alt1_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_alt2_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_dim_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_disabled_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_error_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_red_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_success_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_warning_accent_SliderTrackActive, -:root.t_light .t_dark .t_red_accent_SliderTrackActive, -:root.t_light .t_dark .t_success_accent_SliderTrackActive, -:root.t_light .t_dark .t_warning_accent_SliderTrackActive { - --accentBackground: hsla(125, 96%, 40%, 0); - --accentColor: hsla(125, 96%, 40%, 0); - --background0: hsla(191, 33%, 10%, 0.75); - --background025: hsla(191, 32%, 10%, 1); - --background05: hsla(191, 32%, 10%, 1); - --background075: var(--color-240); - --color0: var(--color-233); - --color025: var(--color-232); - --color05: var(--color-231); - --color075: var(--color-230); - --background: var(--color-240); - --backgroundHover: var(--color-239); - --backgroundPress: var(--color-238); - --backgroundFocus: var(--color-237); - --color: var(--color-232); - --colorHover: var(--color-233); - --colorPress: var(--color-232); - --colorFocus: var(--color-233); - --placeholderColor: var(--color-235); - --borderColor: var(--color-237); - --borderColorHover: var(--color-236); - --borderColorFocus: var(--color-235); - --borderColorPress: var(--color-236); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_accent_SliderTrackActive, - .t_active_accent_SliderTrackActive, - .t_alt1_accent_SliderTrackActive, - .t_alt2_accent_SliderTrackActive, - .t_dim_accent_SliderTrackActive, - .t_disabled_accent_SliderTrackActive, - .t_error_accent_SliderTrackActive, - .t_light .t_dark .t_accent_SliderTrackActive, - .t_light .t_dark .t_active_accent_SliderTrackActive, - .t_light .t_dark .t_alt1_accent_SliderTrackActive, - .t_light .t_dark .t_alt2_accent_SliderTrackActive, - .t_light .t_dark .t_dim_accent_SliderTrackActive, - .t_light .t_dark .t_disabled_accent_SliderTrackActive, - .t_light .t_dark .t_error_accent_SliderTrackActive, - .t_light .t_dark .t_red_accent_SliderTrackActive, - .t_light .t_dark .t_success_accent_SliderTrackActive, - .t_light .t_dark .t_warning_accent_SliderTrackActive, - .t_red_accent_SliderTrackActive, - .t_success_accent_SliderTrackActive, - .t_warning_accent_SliderTrackActive { - --accentBackground: hsla(125, 96%, 40%, 0); - --accentColor: hsla(125, 96%, 40%, 0); - --background0: hsla(191, 33%, 10%, 0.75); - --background025: hsla(191, 32%, 10%, 1); - --background05: hsla(191, 32%, 10%, 1); - --background075: var(--color-240); - --color0: var(--color-233); - --color025: var(--color-232); - --color05: var(--color-231); - --color075: var(--color-230); - --background: var(--color-240); - --backgroundHover: var(--color-239); - --backgroundPress: var(--color-238); - --backgroundFocus: var(--color-237); - --color: var(--color-232); - --colorHover: var(--color-233); - --colorPress: var(--color-232); - --colorFocus: var(--color-233); - --placeholderColor: var(--color-235); - --borderColor: var(--color-237); - --borderColorHover: var(--color-236); - --borderColorFocus: var(--color-235); - --borderColorPress: var(--color-236); - } -} - -:root.t_dark .t_active, -:root.t_dark .t_light .t_dark .t_active, -:root.t_light .t_dark .t_active, -:root.t_light .t_dark .t_light .t_dark .t_active { - --background0: hsla(191, 33%, 10%, 0); - --background025: hsla(191, 33%, 10%, 0.25); - --background05: hsla(191, 33%, 10%, 0.5); - --background075: hsla(191, 33%, 10%, 0.75); - --color0: hsla(0, 0%, 100%, 0.75); - --color025: hsla(0, 0%, 100%, 0.5); - --color05: hsla(0, 0%, 100%, 0.25); - --color075: hsla(0, 0%, 100%, 0); - --background: hsla(191, 33%, 10%, 0.75); - --backgroundHover: hsla(191, 32%, 10%, 1); - --backgroundPress: hsla(191, 32%, 15%, 1); - --backgroundFocus: hsla(191, 32%, 19%, 1); - --colorHover: hsla(112, 22%, 59%, 1); - --colorPress: hsla(112, 22%, 100%, 1); - --colorFocus: hsla(112, 22%, 59%, 1); - --placeholderColor: hsla(112, 22%, 59%, 1); - --borderColor: hsla(191, 32%, 19%, 1); - --borderColorHover: hsla(191, 32%, 24%, 1); - --borderColorFocus: hsla(191, 32%, 28%, 1); - --borderColorPress: hsla(191, 32%, 24%, 1); - --color1: hsla(191, 33%, 10%, 0.75); - --color2: hsla(191, 32%, 10%, 1); - --color3: hsla(191, 32%, 15%, 1); - --color4: hsla(191, 32%, 19%, 1); - --color5: hsla(191, 32%, 24%, 1); - --color6: hsla(191, 32%, 28%, 1); - --color7: hsla(191, 32%, 32%, 1); - --color8: hsla(191, 32%, 37%, 1); - --color9: hsla(191, 32%, 41%, 1); - --color10: hsla(191, 32%, 46%, 1); - --color11: hsla(191, 32%, 50%, 1); - --color12: hsla(112, 22%, 59%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - } - - .t_active, - .t_light .t_dark .t_active { - --background0: hsla(191, 33%, 10%, 0); - --background025: hsla(191, 33%, 10%, 0.25); - --background05: hsla(191, 33%, 10%, 0.5); - --background075: hsla(191, 33%, 10%, 0.75); - --color0: hsla(0, 0%, 100%, 0.75); - --color025: hsla(0, 0%, 100%, 0.5); - --color05: hsla(0, 0%, 100%, 0.25); - --color075: hsla(0, 0%, 100%, 0); - --background: hsla(191, 33%, 10%, 0.75); - --backgroundHover: hsla(191, 32%, 10%, 1); - --backgroundPress: hsla(191, 32%, 15%, 1); - --backgroundFocus: hsla(191, 32%, 19%, 1); - --colorHover: hsla(112, 22%, 59%, 1); - --colorPress: hsla(112, 22%, 100%, 1); - --colorFocus: hsla(112, 22%, 59%, 1); - --placeholderColor: hsla(112, 22%, 59%, 1); - --borderColor: hsla(191, 32%, 19%, 1); - --borderColorHover: hsla(191, 32%, 24%, 1); - --borderColorFocus: hsla(191, 32%, 28%, 1); - --borderColorPress: hsla(191, 32%, 24%, 1); - --color1: hsla(191, 33%, 10%, 0.75); - --color2: hsla(191, 32%, 10%, 1); - --color3: hsla(191, 32%, 15%, 1); - --color4: hsla(191, 32%, 19%, 1); - --color5: hsla(191, 32%, 24%, 1); - --color6: hsla(191, 32%, 28%, 1); - --color7: hsla(191, 32%, 32%, 1); - --color8: hsla(191, 32%, 37%, 1); - --color9: hsla(191, 32%, 41%, 1); - --color10: hsla(191, 32%, 46%, 1); - --color11: hsla(191, 32%, 50%, 1); - --color12: hsla(112, 22%, 59%, 1); - } -} - -:root.t_dark .t_active_Button, -:root.t_dark .t_active_SliderTrack, -:root.t_dark .t_active_Switch, -:root.t_dark .t_active_TooltipContent, -:root.t_dark .t_light .t_dark .t_active_Button, -:root.t_dark .t_light .t_dark .t_active_SliderTrack, -:root.t_dark .t_light .t_dark .t_active_Switch, -:root.t_dark .t_light .t_dark .t_active_TooltipContent, -:root.t_light .t_dark .t_active_Button, -:root.t_light .t_dark .t_active_SliderTrack, -:root.t_light .t_dark .t_active_Switch, -:root.t_light .t_dark .t_active_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_active_Button, -:root.t_light .t_dark .t_light .t_dark .t_active_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_active_Switch, -:root.t_light .t_dark .t_light .t_dark .t_active_TooltipContent { - --background0: hsla(191, 33%, 10%, 0.5); - --background025: hsla(191, 33%, 10%, 0.75); - --background05: hsla(191, 32%, 10%, 1); - --background075: hsla(191, 32%, 15%, 1); - --color0: hsla(112, 22%, 59%, 1); - --color025: hsla(112, 22%, 100%, 1); - --color05: hsla(0, 0%, 100%, 0.75); - --color075: hsla(0, 0%, 100%, 0.5); - --background: hsla(191, 32%, 15%, 1); - --backgroundHover: hsla(191, 32%, 19%, 1); - --backgroundPress: hsla(191, 32%, 24%, 1); - --backgroundFocus: hsla(191, 32%, 28%, 1); - --colorHover: hsla(112, 22%, 59%, 1); - --colorPress: hsla(112, 22%, 100%, 1); - --colorFocus: hsla(112, 22%, 59%, 1); - --placeholderColor: hsla(191, 32%, 46%, 1); - --borderColor: hsla(191, 32%, 28%, 1); - --borderColorHover: hsla(191, 32%, 32%, 1); - --borderColorFocus: hsla(191, 32%, 37%, 1); - --borderColorPress: hsla(191, 32%, 32%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - } - - .t_active_Button, - .t_active_SliderTrack, - .t_active_Switch, - .t_active_TooltipContent, - .t_light .t_dark .t_active_Button, - .t_light .t_dark .t_active_SliderTrack, - .t_light .t_dark .t_active_Switch, - .t_light .t_dark .t_active_TooltipContent { - --background0: hsla(191, 33%, 10%, 0.5); - --background025: hsla(191, 33%, 10%, 0.75); - --background05: hsla(191, 32%, 10%, 1); - --background075: hsla(191, 32%, 15%, 1); - --color0: hsla(112, 22%, 59%, 1); - --color025: hsla(112, 22%, 100%, 1); - --color05: hsla(0, 0%, 100%, 0.75); - --color075: hsla(0, 0%, 100%, 0.5); - --background: hsla(191, 32%, 15%, 1); - --backgroundHover: hsla(191, 32%, 19%, 1); - --backgroundPress: hsla(191, 32%, 24%, 1); - --backgroundFocus: hsla(191, 32%, 28%, 1); - --colorHover: hsla(112, 22%, 59%, 1); - --colorPress: hsla(112, 22%, 100%, 1); - --colorFocus: hsla(112, 22%, 59%, 1); - --placeholderColor: hsla(191, 32%, 46%, 1); - --borderColor: hsla(191, 32%, 28%, 1); - --borderColorHover: hsla(191, 32%, 32%, 1); - --borderColorFocus: hsla(191, 32%, 37%, 1); - --borderColorPress: hsla(191, 32%, 32%, 1); - } -} - -:root.t_dark .t_active_Card, -:root.t_dark .t_active_DrawerFrame, -:root.t_dark .t_active_Progress, -:root.t_dark .t_active_TooltipArrow, -:root.t_dark .t_light .t_dark .t_active_Card, -:root.t_dark .t_light .t_dark .t_active_DrawerFrame, -:root.t_dark .t_light .t_dark .t_active_Progress, -:root.t_dark .t_light .t_dark .t_active_TooltipArrow, -:root.t_light .t_dark .t_active_Card, -:root.t_light .t_dark .t_active_DrawerFrame, -:root.t_light .t_dark .t_active_Progress, -:root.t_light .t_dark .t_active_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_active_Card, -:root.t_light .t_dark .t_light .t_dark .t_active_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_active_Progress, -:root.t_light .t_dark .t_light .t_dark .t_active_TooltipArrow { - --background0: hsla(191, 33%, 10%, 0.25); - --background025: hsla(191, 33%, 10%, 0.5); - --background05: hsla(191, 33%, 10%, 0.75); - --background075: hsla(191, 32%, 10%, 1); - --color0: hsla(112, 22%, 100%, 1); - --color025: hsla(0, 0%, 100%, 0.75); - --color05: hsla(0, 0%, 100%, 0.5); - --color075: hsla(0, 0%, 100%, 0.25); - --background: hsla(191, 32%, 10%, 1); - --backgroundHover: hsla(191, 32%, 15%, 1); - --backgroundPress: hsla(191, 32%, 19%, 1); - --backgroundFocus: hsla(191, 32%, 24%, 1); - --colorHover: hsla(112, 22%, 59%, 1); - --colorPress: hsla(112, 22%, 100%, 1); - --colorFocus: hsla(112, 22%, 59%, 1); - --placeholderColor: hsla(191, 32%, 50%, 1); - --borderColor: hsla(191, 32%, 24%, 1); - --borderColorHover: hsla(191, 32%, 28%, 1); - --borderColorFocus: hsla(191, 32%, 32%, 1); - --borderColorPress: hsla(191, 32%, 28%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - } - - .t_active_Card, - .t_active_DrawerFrame, - .t_active_Progress, - .t_active_TooltipArrow, - .t_light .t_dark .t_active_Card, - .t_light .t_dark .t_active_DrawerFrame, - .t_light .t_dark .t_active_Progress, - .t_light .t_dark .t_active_TooltipArrow { - --background0: hsla(191, 33%, 10%, 0.25); - --background025: hsla(191, 33%, 10%, 0.5); - --background05: hsla(191, 33%, 10%, 0.75); - --background075: hsla(191, 32%, 10%, 1); - --color0: hsla(112, 22%, 100%, 1); - --color025: hsla(0, 0%, 100%, 0.75); - --color05: hsla(0, 0%, 100%, 0.5); - --color075: hsla(0, 0%, 100%, 0.25); - --background: hsla(191, 32%, 10%, 1); - --backgroundHover: hsla(191, 32%, 15%, 1); - --backgroundPress: hsla(191, 32%, 19%, 1); - --backgroundFocus: hsla(191, 32%, 24%, 1); - --colorHover: hsla(112, 22%, 59%, 1); - --colorPress: hsla(112, 22%, 100%, 1); - --colorFocus: hsla(112, 22%, 59%, 1); - --placeholderColor: hsla(191, 32%, 50%, 1); - --borderColor: hsla(191, 32%, 24%, 1); - --borderColorHover: hsla(191, 32%, 28%, 1); - --borderColorFocus: hsla(191, 32%, 32%, 1); - --borderColorPress: hsla(191, 32%, 28%, 1); - } -} - -:root.t_dark .t_active_Checkbox, -:root.t_dark .t_active_Input, -:root.t_dark .t_active_RadioGroupItem, -:root.t_dark .t_active_TextArea, -:root.t_dark .t_light .t_dark .t_active_Checkbox, -:root.t_dark .t_light .t_dark .t_active_Input, -:root.t_dark .t_light .t_dark .t_active_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_active_TextArea, -:root.t_light .t_dark .t_active_Checkbox, -:root.t_light .t_dark .t_active_Input, -:root.t_light .t_dark .t_active_RadioGroupItem, -:root.t_light .t_dark .t_active_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_active_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_active_Input, -:root.t_light .t_dark .t_light .t_dark .t_active_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_active_TextArea { - --background0: hsla(191, 33%, 10%, 0); - --background025: hsla(191, 33%, 10%, 0.25); - --background05: hsla(191, 33%, 10%, 0.5); - --background075: hsla(191, 33%, 10%, 0.75); - --color0: hsla(0, 0%, 100%, 0.75); - --color025: hsla(0, 0%, 100%, 0.5); - --color05: hsla(0, 0%, 100%, 0.25); - --color075: hsla(0, 0%, 100%, 0); - --background: hsla(191, 33%, 10%, 0.75); - --backgroundHover: hsla(191, 32%, 10%, 1); - --backgroundPress: hsla(191, 32%, 15%, 1); - --backgroundFocus: hsla(191, 32%, 19%, 1); - --colorHover: hsla(112, 22%, 59%, 1); - --colorPress: hsla(112, 22%, 100%, 1); - --colorFocus: hsla(112, 22%, 59%, 1); - --placeholderColor: hsla(112, 22%, 59%, 1); - --borderColor: hsla(191, 32%, 28%, 1); - --borderColorHover: hsla(191, 32%, 32%, 1); - --borderColorFocus: hsla(191, 32%, 37%, 1); - --borderColorPress: hsla(191, 32%, 32%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - } - - .t_active_Checkbox, - .t_active_Input, - .t_active_RadioGroupItem, - .t_active_TextArea, - .t_light .t_dark .t_active_Checkbox, - .t_light .t_dark .t_active_Input, - .t_light .t_dark .t_active_RadioGroupItem, - .t_light .t_dark .t_active_TextArea { - --background0: hsla(191, 33%, 10%, 0); - --background025: hsla(191, 33%, 10%, 0.25); - --background05: hsla(191, 33%, 10%, 0.5); - --background075: hsla(191, 33%, 10%, 0.75); - --color0: hsla(0, 0%, 100%, 0.75); - --color025: hsla(0, 0%, 100%, 0.5); - --color05: hsla(0, 0%, 100%, 0.25); - --color075: hsla(0, 0%, 100%, 0); - --background: hsla(191, 33%, 10%, 0.75); - --backgroundHover: hsla(191, 32%, 10%, 1); - --backgroundPress: hsla(191, 32%, 15%, 1); - --backgroundFocus: hsla(191, 32%, 19%, 1); - --colorHover: hsla(112, 22%, 59%, 1); - --colorPress: hsla(112, 22%, 100%, 1); - --colorFocus: hsla(112, 22%, 59%, 1); - --placeholderColor: hsla(112, 22%, 59%, 1); - --borderColor: hsla(191, 32%, 28%, 1); - --borderColorHover: hsla(191, 32%, 32%, 1); - --borderColorFocus: hsla(191, 32%, 37%, 1); - --borderColorPress: hsla(191, 32%, 32%, 1); - } -} - -:root.t_dark .t_active_ProgressIndicator, -:root.t_dark .t_active_SliderThumb, -:root.t_dark .t_active_SwitchThumb, -:root.t_dark .t_active_Tooltip, -:root.t_dark .t_light .t_dark .t_active_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_active_SliderThumb, -:root.t_dark .t_light .t_dark .t_active_SwitchThumb, -:root.t_dark .t_light .t_dark .t_active_Tooltip, -:root.t_light .t_dark .t_active_ProgressIndicator, -:root.t_light .t_dark .t_active_SliderThumb, -:root.t_light .t_dark .t_active_SwitchThumb, -:root.t_light .t_dark .t_active_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_active_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_active_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_active_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_active_Tooltip { - --background0: hsla(0, 0%, 100%, 0); - --background025: hsla(0, 0%, 100%, 0.25); - --background05: hsla(0, 0%, 100%, 0.5); - --background075: hsla(0, 0%, 100%, 0.75); - --color0: hsla(191, 33%, 10%, 0.75); - --color025: hsla(191, 33%, 10%, 0.5); - --color05: hsla(191, 33%, 10%, 0.25); - --color075: hsla(191, 33%, 10%, 0); - --background: hsla(0, 0%, 100%, 0.75); - --backgroundHover: hsla(112, 22%, 100%, 1); - --backgroundPress: hsla(112, 22%, 59%, 1); - --backgroundFocus: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 15%, 1); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: hsla(191, 32%, 15%, 1); - --placeholderColor: hsla(191, 32%, 15%, 1); - --borderColor: hsla(191, 32%, 50%, 1); - --borderColorHover: hsla(191, 32%, 46%, 1); - --borderColorFocus: hsla(191, 32%, 41%, 1); - --borderColorPress: hsla(191, 32%, 46%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - } - - .t_active_ProgressIndicator, - .t_active_SliderThumb, - .t_active_SwitchThumb, - .t_active_Tooltip, - .t_light .t_dark .t_active_ProgressIndicator, - .t_light .t_dark .t_active_SliderThumb, - .t_light .t_dark .t_active_SwitchThumb, - .t_light .t_dark .t_active_Tooltip { - --background0: hsla(0, 0%, 100%, 0); - --background025: hsla(0, 0%, 100%, 0.25); - --background05: hsla(0, 0%, 100%, 0.5); - --background075: hsla(0, 0%, 100%, 0.75); - --color0: hsla(191, 33%, 10%, 0.75); - --color025: hsla(191, 33%, 10%, 0.5); - --color05: hsla(191, 33%, 10%, 0.25); - --color075: hsla(191, 33%, 10%, 0); - --background: hsla(0, 0%, 100%, 0.75); - --backgroundHover: hsla(112, 22%, 100%, 1); - --backgroundPress: hsla(112, 22%, 59%, 1); - --backgroundFocus: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 15%, 1); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: hsla(191, 32%, 15%, 1); - --placeholderColor: hsla(191, 32%, 15%, 1); - --borderColor: hsla(191, 32%, 50%, 1); - --borderColorHover: hsla(191, 32%, 46%, 1); - --borderColorFocus: hsla(191, 32%, 41%, 1); - --borderColorPress: hsla(191, 32%, 46%, 1); - } -} - -:root.t_dark .t_active_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_active_SliderTrackActive, -:root.t_light .t_dark .t_active_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_active_SliderTrackActive { - --background0: hsla(0, 0%, 100%, 0.5); - --background025: hsla(0, 0%, 100%, 0.75); - --background05: hsla(112, 22%, 100%, 1); - --background075: hsla(112, 22%, 59%, 1); - --color0: hsla(191, 32%, 15%, 1); - --color025: hsla(191, 32%, 10%, 1); - --color05: hsla(191, 33%, 10%, 0.75); - --color075: hsla(191, 33%, 10%, 0.5); - --background: hsla(112, 22%, 59%, 1); - --backgroundHover: hsla(191, 32%, 50%, 1); - --backgroundPress: hsla(191, 32%, 46%, 1); - --backgroundFocus: hsla(191, 32%, 41%, 1); - --colorHover: hsla(191, 32%, 15%, 1); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: hsla(191, 32%, 15%, 1); - --placeholderColor: hsla(191, 32%, 24%, 1); - --borderColor: hsla(191, 32%, 41%, 1); - --borderColorHover: hsla(191, 32%, 37%, 1); - --borderColorFocus: hsla(191, 32%, 32%, 1); - --borderColorPress: hsla(191, 32%, 37%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - } - - .t_active_SliderTrackActive, - .t_light .t_dark .t_active_SliderTrackActive { - --background0: hsla(0, 0%, 100%, 0.5); - --background025: hsla(0, 0%, 100%, 0.75); - --background05: hsla(112, 22%, 100%, 1); - --background075: hsla(112, 22%, 59%, 1); - --color0: hsla(191, 32%, 15%, 1); - --color025: hsla(191, 32%, 10%, 1); - --color05: hsla(191, 33%, 10%, 0.75); - --color075: hsla(191, 33%, 10%, 0.5); - --background: hsla(112, 22%, 59%, 1); - --backgroundHover: hsla(191, 32%, 50%, 1); - --backgroundPress: hsla(191, 32%, 46%, 1); - --backgroundFocus: hsla(191, 32%, 41%, 1); - --colorHover: hsla(191, 32%, 15%, 1); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: hsla(191, 32%, 15%, 1); - --placeholderColor: hsla(191, 32%, 24%, 1); - --borderColor: hsla(191, 32%, 41%, 1); - --borderColorHover: hsla(191, 32%, 37%, 1); - --borderColorFocus: hsla(191, 32%, 32%, 1); - --borderColorPress: hsla(191, 32%, 37%, 1); - } -} - -:root.t_dark .t_alt1, -:root.t_dark .t_light .t_dark .t_alt1, -:root.t_light .t_dark .t_alt1, -:root.t_light .t_dark .t_light .t_dark .t_alt1 { - --background0: hsla(191, 33%, 10%, 0.5); - --background025: hsla(191, 33%, 10%, 0.75); - --background05: hsla(191, 32%, 10%, 1); - --background075: hsla(191, 32%, 15%, 1); - --color0: hsla(112, 22%, 59%, 1); - --color025: hsla(112, 22%, 100%, 1); - --color05: hsla(0, 0%, 100%, 0.75); - --color075: hsla(0, 0%, 100%, 0.5); - --background: hsla(191, 32%, 15%, 1); - --backgroundHover: hsla(191, 32%, 19%, 1); - --backgroundPress: hsla(191, 32%, 24%, 1); - --backgroundFocus: hsla(191, 32%, 28%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 46%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 46%, 1); - --placeholderColor: hsla(191, 32%, 46%, 1); - --borderColor: hsla(191, 32%, 28%, 1); - --borderColorHover: hsla(191, 32%, 32%, 1); - --borderColorFocus: hsla(191, 32%, 37%, 1); - --borderColorPress: hsla(191, 32%, 32%, 1); - --color1: hsla(191, 32%, 15%, 1); - --color2: hsla(191, 32%, 19%, 1); - --color3: hsla(191, 32%, 24%, 1); - --color4: hsla(191, 32%, 28%, 1); - --color5: hsla(191, 32%, 32%, 1); - --color6: hsla(191, 32%, 37%, 1); - --color7: hsla(191, 32%, 41%, 1); - --color8: hsla(191, 32%, 46%, 1); - --color9: hsla(191, 32%, 46%, 1); - --color10: hsla(191, 32%, 46%, 1); - --color11: hsla(191, 32%, 46%, 1); - --color12: hsla(191, 32%, 46%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt1, - .t_light .t_dark .t_alt1 { - --background0: hsla(191, 33%, 10%, 0.5); - --background025: hsla(191, 33%, 10%, 0.75); - --background05: hsla(191, 32%, 10%, 1); - --background075: hsla(191, 32%, 15%, 1); - --color0: hsla(112, 22%, 59%, 1); - --color025: hsla(112, 22%, 100%, 1); - --color05: hsla(0, 0%, 100%, 0.75); - --color075: hsla(0, 0%, 100%, 0.5); - --background: hsla(191, 32%, 15%, 1); - --backgroundHover: hsla(191, 32%, 19%, 1); - --backgroundPress: hsla(191, 32%, 24%, 1); - --backgroundFocus: hsla(191, 32%, 28%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 46%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 46%, 1); - --placeholderColor: hsla(191, 32%, 46%, 1); - --borderColor: hsla(191, 32%, 28%, 1); - --borderColorHover: hsla(191, 32%, 32%, 1); - --borderColorFocus: hsla(191, 32%, 37%, 1); - --borderColorPress: hsla(191, 32%, 32%, 1); - --color1: hsla(191, 32%, 15%, 1); - --color2: hsla(191, 32%, 19%, 1); - --color3: hsla(191, 32%, 24%, 1); - --color4: hsla(191, 32%, 28%, 1); - --color5: hsla(191, 32%, 32%, 1); - --color6: hsla(191, 32%, 37%, 1); - --color7: hsla(191, 32%, 41%, 1); - --color8: hsla(191, 32%, 46%, 1); - --color9: hsla(191, 32%, 46%, 1); - --color10: hsla(191, 32%, 46%, 1); - --color11: hsla(191, 32%, 46%, 1); - --color12: hsla(191, 32%, 46%, 1); - } -} - -:root.t_dark .t_alt1_Button, -:root.t_dark .t_alt1_SliderTrack, -:root.t_dark .t_alt1_Switch, -:root.t_dark .t_alt1_TooltipContent, -:root.t_dark .t_dim_Button, -:root.t_dark .t_dim_SliderTrack, -:root.t_dark .t_dim_Switch, -:root.t_dark .t_dim_TooltipContent, -:root.t_dark .t_light .t_dark .t_alt1_Button, -:root.t_dark .t_light .t_dark .t_alt1_SliderTrack, -:root.t_dark .t_light .t_dark .t_alt1_Switch, -:root.t_dark .t_light .t_dark .t_alt1_TooltipContent, -:root.t_dark .t_light .t_dark .t_dim_Button, -:root.t_dark .t_light .t_dark .t_dim_SliderTrack, -:root.t_dark .t_light .t_dark .t_dim_Switch, -:root.t_dark .t_light .t_dark .t_dim_TooltipContent, -:root.t_light .t_dark .t_alt1_Button, -:root.t_light .t_dark .t_alt1_SliderTrack, -:root.t_light .t_dark .t_alt1_Switch, -:root.t_light .t_dark .t_alt1_TooltipContent, -:root.t_light .t_dark .t_dim_Button, -:root.t_light .t_dark .t_dim_SliderTrack, -:root.t_light .t_dark .t_dim_Switch, -:root.t_light .t_dark .t_dim_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_alt1_Button, -:root.t_light .t_dark .t_light .t_dark .t_alt1_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_alt1_Switch, -:root.t_light .t_dark .t_light .t_dark .t_alt1_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_dim_Button, -:root.t_light .t_dark .t_light .t_dark .t_dim_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_dim_Switch, -:root.t_light .t_dark .t_light .t_dark .t_dim_TooltipContent { - --background0: hsla(191, 32%, 10%, 1); - --background025: hsla(191, 32%, 15%, 1); - --background05: hsla(191, 32%, 19%, 1); - --background075: hsla(191, 32%, 24%, 1); - --color0: hsla(191, 32%, 46%, 1); - --color025: hsla(191, 32%, 50%, 1); - --color05: hsla(112, 22%, 59%, 1); - --color075: hsla(112, 22%, 100%, 1); - --background: hsla(191, 32%, 24%, 1); - --backgroundHover: hsla(191, 32%, 28%, 1); - --backgroundPress: hsla(191, 32%, 32%, 1); - --backgroundFocus: hsla(191, 32%, 37%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 46%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 46%, 1); - --placeholderColor: hsla(191, 32%, 37%, 1); - --borderColor: hsla(191, 32%, 37%, 1); - --borderColorHover: hsla(191, 32%, 41%, 1); - --borderColorFocus: hsla(191, 32%, 46%, 1); - --borderColorPress: hsla(191, 32%, 41%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt1_Button, - .t_alt1_SliderTrack, - .t_alt1_Switch, - .t_alt1_TooltipContent, - .t_dim_Button, - .t_dim_SliderTrack, - .t_dim_Switch, - .t_dim_TooltipContent, - .t_light .t_dark .t_alt1_Button, - .t_light .t_dark .t_alt1_SliderTrack, - .t_light .t_dark .t_alt1_Switch, - .t_light .t_dark .t_alt1_TooltipContent, - .t_light .t_dark .t_dim_Button, - .t_light .t_dark .t_dim_SliderTrack, - .t_light .t_dark .t_dim_Switch, - .t_light .t_dark .t_dim_TooltipContent { - --background0: hsla(191, 32%, 10%, 1); - --background025: hsla(191, 32%, 15%, 1); - --background05: hsla(191, 32%, 19%, 1); - --background075: hsla(191, 32%, 24%, 1); - --color0: hsla(191, 32%, 46%, 1); - --color025: hsla(191, 32%, 50%, 1); - --color05: hsla(112, 22%, 59%, 1); - --color075: hsla(112, 22%, 100%, 1); - --background: hsla(191, 32%, 24%, 1); - --backgroundHover: hsla(191, 32%, 28%, 1); - --backgroundPress: hsla(191, 32%, 32%, 1); - --backgroundFocus: hsla(191, 32%, 37%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 46%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 46%, 1); - --placeholderColor: hsla(191, 32%, 37%, 1); - --borderColor: hsla(191, 32%, 37%, 1); - --borderColorHover: hsla(191, 32%, 41%, 1); - --borderColorFocus: hsla(191, 32%, 46%, 1); - --borderColorPress: hsla(191, 32%, 41%, 1); - } -} - -:root.t_dark .t_alt1_Card, -:root.t_dark .t_alt1_DrawerFrame, -:root.t_dark .t_alt1_Progress, -:root.t_dark .t_alt1_TooltipArrow, -:root.t_dark .t_dim_Card, -:root.t_dark .t_dim_DrawerFrame, -:root.t_dark .t_dim_Progress, -:root.t_dark .t_dim_TooltipArrow, -:root.t_dark .t_light .t_dark .t_alt1_Card, -:root.t_dark .t_light .t_dark .t_alt1_DrawerFrame, -:root.t_dark .t_light .t_dark .t_alt1_Progress, -:root.t_dark .t_light .t_dark .t_alt1_TooltipArrow, -:root.t_dark .t_light .t_dark .t_dim_Card, -:root.t_dark .t_light .t_dark .t_dim_DrawerFrame, -:root.t_dark .t_light .t_dark .t_dim_Progress, -:root.t_dark .t_light .t_dark .t_dim_TooltipArrow, -:root.t_light .t_dark .t_alt1_Card, -:root.t_light .t_dark .t_alt1_DrawerFrame, -:root.t_light .t_dark .t_alt1_Progress, -:root.t_light .t_dark .t_alt1_TooltipArrow, -:root.t_light .t_dark .t_dim_Card, -:root.t_light .t_dark .t_dim_DrawerFrame, -:root.t_light .t_dark .t_dim_Progress, -:root.t_light .t_dark .t_dim_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_alt1_Card, -:root.t_light .t_dark .t_light .t_dark .t_alt1_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_alt1_Progress, -:root.t_light .t_dark .t_light .t_dark .t_alt1_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_dim_Card, -:root.t_light .t_dark .t_light .t_dark .t_dim_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_dim_Progress, -:root.t_light .t_dark .t_light .t_dark .t_dim_TooltipArrow { - --background0: hsla(191, 33%, 10%, 0.75); - --background025: hsla(191, 32%, 10%, 1); - --background05: hsla(191, 32%, 15%, 1); - --background075: hsla(191, 32%, 19%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(112, 22%, 59%, 1); - --color05: hsla(112, 22%, 100%, 1); - --color075: hsla(0, 0%, 100%, 0.75); - --background: hsla(191, 32%, 19%, 1); - --backgroundHover: hsla(191, 32%, 24%, 1); - --backgroundPress: hsla(191, 32%, 28%, 1); - --backgroundFocus: hsla(191, 32%, 32%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 46%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 46%, 1); - --placeholderColor: hsla(191, 32%, 41%, 1); - --borderColor: hsla(191, 32%, 32%, 1); - --borderColorHover: hsla(191, 32%, 37%, 1); - --borderColorFocus: hsla(191, 32%, 41%, 1); - --borderColorPress: hsla(191, 32%, 37%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt1_Card, - .t_alt1_DrawerFrame, - .t_alt1_Progress, - .t_alt1_TooltipArrow, - .t_dim_Card, - .t_dim_DrawerFrame, - .t_dim_Progress, - .t_dim_TooltipArrow, - .t_light .t_dark .t_alt1_Card, - .t_light .t_dark .t_alt1_DrawerFrame, - .t_light .t_dark .t_alt1_Progress, - .t_light .t_dark .t_alt1_TooltipArrow, - .t_light .t_dark .t_dim_Card, - .t_light .t_dark .t_dim_DrawerFrame, - .t_light .t_dark .t_dim_Progress, - .t_light .t_dark .t_dim_TooltipArrow { - --background0: hsla(191, 33%, 10%, 0.75); - --background025: hsla(191, 32%, 10%, 1); - --background05: hsla(191, 32%, 15%, 1); - --background075: hsla(191, 32%, 19%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(112, 22%, 59%, 1); - --color05: hsla(112, 22%, 100%, 1); - --color075: hsla(0, 0%, 100%, 0.75); - --background: hsla(191, 32%, 19%, 1); - --backgroundHover: hsla(191, 32%, 24%, 1); - --backgroundPress: hsla(191, 32%, 28%, 1); - --backgroundFocus: hsla(191, 32%, 32%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 46%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 46%, 1); - --placeholderColor: hsla(191, 32%, 41%, 1); - --borderColor: hsla(191, 32%, 32%, 1); - --borderColorHover: hsla(191, 32%, 37%, 1); - --borderColorFocus: hsla(191, 32%, 41%, 1); - --borderColorPress: hsla(191, 32%, 37%, 1); - } -} - -:root.t_dark .t_alt1_Checkbox, -:root.t_dark .t_alt1_Input, -:root.t_dark .t_alt1_RadioGroupItem, -:root.t_dark .t_alt1_TextArea, -:root.t_dark .t_dim_Checkbox, -:root.t_dark .t_dim_Input, -:root.t_dark .t_dim_RadioGroupItem, -:root.t_dark .t_dim_TextArea, -:root.t_dark .t_light .t_dark .t_alt1_Checkbox, -:root.t_dark .t_light .t_dark .t_alt1_Input, -:root.t_dark .t_light .t_dark .t_alt1_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_alt1_TextArea, -:root.t_dark .t_light .t_dark .t_dim_Checkbox, -:root.t_dark .t_light .t_dark .t_dim_Input, -:root.t_dark .t_light .t_dark .t_dim_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_dim_TextArea, -:root.t_light .t_dark .t_alt1_Checkbox, -:root.t_light .t_dark .t_alt1_Input, -:root.t_light .t_dark .t_alt1_RadioGroupItem, -:root.t_light .t_dark .t_alt1_TextArea, -:root.t_light .t_dark .t_dim_Checkbox, -:root.t_light .t_dark .t_dim_Input, -:root.t_light .t_dark .t_dim_RadioGroupItem, -:root.t_light .t_dark .t_dim_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_alt1_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_alt1_Input, -:root.t_light .t_dark .t_light .t_dark .t_alt1_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_alt1_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_dim_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_dim_Input, -:root.t_light .t_dark .t_light .t_dark .t_dim_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_dim_TextArea { - --background0: hsla(191, 33%, 10%, 0.5); - --background025: hsla(191, 33%, 10%, 0.75); - --background05: hsla(191, 32%, 10%, 1); - --background075: hsla(191, 32%, 15%, 1); - --color0: hsla(112, 22%, 59%, 1); - --color025: hsla(112, 22%, 100%, 1); - --color05: hsla(0, 0%, 100%, 0.75); - --color075: hsla(0, 0%, 100%, 0.5); - --background: hsla(191, 32%, 15%, 1); - --backgroundHover: hsla(191, 32%, 19%, 1); - --backgroundPress: hsla(191, 32%, 24%, 1); - --backgroundFocus: hsla(191, 32%, 28%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 46%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 46%, 1); - --placeholderColor: hsla(191, 32%, 46%, 1); - --borderColor: hsla(191, 32%, 37%, 1); - --borderColorHover: hsla(191, 32%, 41%, 1); - --borderColorFocus: hsla(191, 32%, 46%, 1); - --borderColorPress: hsla(191, 32%, 41%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt1_Checkbox, - .t_alt1_Input, - .t_alt1_RadioGroupItem, - .t_alt1_TextArea, - .t_dim_Checkbox, - .t_dim_Input, - .t_dim_RadioGroupItem, - .t_dim_TextArea, - .t_light .t_dark .t_alt1_Checkbox, - .t_light .t_dark .t_alt1_Input, - .t_light .t_dark .t_alt1_RadioGroupItem, - .t_light .t_dark .t_alt1_TextArea, - .t_light .t_dark .t_dim_Checkbox, - .t_light .t_dark .t_dim_Input, - .t_light .t_dark .t_dim_RadioGroupItem, - .t_light .t_dark .t_dim_TextArea { - --background0: hsla(191, 33%, 10%, 0.5); - --background025: hsla(191, 33%, 10%, 0.75); - --background05: hsla(191, 32%, 10%, 1); - --background075: hsla(191, 32%, 15%, 1); - --color0: hsla(112, 22%, 59%, 1); - --color025: hsla(112, 22%, 100%, 1); - --color05: hsla(0, 0%, 100%, 0.75); - --color075: hsla(0, 0%, 100%, 0.5); - --background: hsla(191, 32%, 15%, 1); - --backgroundHover: hsla(191, 32%, 19%, 1); - --backgroundPress: hsla(191, 32%, 24%, 1); - --backgroundFocus: hsla(191, 32%, 28%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 46%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 46%, 1); - --placeholderColor: hsla(191, 32%, 46%, 1); - --borderColor: hsla(191, 32%, 37%, 1); - --borderColorHover: hsla(191, 32%, 41%, 1); - --borderColorFocus: hsla(191, 32%, 46%, 1); - --borderColorPress: hsla(191, 32%, 41%, 1); - } -} - -:root.t_dark .t_alt1_ProgressIndicator, -:root.t_dark .t_alt1_SliderThumb, -:root.t_dark .t_alt1_SwitchThumb, -:root.t_dark .t_alt1_Tooltip, -:root.t_dark .t_dim_ProgressIndicator, -:root.t_dark .t_dim_SliderThumb, -:root.t_dark .t_dim_SwitchThumb, -:root.t_dark .t_dim_Tooltip, -:root.t_dark .t_light .t_dark .t_alt1_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_alt1_SliderThumb, -:root.t_dark .t_light .t_dark .t_alt1_SwitchThumb, -:root.t_dark .t_light .t_dark .t_alt1_Tooltip, -:root.t_dark .t_light .t_dark .t_dim_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_dim_SliderThumb, -:root.t_dark .t_light .t_dark .t_dim_SwitchThumb, -:root.t_dark .t_light .t_dark .t_dim_Tooltip, -:root.t_light .t_dark .t_alt1_ProgressIndicator, -:root.t_light .t_dark .t_alt1_SliderThumb, -:root.t_light .t_dark .t_alt1_SwitchThumb, -:root.t_light .t_dark .t_alt1_Tooltip, -:root.t_light .t_dark .t_dim_ProgressIndicator, -:root.t_light .t_dark .t_dim_SliderThumb, -:root.t_light .t_dark .t_dim_SwitchThumb, -:root.t_light .t_dark .t_dim_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_alt1_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_alt1_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_alt1_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_alt1_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_dim_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_dim_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_dim_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_dim_Tooltip { - --background0: hsla(0, 0%, 100%, 0.5); - --background025: hsla(0, 0%, 100%, 0.75); - --background05: hsla(112, 22%, 100%, 1); - --background075: hsla(112, 22%, 59%, 1); - --color0: hsla(191, 32%, 15%, 1); - --color025: hsla(191, 32%, 10%, 1); - --color05: hsla(191, 33%, 10%, 0.75); - --color075: hsla(191, 33%, 10%, 0.5); - --background: hsla(112, 22%, 59%, 1); - --backgroundHover: hsla(191, 32%, 50%, 1); - --backgroundPress: hsla(191, 32%, 46%, 1); - --backgroundFocus: hsla(191, 32%, 41%, 1); - --color: hsla(191, 32%, 19%, 1); - --colorHover: hsla(191, 32%, 24%, 1); - --colorPress: hsla(191, 32%, 19%, 1); - --colorFocus: hsla(191, 32%, 24%, 1); - --placeholderColor: hsla(191, 32%, 24%, 1); - --borderColor: hsla(191, 32%, 41%, 1); - --borderColorHover: hsla(191, 32%, 37%, 1); - --borderColorFocus: hsla(191, 32%, 32%, 1); - --borderColorPress: hsla(191, 32%, 37%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt1_ProgressIndicator, - .t_alt1_SliderThumb, - .t_alt1_SwitchThumb, - .t_alt1_Tooltip, - .t_dim_ProgressIndicator, - .t_dim_SliderThumb, - .t_dim_SwitchThumb, - .t_dim_Tooltip, - .t_light .t_dark .t_alt1_ProgressIndicator, - .t_light .t_dark .t_alt1_SliderThumb, - .t_light .t_dark .t_alt1_SwitchThumb, - .t_light .t_dark .t_alt1_Tooltip, - .t_light .t_dark .t_dim_ProgressIndicator, - .t_light .t_dark .t_dim_SliderThumb, - .t_light .t_dark .t_dim_SwitchThumb, - .t_light .t_dark .t_dim_Tooltip { - --background0: hsla(0, 0%, 100%, 0.5); - --background025: hsla(0, 0%, 100%, 0.75); - --background05: hsla(112, 22%, 100%, 1); - --background075: hsla(112, 22%, 59%, 1); - --color0: hsla(191, 32%, 15%, 1); - --color025: hsla(191, 32%, 10%, 1); - --color05: hsla(191, 33%, 10%, 0.75); - --color075: hsla(191, 33%, 10%, 0.5); - --background: hsla(112, 22%, 59%, 1); - --backgroundHover: hsla(191, 32%, 50%, 1); - --backgroundPress: hsla(191, 32%, 46%, 1); - --backgroundFocus: hsla(191, 32%, 41%, 1); - --color: hsla(191, 32%, 19%, 1); - --colorHover: hsla(191, 32%, 24%, 1); - --colorPress: hsla(191, 32%, 19%, 1); - --colorFocus: hsla(191, 32%, 24%, 1); - --placeholderColor: hsla(191, 32%, 24%, 1); - --borderColor: hsla(191, 32%, 41%, 1); - --borderColorHover: hsla(191, 32%, 37%, 1); - --borderColorFocus: hsla(191, 32%, 32%, 1); - --borderColorPress: hsla(191, 32%, 37%, 1); - } -} - -:root.t_dark .t_alt1_SliderTrackActive, -:root.t_dark .t_dim_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_alt1_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_dim_SliderTrackActive, -:root.t_light .t_dark .t_alt1_SliderTrackActive, -:root.t_light .t_dark .t_dim_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_alt1_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_dim_SliderTrackActive { - --background0: hsla(112, 22%, 100%, 1); - --background025: hsla(112, 22%, 59%, 1); - --background05: hsla(191, 32%, 50%, 1); - --background075: hsla(191, 32%, 46%, 1); - --color0: hsla(191, 32%, 24%, 1); - --color025: hsla(191, 32%, 19%, 1); - --color05: hsla(191, 32%, 15%, 1); - --color075: hsla(191, 32%, 10%, 1); - --background: hsla(191, 32%, 46%, 1); - --backgroundHover: hsla(191, 32%, 41%, 1); - --backgroundPress: hsla(191, 32%, 37%, 1); - --backgroundFocus: hsla(191, 32%, 32%, 1); - --color: hsla(191, 32%, 19%, 1); - --colorHover: hsla(191, 32%, 24%, 1); - --colorPress: hsla(191, 32%, 19%, 1); - --colorFocus: hsla(191, 32%, 24%, 1); - --placeholderColor: hsla(191, 32%, 32%, 1); - --borderColor: hsla(191, 32%, 32%, 1); - --borderColorHover: hsla(191, 32%, 28%, 1); - --borderColorFocus: hsla(191, 32%, 24%, 1); - --borderColorPress: hsla(191, 32%, 28%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt1_SliderTrackActive, - .t_dim_SliderTrackActive, - .t_light .t_dark .t_alt1_SliderTrackActive, - .t_light .t_dark .t_dim_SliderTrackActive { - --background0: hsla(112, 22%, 100%, 1); - --background025: hsla(112, 22%, 59%, 1); - --background05: hsla(191, 32%, 50%, 1); - --background075: hsla(191, 32%, 46%, 1); - --color0: hsla(191, 32%, 24%, 1); - --color025: hsla(191, 32%, 19%, 1); - --color05: hsla(191, 32%, 15%, 1); - --color075: hsla(191, 32%, 10%, 1); - --background: hsla(191, 32%, 46%, 1); - --backgroundHover: hsla(191, 32%, 41%, 1); - --backgroundPress: hsla(191, 32%, 37%, 1); - --backgroundFocus: hsla(191, 32%, 32%, 1); - --color: hsla(191, 32%, 19%, 1); - --colorHover: hsla(191, 32%, 24%, 1); - --colorPress: hsla(191, 32%, 19%, 1); - --colorFocus: hsla(191, 32%, 24%, 1); - --placeholderColor: hsla(191, 32%, 32%, 1); - --borderColor: hsla(191, 32%, 32%, 1); - --borderColorHover: hsla(191, 32%, 28%, 1); - --borderColorFocus: hsla(191, 32%, 24%, 1); - --borderColorPress: hsla(191, 32%, 28%, 1); - } -} - -:root.t_dark .t_alt2, -:root.t_dark .t_light .t_dark .t_alt2, -:root.t_light .t_dark .t_alt2, -:root.t_light .t_dark .t_light .t_dark .t_alt2 { - --background0: hsla(191, 33%, 10%, 0.75); - --background025: hsla(191, 32%, 10%, 1); - --background05: hsla(191, 32%, 15%, 1); - --background075: hsla(191, 32%, 19%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(112, 22%, 59%, 1); - --color05: hsla(112, 22%, 100%, 1); - --color075: hsla(0, 0%, 100%, 0.75); - --background: hsla(191, 32%, 19%, 1); - --backgroundHover: hsla(191, 32%, 24%, 1); - --backgroundPress: hsla(191, 32%, 28%, 1); - --backgroundFocus: hsla(191, 32%, 32%, 1); - --color: hsla(191, 32%, 46%, 1); - --colorHover: hsla(191, 32%, 41%, 1); - --colorPress: hsla(191, 32%, 46%, 1); - --colorFocus: hsla(191, 32%, 41%, 1); - --placeholderColor: hsla(191, 32%, 41%, 1); - --borderColor: hsla(191, 32%, 32%, 1); - --borderColorHover: hsla(191, 32%, 37%, 1); - --borderColorFocus: hsla(191, 32%, 41%, 1); - --borderColorPress: hsla(191, 32%, 37%, 1); - --color1: hsla(191, 32%, 19%, 1); - --color2: hsla(191, 32%, 24%, 1); - --color3: hsla(191, 32%, 28%, 1); - --color4: hsla(191, 32%, 32%, 1); - --color5: hsla(191, 32%, 37%, 1); - --color6: hsla(191, 32%, 41%, 1); - --color7: hsla(191, 32%, 46%, 1); - --color8: hsla(191, 32%, 46%, 1); - --color9: hsla(191, 32%, 46%, 1); - --color10: hsla(191, 32%, 46%, 1); - --color11: hsla(191, 32%, 46%, 1); - --color12: hsla(191, 32%, 46%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt2, - .t_light .t_dark .t_alt2 { - --background0: hsla(191, 33%, 10%, 0.75); - --background025: hsla(191, 32%, 10%, 1); - --background05: hsla(191, 32%, 15%, 1); - --background075: hsla(191, 32%, 19%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(112, 22%, 59%, 1); - --color05: hsla(112, 22%, 100%, 1); - --color075: hsla(0, 0%, 100%, 0.75); - --background: hsla(191, 32%, 19%, 1); - --backgroundHover: hsla(191, 32%, 24%, 1); - --backgroundPress: hsla(191, 32%, 28%, 1); - --backgroundFocus: hsla(191, 32%, 32%, 1); - --color: hsla(191, 32%, 46%, 1); - --colorHover: hsla(191, 32%, 41%, 1); - --colorPress: hsla(191, 32%, 46%, 1); - --colorFocus: hsla(191, 32%, 41%, 1); - --placeholderColor: hsla(191, 32%, 41%, 1); - --borderColor: hsla(191, 32%, 32%, 1); - --borderColorHover: hsla(191, 32%, 37%, 1); - --borderColorFocus: hsla(191, 32%, 41%, 1); - --borderColorPress: hsla(191, 32%, 37%, 1); - --color1: hsla(191, 32%, 19%, 1); - --color2: hsla(191, 32%, 24%, 1); - --color3: hsla(191, 32%, 28%, 1); - --color4: hsla(191, 32%, 32%, 1); - --color5: hsla(191, 32%, 37%, 1); - --color6: hsla(191, 32%, 41%, 1); - --color7: hsla(191, 32%, 46%, 1); - --color8: hsla(191, 32%, 46%, 1); - --color9: hsla(191, 32%, 46%, 1); - --color10: hsla(191, 32%, 46%, 1); - --color11: hsla(191, 32%, 46%, 1); - --color12: hsla(191, 32%, 46%, 1); - } -} - -:root.t_dark .t_alt2_Button, -:root.t_dark .t_alt2_SliderTrack, -:root.t_dark .t_alt2_Switch, -:root.t_dark .t_alt2_TooltipContent, -:root.t_dark .t_disabled_Button, -:root.t_dark .t_disabled_SliderTrack, -:root.t_dark .t_disabled_Switch, -:root.t_dark .t_disabled_TooltipContent, -:root.t_dark .t_light .t_dark .t_alt2_Button, -:root.t_dark .t_light .t_dark .t_alt2_SliderTrack, -:root.t_dark .t_light .t_dark .t_alt2_Switch, -:root.t_dark .t_light .t_dark .t_alt2_TooltipContent, -:root.t_dark .t_light .t_dark .t_disabled_Button, -:root.t_dark .t_light .t_dark .t_disabled_SliderTrack, -:root.t_dark .t_light .t_dark .t_disabled_Switch, -:root.t_dark .t_light .t_dark .t_disabled_TooltipContent, -:root.t_light .t_dark .t_alt2_Button, -:root.t_light .t_dark .t_alt2_SliderTrack, -:root.t_light .t_dark .t_alt2_Switch, -:root.t_light .t_dark .t_alt2_TooltipContent, -:root.t_light .t_dark .t_disabled_Button, -:root.t_light .t_dark .t_disabled_SliderTrack, -:root.t_light .t_dark .t_disabled_Switch, -:root.t_light .t_dark .t_disabled_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_alt2_Button, -:root.t_light .t_dark .t_light .t_dark .t_alt2_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_alt2_Switch, -:root.t_light .t_dark .t_light .t_dark .t_alt2_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_disabled_Button, -:root.t_light .t_dark .t_light .t_dark .t_disabled_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_disabled_Switch, -:root.t_light .t_dark .t_light .t_dark .t_disabled_TooltipContent { - --background0: hsla(191, 32%, 15%, 1); - --background025: hsla(191, 32%, 19%, 1); - --background05: hsla(191, 32%, 24%, 1); - --background075: hsla(191, 32%, 28%, 1); - --color0: hsla(191, 32%, 41%, 1); - --color025: hsla(191, 32%, 46%, 1); - --color05: hsla(191, 32%, 50%, 1); - --color075: hsla(112, 22%, 59%, 1); - --background: hsla(191, 32%, 28%, 1); - --backgroundHover: hsla(191, 32%, 32%, 1); - --backgroundPress: hsla(191, 32%, 37%, 1); - --backgroundFocus: hsla(191, 32%, 41%, 1); - --color: hsla(191, 32%, 46%, 1); - --colorHover: hsla(191, 32%, 41%, 1); - --colorPress: hsla(191, 32%, 46%, 1); - --colorFocus: hsla(191, 32%, 41%, 1); - --placeholderColor: hsla(191, 32%, 32%, 1); - --borderColor: hsla(191, 32%, 41%, 1); - --borderColorHover: hsla(191, 32%, 46%, 1); - --borderColorFocus: hsla(191, 32%, 50%, 1); - --borderColorPress: hsla(191, 32%, 46%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt2_Button, - .t_alt2_SliderTrack, - .t_alt2_Switch, - .t_alt2_TooltipContent, - .t_disabled_Button, - .t_disabled_SliderTrack, - .t_disabled_Switch, - .t_disabled_TooltipContent, - .t_light .t_dark .t_alt2_Button, - .t_light .t_dark .t_alt2_SliderTrack, - .t_light .t_dark .t_alt2_Switch, - .t_light .t_dark .t_alt2_TooltipContent, - .t_light .t_dark .t_disabled_Button, - .t_light .t_dark .t_disabled_SliderTrack, - .t_light .t_dark .t_disabled_Switch, - .t_light .t_dark .t_disabled_TooltipContent { - --background0: hsla(191, 32%, 15%, 1); - --background025: hsla(191, 32%, 19%, 1); - --background05: hsla(191, 32%, 24%, 1); - --background075: hsla(191, 32%, 28%, 1); - --color0: hsla(191, 32%, 41%, 1); - --color025: hsla(191, 32%, 46%, 1); - --color05: hsla(191, 32%, 50%, 1); - --color075: hsla(112, 22%, 59%, 1); - --background: hsla(191, 32%, 28%, 1); - --backgroundHover: hsla(191, 32%, 32%, 1); - --backgroundPress: hsla(191, 32%, 37%, 1); - --backgroundFocus: hsla(191, 32%, 41%, 1); - --color: hsla(191, 32%, 46%, 1); - --colorHover: hsla(191, 32%, 41%, 1); - --colorPress: hsla(191, 32%, 46%, 1); - --colorFocus: hsla(191, 32%, 41%, 1); - --placeholderColor: hsla(191, 32%, 32%, 1); - --borderColor: hsla(191, 32%, 41%, 1); - --borderColorHover: hsla(191, 32%, 46%, 1); - --borderColorFocus: hsla(191, 32%, 50%, 1); - --borderColorPress: hsla(191, 32%, 46%, 1); - } -} - -:root.t_dark .t_alt2_Card, -:root.t_dark .t_alt2_DrawerFrame, -:root.t_dark .t_alt2_Progress, -:root.t_dark .t_alt2_TooltipArrow, -:root.t_dark .t_disabled_Card, -:root.t_dark .t_disabled_DrawerFrame, -:root.t_dark .t_disabled_Progress, -:root.t_dark .t_disabled_TooltipArrow, -:root.t_dark .t_light .t_dark .t_alt2_Card, -:root.t_dark .t_light .t_dark .t_alt2_DrawerFrame, -:root.t_dark .t_light .t_dark .t_alt2_Progress, -:root.t_dark .t_light .t_dark .t_alt2_TooltipArrow, -:root.t_dark .t_light .t_dark .t_disabled_Card, -:root.t_dark .t_light .t_dark .t_disabled_DrawerFrame, -:root.t_dark .t_light .t_dark .t_disabled_Progress, -:root.t_dark .t_light .t_dark .t_disabled_TooltipArrow, -:root.t_light .t_dark .t_alt2_Card, -:root.t_light .t_dark .t_alt2_DrawerFrame, -:root.t_light .t_dark .t_alt2_Progress, -:root.t_light .t_dark .t_alt2_TooltipArrow, -:root.t_light .t_dark .t_disabled_Card, -:root.t_light .t_dark .t_disabled_DrawerFrame, -:root.t_light .t_dark .t_disabled_Progress, -:root.t_light .t_dark .t_disabled_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_alt2_Card, -:root.t_light .t_dark .t_light .t_dark .t_alt2_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_alt2_Progress, -:root.t_light .t_dark .t_light .t_dark .t_alt2_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_disabled_Card, -:root.t_light .t_dark .t_light .t_dark .t_disabled_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_disabled_Progress, -:root.t_light .t_dark .t_light .t_dark .t_disabled_TooltipArrow { - --background0: hsla(191, 32%, 10%, 1); - --background025: hsla(191, 32%, 15%, 1); - --background05: hsla(191, 32%, 19%, 1); - --background075: hsla(191, 32%, 24%, 1); - --color0: hsla(191, 32%, 46%, 1); - --color025: hsla(191, 32%, 50%, 1); - --color05: hsla(112, 22%, 59%, 1); - --color075: hsla(112, 22%, 100%, 1); - --background: hsla(191, 32%, 24%, 1); - --backgroundHover: hsla(191, 32%, 28%, 1); - --backgroundPress: hsla(191, 32%, 32%, 1); - --backgroundFocus: hsla(191, 32%, 37%, 1); - --color: hsla(191, 32%, 46%, 1); - --colorHover: hsla(191, 32%, 41%, 1); - --colorPress: hsla(191, 32%, 46%, 1); - --colorFocus: hsla(191, 32%, 41%, 1); - --placeholderColor: hsla(191, 32%, 37%, 1); - --borderColor: hsla(191, 32%, 37%, 1); - --borderColorHover: hsla(191, 32%, 41%, 1); - --borderColorFocus: hsla(191, 32%, 46%, 1); - --borderColorPress: hsla(191, 32%, 41%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt2_Card, - .t_alt2_DrawerFrame, - .t_alt2_Progress, - .t_alt2_TooltipArrow, - .t_disabled_Card, - .t_disabled_DrawerFrame, - .t_disabled_Progress, - .t_disabled_TooltipArrow, - .t_light .t_dark .t_alt2_Card, - .t_light .t_dark .t_alt2_DrawerFrame, - .t_light .t_dark .t_alt2_Progress, - .t_light .t_dark .t_alt2_TooltipArrow, - .t_light .t_dark .t_disabled_Card, - .t_light .t_dark .t_disabled_DrawerFrame, - .t_light .t_dark .t_disabled_Progress, - .t_light .t_dark .t_disabled_TooltipArrow { - --background0: hsla(191, 32%, 10%, 1); - --background025: hsla(191, 32%, 15%, 1); - --background05: hsla(191, 32%, 19%, 1); - --background075: hsla(191, 32%, 24%, 1); - --color0: hsla(191, 32%, 46%, 1); - --color025: hsla(191, 32%, 50%, 1); - --color05: hsla(112, 22%, 59%, 1); - --color075: hsla(112, 22%, 100%, 1); - --background: hsla(191, 32%, 24%, 1); - --backgroundHover: hsla(191, 32%, 28%, 1); - --backgroundPress: hsla(191, 32%, 32%, 1); - --backgroundFocus: hsla(191, 32%, 37%, 1); - --color: hsla(191, 32%, 46%, 1); - --colorHover: hsla(191, 32%, 41%, 1); - --colorPress: hsla(191, 32%, 46%, 1); - --colorFocus: hsla(191, 32%, 41%, 1); - --placeholderColor: hsla(191, 32%, 37%, 1); - --borderColor: hsla(191, 32%, 37%, 1); - --borderColorHover: hsla(191, 32%, 41%, 1); - --borderColorFocus: hsla(191, 32%, 46%, 1); - --borderColorPress: hsla(191, 32%, 41%, 1); - } -} - -:root.t_dark .t_alt2_Checkbox, -:root.t_dark .t_alt2_Input, -:root.t_dark .t_alt2_RadioGroupItem, -:root.t_dark .t_alt2_TextArea, -:root.t_dark .t_disabled_Checkbox, -:root.t_dark .t_disabled_Input, -:root.t_dark .t_disabled_RadioGroupItem, -:root.t_dark .t_disabled_TextArea, -:root.t_dark .t_light .t_dark .t_alt2_Checkbox, -:root.t_dark .t_light .t_dark .t_alt2_Input, -:root.t_dark .t_light .t_dark .t_alt2_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_alt2_TextArea, -:root.t_dark .t_light .t_dark .t_disabled_Checkbox, -:root.t_dark .t_light .t_dark .t_disabled_Input, -:root.t_dark .t_light .t_dark .t_disabled_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_disabled_TextArea, -:root.t_light .t_dark .t_alt2_Checkbox, -:root.t_light .t_dark .t_alt2_Input, -:root.t_light .t_dark .t_alt2_RadioGroupItem, -:root.t_light .t_dark .t_alt2_TextArea, -:root.t_light .t_dark .t_disabled_Checkbox, -:root.t_light .t_dark .t_disabled_Input, -:root.t_light .t_dark .t_disabled_RadioGroupItem, -:root.t_light .t_dark .t_disabled_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_alt2_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_alt2_Input, -:root.t_light .t_dark .t_light .t_dark .t_alt2_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_alt2_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_disabled_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_disabled_Input, -:root.t_light .t_dark .t_light .t_dark .t_disabled_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_disabled_TextArea { - --background0: hsla(191, 33%, 10%, 0.75); - --background025: hsla(191, 32%, 10%, 1); - --background05: hsla(191, 32%, 15%, 1); - --background075: hsla(191, 32%, 19%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(112, 22%, 59%, 1); - --color05: hsla(112, 22%, 100%, 1); - --color075: hsla(0, 0%, 100%, 0.75); - --background: hsla(191, 32%, 19%, 1); - --backgroundHover: hsla(191, 32%, 24%, 1); - --backgroundPress: hsla(191, 32%, 28%, 1); - --backgroundFocus: hsla(191, 32%, 32%, 1); - --color: hsla(191, 32%, 46%, 1); - --colorHover: hsla(191, 32%, 41%, 1); - --colorPress: hsla(191, 32%, 46%, 1); - --colorFocus: hsla(191, 32%, 41%, 1); - --placeholderColor: hsla(191, 32%, 41%, 1); - --borderColor: hsla(191, 32%, 41%, 1); - --borderColorHover: hsla(191, 32%, 46%, 1); - --borderColorFocus: hsla(191, 32%, 50%, 1); - --borderColorPress: hsla(191, 32%, 46%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt2_Checkbox, - .t_alt2_Input, - .t_alt2_RadioGroupItem, - .t_alt2_TextArea, - .t_disabled_Checkbox, - .t_disabled_Input, - .t_disabled_RadioGroupItem, - .t_disabled_TextArea, - .t_light .t_dark .t_alt2_Checkbox, - .t_light .t_dark .t_alt2_Input, - .t_light .t_dark .t_alt2_RadioGroupItem, - .t_light .t_dark .t_alt2_TextArea, - .t_light .t_dark .t_disabled_Checkbox, - .t_light .t_dark .t_disabled_Input, - .t_light .t_dark .t_disabled_RadioGroupItem, - .t_light .t_dark .t_disabled_TextArea { - --background0: hsla(191, 33%, 10%, 0.75); - --background025: hsla(191, 32%, 10%, 1); - --background05: hsla(191, 32%, 15%, 1); - --background075: hsla(191, 32%, 19%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(112, 22%, 59%, 1); - --color05: hsla(112, 22%, 100%, 1); - --color075: hsla(0, 0%, 100%, 0.75); - --background: hsla(191, 32%, 19%, 1); - --backgroundHover: hsla(191, 32%, 24%, 1); - --backgroundPress: hsla(191, 32%, 28%, 1); - --backgroundFocus: hsla(191, 32%, 32%, 1); - --color: hsla(191, 32%, 46%, 1); - --colorHover: hsla(191, 32%, 41%, 1); - --colorPress: hsla(191, 32%, 46%, 1); - --colorFocus: hsla(191, 32%, 41%, 1); - --placeholderColor: hsla(191, 32%, 41%, 1); - --borderColor: hsla(191, 32%, 41%, 1); - --borderColorHover: hsla(191, 32%, 46%, 1); - --borderColorFocus: hsla(191, 32%, 50%, 1); - --borderColorPress: hsla(191, 32%, 46%, 1); - } -} - -:root.t_dark .t_alt2_ProgressIndicator, -:root.t_dark .t_alt2_SliderThumb, -:root.t_dark .t_alt2_SwitchThumb, -:root.t_dark .t_alt2_Tooltip, -:root.t_dark .t_disabled_ProgressIndicator, -:root.t_dark .t_disabled_SliderThumb, -:root.t_dark .t_disabled_SwitchThumb, -:root.t_dark .t_disabled_Tooltip, -:root.t_dark .t_light .t_dark .t_alt2_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_alt2_SliderThumb, -:root.t_dark .t_light .t_dark .t_alt2_SwitchThumb, -:root.t_dark .t_light .t_dark .t_alt2_Tooltip, -:root.t_dark .t_light .t_dark .t_disabled_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_disabled_SliderThumb, -:root.t_dark .t_light .t_dark .t_disabled_SwitchThumb, -:root.t_dark .t_light .t_dark .t_disabled_Tooltip, -:root.t_light .t_dark .t_alt2_ProgressIndicator, -:root.t_light .t_dark .t_alt2_SliderThumb, -:root.t_light .t_dark .t_alt2_SwitchThumb, -:root.t_light .t_dark .t_alt2_Tooltip, -:root.t_light .t_dark .t_disabled_ProgressIndicator, -:root.t_light .t_dark .t_disabled_SliderThumb, -:root.t_light .t_dark .t_disabled_SwitchThumb, -:root.t_light .t_dark .t_disabled_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_alt2_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_alt2_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_alt2_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_alt2_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_disabled_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_disabled_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_disabled_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_disabled_Tooltip { - --background0: hsla(0, 0%, 100%, 0.75); - --background025: hsla(112, 22%, 100%, 1); - --background05: hsla(112, 22%, 59%, 1); - --background075: hsla(191, 32%, 50%, 1); - --color0: hsla(191, 32%, 19%, 1); - --color025: hsla(191, 32%, 15%, 1); - --color05: hsla(191, 32%, 10%, 1); - --color075: hsla(191, 33%, 10%, 0.75); - --background: hsla(191, 32%, 50%, 1); - --backgroundHover: hsla(191, 32%, 46%, 1); - --backgroundPress: hsla(191, 32%, 41%, 1); - --backgroundFocus: hsla(191, 32%, 37%, 1); - --color: hsla(191, 32%, 24%, 1); - --colorHover: hsla(191, 32%, 28%, 1); - --colorPress: hsla(191, 32%, 24%, 1); - --colorFocus: hsla(191, 32%, 28%, 1); - --placeholderColor: hsla(191, 32%, 28%, 1); - --borderColor: hsla(191, 32%, 37%, 1); - --borderColorHover: hsla(191, 32%, 32%, 1); - --borderColorFocus: hsla(191, 32%, 28%, 1); - --borderColorPress: hsla(191, 32%, 32%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt2_ProgressIndicator, - .t_alt2_SliderThumb, - .t_alt2_SwitchThumb, - .t_alt2_Tooltip, - .t_disabled_ProgressIndicator, - .t_disabled_SliderThumb, - .t_disabled_SwitchThumb, - .t_disabled_Tooltip, - .t_light .t_dark .t_alt2_ProgressIndicator, - .t_light .t_dark .t_alt2_SliderThumb, - .t_light .t_dark .t_alt2_SwitchThumb, - .t_light .t_dark .t_alt2_Tooltip, - .t_light .t_dark .t_disabled_ProgressIndicator, - .t_light .t_dark .t_disabled_SliderThumb, - .t_light .t_dark .t_disabled_SwitchThumb, - .t_light .t_dark .t_disabled_Tooltip { - --background0: hsla(0, 0%, 100%, 0.75); - --background025: hsla(112, 22%, 100%, 1); - --background05: hsla(112, 22%, 59%, 1); - --background075: hsla(191, 32%, 50%, 1); - --color0: hsla(191, 32%, 19%, 1); - --color025: hsla(191, 32%, 15%, 1); - --color05: hsla(191, 32%, 10%, 1); - --color075: hsla(191, 33%, 10%, 0.75); - --background: hsla(191, 32%, 50%, 1); - --backgroundHover: hsla(191, 32%, 46%, 1); - --backgroundPress: hsla(191, 32%, 41%, 1); - --backgroundFocus: hsla(191, 32%, 37%, 1); - --color: hsla(191, 32%, 24%, 1); - --colorHover: hsla(191, 32%, 28%, 1); - --colorPress: hsla(191, 32%, 24%, 1); - --colorFocus: hsla(191, 32%, 28%, 1); - --placeholderColor: hsla(191, 32%, 28%, 1); - --borderColor: hsla(191, 32%, 37%, 1); - --borderColorHover: hsla(191, 32%, 32%, 1); - --borderColorFocus: hsla(191, 32%, 28%, 1); - --borderColorPress: hsla(191, 32%, 32%, 1); - } -} - -:root.t_dark .t_alt2_SliderTrackActive, -:root.t_dark .t_disabled_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_alt2_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_disabled_SliderTrackActive, -:root.t_light .t_dark .t_alt2_SliderTrackActive, -:root.t_light .t_dark .t_disabled_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_alt2_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_disabled_SliderTrackActive { - --background0: hsla(112, 22%, 59%, 1); - --background025: hsla(191, 32%, 50%, 1); - --background05: hsla(191, 32%, 46%, 1); - --background075: hsla(191, 32%, 41%, 1); - --color0: hsla(191, 32%, 28%, 1); - --color025: hsla(191, 32%, 24%, 1); - --color05: hsla(191, 32%, 19%, 1); - --color075: hsla(191, 32%, 15%, 1); - --background: hsla(191, 32%, 41%, 1); - --backgroundHover: hsla(191, 32%, 37%, 1); - --backgroundPress: hsla(191, 32%, 32%, 1); - --backgroundFocus: hsla(191, 32%, 28%, 1); - --color: hsla(191, 32%, 24%, 1); - --colorHover: hsla(191, 32%, 28%, 1); - --colorPress: hsla(191, 32%, 24%, 1); - --colorFocus: hsla(191, 32%, 28%, 1); - --placeholderColor: hsla(191, 32%, 37%, 1); - --borderColor: hsla(191, 32%, 28%, 1); - --borderColorHover: hsla(191, 32%, 24%, 1); - --borderColorFocus: hsla(191, 32%, 19%, 1); - --borderColorPress: hsla(191, 32%, 24%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt2_SliderTrackActive, - .t_disabled_SliderTrackActive, - .t_light .t_dark .t_alt2_SliderTrackActive, - .t_light .t_dark .t_disabled_SliderTrackActive { - --background0: hsla(112, 22%, 59%, 1); - --background025: hsla(191, 32%, 50%, 1); - --background05: hsla(191, 32%, 46%, 1); - --background075: hsla(191, 32%, 41%, 1); - --color0: hsla(191, 32%, 28%, 1); - --color025: hsla(191, 32%, 24%, 1); - --color05: hsla(191, 32%, 19%, 1); - --color075: hsla(191, 32%, 15%, 1); - --background: hsla(191, 32%, 41%, 1); - --backgroundHover: hsla(191, 32%, 37%, 1); - --backgroundPress: hsla(191, 32%, 32%, 1); - --backgroundFocus: hsla(191, 32%, 28%, 1); - --color: hsla(191, 32%, 24%, 1); - --colorHover: hsla(191, 32%, 28%, 1); - --colorPress: hsla(191, 32%, 24%, 1); - --colorFocus: hsla(191, 32%, 28%, 1); - --placeholderColor: hsla(191, 32%, 37%, 1); - --borderColor: hsla(191, 32%, 28%, 1); - --borderColorHover: hsla(191, 32%, 24%, 1); - --borderColorFocus: hsla(191, 32%, 19%, 1); - --borderColorPress: hsla(191, 32%, 24%, 1); - } -} - -:root.t_dark .t_dim, -:root.t_dark .t_light .t_dark .t_dim, -:root.t_light .t_dark .t_dim, -:root.t_light .t_dark .t_light .t_dark .t_dim { - --background0: hsla(191, 33%, 10%, 0.5); - --background025: hsla(191, 33%, 10%, 0.75); - --background05: hsla(191, 32%, 10%, 1); - --background075: hsla(191, 32%, 15%, 1); - --color0: hsla(112, 22%, 59%, 1); - --color025: hsla(112, 22%, 100%, 1); - --color05: hsla(0, 0%, 100%, 0.75); - --color075: hsla(0, 0%, 100%, 0.5); - --background: hsla(191, 32%, 15%, 1); - --backgroundHover: hsla(191, 32%, 19%, 1); - --backgroundPress: hsla(191, 32%, 24%, 1); - --backgroundFocus: hsla(191, 32%, 28%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 46%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 46%, 1); - --placeholderColor: hsla(191, 32%, 46%, 1); - --borderColor: hsla(191, 32%, 28%, 1); - --borderColorHover: hsla(191, 32%, 32%, 1); - --borderColorFocus: hsla(191, 32%, 37%, 1); - --borderColorPress: hsla(191, 32%, 32%, 1); - --color1: hsla(191, 32%, 15%, 1); - --color2: hsla(191, 32%, 19%, 1); - --color3: hsla(191, 32%, 24%, 1); - --color4: hsla(191, 32%, 28%, 1); - --color5: hsla(191, 32%, 32%, 1); - --color6: hsla(191, 32%, 37%, 1); - --color7: hsla(191, 32%, 41%, 1); - --color8: hsla(191, 32%, 46%, 1); - --color9: hsla(191, 32%, 50%, 1); - --color10: hsla(112, 22%, 59%, 1); - --color11: hsla(112, 22%, 100%, 1); - --color12: hsla(0, 0%, 100%, 0.75); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_dim, - .t_light .t_dark .t_dim { - --background0: hsla(191, 33%, 10%, 0.5); - --background025: hsla(191, 33%, 10%, 0.75); - --background05: hsla(191, 32%, 10%, 1); - --background075: hsla(191, 32%, 15%, 1); - --color0: hsla(112, 22%, 59%, 1); - --color025: hsla(112, 22%, 100%, 1); - --color05: hsla(0, 0%, 100%, 0.75); - --color075: hsla(0, 0%, 100%, 0.5); - --background: hsla(191, 32%, 15%, 1); - --backgroundHover: hsla(191, 32%, 19%, 1); - --backgroundPress: hsla(191, 32%, 24%, 1); - --backgroundFocus: hsla(191, 32%, 28%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 46%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 46%, 1); - --placeholderColor: hsla(191, 32%, 46%, 1); - --borderColor: hsla(191, 32%, 28%, 1); - --borderColorHover: hsla(191, 32%, 32%, 1); - --borderColorFocus: hsla(191, 32%, 37%, 1); - --borderColorPress: hsla(191, 32%, 32%, 1); - --color1: hsla(191, 32%, 15%, 1); - --color2: hsla(191, 32%, 19%, 1); - --color3: hsla(191, 32%, 24%, 1); - --color4: hsla(191, 32%, 28%, 1); - --color5: hsla(191, 32%, 32%, 1); - --color6: hsla(191, 32%, 37%, 1); - --color7: hsla(191, 32%, 41%, 1); - --color8: hsla(191, 32%, 46%, 1); - --color9: hsla(191, 32%, 50%, 1); - --color10: hsla(112, 22%, 59%, 1); - --color11: hsla(112, 22%, 100%, 1); - --color12: hsla(0, 0%, 100%, 0.75); - } -} - -:root.t_dark .t_disabled, -:root.t_dark .t_light .t_dark .t_disabled, -:root.t_light .t_dark .t_disabled, -:root.t_light .t_dark .t_light .t_dark .t_disabled { - --background0: hsla(191, 33%, 10%, 0.75); - --background025: hsla(191, 32%, 10%, 1); - --background05: hsla(191, 32%, 15%, 1); - --background075: hsla(191, 32%, 19%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(112, 22%, 59%, 1); - --color05: hsla(112, 22%, 100%, 1); - --color075: hsla(0, 0%, 100%, 0.75); - --background: hsla(191, 32%, 19%, 1); - --backgroundHover: hsla(191, 32%, 24%, 1); - --backgroundPress: hsla(191, 32%, 28%, 1); - --backgroundFocus: hsla(191, 32%, 32%, 1); - --color: hsla(191, 32%, 46%, 1); - --colorHover: hsla(191, 32%, 41%, 1); - --colorPress: hsla(191, 32%, 46%, 1); - --colorFocus: hsla(191, 32%, 41%, 1); - --placeholderColor: hsla(191, 32%, 41%, 1); - --borderColor: hsla(191, 32%, 32%, 1); - --borderColorHover: hsla(191, 32%, 37%, 1); - --borderColorFocus: hsla(191, 32%, 41%, 1); - --borderColorPress: hsla(191, 32%, 37%, 1); - --color1: hsla(191, 32%, 19%, 1); - --color2: hsla(191, 32%, 24%, 1); - --color3: hsla(191, 32%, 28%, 1); - --color4: hsla(191, 32%, 32%, 1); - --color5: hsla(191, 32%, 37%, 1); - --color6: hsla(191, 32%, 41%, 1); - --color7: hsla(191, 32%, 46%, 1); - --color8: hsla(191, 32%, 50%, 1); - --color9: hsla(112, 22%, 59%, 1); - --color10: hsla(112, 22%, 100%, 1); - --color11: hsla(0, 0%, 100%, 0.75); - --color12: hsla(0, 0%, 100%, 0.5); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_disabled, - .t_light .t_dark .t_disabled { - --background0: hsla(191, 33%, 10%, 0.75); - --background025: hsla(191, 32%, 10%, 1); - --background05: hsla(191, 32%, 15%, 1); - --background075: hsla(191, 32%, 19%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(112, 22%, 59%, 1); - --color05: hsla(112, 22%, 100%, 1); - --color075: hsla(0, 0%, 100%, 0.75); - --background: hsla(191, 32%, 19%, 1); - --backgroundHover: hsla(191, 32%, 24%, 1); - --backgroundPress: hsla(191, 32%, 28%, 1); - --backgroundFocus: hsla(191, 32%, 32%, 1); - --color: hsla(191, 32%, 46%, 1); - --colorHover: hsla(191, 32%, 41%, 1); - --colorPress: hsla(191, 32%, 46%, 1); - --colorFocus: hsla(191, 32%, 41%, 1); - --placeholderColor: hsla(191, 32%, 41%, 1); - --borderColor: hsla(191, 32%, 32%, 1); - --borderColorHover: hsla(191, 32%, 37%, 1); - --borderColorFocus: hsla(191, 32%, 41%, 1); - --borderColorPress: hsla(191, 32%, 37%, 1); - --color1: hsla(191, 32%, 19%, 1); - --color2: hsla(191, 32%, 24%, 1); - --color3: hsla(191, 32%, 28%, 1); - --color4: hsla(191, 32%, 32%, 1); - --color5: hsla(191, 32%, 37%, 1); - --color6: hsla(191, 32%, 41%, 1); - --color7: hsla(191, 32%, 46%, 1); - --color8: hsla(191, 32%, 50%, 1); - --color9: hsla(112, 22%, 59%, 1); - --color10: hsla(112, 22%, 100%, 1); - --color11: hsla(0, 0%, 100%, 0.75); - --color12: hsla(0, 0%, 100%, 0.5); - } -} - -:root.t_dark .t_error, -:root.t_dark .t_light .t_dark .t_error, -:root.t_dark .t_light .t_dark .t_red, -:root.t_dark .t_red, -:root.t_light .t_dark .t_error, -:root.t_light .t_dark .t_light .t_dark .t_error, -:root.t_light .t_dark .t_light .t_dark .t_red, -:root.t_light .t_dark .t_red { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(0, 69%, 10%, 0.25); - --background025: hsla(0, 69%, 10%, 0.5); - --background05: hsla(0, 69%, 10%, 0.75); - --background075: hsla(0, 70%, 10%, 1); - --color0: hsla(0, 70%, 95%, 1); - --color025: hsla(0, 69%, 95%, 0.75); - --color05: hsla(0, 69%, 95%, 0.5); - --color075: hsla(0, 69%, 95%, 0.25); - --background: hsla(0, 70%, 10%, 1); - --backgroundHover: hsla(0, 70%, 14%, 1); - --backgroundPress: hsla(0, 70%, 19%, 1); - --backgroundFocus: hsla(0, 70%, 23%, 1); - --color: hsla(0, 70%, 93%, 1); - --colorHover: hsla(0, 70%, 50%, 1); - --colorPress: hsla(0, 70%, 93%, 1); - --colorFocus: hsla(0, 70%, 50%, 1); - --placeholderColor: hsla(0, 70%, 50%, 1); - --borderColor: hsla(0, 70%, 23%, 1); - --borderColorHover: hsla(0, 70%, 28%, 1); - --borderColorFocus: hsla(0, 70%, 32%, 1); - --borderColorPress: hsla(0, 70%, 28%, 1); - --color1: hsla(0, 70%, 10%, 1); - --color2: hsla(0, 70%, 14%, 1); - --color3: hsla(0, 70%, 19%, 1); - --color4: hsla(0, 70%, 23%, 1); - --color5: hsla(0, 70%, 28%, 1); - --color6: hsla(0, 70%, 32%, 1); - --color7: hsla(0, 70%, 37%, 1); - --color8: hsla(0, 70%, 41%, 1); - --color9: hsla(0, 70%, 46%, 1); - --color10: hsla(0, 70%, 50%, 1); - --color11: hsla(0, 70%, 93%, 1); - --color12: hsla(0, 70%, 95%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_error, - .t_light .t_dark .t_error, - .t_light .t_dark .t_red, - .t_red { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(0, 69%, 10%, 0.25); - --background025: hsla(0, 69%, 10%, 0.5); - --background05: hsla(0, 69%, 10%, 0.75); - --background075: hsla(0, 70%, 10%, 1); - --color0: hsla(0, 70%, 95%, 1); - --color025: hsla(0, 69%, 95%, 0.75); - --color05: hsla(0, 69%, 95%, 0.5); - --color075: hsla(0, 69%, 95%, 0.25); - --background: hsla(0, 70%, 10%, 1); - --backgroundHover: hsla(0, 70%, 14%, 1); - --backgroundPress: hsla(0, 70%, 19%, 1); - --backgroundFocus: hsla(0, 70%, 23%, 1); - --color: hsla(0, 70%, 93%, 1); - --colorHover: hsla(0, 70%, 50%, 1); - --colorPress: hsla(0, 70%, 93%, 1); - --colorFocus: hsla(0, 70%, 50%, 1); - --placeholderColor: hsla(0, 70%, 50%, 1); - --borderColor: hsla(0, 70%, 23%, 1); - --borderColorHover: hsla(0, 70%, 28%, 1); - --borderColorFocus: hsla(0, 70%, 32%, 1); - --borderColorPress: hsla(0, 70%, 28%, 1); - --color1: hsla(0, 70%, 10%, 1); - --color2: hsla(0, 70%, 14%, 1); - --color3: hsla(0, 70%, 19%, 1); - --color4: hsla(0, 70%, 23%, 1); - --color5: hsla(0, 70%, 28%, 1); - --color6: hsla(0, 70%, 32%, 1); - --color7: hsla(0, 70%, 37%, 1); - --color8: hsla(0, 70%, 41%, 1); - --color9: hsla(0, 70%, 46%, 1); - --color10: hsla(0, 70%, 50%, 1); - --color11: hsla(0, 70%, 93%, 1); - --color12: hsla(0, 70%, 95%, 1); - } -} - -:root.t_dark .t_error_Button, -:root.t_dark .t_error_SliderTrack, -:root.t_dark .t_error_Switch, -:root.t_dark .t_error_TooltipContent, -:root.t_dark .t_light .t_dark .t_error_Button, -:root.t_dark .t_light .t_dark .t_error_SliderTrack, -:root.t_dark .t_light .t_dark .t_error_Switch, -:root.t_dark .t_light .t_dark .t_error_TooltipContent, -:root.t_dark .t_light .t_dark .t_red_Button, -:root.t_dark .t_light .t_dark .t_red_SliderTrack, -:root.t_dark .t_light .t_dark .t_red_Switch, -:root.t_dark .t_light .t_dark .t_red_TooltipContent, -:root.t_dark .t_red_Button, -:root.t_dark .t_red_SliderTrack, -:root.t_dark .t_red_Switch, -:root.t_dark .t_red_TooltipContent, -:root.t_light .t_dark .t_error_Button, -:root.t_light .t_dark .t_error_SliderTrack, -:root.t_light .t_dark .t_error_Switch, -:root.t_light .t_dark .t_error_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_error_Button, -:root.t_light .t_dark .t_light .t_dark .t_error_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_error_Switch, -:root.t_light .t_dark .t_light .t_dark .t_error_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_red_Button, -:root.t_light .t_dark .t_light .t_dark .t_red_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_red_Switch, -:root.t_light .t_dark .t_light .t_dark .t_red_TooltipContent, -:root.t_light .t_dark .t_red_Button, -:root.t_light .t_dark .t_red_SliderTrack, -:root.t_light .t_dark .t_red_Switch, -:root.t_light .t_dark .t_red_TooltipContent { - --background0: hsla(0, 69%, 10%, 0.75); - --background025: hsla(0, 70%, 10%, 1); - --background05: hsla(0, 70%, 14%, 1); - --background075: hsla(0, 70%, 19%, 1); - --color0: hsla(0, 70%, 50%, 1); - --color025: hsla(0, 70%, 93%, 1); - --color05: hsla(0, 70%, 95%, 1); - --color075: hsla(0, 69%, 95%, 0.75); - --background: hsla(0, 70%, 19%, 1); - --backgroundHover: hsla(0, 70%, 23%, 1); - --backgroundPress: hsla(0, 70%, 28%, 1); - --backgroundFocus: hsla(0, 70%, 32%, 1); - --color: hsla(0, 70%, 93%, 1); - --colorHover: hsla(0, 70%, 50%, 1); - --colorPress: hsla(0, 70%, 93%, 1); - --colorFocus: hsla(0, 70%, 50%, 1); - --placeholderColor: hsla(0, 70%, 41%, 1); - --borderColor: hsla(0, 70%, 32%, 1); - --borderColorHover: hsla(0, 70%, 37%, 1); - --borderColorFocus: hsla(0, 70%, 41%, 1); - --borderColorPress: hsla(0, 70%, 37%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_error_Button, - .t_error_SliderTrack, - .t_error_Switch, - .t_error_TooltipContent, - .t_light .t_dark .t_error_Button, - .t_light .t_dark .t_error_SliderTrack, - .t_light .t_dark .t_error_Switch, - .t_light .t_dark .t_error_TooltipContent, - .t_light .t_dark .t_red_Button, - .t_light .t_dark .t_red_SliderTrack, - .t_light .t_dark .t_red_Switch, - .t_light .t_dark .t_red_TooltipContent, - .t_red_Button, - .t_red_SliderTrack, - .t_red_Switch, - .t_red_TooltipContent { - --background0: hsla(0, 69%, 10%, 0.75); - --background025: hsla(0, 70%, 10%, 1); - --background05: hsla(0, 70%, 14%, 1); - --background075: hsla(0, 70%, 19%, 1); - --color0: hsla(0, 70%, 50%, 1); - --color025: hsla(0, 70%, 93%, 1); - --color05: hsla(0, 70%, 95%, 1); - --color075: hsla(0, 69%, 95%, 0.75); - --background: hsla(0, 70%, 19%, 1); - --backgroundHover: hsla(0, 70%, 23%, 1); - --backgroundPress: hsla(0, 70%, 28%, 1); - --backgroundFocus: hsla(0, 70%, 32%, 1); - --color: hsla(0, 70%, 93%, 1); - --colorHover: hsla(0, 70%, 50%, 1); - --colorPress: hsla(0, 70%, 93%, 1); - --colorFocus: hsla(0, 70%, 50%, 1); - --placeholderColor: hsla(0, 70%, 41%, 1); - --borderColor: hsla(0, 70%, 32%, 1); - --borderColorHover: hsla(0, 70%, 37%, 1); - --borderColorFocus: hsla(0, 70%, 41%, 1); - --borderColorPress: hsla(0, 70%, 37%, 1); - } -} - -:root.t_dark .t_error_Card, -:root.t_dark .t_error_DrawerFrame, -:root.t_dark .t_error_Progress, -:root.t_dark .t_error_TooltipArrow, -:root.t_dark .t_light .t_dark .t_error_Card, -:root.t_dark .t_light .t_dark .t_error_DrawerFrame, -:root.t_dark .t_light .t_dark .t_error_Progress, -:root.t_dark .t_light .t_dark .t_error_TooltipArrow, -:root.t_dark .t_light .t_dark .t_red_Card, -:root.t_dark .t_light .t_dark .t_red_DrawerFrame, -:root.t_dark .t_light .t_dark .t_red_Progress, -:root.t_dark .t_light .t_dark .t_red_TooltipArrow, -:root.t_dark .t_red_Card, -:root.t_dark .t_red_DrawerFrame, -:root.t_dark .t_red_Progress, -:root.t_dark .t_red_TooltipArrow, -:root.t_light .t_dark .t_error_Card, -:root.t_light .t_dark .t_error_DrawerFrame, -:root.t_light .t_dark .t_error_Progress, -:root.t_light .t_dark .t_error_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_error_Card, -:root.t_light .t_dark .t_light .t_dark .t_error_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_error_Progress, -:root.t_light .t_dark .t_light .t_dark .t_error_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_red_Card, -:root.t_light .t_dark .t_light .t_dark .t_red_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_red_Progress, -:root.t_light .t_dark .t_light .t_dark .t_red_TooltipArrow, -:root.t_light .t_dark .t_red_Card, -:root.t_light .t_dark .t_red_DrawerFrame, -:root.t_light .t_dark .t_red_Progress, -:root.t_light .t_dark .t_red_TooltipArrow { - --background0: hsla(0, 69%, 10%, 0.5); - --background025: hsla(0, 69%, 10%, 0.75); - --background05: hsla(0, 70%, 10%, 1); - --background075: hsla(0, 70%, 14%, 1); - --color0: hsla(0, 70%, 93%, 1); - --color025: hsla(0, 70%, 95%, 1); - --color05: hsla(0, 69%, 95%, 0.75); - --color075: hsla(0, 69%, 95%, 0.5); - --background: hsla(0, 70%, 14%, 1); - --backgroundHover: hsla(0, 70%, 19%, 1); - --backgroundPress: hsla(0, 70%, 23%, 1); - --backgroundFocus: hsla(0, 70%, 28%, 1); - --color: hsla(0, 70%, 93%, 1); - --colorHover: hsla(0, 70%, 50%, 1); - --colorPress: hsla(0, 70%, 93%, 1); - --colorFocus: hsla(0, 70%, 50%, 1); - --placeholderColor: hsla(0, 70%, 46%, 1); - --borderColor: hsla(0, 70%, 28%, 1); - --borderColorHover: hsla(0, 70%, 32%, 1); - --borderColorFocus: hsla(0, 70%, 37%, 1); - --borderColorPress: hsla(0, 70%, 32%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_error_Card, - .t_error_DrawerFrame, - .t_error_Progress, - .t_error_TooltipArrow, - .t_light .t_dark .t_error_Card, - .t_light .t_dark .t_error_DrawerFrame, - .t_light .t_dark .t_error_Progress, - .t_light .t_dark .t_error_TooltipArrow, - .t_light .t_dark .t_red_Card, - .t_light .t_dark .t_red_DrawerFrame, - .t_light .t_dark .t_red_Progress, - .t_light .t_dark .t_red_TooltipArrow, - .t_red_Card, - .t_red_DrawerFrame, - .t_red_Progress, - .t_red_TooltipArrow { - --background0: hsla(0, 69%, 10%, 0.5); - --background025: hsla(0, 69%, 10%, 0.75); - --background05: hsla(0, 70%, 10%, 1); - --background075: hsla(0, 70%, 14%, 1); - --color0: hsla(0, 70%, 93%, 1); - --color025: hsla(0, 70%, 95%, 1); - --color05: hsla(0, 69%, 95%, 0.75); - --color075: hsla(0, 69%, 95%, 0.5); - --background: hsla(0, 70%, 14%, 1); - --backgroundHover: hsla(0, 70%, 19%, 1); - --backgroundPress: hsla(0, 70%, 23%, 1); - --backgroundFocus: hsla(0, 70%, 28%, 1); - --color: hsla(0, 70%, 93%, 1); - --colorHover: hsla(0, 70%, 50%, 1); - --colorPress: hsla(0, 70%, 93%, 1); - --colorFocus: hsla(0, 70%, 50%, 1); - --placeholderColor: hsla(0, 70%, 46%, 1); - --borderColor: hsla(0, 70%, 28%, 1); - --borderColorHover: hsla(0, 70%, 32%, 1); - --borderColorFocus: hsla(0, 70%, 37%, 1); - --borderColorPress: hsla(0, 70%, 32%, 1); - } -} - -:root.t_dark .t_error_Checkbox, -:root.t_dark .t_error_Input, -:root.t_dark .t_error_RadioGroupItem, -:root.t_dark .t_error_TextArea, -:root.t_dark .t_light .t_dark .t_error_Checkbox, -:root.t_dark .t_light .t_dark .t_error_Input, -:root.t_dark .t_light .t_dark .t_error_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_error_TextArea, -:root.t_dark .t_light .t_dark .t_red_Checkbox, -:root.t_dark .t_light .t_dark .t_red_Input, -:root.t_dark .t_light .t_dark .t_red_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_red_TextArea, -:root.t_dark .t_red_Checkbox, -:root.t_dark .t_red_Input, -:root.t_dark .t_red_RadioGroupItem, -:root.t_dark .t_red_TextArea, -:root.t_light .t_dark .t_error_Checkbox, -:root.t_light .t_dark .t_error_Input, -:root.t_light .t_dark .t_error_RadioGroupItem, -:root.t_light .t_dark .t_error_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_error_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_error_Input, -:root.t_light .t_dark .t_light .t_dark .t_error_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_error_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_red_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_red_Input, -:root.t_light .t_dark .t_light .t_dark .t_red_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_red_TextArea, -:root.t_light .t_dark .t_red_Checkbox, -:root.t_light .t_dark .t_red_Input, -:root.t_light .t_dark .t_red_RadioGroupItem, -:root.t_light .t_dark .t_red_TextArea { - --accentBackground: hsla(0, 69%, 10%, 0); - --accentColor: hsla(0, 69%, 10%, 0); - --background0: hsla(0, 69%, 10%, 0.25); - --background025: hsla(0, 69%, 10%, 0.5); - --background05: hsla(0, 69%, 10%, 0.75); - --background075: hsla(0, 70%, 10%, 1); - --color0: hsla(0, 70%, 95%, 1); - --color025: hsla(0, 69%, 95%, 0.75); - --color05: hsla(0, 69%, 95%, 0.5); - --color075: hsla(0, 69%, 95%, 0.25); - --background: hsla(0, 70%, 10%, 1); - --backgroundHover: hsla(0, 70%, 14%, 1); - --backgroundPress: hsla(0, 70%, 19%, 1); - --backgroundFocus: hsla(0, 70%, 23%, 1); - --color: hsla(0, 70%, 93%, 1); - --colorHover: hsla(0, 70%, 50%, 1); - --colorPress: hsla(0, 70%, 93%, 1); - --colorFocus: hsla(0, 70%, 50%, 1); - --placeholderColor: hsla(0, 70%, 50%, 1); - --borderColor: hsla(0, 70%, 32%, 1); - --borderColorHover: hsla(0, 70%, 37%, 1); - --borderColorFocus: hsla(0, 70%, 41%, 1); - --borderColorPress: hsla(0, 70%, 37%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_error_Checkbox, - .t_error_Input, - .t_error_RadioGroupItem, - .t_error_TextArea, - .t_light .t_dark .t_error_Checkbox, - .t_light .t_dark .t_error_Input, - .t_light .t_dark .t_error_RadioGroupItem, - .t_light .t_dark .t_error_TextArea, - .t_light .t_dark .t_red_Checkbox, - .t_light .t_dark .t_red_Input, - .t_light .t_dark .t_red_RadioGroupItem, - .t_light .t_dark .t_red_TextArea, - .t_red_Checkbox, - .t_red_Input, - .t_red_RadioGroupItem, - .t_red_TextArea { - --accentBackground: hsla(0, 69%, 10%, 0); - --accentColor: hsla(0, 69%, 10%, 0); - --background0: hsla(0, 69%, 10%, 0.25); - --background025: hsla(0, 69%, 10%, 0.5); - --background05: hsla(0, 69%, 10%, 0.75); - --background075: hsla(0, 70%, 10%, 1); - --color0: hsla(0, 70%, 95%, 1); - --color025: hsla(0, 69%, 95%, 0.75); - --color05: hsla(0, 69%, 95%, 0.5); - --color075: hsla(0, 69%, 95%, 0.25); - --background: hsla(0, 70%, 10%, 1); - --backgroundHover: hsla(0, 70%, 14%, 1); - --backgroundPress: hsla(0, 70%, 19%, 1); - --backgroundFocus: hsla(0, 70%, 23%, 1); - --color: hsla(0, 70%, 93%, 1); - --colorHover: hsla(0, 70%, 50%, 1); - --colorPress: hsla(0, 70%, 93%, 1); - --colorFocus: hsla(0, 70%, 50%, 1); - --placeholderColor: hsla(0, 70%, 50%, 1); - --borderColor: hsla(0, 70%, 32%, 1); - --borderColorHover: hsla(0, 70%, 37%, 1); - --borderColorFocus: hsla(0, 70%, 41%, 1); - --borderColorPress: hsla(0, 70%, 37%, 1); - } -} - -:root.t_dark .t_error_ProgressIndicator, -:root.t_dark .t_error_SliderThumb, -:root.t_dark .t_error_SwitchThumb, -:root.t_dark .t_error_Tooltip, -:root.t_dark .t_light .t_dark .t_error_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_error_SliderThumb, -:root.t_dark .t_light .t_dark .t_error_SwitchThumb, -:root.t_dark .t_light .t_dark .t_error_Tooltip, -:root.t_dark .t_light .t_dark .t_red_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_red_SliderThumb, -:root.t_dark .t_light .t_dark .t_red_SwitchThumb, -:root.t_dark .t_light .t_dark .t_red_Tooltip, -:root.t_dark .t_red_ProgressIndicator, -:root.t_dark .t_red_SliderThumb, -:root.t_dark .t_red_SwitchThumb, -:root.t_dark .t_red_Tooltip, -:root.t_light .t_dark .t_error_ProgressIndicator, -:root.t_light .t_dark .t_error_SliderThumb, -:root.t_light .t_dark .t_error_SwitchThumb, -:root.t_light .t_dark .t_error_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_error_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_error_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_error_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_error_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_red_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_red_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_red_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_red_Tooltip, -:root.t_light .t_dark .t_red_ProgressIndicator, -:root.t_light .t_dark .t_red_SliderThumb, -:root.t_light .t_dark .t_red_SwitchThumb, -:root.t_light .t_dark .t_red_Tooltip { - --accentBackground: hsla(0, 69%, 10%, 0); - --accentColor: hsla(0, 69%, 10%, 0); - --background0: hsla(0, 69%, 95%, 0.25); - --background025: hsla(0, 69%, 95%, 0.5); - --background05: hsla(0, 69%, 95%, 0.75); - --background075: hsla(0, 70%, 95%, 1); - --color0: hsla(0, 70%, 10%, 1); - --color025: hsla(0, 69%, 10%, 0.75); - --color05: hsla(0, 69%, 10%, 0.5); - --color075: hsla(0, 69%, 10%, 0.25); - --background: hsla(0, 70%, 95%, 1); - --backgroundHover: hsla(0, 70%, 93%, 1); - --backgroundPress: hsla(0, 70%, 50%, 1); - --backgroundFocus: hsla(0, 70%, 46%, 1); - --color: hsla(0, 70%, 14%, 1); - --colorHover: hsla(0, 70%, 19%, 1); - --colorPress: hsla(0, 70%, 14%, 1); - --colorFocus: hsla(0, 70%, 19%, 1); - --placeholderColor: hsla(0, 70%, 19%, 1); - --borderColor: hsla(0, 70%, 46%, 1); - --borderColorHover: hsla(0, 70%, 41%, 1); - --borderColorFocus: hsla(0, 70%, 37%, 1); - --borderColorPress: hsla(0, 70%, 41%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_error_ProgressIndicator, - .t_error_SliderThumb, - .t_error_SwitchThumb, - .t_error_Tooltip, - .t_light .t_dark .t_error_ProgressIndicator, - .t_light .t_dark .t_error_SliderThumb, - .t_light .t_dark .t_error_SwitchThumb, - .t_light .t_dark .t_error_Tooltip, - .t_light .t_dark .t_red_ProgressIndicator, - .t_light .t_dark .t_red_SliderThumb, - .t_light .t_dark .t_red_SwitchThumb, - .t_light .t_dark .t_red_Tooltip, - .t_red_ProgressIndicator, - .t_red_SliderThumb, - .t_red_SwitchThumb, - .t_red_Tooltip { - --accentBackground: hsla(0, 69%, 10%, 0); - --accentColor: hsla(0, 69%, 10%, 0); - --background0: hsla(0, 69%, 95%, 0.25); - --background025: hsla(0, 69%, 95%, 0.5); - --background05: hsla(0, 69%, 95%, 0.75); - --background075: hsla(0, 70%, 95%, 1); - --color0: hsla(0, 70%, 10%, 1); - --color025: hsla(0, 69%, 10%, 0.75); - --color05: hsla(0, 69%, 10%, 0.5); - --color075: hsla(0, 69%, 10%, 0.25); - --background: hsla(0, 70%, 95%, 1); - --backgroundHover: hsla(0, 70%, 93%, 1); - --backgroundPress: hsla(0, 70%, 50%, 1); - --backgroundFocus: hsla(0, 70%, 46%, 1); - --color: hsla(0, 70%, 14%, 1); - --colorHover: hsla(0, 70%, 19%, 1); - --colorPress: hsla(0, 70%, 14%, 1); - --colorFocus: hsla(0, 70%, 19%, 1); - --placeholderColor: hsla(0, 70%, 19%, 1); - --borderColor: hsla(0, 70%, 46%, 1); - --borderColorHover: hsla(0, 70%, 41%, 1); - --borderColorFocus: hsla(0, 70%, 37%, 1); - --borderColorPress: hsla(0, 70%, 41%, 1); - } -} - -:root.t_dark .t_error_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_error_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_red_SliderTrackActive, -:root.t_dark .t_red_SliderTrackActive, -:root.t_light .t_dark .t_error_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_error_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_red_SliderTrackActive, -:root.t_light .t_dark .t_red_SliderTrackActive { - --accentBackground: hsla(0, 69%, 10%, 0); - --accentColor: hsla(0, 69%, 10%, 0); - --background0: hsla(0, 69%, 95%, 0.75); - --background025: hsla(0, 70%, 95%, 1); - --background05: hsla(0, 70%, 93%, 1); - --background075: hsla(0, 70%, 50%, 1); - --color0: hsla(0, 70%, 19%, 1); - --color025: hsla(0, 70%, 14%, 1); - --color05: hsla(0, 70%, 10%, 1); - --color075: hsla(0, 69%, 10%, 0.75); - --background: hsla(0, 70%, 50%, 1); - --backgroundHover: hsla(0, 70%, 46%, 1); - --backgroundPress: hsla(0, 70%, 41%, 1); - --backgroundFocus: hsla(0, 70%, 37%, 1); - --color: hsla(0, 70%, 14%, 1); - --colorHover: hsla(0, 70%, 19%, 1); - --colorPress: hsla(0, 70%, 14%, 1); - --colorFocus: hsla(0, 70%, 19%, 1); - --placeholderColor: hsla(0, 70%, 28%, 1); - --borderColor: hsla(0, 70%, 37%, 1); - --borderColorHover: hsla(0, 70%, 32%, 1); - --borderColorFocus: hsla(0, 70%, 28%, 1); - --borderColorPress: hsla(0, 70%, 32%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_error_SliderTrackActive, - .t_light .t_dark .t_error_SliderTrackActive, - .t_light .t_dark .t_red_SliderTrackActive, - .t_red_SliderTrackActive { - --accentBackground: hsla(0, 69%, 10%, 0); - --accentColor: hsla(0, 69%, 10%, 0); - --background0: hsla(0, 69%, 95%, 0.75); - --background025: hsla(0, 70%, 95%, 1); - --background05: hsla(0, 70%, 93%, 1); - --background075: hsla(0, 70%, 50%, 1); - --color0: hsla(0, 70%, 19%, 1); - --color025: hsla(0, 70%, 14%, 1); - --color05: hsla(0, 70%, 10%, 1); - --color075: hsla(0, 69%, 10%, 0.75); - --background: hsla(0, 70%, 50%, 1); - --backgroundHover: hsla(0, 70%, 46%, 1); - --backgroundPress: hsla(0, 70%, 41%, 1); - --backgroundFocus: hsla(0, 70%, 37%, 1); - --color: hsla(0, 70%, 14%, 1); - --colorHover: hsla(0, 70%, 19%, 1); - --colorPress: hsla(0, 70%, 14%, 1); - --colorFocus: hsla(0, 70%, 19%, 1); - --placeholderColor: hsla(0, 70%, 28%, 1); - --borderColor: hsla(0, 70%, 37%, 1); - --borderColorHover: hsla(0, 70%, 32%, 1); - --borderColorFocus: hsla(0, 70%, 28%, 1); - --borderColorPress: hsla(0, 70%, 32%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_success, -:root.t_dark .t_success, -:root.t_light .t_dark .t_light .t_dark .t_success, -:root.t_light .t_dark .t_success { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(153, 69%, 10%, 0.25); - --background025: hsla(153, 69%, 10%, 0.5); - --background05: hsla(153, 69%, 10%, 0.75); - --background075: hsla(153, 70%, 10%, 1); - --color0: hsla(153, 70%, 95%, 1); - --color025: hsla(153, 69%, 95%, 0.75); - --color05: hsla(153, 69%, 95%, 0.5); - --color075: hsla(153, 69%, 95%, 0.25); - --background: hsla(153, 70%, 10%, 1); - --backgroundHover: hsla(153, 70%, 14%, 1); - --backgroundPress: hsla(153, 70%, 19%, 1); - --backgroundFocus: hsla(153, 70%, 23%, 1); - --color: hsla(153, 70%, 93%, 1); - --colorHover: hsla(153, 70%, 50%, 1); - --colorPress: hsla(153, 70%, 93%, 1); - --colorFocus: hsla(153, 70%, 50%, 1); - --placeholderColor: hsla(153, 70%, 50%, 1); - --borderColor: hsla(153, 70%, 23%, 1); - --borderColorHover: hsla(153, 70%, 28%, 1); - --borderColorFocus: hsla(153, 70%, 32%, 1); - --borderColorPress: hsla(153, 70%, 28%, 1); - --color1: hsla(153, 70%, 10%, 1); - --color2: hsla(153, 70%, 14%, 1); - --color3: hsla(153, 70%, 19%, 1); - --color4: hsla(153, 70%, 23%, 1); - --color5: hsla(153, 70%, 28%, 1); - --color6: hsla(153, 70%, 32%, 1); - --color7: hsla(153, 70%, 37%, 1); - --color8: hsla(153, 70%, 41%, 1); - --color9: hsla(153, 70%, 46%, 1); - --color10: hsla(153, 70%, 50%, 1); - --color11: hsla(153, 70%, 93%, 1); - --color12: hsla(153, 70%, 95%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_light .t_dark .t_success, - .t_success { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(153, 69%, 10%, 0.25); - --background025: hsla(153, 69%, 10%, 0.5); - --background05: hsla(153, 69%, 10%, 0.75); - --background075: hsla(153, 70%, 10%, 1); - --color0: hsla(153, 70%, 95%, 1); - --color025: hsla(153, 69%, 95%, 0.75); - --color05: hsla(153, 69%, 95%, 0.5); - --color075: hsla(153, 69%, 95%, 0.25); - --background: hsla(153, 70%, 10%, 1); - --backgroundHover: hsla(153, 70%, 14%, 1); - --backgroundPress: hsla(153, 70%, 19%, 1); - --backgroundFocus: hsla(153, 70%, 23%, 1); - --color: hsla(153, 70%, 93%, 1); - --colorHover: hsla(153, 70%, 50%, 1); - --colorPress: hsla(153, 70%, 93%, 1); - --colorFocus: hsla(153, 70%, 50%, 1); - --placeholderColor: hsla(153, 70%, 50%, 1); - --borderColor: hsla(153, 70%, 23%, 1); - --borderColorHover: hsla(153, 70%, 28%, 1); - --borderColorFocus: hsla(153, 70%, 32%, 1); - --borderColorPress: hsla(153, 70%, 28%, 1); - --color1: hsla(153, 70%, 10%, 1); - --color2: hsla(153, 70%, 14%, 1); - --color3: hsla(153, 70%, 19%, 1); - --color4: hsla(153, 70%, 23%, 1); - --color5: hsla(153, 70%, 28%, 1); - --color6: hsla(153, 70%, 32%, 1); - --color7: hsla(153, 70%, 37%, 1); - --color8: hsla(153, 70%, 41%, 1); - --color9: hsla(153, 70%, 46%, 1); - --color10: hsla(153, 70%, 50%, 1); - --color11: hsla(153, 70%, 93%, 1); - --color12: hsla(153, 70%, 95%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_success_Button, -:root.t_dark .t_light .t_dark .t_success_SliderTrack, -:root.t_dark .t_light .t_dark .t_success_Switch, -:root.t_dark .t_light .t_dark .t_success_TooltipContent, -:root.t_dark .t_success_Button, -:root.t_dark .t_success_SliderTrack, -:root.t_dark .t_success_Switch, -:root.t_dark .t_success_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_success_Button, -:root.t_light .t_dark .t_light .t_dark .t_success_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_success_Switch, -:root.t_light .t_dark .t_light .t_dark .t_success_TooltipContent, -:root.t_light .t_dark .t_success_Button, -:root.t_light .t_dark .t_success_SliderTrack, -:root.t_light .t_dark .t_success_Switch, -:root.t_light .t_dark .t_success_TooltipContent { - --background0: hsla(153, 69%, 10%, 0.75); - --background025: hsla(153, 70%, 10%, 1); - --background05: hsla(153, 70%, 14%, 1); - --background075: hsla(153, 70%, 19%, 1); - --color0: hsla(153, 70%, 50%, 1); - --color025: hsla(153, 70%, 93%, 1); - --color05: hsla(153, 70%, 95%, 1); - --color075: hsla(153, 69%, 95%, 0.75); - --background: hsla(153, 70%, 19%, 1); - --backgroundHover: hsla(153, 70%, 23%, 1); - --backgroundPress: hsla(153, 70%, 28%, 1); - --backgroundFocus: hsla(153, 70%, 32%, 1); - --color: hsla(153, 70%, 93%, 1); - --colorHover: hsla(153, 70%, 50%, 1); - --colorPress: hsla(153, 70%, 93%, 1); - --colorFocus: hsla(153, 70%, 50%, 1); - --placeholderColor: hsla(153, 70%, 41%, 1); - --borderColor: hsla(153, 70%, 32%, 1); - --borderColorHover: hsla(153, 70%, 37%, 1); - --borderColorFocus: hsla(153, 70%, 41%, 1); - --borderColorPress: hsla(153, 70%, 37%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_light .t_dark .t_success_Button, - .t_light .t_dark .t_success_SliderTrack, - .t_light .t_dark .t_success_Switch, - .t_light .t_dark .t_success_TooltipContent, - .t_success_Button, - .t_success_SliderTrack, - .t_success_Switch, - .t_success_TooltipContent { - --background0: hsla(153, 69%, 10%, 0.75); - --background025: hsla(153, 70%, 10%, 1); - --background05: hsla(153, 70%, 14%, 1); - --background075: hsla(153, 70%, 19%, 1); - --color0: hsla(153, 70%, 50%, 1); - --color025: hsla(153, 70%, 93%, 1); - --color05: hsla(153, 70%, 95%, 1); - --color075: hsla(153, 69%, 95%, 0.75); - --background: hsla(153, 70%, 19%, 1); - --backgroundHover: hsla(153, 70%, 23%, 1); - --backgroundPress: hsla(153, 70%, 28%, 1); - --backgroundFocus: hsla(153, 70%, 32%, 1); - --color: hsla(153, 70%, 93%, 1); - --colorHover: hsla(153, 70%, 50%, 1); - --colorPress: hsla(153, 70%, 93%, 1); - --colorFocus: hsla(153, 70%, 50%, 1); - --placeholderColor: hsla(153, 70%, 41%, 1); - --borderColor: hsla(153, 70%, 32%, 1); - --borderColorHover: hsla(153, 70%, 37%, 1); - --borderColorFocus: hsla(153, 70%, 41%, 1); - --borderColorPress: hsla(153, 70%, 37%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_success_Card, -:root.t_dark .t_light .t_dark .t_success_DrawerFrame, -:root.t_dark .t_light .t_dark .t_success_Progress, -:root.t_dark .t_light .t_dark .t_success_TooltipArrow, -:root.t_dark .t_success_Card, -:root.t_dark .t_success_DrawerFrame, -:root.t_dark .t_success_Progress, -:root.t_dark .t_success_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_success_Card, -:root.t_light .t_dark .t_light .t_dark .t_success_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_success_Progress, -:root.t_light .t_dark .t_light .t_dark .t_success_TooltipArrow, -:root.t_light .t_dark .t_success_Card, -:root.t_light .t_dark .t_success_DrawerFrame, -:root.t_light .t_dark .t_success_Progress, -:root.t_light .t_dark .t_success_TooltipArrow { - --background0: hsla(153, 69%, 10%, 0.5); - --background025: hsla(153, 69%, 10%, 0.75); - --background05: hsla(153, 70%, 10%, 1); - --background075: hsla(153, 70%, 14%, 1); - --color0: hsla(153, 70%, 93%, 1); - --color025: hsla(153, 70%, 95%, 1); - --color05: hsla(153, 69%, 95%, 0.75); - --color075: hsla(153, 69%, 95%, 0.5); - --background: hsla(153, 70%, 14%, 1); - --backgroundHover: hsla(153, 70%, 19%, 1); - --backgroundPress: hsla(153, 70%, 23%, 1); - --backgroundFocus: hsla(153, 70%, 28%, 1); - --color: hsla(153, 70%, 93%, 1); - --colorHover: hsla(153, 70%, 50%, 1); - --colorPress: hsla(153, 70%, 93%, 1); - --colorFocus: hsla(153, 70%, 50%, 1); - --placeholderColor: hsla(153, 70%, 46%, 1); - --borderColor: hsla(153, 70%, 28%, 1); - --borderColorHover: hsla(153, 70%, 32%, 1); - --borderColorFocus: hsla(153, 70%, 37%, 1); - --borderColorPress: hsla(153, 70%, 32%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_light .t_dark .t_success_Card, - .t_light .t_dark .t_success_DrawerFrame, - .t_light .t_dark .t_success_Progress, - .t_light .t_dark .t_success_TooltipArrow, - .t_success_Card, - .t_success_DrawerFrame, - .t_success_Progress, - .t_success_TooltipArrow { - --background0: hsla(153, 69%, 10%, 0.5); - --background025: hsla(153, 69%, 10%, 0.75); - --background05: hsla(153, 70%, 10%, 1); - --background075: hsla(153, 70%, 14%, 1); - --color0: hsla(153, 70%, 93%, 1); - --color025: hsla(153, 70%, 95%, 1); - --color05: hsla(153, 69%, 95%, 0.75); - --color075: hsla(153, 69%, 95%, 0.5); - --background: hsla(153, 70%, 14%, 1); - --backgroundHover: hsla(153, 70%, 19%, 1); - --backgroundPress: hsla(153, 70%, 23%, 1); - --backgroundFocus: hsla(153, 70%, 28%, 1); - --color: hsla(153, 70%, 93%, 1); - --colorHover: hsla(153, 70%, 50%, 1); - --colorPress: hsla(153, 70%, 93%, 1); - --colorFocus: hsla(153, 70%, 50%, 1); - --placeholderColor: hsla(153, 70%, 46%, 1); - --borderColor: hsla(153, 70%, 28%, 1); - --borderColorHover: hsla(153, 70%, 32%, 1); - --borderColorFocus: hsla(153, 70%, 37%, 1); - --borderColorPress: hsla(153, 70%, 32%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_success_Checkbox, -:root.t_dark .t_light .t_dark .t_success_Input, -:root.t_dark .t_light .t_dark .t_success_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_success_TextArea, -:root.t_dark .t_success_Checkbox, -:root.t_dark .t_success_Input, -:root.t_dark .t_success_RadioGroupItem, -:root.t_dark .t_success_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_success_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_success_Input, -:root.t_light .t_dark .t_light .t_dark .t_success_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_success_TextArea, -:root.t_light .t_dark .t_success_Checkbox, -:root.t_light .t_dark .t_success_Input, -:root.t_light .t_dark .t_success_RadioGroupItem, -:root.t_light .t_dark .t_success_TextArea { - --accentBackground: hsla(153, 69%, 10%, 0); - --accentColor: hsla(153, 69%, 10%, 0); - --background0: hsla(153, 69%, 10%, 0.25); - --background025: hsla(153, 69%, 10%, 0.5); - --background05: hsla(153, 69%, 10%, 0.75); - --background075: hsla(153, 70%, 10%, 1); - --color0: hsla(153, 70%, 95%, 1); - --color025: hsla(153, 69%, 95%, 0.75); - --color05: hsla(153, 69%, 95%, 0.5); - --color075: hsla(153, 69%, 95%, 0.25); - --background: hsla(153, 70%, 10%, 1); - --backgroundHover: hsla(153, 70%, 14%, 1); - --backgroundPress: hsla(153, 70%, 19%, 1); - --backgroundFocus: hsla(153, 70%, 23%, 1); - --color: hsla(153, 70%, 93%, 1); - --colorHover: hsla(153, 70%, 50%, 1); - --colorPress: hsla(153, 70%, 93%, 1); - --colorFocus: hsla(153, 70%, 50%, 1); - --placeholderColor: hsla(153, 70%, 50%, 1); - --borderColor: hsla(153, 70%, 32%, 1); - --borderColorHover: hsla(153, 70%, 37%, 1); - --borderColorFocus: hsla(153, 70%, 41%, 1); - --borderColorPress: hsla(153, 70%, 37%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_light .t_dark .t_success_Checkbox, - .t_light .t_dark .t_success_Input, - .t_light .t_dark .t_success_RadioGroupItem, - .t_light .t_dark .t_success_TextArea, - .t_success_Checkbox, - .t_success_Input, - .t_success_RadioGroupItem, - .t_success_TextArea { - --accentBackground: hsla(153, 69%, 10%, 0); - --accentColor: hsla(153, 69%, 10%, 0); - --background0: hsla(153, 69%, 10%, 0.25); - --background025: hsla(153, 69%, 10%, 0.5); - --background05: hsla(153, 69%, 10%, 0.75); - --background075: hsla(153, 70%, 10%, 1); - --color0: hsla(153, 70%, 95%, 1); - --color025: hsla(153, 69%, 95%, 0.75); - --color05: hsla(153, 69%, 95%, 0.5); - --color075: hsla(153, 69%, 95%, 0.25); - --background: hsla(153, 70%, 10%, 1); - --backgroundHover: hsla(153, 70%, 14%, 1); - --backgroundPress: hsla(153, 70%, 19%, 1); - --backgroundFocus: hsla(153, 70%, 23%, 1); - --color: hsla(153, 70%, 93%, 1); - --colorHover: hsla(153, 70%, 50%, 1); - --colorPress: hsla(153, 70%, 93%, 1); - --colorFocus: hsla(153, 70%, 50%, 1); - --placeholderColor: hsla(153, 70%, 50%, 1); - --borderColor: hsla(153, 70%, 32%, 1); - --borderColorHover: hsla(153, 70%, 37%, 1); - --borderColorFocus: hsla(153, 70%, 41%, 1); - --borderColorPress: hsla(153, 70%, 37%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_success_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_success_SliderThumb, -:root.t_dark .t_light .t_dark .t_success_SwitchThumb, -:root.t_dark .t_light .t_dark .t_success_Tooltip, -:root.t_dark .t_success_ProgressIndicator, -:root.t_dark .t_success_SliderThumb, -:root.t_dark .t_success_SwitchThumb, -:root.t_dark .t_success_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_success_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_success_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_success_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_success_Tooltip, -:root.t_light .t_dark .t_success_ProgressIndicator, -:root.t_light .t_dark .t_success_SliderThumb, -:root.t_light .t_dark .t_success_SwitchThumb, -:root.t_light .t_dark .t_success_Tooltip { - --accentBackground: hsla(153, 69%, 10%, 0); - --accentColor: hsla(153, 69%, 10%, 0); - --background0: hsla(153, 69%, 95%, 0.25); - --background025: hsla(153, 69%, 95%, 0.5); - --background05: hsla(153, 69%, 95%, 0.75); - --background075: hsla(153, 70%, 95%, 1); - --color0: hsla(153, 70%, 10%, 1); - --color025: hsla(153, 69%, 10%, 0.75); - --color05: hsla(153, 69%, 10%, 0.5); - --color075: hsla(153, 69%, 10%, 0.25); - --background: hsla(153, 70%, 95%, 1); - --backgroundHover: hsla(153, 70%, 93%, 1); - --backgroundPress: hsla(153, 70%, 50%, 1); - --backgroundFocus: hsla(153, 70%, 46%, 1); - --color: hsla(153, 70%, 14%, 1); - --colorHover: hsla(153, 70%, 19%, 1); - --colorPress: hsla(153, 70%, 14%, 1); - --colorFocus: hsla(153, 70%, 19%, 1); - --placeholderColor: hsla(153, 70%, 19%, 1); - --borderColor: hsla(153, 70%, 46%, 1); - --borderColorHover: hsla(153, 70%, 41%, 1); - --borderColorFocus: hsla(153, 70%, 37%, 1); - --borderColorPress: hsla(153, 70%, 41%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_light .t_dark .t_success_ProgressIndicator, - .t_light .t_dark .t_success_SliderThumb, - .t_light .t_dark .t_success_SwitchThumb, - .t_light .t_dark .t_success_Tooltip, - .t_success_ProgressIndicator, - .t_success_SliderThumb, - .t_success_SwitchThumb, - .t_success_Tooltip { - --accentBackground: hsla(153, 69%, 10%, 0); - --accentColor: hsla(153, 69%, 10%, 0); - --background0: hsla(153, 69%, 95%, 0.25); - --background025: hsla(153, 69%, 95%, 0.5); - --background05: hsla(153, 69%, 95%, 0.75); - --background075: hsla(153, 70%, 95%, 1); - --color0: hsla(153, 70%, 10%, 1); - --color025: hsla(153, 69%, 10%, 0.75); - --color05: hsla(153, 69%, 10%, 0.5); - --color075: hsla(153, 69%, 10%, 0.25); - --background: hsla(153, 70%, 95%, 1); - --backgroundHover: hsla(153, 70%, 93%, 1); - --backgroundPress: hsla(153, 70%, 50%, 1); - --backgroundFocus: hsla(153, 70%, 46%, 1); - --color: hsla(153, 70%, 14%, 1); - --colorHover: hsla(153, 70%, 19%, 1); - --colorPress: hsla(153, 70%, 14%, 1); - --colorFocus: hsla(153, 70%, 19%, 1); - --placeholderColor: hsla(153, 70%, 19%, 1); - --borderColor: hsla(153, 70%, 46%, 1); - --borderColorHover: hsla(153, 70%, 41%, 1); - --borderColorFocus: hsla(153, 70%, 37%, 1); - --borderColorPress: hsla(153, 70%, 41%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_success_SliderTrackActive, -:root.t_dark .t_success_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_success_SliderTrackActive, -:root.t_light .t_dark .t_success_SliderTrackActive { - --accentBackground: hsla(153, 69%, 10%, 0); - --accentColor: hsla(153, 69%, 10%, 0); - --background0: hsla(153, 69%, 95%, 0.75); - --background025: hsla(153, 70%, 95%, 1); - --background05: hsla(153, 70%, 93%, 1); - --background075: hsla(153, 70%, 50%, 1); - --color0: hsla(153, 70%, 19%, 1); - --color025: hsla(153, 70%, 14%, 1); - --color05: hsla(153, 70%, 10%, 1); - --color075: hsla(153, 69%, 10%, 0.75); - --background: hsla(153, 70%, 50%, 1); - --backgroundHover: hsla(153, 70%, 46%, 1); - --backgroundPress: hsla(153, 70%, 41%, 1); - --backgroundFocus: hsla(153, 70%, 37%, 1); - --color: hsla(153, 70%, 14%, 1); - --colorHover: hsla(153, 70%, 19%, 1); - --colorPress: hsla(153, 70%, 14%, 1); - --colorFocus: hsla(153, 70%, 19%, 1); - --placeholderColor: hsla(153, 70%, 28%, 1); - --borderColor: hsla(153, 70%, 37%, 1); - --borderColorHover: hsla(153, 70%, 32%, 1); - --borderColorFocus: hsla(153, 70%, 28%, 1); - --borderColorPress: hsla(153, 70%, 32%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_light .t_dark .t_success_SliderTrackActive, - .t_success_SliderTrackActive { - --accentBackground: hsla(153, 69%, 10%, 0); - --accentColor: hsla(153, 69%, 10%, 0); - --background0: hsla(153, 69%, 95%, 0.75); - --background025: hsla(153, 70%, 95%, 1); - --background05: hsla(153, 70%, 93%, 1); - --background075: hsla(153, 70%, 50%, 1); - --color0: hsla(153, 70%, 19%, 1); - --color025: hsla(153, 70%, 14%, 1); - --color05: hsla(153, 70%, 10%, 1); - --color075: hsla(153, 69%, 10%, 0.75); - --background: hsla(153, 70%, 50%, 1); - --backgroundHover: hsla(153, 70%, 46%, 1); - --backgroundPress: hsla(153, 70%, 41%, 1); - --backgroundFocus: hsla(153, 70%, 37%, 1); - --color: hsla(153, 70%, 14%, 1); - --colorHover: hsla(153, 70%, 19%, 1); - --colorPress: hsla(153, 70%, 14%, 1); - --colorFocus: hsla(153, 70%, 19%, 1); - --placeholderColor: hsla(153, 70%, 28%, 1); - --borderColor: hsla(153, 70%, 37%, 1); - --borderColorHover: hsla(153, 70%, 32%, 1); - --borderColorFocus: hsla(153, 70%, 28%, 1); - --borderColorPress: hsla(153, 70%, 32%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_warning, -:root.t_dark .t_warning, -:root.t_light .t_dark .t_light .t_dark .t_warning, -:root.t_light .t_dark .t_warning { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(48, 69%, 10%, 0.25); - --background025: hsla(48, 69%, 10%, 0.5); - --background05: hsla(48, 69%, 10%, 0.75); - --background075: hsla(48, 70%, 10%, 1); - --color0: hsla(48, 70%, 95%, 1); - --color025: hsla(50, 69%, 95%, 0.75); - --color05: hsla(50, 69%, 95%, 0.5); - --color075: hsla(50, 69%, 95%, 0.25); - --background: hsla(48, 70%, 10%, 1); - --backgroundHover: hsla(48, 70%, 14%, 1); - --backgroundPress: hsla(48, 70%, 19%, 1); - --backgroundFocus: hsla(48, 70%, 23%, 1); - --color: hsla(48, 70%, 93%, 1); - --colorHover: hsla(48, 70%, 50%, 1); - --colorPress: hsla(48, 70%, 93%, 1); - --colorFocus: hsla(48, 70%, 50%, 1); - --placeholderColor: hsla(48, 70%, 50%, 1); - --borderColor: hsla(48, 70%, 23%, 1); - --borderColorHover: hsla(48, 70%, 28%, 1); - --borderColorFocus: hsla(48, 70%, 32%, 1); - --borderColorPress: hsla(48, 70%, 28%, 1); - --color1: hsla(48, 70%, 10%, 1); - --color2: hsla(48, 70%, 14%, 1); - --color3: hsla(48, 70%, 19%, 1); - --color4: hsla(48, 70%, 23%, 1); - --color5: hsla(48, 70%, 28%, 1); - --color6: hsla(48, 70%, 32%, 1); - --color7: hsla(48, 70%, 37%, 1); - --color8: hsla(48, 70%, 41%, 1); - --color9: hsla(48, 70%, 46%, 1); - --color10: hsla(48, 70%, 50%, 1); - --color11: hsla(48, 70%, 93%, 1); - --color12: hsla(48, 70%, 95%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_light .t_dark .t_warning, - .t_warning { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(48, 69%, 10%, 0.25); - --background025: hsla(48, 69%, 10%, 0.5); - --background05: hsla(48, 69%, 10%, 0.75); - --background075: hsla(48, 70%, 10%, 1); - --color0: hsla(48, 70%, 95%, 1); - --color025: hsla(50, 69%, 95%, 0.75); - --color05: hsla(50, 69%, 95%, 0.5); - --color075: hsla(50, 69%, 95%, 0.25); - --background: hsla(48, 70%, 10%, 1); - --backgroundHover: hsla(48, 70%, 14%, 1); - --backgroundPress: hsla(48, 70%, 19%, 1); - --backgroundFocus: hsla(48, 70%, 23%, 1); - --color: hsla(48, 70%, 93%, 1); - --colorHover: hsla(48, 70%, 50%, 1); - --colorPress: hsla(48, 70%, 93%, 1); - --colorFocus: hsla(48, 70%, 50%, 1); - --placeholderColor: hsla(48, 70%, 50%, 1); - --borderColor: hsla(48, 70%, 23%, 1); - --borderColorHover: hsla(48, 70%, 28%, 1); - --borderColorFocus: hsla(48, 70%, 32%, 1); - --borderColorPress: hsla(48, 70%, 28%, 1); - --color1: hsla(48, 70%, 10%, 1); - --color2: hsla(48, 70%, 14%, 1); - --color3: hsla(48, 70%, 19%, 1); - --color4: hsla(48, 70%, 23%, 1); - --color5: hsla(48, 70%, 28%, 1); - --color6: hsla(48, 70%, 32%, 1); - --color7: hsla(48, 70%, 37%, 1); - --color8: hsla(48, 70%, 41%, 1); - --color9: hsla(48, 70%, 46%, 1); - --color10: hsla(48, 70%, 50%, 1); - --color11: hsla(48, 70%, 93%, 1); - --color12: hsla(48, 70%, 95%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_warning_Button, -:root.t_dark .t_light .t_dark .t_warning_SliderTrack, -:root.t_dark .t_light .t_dark .t_warning_Switch, -:root.t_dark .t_light .t_dark .t_warning_TooltipContent, -:root.t_dark .t_warning_Button, -:root.t_dark .t_warning_SliderTrack, -:root.t_dark .t_warning_Switch, -:root.t_dark .t_warning_TooltipContent, -:root.t_light .t_dark .t_light .t_dark .t_warning_Button, -:root.t_light .t_dark .t_light .t_dark .t_warning_SliderTrack, -:root.t_light .t_dark .t_light .t_dark .t_warning_Switch, -:root.t_light .t_dark .t_light .t_dark .t_warning_TooltipContent, -:root.t_light .t_dark .t_warning_Button, -:root.t_light .t_dark .t_warning_SliderTrack, -:root.t_light .t_dark .t_warning_Switch, -:root.t_light .t_dark .t_warning_TooltipContent { - --background0: hsla(48, 69%, 10%, 0.75); - --background025: hsla(48, 70%, 10%, 1); - --background05: hsla(48, 70%, 14%, 1); - --background075: hsla(48, 70%, 19%, 1); - --color0: hsla(48, 70%, 50%, 1); - --color025: hsla(48, 70%, 93%, 1); - --color05: hsla(48, 70%, 95%, 1); - --color075: hsla(50, 69%, 95%, 0.75); - --background: hsla(48, 70%, 19%, 1); - --backgroundHover: hsla(48, 70%, 23%, 1); - --backgroundPress: hsla(48, 70%, 28%, 1); - --backgroundFocus: hsla(48, 70%, 32%, 1); - --color: hsla(48, 70%, 93%, 1); - --colorHover: hsla(48, 70%, 50%, 1); - --colorPress: hsla(48, 70%, 93%, 1); - --colorFocus: hsla(48, 70%, 50%, 1); - --placeholderColor: hsla(48, 70%, 41%, 1); - --borderColor: hsla(48, 70%, 32%, 1); - --borderColorHover: hsla(48, 70%, 37%, 1); - --borderColorFocus: hsla(48, 70%, 41%, 1); - --borderColorPress: hsla(48, 70%, 37%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_light .t_dark .t_warning_Button, - .t_light .t_dark .t_warning_SliderTrack, - .t_light .t_dark .t_warning_Switch, - .t_light .t_dark .t_warning_TooltipContent, - .t_warning_Button, - .t_warning_SliderTrack, - .t_warning_Switch, - .t_warning_TooltipContent { - --background0: hsla(48, 69%, 10%, 0.75); - --background025: hsla(48, 70%, 10%, 1); - --background05: hsla(48, 70%, 14%, 1); - --background075: hsla(48, 70%, 19%, 1); - --color0: hsla(48, 70%, 50%, 1); - --color025: hsla(48, 70%, 93%, 1); - --color05: hsla(48, 70%, 95%, 1); - --color075: hsla(50, 69%, 95%, 0.75); - --background: hsla(48, 70%, 19%, 1); - --backgroundHover: hsla(48, 70%, 23%, 1); - --backgroundPress: hsla(48, 70%, 28%, 1); - --backgroundFocus: hsla(48, 70%, 32%, 1); - --color: hsla(48, 70%, 93%, 1); - --colorHover: hsla(48, 70%, 50%, 1); - --colorPress: hsla(48, 70%, 93%, 1); - --colorFocus: hsla(48, 70%, 50%, 1); - --placeholderColor: hsla(48, 70%, 41%, 1); - --borderColor: hsla(48, 70%, 32%, 1); - --borderColorHover: hsla(48, 70%, 37%, 1); - --borderColorFocus: hsla(48, 70%, 41%, 1); - --borderColorPress: hsla(48, 70%, 37%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_warning_Card, -:root.t_dark .t_light .t_dark .t_warning_DrawerFrame, -:root.t_dark .t_light .t_dark .t_warning_Progress, -:root.t_dark .t_light .t_dark .t_warning_TooltipArrow, -:root.t_dark .t_warning_Card, -:root.t_dark .t_warning_DrawerFrame, -:root.t_dark .t_warning_Progress, -:root.t_dark .t_warning_TooltipArrow, -:root.t_light .t_dark .t_light .t_dark .t_warning_Card, -:root.t_light .t_dark .t_light .t_dark .t_warning_DrawerFrame, -:root.t_light .t_dark .t_light .t_dark .t_warning_Progress, -:root.t_light .t_dark .t_light .t_dark .t_warning_TooltipArrow, -:root.t_light .t_dark .t_warning_Card, -:root.t_light .t_dark .t_warning_DrawerFrame, -:root.t_light .t_dark .t_warning_Progress, -:root.t_light .t_dark .t_warning_TooltipArrow { - --background0: hsla(48, 69%, 10%, 0.5); - --background025: hsla(48, 69%, 10%, 0.75); - --background05: hsla(48, 70%, 10%, 1); - --background075: hsla(48, 70%, 14%, 1); - --color0: hsla(48, 70%, 93%, 1); - --color025: hsla(48, 70%, 95%, 1); - --color05: hsla(50, 69%, 95%, 0.75); - --color075: hsla(50, 69%, 95%, 0.5); - --background: hsla(48, 70%, 14%, 1); - --backgroundHover: hsla(48, 70%, 19%, 1); - --backgroundPress: hsla(48, 70%, 23%, 1); - --backgroundFocus: hsla(48, 70%, 28%, 1); - --color: hsla(48, 70%, 93%, 1); - --colorHover: hsla(48, 70%, 50%, 1); - --colorPress: hsla(48, 70%, 93%, 1); - --colorFocus: hsla(48, 70%, 50%, 1); - --placeholderColor: hsla(48, 70%, 46%, 1); - --borderColor: hsla(48, 70%, 28%, 1); - --borderColorHover: hsla(48, 70%, 32%, 1); - --borderColorFocus: hsla(48, 70%, 37%, 1); - --borderColorPress: hsla(48, 70%, 32%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_light .t_dark .t_warning_Card, - .t_light .t_dark .t_warning_DrawerFrame, - .t_light .t_dark .t_warning_Progress, - .t_light .t_dark .t_warning_TooltipArrow, - .t_warning_Card, - .t_warning_DrawerFrame, - .t_warning_Progress, - .t_warning_TooltipArrow { - --background0: hsla(48, 69%, 10%, 0.5); - --background025: hsla(48, 69%, 10%, 0.75); - --background05: hsla(48, 70%, 10%, 1); - --background075: hsla(48, 70%, 14%, 1); - --color0: hsla(48, 70%, 93%, 1); - --color025: hsla(48, 70%, 95%, 1); - --color05: hsla(50, 69%, 95%, 0.75); - --color075: hsla(50, 69%, 95%, 0.5); - --background: hsla(48, 70%, 14%, 1); - --backgroundHover: hsla(48, 70%, 19%, 1); - --backgroundPress: hsla(48, 70%, 23%, 1); - --backgroundFocus: hsla(48, 70%, 28%, 1); - --color: hsla(48, 70%, 93%, 1); - --colorHover: hsla(48, 70%, 50%, 1); - --colorPress: hsla(48, 70%, 93%, 1); - --colorFocus: hsla(48, 70%, 50%, 1); - --placeholderColor: hsla(48, 70%, 46%, 1); - --borderColor: hsla(48, 70%, 28%, 1); - --borderColorHover: hsla(48, 70%, 32%, 1); - --borderColorFocus: hsla(48, 70%, 37%, 1); - --borderColorPress: hsla(48, 70%, 32%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_warning_Checkbox, -:root.t_dark .t_light .t_dark .t_warning_Input, -:root.t_dark .t_light .t_dark .t_warning_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_warning_TextArea, -:root.t_dark .t_warning_Checkbox, -:root.t_dark .t_warning_Input, -:root.t_dark .t_warning_RadioGroupItem, -:root.t_dark .t_warning_TextArea, -:root.t_light .t_dark .t_light .t_dark .t_warning_Checkbox, -:root.t_light .t_dark .t_light .t_dark .t_warning_Input, -:root.t_light .t_dark .t_light .t_dark .t_warning_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dark .t_warning_TextArea, -:root.t_light .t_dark .t_warning_Checkbox, -:root.t_light .t_dark .t_warning_Input, -:root.t_light .t_dark .t_warning_RadioGroupItem, -:root.t_light .t_dark .t_warning_TextArea { - --accentBackground: hsla(48, 69%, 10%, 0); - --accentColor: hsla(48, 69%, 10%, 0); - --background0: hsla(48, 69%, 10%, 0.25); - --background025: hsla(48, 69%, 10%, 0.5); - --background05: hsla(48, 69%, 10%, 0.75); - --background075: hsla(48, 70%, 10%, 1); - --color0: hsla(48, 70%, 95%, 1); - --color025: hsla(50, 69%, 95%, 0.75); - --color05: hsla(50, 69%, 95%, 0.5); - --color075: hsla(50, 69%, 95%, 0.25); - --background: hsla(48, 70%, 10%, 1); - --backgroundHover: hsla(48, 70%, 14%, 1); - --backgroundPress: hsla(48, 70%, 19%, 1); - --backgroundFocus: hsla(48, 70%, 23%, 1); - --color: hsla(48, 70%, 93%, 1); - --colorHover: hsla(48, 70%, 50%, 1); - --colorPress: hsla(48, 70%, 93%, 1); - --colorFocus: hsla(48, 70%, 50%, 1); - --placeholderColor: hsla(48, 70%, 50%, 1); - --borderColor: hsla(48, 70%, 32%, 1); - --borderColorHover: hsla(48, 70%, 37%, 1); - --borderColorFocus: hsla(48, 70%, 41%, 1); - --borderColorPress: hsla(48, 70%, 37%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_light .t_dark .t_warning_Checkbox, - .t_light .t_dark .t_warning_Input, - .t_light .t_dark .t_warning_RadioGroupItem, - .t_light .t_dark .t_warning_TextArea, - .t_warning_Checkbox, - .t_warning_Input, - .t_warning_RadioGroupItem, - .t_warning_TextArea { - --accentBackground: hsla(48, 69%, 10%, 0); - --accentColor: hsla(48, 69%, 10%, 0); - --background0: hsla(48, 69%, 10%, 0.25); - --background025: hsla(48, 69%, 10%, 0.5); - --background05: hsla(48, 69%, 10%, 0.75); - --background075: hsla(48, 70%, 10%, 1); - --color0: hsla(48, 70%, 95%, 1); - --color025: hsla(50, 69%, 95%, 0.75); - --color05: hsla(50, 69%, 95%, 0.5); - --color075: hsla(50, 69%, 95%, 0.25); - --background: hsla(48, 70%, 10%, 1); - --backgroundHover: hsla(48, 70%, 14%, 1); - --backgroundPress: hsla(48, 70%, 19%, 1); - --backgroundFocus: hsla(48, 70%, 23%, 1); - --color: hsla(48, 70%, 93%, 1); - --colorHover: hsla(48, 70%, 50%, 1); - --colorPress: hsla(48, 70%, 93%, 1); - --colorFocus: hsla(48, 70%, 50%, 1); - --placeholderColor: hsla(48, 70%, 50%, 1); - --borderColor: hsla(48, 70%, 32%, 1); - --borderColorHover: hsla(48, 70%, 37%, 1); - --borderColorFocus: hsla(48, 70%, 41%, 1); - --borderColorPress: hsla(48, 70%, 37%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_warning_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_warning_SliderThumb, -:root.t_dark .t_light .t_dark .t_warning_SwitchThumb, -:root.t_dark .t_light .t_dark .t_warning_Tooltip, -:root.t_dark .t_warning_ProgressIndicator, -:root.t_dark .t_warning_SliderThumb, -:root.t_dark .t_warning_SwitchThumb, -:root.t_dark .t_warning_Tooltip, -:root.t_light .t_dark .t_light .t_dark .t_warning_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dark .t_warning_SliderThumb, -:root.t_light .t_dark .t_light .t_dark .t_warning_SwitchThumb, -:root.t_light .t_dark .t_light .t_dark .t_warning_Tooltip, -:root.t_light .t_dark .t_warning_ProgressIndicator, -:root.t_light .t_dark .t_warning_SliderThumb, -:root.t_light .t_dark .t_warning_SwitchThumb, -:root.t_light .t_dark .t_warning_Tooltip { - --accentBackground: hsla(48, 69%, 10%, 0); - --accentColor: hsla(48, 69%, 10%, 0); - --background0: hsla(50, 69%, 95%, 0.25); - --background025: hsla(50, 69%, 95%, 0.5); - --background05: hsla(50, 69%, 95%, 0.75); - --background075: hsla(48, 70%, 95%, 1); - --color0: hsla(48, 70%, 10%, 1); - --color025: hsla(48, 69%, 10%, 0.75); - --color05: hsla(48, 69%, 10%, 0.5); - --color075: hsla(48, 69%, 10%, 0.25); - --background: hsla(48, 70%, 95%, 1); - --backgroundHover: hsla(48, 70%, 93%, 1); - --backgroundPress: hsla(48, 70%, 50%, 1); - --backgroundFocus: hsla(48, 70%, 46%, 1); - --color: hsla(48, 70%, 14%, 1); - --colorHover: hsla(48, 70%, 19%, 1); - --colorPress: hsla(48, 70%, 14%, 1); - --colorFocus: hsla(48, 70%, 19%, 1); - --placeholderColor: hsla(48, 70%, 19%, 1); - --borderColor: hsla(48, 70%, 46%, 1); - --borderColorHover: hsla(48, 70%, 41%, 1); - --borderColorFocus: hsla(48, 70%, 37%, 1); - --borderColorPress: hsla(48, 70%, 41%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_light .t_dark .t_warning_ProgressIndicator, - .t_light .t_dark .t_warning_SliderThumb, - .t_light .t_dark .t_warning_SwitchThumb, - .t_light .t_dark .t_warning_Tooltip, - .t_warning_ProgressIndicator, - .t_warning_SliderThumb, - .t_warning_SwitchThumb, - .t_warning_Tooltip { - --accentBackground: hsla(48, 69%, 10%, 0); - --accentColor: hsla(48, 69%, 10%, 0); - --background0: hsla(50, 69%, 95%, 0.25); - --background025: hsla(50, 69%, 95%, 0.5); - --background05: hsla(50, 69%, 95%, 0.75); - --background075: hsla(48, 70%, 95%, 1); - --color0: hsla(48, 70%, 10%, 1); - --color025: hsla(48, 69%, 10%, 0.75); - --color05: hsla(48, 69%, 10%, 0.5); - --color075: hsla(48, 69%, 10%, 0.25); - --background: hsla(48, 70%, 95%, 1); - --backgroundHover: hsla(48, 70%, 93%, 1); - --backgroundPress: hsla(48, 70%, 50%, 1); - --backgroundFocus: hsla(48, 70%, 46%, 1); - --color: hsla(48, 70%, 14%, 1); - --colorHover: hsla(48, 70%, 19%, 1); - --colorPress: hsla(48, 70%, 14%, 1); - --colorFocus: hsla(48, 70%, 19%, 1); - --placeholderColor: hsla(48, 70%, 19%, 1); - --borderColor: hsla(48, 70%, 46%, 1); - --borderColorHover: hsla(48, 70%, 41%, 1); - --borderColorFocus: hsla(48, 70%, 37%, 1); - --borderColorPress: hsla(48, 70%, 41%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_warning_SliderTrackActive, -:root.t_dark .t_warning_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dark .t_warning_SliderTrackActive, -:root.t_light .t_dark .t_warning_SliderTrackActive { - --accentBackground: hsla(48, 69%, 10%, 0); - --accentColor: hsla(48, 69%, 10%, 0); - --background0: hsla(50, 69%, 95%, 0.75); - --background025: hsla(48, 70%, 95%, 1); - --background05: hsla(48, 70%, 93%, 1); - --background075: hsla(48, 70%, 50%, 1); - --color0: hsla(48, 70%, 19%, 1); - --color025: hsla(48, 70%, 14%, 1); - --color05: hsla(48, 70%, 10%, 1); - --color075: hsla(48, 69%, 10%, 0.75); - --background: hsla(48, 70%, 50%, 1); - --backgroundHover: hsla(48, 70%, 46%, 1); - --backgroundPress: hsla(48, 70%, 41%, 1); - --backgroundFocus: hsla(48, 70%, 37%, 1); - --color: hsla(48, 70%, 14%, 1); - --colorHover: hsla(48, 70%, 19%, 1); - --colorPress: hsla(48, 70%, 14%, 1); - --colorFocus: hsla(48, 70%, 19%, 1); - --placeholderColor: hsla(48, 70%, 28%, 1); - --borderColor: hsla(48, 70%, 37%, 1); - --borderColorHover: hsla(48, 70%, 32%, 1); - --borderColorFocus: hsla(48, 70%, 28%, 1); - --borderColorPress: hsla(48, 70%, 32%, 1); -} - -@media(prefers-color-scheme:dark) { - body { - background: var(--background); - color: var(--color) - } - - .t_light .t_dark .t_warning_SliderTrackActive, - .t_warning_SliderTrackActive { - --accentBackground: hsla(48, 69%, 10%, 0); - --accentColor: hsla(48, 69%, 10%, 0); - --background0: hsla(50, 69%, 95%, 0.75); - --background025: hsla(48, 70%, 95%, 1); - --background05: hsla(48, 70%, 93%, 1); - --background075: hsla(48, 70%, 50%, 1); - --color0: hsla(48, 70%, 19%, 1); - --color025: hsla(48, 70%, 14%, 1); - --color05: hsla(48, 70%, 10%, 1); - --color075: hsla(48, 69%, 10%, 0.75); - --background: hsla(48, 70%, 50%, 1); - --backgroundHover: hsla(48, 70%, 46%, 1); - --backgroundPress: hsla(48, 70%, 41%, 1); - --backgroundFocus: hsla(48, 70%, 37%, 1); - --color: hsla(48, 70%, 14%, 1); - --colorHover: hsla(48, 70%, 19%, 1); - --colorPress: hsla(48, 70%, 14%, 1); - --colorFocus: hsla(48, 70%, 19%, 1); - --placeholderColor: hsla(48, 70%, 28%, 1); - --borderColor: hsla(48, 70%, 37%, 1); - --borderColorHover: hsla(48, 70%, 32%, 1); - --borderColorFocus: hsla(48, 70%, 28%, 1); - --borderColorPress: hsla(48, 70%, 32%, 1); - } -} - -:root.t_dark .t_light, -:root.t_dark .t_light .t_dark .t_light, -:root.t_light, -:root.t_light .t_dark .t_light { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(180, 20%, 99%, 0.25); - --background025: hsla(180, 20%, 99%, 0.5); - --background05: hsla(180, 20%, 99%, 0.75); - --background075: hsla(191, 32%, 99%, 1); - --color0: hsla(112, 22%, 0%, 1); - --color025: hsla(0, 0%, 0%, 0.75); - --color05: hsla(0, 0%, 0%, 0.5); - --color075: hsla(0, 0%, 0%, 0.25); - --background: hsla(191, 32%, 99%, 1); - --backgroundHover: hsla(191, 32%, 93%, 1); - --backgroundPress: hsla(191, 32%, 88%, 1); - --backgroundFocus: hsla(191, 32%, 83%, 1); - --color: hsla(96, 16%, 25%, 1); - --colorHover: hsla(191, 32%, 50%, 1); - --colorPress: hsla(96, 16%, 25%, 1); - --colorFocus: hsla(191, 32%, 50%, 1); - --placeholderColor: hsla(191, 32%, 50%, 1); - --borderColor: hsla(191, 32%, 83%, 1); - --borderColorHover: hsla(191, 32%, 77%, 1); - --borderColorFocus: hsla(191, 32%, 72%, 1); - --borderColorPress: hsla(191, 32%, 77%, 1); - --color1: hsla(191, 32%, 99%, 1); - --color2: hsla(191, 32%, 93%, 1); - --color3: hsla(191, 32%, 88%, 1); - --color4: hsla(191, 32%, 83%, 1); - --color5: hsla(191, 32%, 77%, 1); - --color6: hsla(191, 32%, 72%, 1); - --color7: hsla(191, 32%, 66%, 1); - --color8: hsla(191, 32%, 61%, 1); - --color9: hsla(191, 32%, 55%, 1); - --color10: hsla(191, 32%, 50%, 1); - --color11: hsla(96, 16%, 25%, 1); - --color12: hsla(112, 22%, 0%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - :root, - .t_dark .t_light { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(180, 20%, 99%, 0.25); - --background025: hsla(180, 20%, 99%, 0.5); - --background05: hsla(180, 20%, 99%, 0.75); - --background075: hsla(191, 32%, 99%, 1); - --color0: hsla(112, 22%, 0%, 1); - --color025: hsla(0, 0%, 0%, 0.75); - --color05: hsla(0, 0%, 0%, 0.5); - --color075: hsla(0, 0%, 0%, 0.25); - --background: hsla(191, 32%, 99%, 1); - --backgroundHover: hsla(191, 32%, 93%, 1); - --backgroundPress: hsla(191, 32%, 88%, 1); - --backgroundFocus: hsla(191, 32%, 83%, 1); - --color: hsla(96, 16%, 25%, 1); - --colorHover: hsla(191, 32%, 50%, 1); - --colorPress: hsla(96, 16%, 25%, 1); - --colorFocus: hsla(191, 32%, 50%, 1); - --placeholderColor: hsla(191, 32%, 50%, 1); - --borderColor: hsla(191, 32%, 83%, 1); - --borderColorHover: hsla(191, 32%, 77%, 1); - --borderColorFocus: hsla(191, 32%, 72%, 1); - --borderColorPress: hsla(191, 32%, 77%, 1); - --color1: hsla(191, 32%, 99%, 1); - --color2: hsla(191, 32%, 93%, 1); - --color3: hsla(191, 32%, 88%, 1); - --color4: hsla(191, 32%, 83%, 1); - --color5: hsla(191, 32%, 77%, 1); - --color6: hsla(191, 32%, 72%, 1); - --color7: hsla(191, 32%, 66%, 1); - --color8: hsla(191, 32%, 61%, 1); - --color9: hsla(191, 32%, 55%, 1); - --color10: hsla(191, 32%, 50%, 1); - --color11: hsla(96, 16%, 25%, 1); - --color12: hsla(112, 22%, 0%, 1); - } -} - -:root.t_dark .t_light .t_Button, -:root.t_dark .t_light .t_dark .t_light .t_Button, -:root.t_dark .t_light .t_dark .t_light .t_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_Switch, -:root.t_dark .t_light .t_dark .t_light .t_TooltipContent, -:root.t_dark .t_light .t_SliderTrack, -:root.t_dark .t_light .t_Switch, -:root.t_dark .t_light .t_TooltipContent, -:root.t_light .t_Button, -:root.t_light .t_dark .t_light .t_Button, -:root.t_light .t_dark .t_light .t_SliderTrack, -:root.t_light .t_dark .t_light .t_Switch, -:root.t_light .t_dark .t_light .t_TooltipContent, -:root.t_light .t_SliderTrack, -:root.t_light .t_Switch, -:root.t_light .t_TooltipContent { - --background0: hsla(180, 20%, 99%, 0.75); - --background025: hsla(191, 32%, 99%, 1); - --background05: hsla(191, 32%, 93%, 1); - --background075: hsla(191, 32%, 88%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(96, 16%, 25%, 1); - --color05: hsla(112, 22%, 0%, 1); - --color075: hsla(0, 0%, 0%, 0.75); - --background: hsla(191, 32%, 88%, 1); - --backgroundHover: hsla(191, 32%, 83%, 1); - --backgroundPress: hsla(191, 32%, 77%, 1); - --backgroundFocus: hsla(191, 32%, 72%, 1); - --color: hsla(96, 16%, 25%, 1); - --colorHover: hsla(191, 32%, 50%, 1); - --colorPress: hsla(96, 16%, 25%, 1); - --colorFocus: hsla(191, 32%, 50%, 1); - --placeholderColor: hsla(191, 32%, 61%, 1); - --borderColor: hsla(191, 32%, 72%, 1); - --borderColorHover: hsla(191, 32%, 66%, 1); - --borderColorFocus: hsla(191, 32%, 61%, 1); - --borderColorPress: hsla(191, 32%, 66%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_Button, - .t_dark .t_light .t_Button, - .t_dark .t_light .t_SliderTrack, - .t_dark .t_light .t_Switch, - .t_dark .t_light .t_TooltipContent, - .t_SliderTrack, - .t_Switch, - .t_TooltipContent { - --background0: hsla(180, 20%, 99%, 0.75); - --background025: hsla(191, 32%, 99%, 1); - --background05: hsla(191, 32%, 93%, 1); - --background075: hsla(191, 32%, 88%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(96, 16%, 25%, 1); - --color05: hsla(112, 22%, 0%, 1); - --color075: hsla(0, 0%, 0%, 0.75); - --background: hsla(191, 32%, 88%, 1); - --backgroundHover: hsla(191, 32%, 83%, 1); - --backgroundPress: hsla(191, 32%, 77%, 1); - --backgroundFocus: hsla(191, 32%, 72%, 1); - --color: hsla(96, 16%, 25%, 1); - --colorHover: hsla(191, 32%, 50%, 1); - --colorPress: hsla(96, 16%, 25%, 1); - --colorFocus: hsla(191, 32%, 50%, 1); - --placeholderColor: hsla(191, 32%, 61%, 1); - --borderColor: hsla(191, 32%, 72%, 1); - --borderColorHover: hsla(191, 32%, 66%, 1); - --borderColorFocus: hsla(191, 32%, 61%, 1); - --borderColorPress: hsla(191, 32%, 66%, 1); - } -} - -:root.t_dark .t_light .t_Card, -:root.t_dark .t_light .t_dark .t_light .t_Card, -:root.t_dark .t_light .t_dark .t_light .t_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_Progress, -:root.t_dark .t_light .t_dark .t_light .t_TooltipArrow, -:root.t_dark .t_light .t_DrawerFrame, -:root.t_dark .t_light .t_Progress, -:root.t_dark .t_light .t_TooltipArrow, -:root.t_light .t_Card, -:root.t_light .t_dark .t_light .t_Card, -:root.t_light .t_dark .t_light .t_DrawerFrame, -:root.t_light .t_dark .t_light .t_Progress, -:root.t_light .t_dark .t_light .t_TooltipArrow, -:root.t_light .t_DrawerFrame, -:root.t_light .t_Progress, -:root.t_light .t_TooltipArrow { - --background0: hsla(180, 20%, 99%, 0.5); - --background025: hsla(180, 20%, 99%, 0.75); - --background05: hsla(191, 32%, 99%, 1); - --background075: hsla(191, 32%, 93%, 1); - --color0: hsla(96, 16%, 25%, 1); - --color025: hsla(112, 22%, 0%, 1); - --color05: hsla(0, 0%, 0%, 0.75); - --color075: hsla(0, 0%, 0%, 0.5); - --background: hsla(191, 32%, 93%, 1); - --backgroundHover: hsla(191, 32%, 88%, 1); - --backgroundPress: hsla(191, 32%, 83%, 1); - --backgroundFocus: hsla(191, 32%, 77%, 1); - --color: hsla(96, 16%, 25%, 1); - --colorHover: hsla(191, 32%, 50%, 1); - --colorPress: hsla(96, 16%, 25%, 1); - --colorFocus: hsla(191, 32%, 50%, 1); - --placeholderColor: hsla(191, 32%, 55%, 1); - --borderColor: hsla(191, 32%, 77%, 1); - --borderColorHover: hsla(191, 32%, 72%, 1); - --borderColorFocus: hsla(191, 32%, 66%, 1); - --borderColorPress: hsla(191, 32%, 72%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_Card, - .t_dark .t_light .t_Card, - .t_dark .t_light .t_DrawerFrame, - .t_dark .t_light .t_Progress, - .t_dark .t_light .t_TooltipArrow, - .t_DrawerFrame, - .t_Progress, - .t_TooltipArrow { - --background0: hsla(180, 20%, 99%, 0.5); - --background025: hsla(180, 20%, 99%, 0.75); - --background05: hsla(191, 32%, 99%, 1); - --background075: hsla(191, 32%, 93%, 1); - --color0: hsla(96, 16%, 25%, 1); - --color025: hsla(112, 22%, 0%, 1); - --color05: hsla(0, 0%, 0%, 0.75); - --color075: hsla(0, 0%, 0%, 0.5); - --background: hsla(191, 32%, 93%, 1); - --backgroundHover: hsla(191, 32%, 88%, 1); - --backgroundPress: hsla(191, 32%, 83%, 1); - --backgroundFocus: hsla(191, 32%, 77%, 1); - --color: hsla(96, 16%, 25%, 1); - --colorHover: hsla(191, 32%, 50%, 1); - --colorPress: hsla(96, 16%, 25%, 1); - --colorFocus: hsla(191, 32%, 50%, 1); - --placeholderColor: hsla(191, 32%, 55%, 1); - --borderColor: hsla(191, 32%, 77%, 1); - --borderColorHover: hsla(191, 32%, 72%, 1); - --borderColorFocus: hsla(191, 32%, 66%, 1); - --borderColorPress: hsla(191, 32%, 72%, 1); - } -} - -:root.t_dark .t_light .t_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_Input, -:root.t_dark .t_light .t_dark .t_light .t_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_TextArea, -:root.t_dark .t_light .t_Input, -:root.t_dark .t_light .t_RadioGroupItem, -:root.t_dark .t_light .t_TextArea, -:root.t_light .t_Checkbox, -:root.t_light .t_dark .t_light .t_Checkbox, -:root.t_light .t_dark .t_light .t_Input, -:root.t_light .t_dark .t_light .t_RadioGroupItem, -:root.t_light .t_dark .t_light .t_TextArea, -:root.t_light .t_Input, -:root.t_light .t_RadioGroupItem, -:root.t_light .t_TextArea { - --accentBackground: hsla(180, 20%, 99%, 0); - --accentColor: hsla(180, 20%, 99%, 0); - --background0: hsla(180, 20%, 99%, 0.25); - --background025: hsla(180, 20%, 99%, 0.5); - --background05: hsla(180, 20%, 99%, 0.75); - --background075: hsla(191, 32%, 99%, 1); - --color0: hsla(112, 22%, 0%, 1); - --color025: hsla(0, 0%, 0%, 0.75); - --color05: hsla(0, 0%, 0%, 0.5); - --color075: hsla(0, 0%, 0%, 0.25); - --background: hsla(191, 32%, 99%, 1); - --backgroundHover: hsla(191, 32%, 93%, 1); - --backgroundPress: hsla(191, 32%, 88%, 1); - --backgroundFocus: hsla(191, 32%, 83%, 1); - --color: hsla(96, 16%, 25%, 1); - --colorHover: hsla(191, 32%, 50%, 1); - --colorPress: hsla(96, 16%, 25%, 1); - --colorFocus: hsla(191, 32%, 50%, 1); - --placeholderColor: hsla(191, 32%, 50%, 1); - --borderColor: hsla(191, 32%, 72%, 1); - --borderColorHover: hsla(191, 32%, 66%, 1); - --borderColorFocus: hsla(191, 32%, 61%, 1); - --borderColorPress: hsla(191, 32%, 66%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_Checkbox, - .t_dark .t_light .t_Checkbox, - .t_dark .t_light .t_Input, - .t_dark .t_light .t_RadioGroupItem, - .t_dark .t_light .t_TextArea, - .t_Input, - .t_RadioGroupItem, - .t_TextArea { - --accentBackground: hsla(180, 20%, 99%, 0); - --accentColor: hsla(180, 20%, 99%, 0); - --background0: hsla(180, 20%, 99%, 0.25); - --background025: hsla(180, 20%, 99%, 0.5); - --background05: hsla(180, 20%, 99%, 0.75); - --background075: hsla(191, 32%, 99%, 1); - --color0: hsla(112, 22%, 0%, 1); - --color025: hsla(0, 0%, 0%, 0.75); - --color05: hsla(0, 0%, 0%, 0.5); - --color075: hsla(0, 0%, 0%, 0.25); - --background: hsla(191, 32%, 99%, 1); - --backgroundHover: hsla(191, 32%, 93%, 1); - --backgroundPress: hsla(191, 32%, 88%, 1); - --backgroundFocus: hsla(191, 32%, 83%, 1); - --color: hsla(96, 16%, 25%, 1); - --colorHover: hsla(191, 32%, 50%, 1); - --colorPress: hsla(96, 16%, 25%, 1); - --colorFocus: hsla(191, 32%, 50%, 1); - --placeholderColor: hsla(191, 32%, 50%, 1); - --borderColor: hsla(191, 32%, 72%, 1); - --borderColorHover: hsla(191, 32%, 66%, 1); - --borderColorFocus: hsla(191, 32%, 61%, 1); - --borderColorPress: hsla(191, 32%, 66%, 1); - } -} - -:root.t_dark .t_light .t_accent_DialogOverlay, -:root.t_dark .t_light .t_accent_ModalOverlay, -:root.t_dark .t_light .t_accent_SheetOverlay, -:root.t_dark .t_light .t_active_accent_DialogOverlay, -:root.t_dark .t_light .t_active_accent_ModalOverlay, -:root.t_dark .t_light .t_active_accent_SheetOverlay, -:root.t_dark .t_light .t_active_DialogOverlay, -:root.t_dark .t_light .t_active_ModalOverlay, -:root.t_dark .t_light .t_active_SheetOverlay, -:root.t_dark .t_light .t_alt1_accent_DialogOverlay, -:root.t_dark .t_light .t_alt1_accent_ModalOverlay, -:root.t_dark .t_light .t_alt1_accent_SheetOverlay, -:root.t_dark .t_light .t_alt1_DialogOverlay, -:root.t_dark .t_light .t_alt1_ModalOverlay, -:root.t_dark .t_light .t_alt1_SheetOverlay, -:root.t_dark .t_light .t_alt2_accent_DialogOverlay, -:root.t_dark .t_light .t_alt2_accent_ModalOverlay, -:root.t_dark .t_light .t_alt2_accent_SheetOverlay, -:root.t_dark .t_light .t_alt2_DialogOverlay, -:root.t_dark .t_light .t_alt2_ModalOverlay, -:root.t_dark .t_light .t_alt2_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_active_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_active_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_active_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_alt1_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_alt1_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_alt1_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_alt2_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_alt2_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_alt2_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_dim_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_dim_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_dim_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_disabled_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_disabled_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_disabled_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_error_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_error_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_error_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_red_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_red_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_red_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_success_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_success_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_success_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_SheetOverlay, -:root.t_dark .t_light .t_dark .t_light .t_warning_DialogOverlay, -:root.t_dark .t_light .t_dark .t_light .t_warning_ModalOverlay, -:root.t_dark .t_light .t_dark .t_light .t_warning_SheetOverlay, -:root.t_dark .t_light .t_DialogOverlay, -:root.t_dark .t_light .t_dim_accent_DialogOverlay, -:root.t_dark .t_light .t_dim_accent_ModalOverlay, -:root.t_dark .t_light .t_dim_accent_SheetOverlay, -:root.t_dark .t_light .t_dim_DialogOverlay, -:root.t_dark .t_light .t_dim_ModalOverlay, -:root.t_dark .t_light .t_dim_SheetOverlay, -:root.t_dark .t_light .t_disabled_accent_DialogOverlay, -:root.t_dark .t_light .t_disabled_accent_ModalOverlay, -:root.t_dark .t_light .t_disabled_accent_SheetOverlay, -:root.t_dark .t_light .t_disabled_DialogOverlay, -:root.t_dark .t_light .t_disabled_ModalOverlay, -:root.t_dark .t_light .t_disabled_SheetOverlay, -:root.t_dark .t_light .t_error_accent_DialogOverlay, -:root.t_dark .t_light .t_error_accent_ModalOverlay, -:root.t_dark .t_light .t_error_accent_SheetOverlay, -:root.t_dark .t_light .t_error_DialogOverlay, -:root.t_dark .t_light .t_error_ModalOverlay, -:root.t_dark .t_light .t_error_SheetOverlay, -:root.t_dark .t_light .t_ModalOverlay, -:root.t_dark .t_light .t_red_accent_DialogOverlay, -:root.t_dark .t_light .t_red_accent_ModalOverlay, -:root.t_dark .t_light .t_red_accent_SheetOverlay, -:root.t_dark .t_light .t_red_DialogOverlay, -:root.t_dark .t_light .t_red_ModalOverlay, -:root.t_dark .t_light .t_red_SheetOverlay, -:root.t_dark .t_light .t_SheetOverlay, -:root.t_dark .t_light .t_success_accent_DialogOverlay, -:root.t_dark .t_light .t_success_accent_ModalOverlay, -:root.t_dark .t_light .t_success_accent_SheetOverlay, -:root.t_dark .t_light .t_success_DialogOverlay, -:root.t_dark .t_light .t_success_ModalOverlay, -:root.t_dark .t_light .t_success_SheetOverlay, -:root.t_dark .t_light .t_warning_accent_DialogOverlay, -:root.t_dark .t_light .t_warning_accent_ModalOverlay, -:root.t_dark .t_light .t_warning_accent_SheetOverlay, -:root.t_dark .t_light .t_warning_DialogOverlay, -:root.t_dark .t_light .t_warning_ModalOverlay, -:root.t_dark .t_light .t_warning_SheetOverlay, -:root.t_light .t_accent_DialogOverlay, -:root.t_light .t_accent_ModalOverlay, -:root.t_light .t_accent_SheetOverlay, -:root.t_light .t_active_accent_DialogOverlay, -:root.t_light .t_active_accent_ModalOverlay, -:root.t_light .t_active_accent_SheetOverlay, -:root.t_light .t_active_DialogOverlay, -:root.t_light .t_active_ModalOverlay, -:root.t_light .t_active_SheetOverlay, -:root.t_light .t_alt1_accent_DialogOverlay, -:root.t_light .t_alt1_accent_ModalOverlay, -:root.t_light .t_alt1_accent_SheetOverlay, -:root.t_light .t_alt1_DialogOverlay, -:root.t_light .t_alt1_ModalOverlay, -:root.t_light .t_alt1_SheetOverlay, -:root.t_light .t_alt2_accent_DialogOverlay, -:root.t_light .t_alt2_accent_ModalOverlay, -:root.t_light .t_alt2_accent_SheetOverlay, -:root.t_light .t_alt2_DialogOverlay, -:root.t_light .t_alt2_ModalOverlay, -:root.t_light .t_alt2_SheetOverlay, -:root.t_light .t_dark .t_light .t_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_active_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_active_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_active_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_active_DialogOverlay, -:root.t_light .t_dark .t_light .t_active_ModalOverlay, -:root.t_light .t_dark .t_light .t_active_SheetOverlay, -:root.t_light .t_dark .t_light .t_alt1_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_alt1_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_alt1_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_alt1_DialogOverlay, -:root.t_light .t_dark .t_light .t_alt1_ModalOverlay, -:root.t_light .t_dark .t_light .t_alt1_SheetOverlay, -:root.t_light .t_dark .t_light .t_alt2_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_alt2_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_alt2_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_alt2_DialogOverlay, -:root.t_light .t_dark .t_light .t_alt2_ModalOverlay, -:root.t_light .t_dark .t_light .t_alt2_SheetOverlay, -:root.t_light .t_dark .t_light .t_DialogOverlay, -:root.t_light .t_dark .t_light .t_dim_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_dim_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_dim_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_dim_DialogOverlay, -:root.t_light .t_dark .t_light .t_dim_ModalOverlay, -:root.t_light .t_dark .t_light .t_dim_SheetOverlay, -:root.t_light .t_dark .t_light .t_disabled_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_disabled_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_disabled_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_disabled_DialogOverlay, -:root.t_light .t_dark .t_light .t_disabled_ModalOverlay, -:root.t_light .t_dark .t_light .t_disabled_SheetOverlay, -:root.t_light .t_dark .t_light .t_error_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_error_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_error_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_error_DialogOverlay, -:root.t_light .t_dark .t_light .t_error_ModalOverlay, -:root.t_light .t_dark .t_light .t_error_SheetOverlay, -:root.t_light .t_dark .t_light .t_ModalOverlay, -:root.t_light .t_dark .t_light .t_red_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_red_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_red_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_red_DialogOverlay, -:root.t_light .t_dark .t_light .t_red_ModalOverlay, -:root.t_light .t_dark .t_light .t_red_SheetOverlay, -:root.t_light .t_dark .t_light .t_SheetOverlay, -:root.t_light .t_dark .t_light .t_success_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_success_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_success_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_success_DialogOverlay, -:root.t_light .t_dark .t_light .t_success_ModalOverlay, -:root.t_light .t_dark .t_light .t_success_SheetOverlay, -:root.t_light .t_dark .t_light .t_warning_accent_DialogOverlay, -:root.t_light .t_dark .t_light .t_warning_accent_ModalOverlay, -:root.t_light .t_dark .t_light .t_warning_accent_SheetOverlay, -:root.t_light .t_dark .t_light .t_warning_DialogOverlay, -:root.t_light .t_dark .t_light .t_warning_ModalOverlay, -:root.t_light .t_dark .t_light .t_warning_SheetOverlay, -:root.t_light .t_DialogOverlay, -:root.t_light .t_dim_accent_DialogOverlay, -:root.t_light .t_dim_accent_ModalOverlay, -:root.t_light .t_dim_accent_SheetOverlay, -:root.t_light .t_dim_DialogOverlay, -:root.t_light .t_dim_ModalOverlay, -:root.t_light .t_dim_SheetOverlay, -:root.t_light .t_disabled_accent_DialogOverlay, -:root.t_light .t_disabled_accent_ModalOverlay, -:root.t_light .t_disabled_accent_SheetOverlay, -:root.t_light .t_disabled_DialogOverlay, -:root.t_light .t_disabled_ModalOverlay, -:root.t_light .t_disabled_SheetOverlay, -:root.t_light .t_error_accent_DialogOverlay, -:root.t_light .t_error_accent_ModalOverlay, -:root.t_light .t_error_accent_SheetOverlay, -:root.t_light .t_error_DialogOverlay, -:root.t_light .t_error_ModalOverlay, -:root.t_light .t_error_SheetOverlay, -:root.t_light .t_ModalOverlay, -:root.t_light .t_red_accent_DialogOverlay, -:root.t_light .t_red_accent_ModalOverlay, -:root.t_light .t_red_accent_SheetOverlay, -:root.t_light .t_red_DialogOverlay, -:root.t_light .t_red_ModalOverlay, -:root.t_light .t_red_SheetOverlay, -:root.t_light .t_SheetOverlay, -:root.t_light .t_success_accent_DialogOverlay, -:root.t_light .t_success_accent_ModalOverlay, -:root.t_light .t_success_accent_SheetOverlay, -:root.t_light .t_success_DialogOverlay, -:root.t_light .t_success_ModalOverlay, -:root.t_light .t_success_SheetOverlay, -:root.t_light .t_warning_accent_DialogOverlay, -:root.t_light .t_warning_accent_ModalOverlay, -:root.t_light .t_warning_accent_SheetOverlay, -:root.t_light .t_warning_DialogOverlay, -:root.t_light .t_warning_ModalOverlay, -:root.t_light .t_warning_SheetOverlay { - --background: rgba(0, 0, 0, 0.5); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - } - - .t_accent_DialogOverlay, - .t_accent_ModalOverlay, - .t_accent_SheetOverlay, - .t_active_accent_DialogOverlay, - .t_active_accent_ModalOverlay, - .t_active_accent_SheetOverlay, - .t_active_DialogOverlay, - .t_active_ModalOverlay, - .t_active_SheetOverlay, - .t_alt1_accent_DialogOverlay, - .t_alt1_accent_ModalOverlay, - .t_alt1_accent_SheetOverlay, - .t_alt1_DialogOverlay, - .t_alt1_ModalOverlay, - .t_alt1_SheetOverlay, - .t_alt2_accent_DialogOverlay, - .t_alt2_accent_ModalOverlay, - .t_alt2_accent_SheetOverlay, - .t_alt2_DialogOverlay, - .t_alt2_ModalOverlay, - .t_alt2_SheetOverlay, - .t_dark .t_light .t_accent_DialogOverlay, - .t_dark .t_light .t_accent_ModalOverlay, - .t_dark .t_light .t_accent_SheetOverlay, - .t_dark .t_light .t_active_accent_DialogOverlay, - .t_dark .t_light .t_active_accent_ModalOverlay, - .t_dark .t_light .t_active_accent_SheetOverlay, - .t_dark .t_light .t_active_DialogOverlay, - .t_dark .t_light .t_active_ModalOverlay, - .t_dark .t_light .t_active_SheetOverlay, - .t_dark .t_light .t_alt1_accent_DialogOverlay, - .t_dark .t_light .t_alt1_accent_ModalOverlay, - .t_dark .t_light .t_alt1_accent_SheetOverlay, - .t_dark .t_light .t_alt1_DialogOverlay, - .t_dark .t_light .t_alt1_ModalOverlay, - .t_dark .t_light .t_alt1_SheetOverlay, - .t_dark .t_light .t_alt2_accent_DialogOverlay, - .t_dark .t_light .t_alt2_accent_ModalOverlay, - .t_dark .t_light .t_alt2_accent_SheetOverlay, - .t_dark .t_light .t_alt2_DialogOverlay, - .t_dark .t_light .t_alt2_ModalOverlay, - .t_dark .t_light .t_alt2_SheetOverlay, - .t_dark .t_light .t_DialogOverlay, - .t_dark .t_light .t_dim_accent_DialogOverlay, - .t_dark .t_light .t_dim_accent_ModalOverlay, - .t_dark .t_light .t_dim_accent_SheetOverlay, - .t_dark .t_light .t_dim_DialogOverlay, - .t_dark .t_light .t_dim_ModalOverlay, - .t_dark .t_light .t_dim_SheetOverlay, - .t_dark .t_light .t_disabled_accent_DialogOverlay, - .t_dark .t_light .t_disabled_accent_ModalOverlay, - .t_dark .t_light .t_disabled_accent_SheetOverlay, - .t_dark .t_light .t_disabled_DialogOverlay, - .t_dark .t_light .t_disabled_ModalOverlay, - .t_dark .t_light .t_disabled_SheetOverlay, - .t_dark .t_light .t_error_accent_DialogOverlay, - .t_dark .t_light .t_error_accent_ModalOverlay, - .t_dark .t_light .t_error_accent_SheetOverlay, - .t_dark .t_light .t_error_DialogOverlay, - .t_dark .t_light .t_error_ModalOverlay, - .t_dark .t_light .t_error_SheetOverlay, - .t_dark .t_light .t_ModalOverlay, - .t_dark .t_light .t_red_accent_DialogOverlay, - .t_dark .t_light .t_red_accent_ModalOverlay, - .t_dark .t_light .t_red_accent_SheetOverlay, - .t_dark .t_light .t_red_DialogOverlay, - .t_dark .t_light .t_red_ModalOverlay, - .t_dark .t_light .t_red_SheetOverlay, - .t_dark .t_light .t_SheetOverlay, - .t_dark .t_light .t_success_accent_DialogOverlay, - .t_dark .t_light .t_success_accent_ModalOverlay, - .t_dark .t_light .t_success_accent_SheetOverlay, - .t_dark .t_light .t_success_DialogOverlay, - .t_dark .t_light .t_success_ModalOverlay, - .t_dark .t_light .t_success_SheetOverlay, - .t_dark .t_light .t_warning_accent_DialogOverlay, - .t_dark .t_light .t_warning_accent_ModalOverlay, - .t_dark .t_light .t_warning_accent_SheetOverlay, - .t_dark .t_light .t_warning_DialogOverlay, - .t_dark .t_light .t_warning_ModalOverlay, - .t_dark .t_light .t_warning_SheetOverlay, - .t_DialogOverlay, - .t_dim_accent_DialogOverlay, - .t_dim_accent_ModalOverlay, - .t_dim_accent_SheetOverlay, - .t_dim_DialogOverlay, - .t_dim_ModalOverlay, - .t_dim_SheetOverlay, - .t_disabled_accent_DialogOverlay, - .t_disabled_accent_ModalOverlay, - .t_disabled_accent_SheetOverlay, - .t_disabled_DialogOverlay, - .t_disabled_ModalOverlay, - .t_disabled_SheetOverlay, - .t_error_accent_DialogOverlay, - .t_error_accent_ModalOverlay, - .t_error_accent_SheetOverlay, - .t_error_DialogOverlay, - .t_error_ModalOverlay, - .t_error_SheetOverlay, - .t_ModalOverlay, - .t_red_accent_DialogOverlay, - .t_red_accent_ModalOverlay, - .t_red_accent_SheetOverlay, - .t_red_DialogOverlay, - .t_red_ModalOverlay, - .t_red_SheetOverlay, - .t_SheetOverlay, - .t_success_accent_DialogOverlay, - .t_success_accent_ModalOverlay, - .t_success_accent_SheetOverlay, - .t_success_DialogOverlay, - .t_success_ModalOverlay, - .t_success_SheetOverlay, - .t_warning_accent_DialogOverlay, - .t_warning_accent_ModalOverlay, - .t_warning_accent_SheetOverlay, - .t_warning_DialogOverlay, - .t_warning_ModalOverlay, - .t_warning_SheetOverlay { - --background: rgba(0, 0, 0, 0.5); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_Tooltip, -:root.t_dark .t_light .t_ProgressIndicator, -:root.t_dark .t_light .t_SliderThumb, -:root.t_dark .t_light .t_SwitchThumb, -:root.t_dark .t_light .t_Tooltip, -:root.t_light .t_dark .t_light .t_ProgressIndicator, -:root.t_light .t_dark .t_light .t_SliderThumb, -:root.t_light .t_dark .t_light .t_SwitchThumb, -:root.t_light .t_dark .t_light .t_Tooltip, -:root.t_light .t_ProgressIndicator, -:root.t_light .t_SliderThumb, -:root.t_light .t_SwitchThumb, -:root.t_light .t_Tooltip { - --accentBackground: hsla(180, 20%, 99%, 0); - --accentColor: hsla(180, 20%, 99%, 0); - --background0: hsla(0, 0%, 0%, 0.25); - --background025: hsla(0, 0%, 0%, 0.5); - --background05: hsla(0, 0%, 0%, 0.75); - --background075: hsla(112, 22%, 0%, 1); - --color0: hsla(191, 32%, 99%, 1); - --color025: hsla(180, 20%, 99%, 0.75); - --color05: hsla(180, 20%, 99%, 0.5); - --color075: hsla(180, 20%, 99%, 0.25); - --background: hsla(112, 22%, 0%, 1); - --backgroundHover: hsla(96, 16%, 25%, 1); - --backgroundPress: hsla(191, 32%, 50%, 1); - --backgroundFocus: hsla(191, 32%, 55%, 1); - --color: hsla(191, 32%, 93%, 1); - --colorHover: hsla(191, 32%, 88%, 1); - --colorPress: hsla(191, 32%, 93%, 1); - --colorFocus: hsla(191, 32%, 88%, 1); - --placeholderColor: hsla(191, 32%, 88%, 1); - --borderColor: hsla(191, 32%, 55%, 1); - --borderColorHover: hsla(191, 32%, 61%, 1); - --borderColorFocus: hsla(191, 32%, 66%, 1); - --borderColorPress: hsla(191, 32%, 61%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_ProgressIndicator, - .t_dark .t_light .t_SliderThumb, - .t_dark .t_light .t_SwitchThumb, - .t_dark .t_light .t_Tooltip, - .t_ProgressIndicator, - .t_SliderThumb, - .t_SwitchThumb, - .t_Tooltip { - --accentBackground: hsla(180, 20%, 99%, 0); - --accentColor: hsla(180, 20%, 99%, 0); - --background0: hsla(0, 0%, 0%, 0.25); - --background025: hsla(0, 0%, 0%, 0.5); - --background05: hsla(0, 0%, 0%, 0.75); - --background075: hsla(112, 22%, 0%, 1); - --color0: hsla(191, 32%, 99%, 1); - --color025: hsla(180, 20%, 99%, 0.75); - --color05: hsla(180, 20%, 99%, 0.5); - --color075: hsla(180, 20%, 99%, 0.25); - --background: hsla(112, 22%, 0%, 1); - --backgroundHover: hsla(96, 16%, 25%, 1); - --backgroundPress: hsla(191, 32%, 50%, 1); - --backgroundFocus: hsla(191, 32%, 55%, 1); - --color: hsla(191, 32%, 93%, 1); - --colorHover: hsla(191, 32%, 88%, 1); - --colorPress: hsla(191, 32%, 93%, 1); - --colorFocus: hsla(191, 32%, 88%, 1); - --placeholderColor: hsla(191, 32%, 88%, 1); - --borderColor: hsla(191, 32%, 55%, 1); - --borderColorHover: hsla(191, 32%, 61%, 1); - --borderColorFocus: hsla(191, 32%, 66%, 1); - --borderColorPress: hsla(191, 32%, 61%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_SliderTrackActive, -:root.t_dark .t_light .t_SliderTrackActive, -:root.t_light .t_dark .t_light .t_SliderTrackActive, -:root.t_light .t_SliderTrackActive { - --accentBackground: hsla(180, 20%, 99%, 0); - --accentColor: hsla(180, 20%, 99%, 0); - --background0: hsla(0, 0%, 0%, 0.75); - --background025: hsla(112, 22%, 0%, 1); - --background05: hsla(96, 16%, 25%, 1); - --background075: hsla(191, 32%, 50%, 1); - --color0: hsla(191, 32%, 88%, 1); - --color025: hsla(191, 32%, 93%, 1); - --color05: hsla(191, 32%, 99%, 1); - --color075: hsla(180, 20%, 99%, 0.75); - --background: hsla(191, 32%, 50%, 1); - --backgroundHover: hsla(191, 32%, 55%, 1); - --backgroundPress: hsla(191, 32%, 61%, 1); - --backgroundFocus: hsla(191, 32%, 66%, 1); - --color: hsla(191, 32%, 93%, 1); - --colorHover: hsla(191, 32%, 88%, 1); - --colorPress: hsla(191, 32%, 93%, 1); - --colorFocus: hsla(191, 32%, 88%, 1); - --placeholderColor: hsla(191, 32%, 77%, 1); - --borderColor: hsla(191, 32%, 66%, 1); - --borderColorHover: hsla(191, 32%, 72%, 1); - --borderColorFocus: hsla(191, 32%, 77%, 1); - --borderColorPress: hsla(191, 32%, 72%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_SliderTrackActive, - .t_SliderTrackActive { - --accentBackground: hsla(180, 20%, 99%, 0); - --accentColor: hsla(180, 20%, 99%, 0); - --background0: hsla(0, 0%, 0%, 0.75); - --background025: hsla(112, 22%, 0%, 1); - --background05: hsla(96, 16%, 25%, 1); - --background075: hsla(191, 32%, 50%, 1); - --color0: hsla(191, 32%, 88%, 1); - --color025: hsla(191, 32%, 93%, 1); - --color05: hsla(191, 32%, 99%, 1); - --color075: hsla(180, 20%, 99%, 0.75); - --background: hsla(191, 32%, 50%, 1); - --backgroundHover: hsla(191, 32%, 55%, 1); - --backgroundPress: hsla(191, 32%, 61%, 1); - --backgroundFocus: hsla(191, 32%, 66%, 1); - --color: hsla(191, 32%, 93%, 1); - --colorHover: hsla(191, 32%, 88%, 1); - --colorPress: hsla(191, 32%, 93%, 1); - --colorFocus: hsla(191, 32%, 88%, 1); - --placeholderColor: hsla(191, 32%, 77%, 1); - --borderColor: hsla(191, 32%, 66%, 1); - --borderColorHover: hsla(191, 32%, 72%, 1); - --borderColorFocus: hsla(191, 32%, 77%, 1); - --borderColorPress: hsla(191, 32%, 72%, 1); - } -} - -:root.t_dark .t_light .t_accent, -:root.t_dark .t_light .t_active_accent, -:root.t_dark .t_light .t_alt1_accent, -:root.t_dark .t_light .t_alt2_accent, -:root.t_dark .t_light .t_dark .t_light .t_accent, -:root.t_dark .t_light .t_dark .t_light .t_active_accent, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent, -:root.t_dark .t_light .t_dark .t_light .t_error_accent, -:root.t_dark .t_light .t_dark .t_light .t_red_accent, -:root.t_dark .t_light .t_dark .t_light .t_success_accent, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent, -:root.t_dark .t_light .t_dim_accent, -:root.t_dark .t_light .t_disabled_accent, -:root.t_dark .t_light .t_error_accent, -:root.t_dark .t_light .t_red_accent, -:root.t_dark .t_light .t_success_accent, -:root.t_dark .t_light .t_warning_accent, -:root.t_light .t_accent, -:root.t_light .t_active_accent, -:root.t_light .t_alt1_accent, -:root.t_light .t_alt2_accent, -:root.t_light .t_dark .t_light .t_accent, -:root.t_light .t_dark .t_light .t_active_accent, -:root.t_light .t_dark .t_light .t_alt1_accent, -:root.t_light .t_dark .t_light .t_alt2_accent, -:root.t_light .t_dark .t_light .t_dim_accent, -:root.t_light .t_dark .t_light .t_disabled_accent, -:root.t_light .t_dark .t_light .t_error_accent, -:root.t_light .t_dark .t_light .t_red_accent, -:root.t_light .t_dark .t_light .t_success_accent, -:root.t_light .t_dark .t_light .t_warning_accent, -:root.t_light .t_dim_accent, -:root.t_light .t_disabled_accent, -:root.t_light .t_error_accent, -:root.t_light .t_red_accent, -:root.t_light .t_success_accent, -:root.t_light .t_warning_accent { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(125, 96%, 40%, 0.25); - --background025: var(--color-229); - --background05: var(--color-230); - --background075: var(--color-231); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 33%, 10%, 0.75); - --color05: hsla(191, 33%, 10%, 0.5); - --color075: hsla(191, 33%, 10%, 0.25); - --background: var(--color-231); - --backgroundHover: var(--color-232); - --backgroundPress: var(--color-233); - --backgroundFocus: var(--color-234); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-240); - --borderColor: var(--color-234); - --borderColorHover: var(--color-235); - --borderColorFocus: var(--color-236); - --borderColorPress: var(--color-235); - --color1: var(--color-231); - --color2: var(--color-232); - --color3: var(--color-233); - --color4: var(--color-234); - --color5: var(--color-235); - --color6: var(--color-236); - --color7: var(--color-237); - --color8: var(--color-238); - --color9: var(--color-239); - --color10: var(--color-240); - --color11: hsla(191, 32%, 10%, 1); - --color12: hsla(191, 32%, 10%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_accent, - .t_active_accent, - .t_alt1_accent, - .t_alt2_accent, - .t_dark .t_light .t_accent, - .t_dark .t_light .t_active_accent, - .t_dark .t_light .t_alt1_accent, - .t_dark .t_light .t_alt2_accent, - .t_dark .t_light .t_dim_accent, - .t_dark .t_light .t_disabled_accent, - .t_dark .t_light .t_error_accent, - .t_dark .t_light .t_red_accent, - .t_dark .t_light .t_success_accent, - .t_dark .t_light .t_warning_accent, - .t_dim_accent, - .t_disabled_accent, - .t_error_accent, - .t_red_accent, - .t_success_accent, - .t_warning_accent { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(125, 96%, 40%, 0.25); - --background025: var(--color-229); - --background05: var(--color-230); - --background075: var(--color-231); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 33%, 10%, 0.75); - --color05: hsla(191, 33%, 10%, 0.5); - --color075: hsla(191, 33%, 10%, 0.25); - --background: var(--color-231); - --backgroundHover: var(--color-232); - --backgroundPress: var(--color-233); - --backgroundFocus: var(--color-234); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-240); - --borderColor: var(--color-234); - --borderColorHover: var(--color-235); - --borderColorFocus: var(--color-236); - --borderColorPress: var(--color-235); - --color1: var(--color-231); - --color2: var(--color-232); - --color3: var(--color-233); - --color4: var(--color-234); - --color5: var(--color-235); - --color6: var(--color-236); - --color7: var(--color-237); - --color8: var(--color-238); - --color9: var(--color-239); - --color10: var(--color-240); - --color11: hsla(191, 32%, 10%, 1); - --color12: hsla(191, 32%, 10%, 1); - } -} - -:root.t_dark .t_light .t_accent_Button, -:root.t_dark .t_light .t_accent_Switch, -:root.t_dark .t_light .t_dark .t_light .t_accent_Button, -:root.t_dark .t_light .t_dark .t_light .t_accent_Switch, -:root.t_light .t_accent_Button, -:root.t_light .t_accent_Switch, -:root.t_light .t_dark .t_light .t_accent_Button, -:root.t_light .t_dark .t_light .t_accent_Switch { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(125, 96%, 40%, 0.25); - --background025: var(--color-229); - --background05: var(--color-230); - --background075: var(--color-231); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 33%, 10%, 0.75); - --color05: hsla(191, 33%, 10%, 0.5); - --color075: hsla(191, 33%, 10%, 0.25); - --background: var(--color-234); - --backgroundHover: var(--color-235); - --backgroundPress: var(--color-236); - --backgroundFocus: var(--color-237); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-240); - --borderColor: var(--color-237); - --borderColorHover: var(--color-238); - --borderColorFocus: var(--color-239); - --borderColorPress: var(--color-238); - --color1: var(--color-231); - --color2: var(--color-232); - --color3: var(--color-233); - --color4: var(--color-234); - --color5: var(--color-235); - --color6: var(--color-236); - --color7: var(--color-237); - --color8: var(--color-238); - --color9: var(--color-239); - --color10: var(--color-240); - --color11: hsla(191, 32%, 10%, 1); - --color12: hsla(191, 32%, 10%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_accent_Button, - .t_accent_Switch, - .t_dark .t_light .t_accent_Button, - .t_dark .t_light .t_accent_Switch { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(125, 96%, 40%, 0.25); - --background025: var(--color-229); - --background05: var(--color-230); - --background075: var(--color-231); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 33%, 10%, 0.75); - --color05: hsla(191, 33%, 10%, 0.5); - --color075: hsla(191, 33%, 10%, 0.25); - --background: var(--color-234); - --backgroundHover: var(--color-235); - --backgroundPress: var(--color-236); - --backgroundFocus: var(--color-237); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-240); - --borderColor: var(--color-237); - --borderColorHover: var(--color-238); - --borderColorFocus: var(--color-239); - --borderColorPress: var(--color-238); - --color1: var(--color-231); - --color2: var(--color-232); - --color3: var(--color-233); - --color4: var(--color-234); - --color5: var(--color-235); - --color6: var(--color-236); - --color7: var(--color-237); - --color8: var(--color-238); - --color9: var(--color-239); - --color10: var(--color-240); - --color11: hsla(191, 32%, 10%, 1); - --color12: hsla(191, 32%, 10%, 1); - } -} - -:root.t_dark .t_light .t_accent_Card, -:root.t_dark .t_light .t_accent_DrawerFrame, -:root.t_dark .t_light .t_accent_Progress, -:root.t_dark .t_light .t_accent_TooltipArrow, -:root.t_dark .t_light .t_active_accent_Card, -:root.t_dark .t_light .t_active_accent_DrawerFrame, -:root.t_dark .t_light .t_active_accent_Progress, -:root.t_dark .t_light .t_active_accent_TooltipArrow, -:root.t_dark .t_light .t_alt1_accent_Card, -:root.t_dark .t_light .t_alt1_accent_DrawerFrame, -:root.t_dark .t_light .t_alt1_accent_Progress, -:root.t_dark .t_light .t_alt1_accent_TooltipArrow, -:root.t_dark .t_light .t_alt2_accent_Card, -:root.t_dark .t_light .t_alt2_accent_DrawerFrame, -:root.t_dark .t_light .t_alt2_accent_Progress, -:root.t_dark .t_light .t_alt2_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_light .t_accent_Card, -:root.t_dark .t_light .t_dark .t_light .t_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_accent_Progress, -:root.t_dark .t_light .t_dark .t_light .t_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_Card, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_Progress, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Card, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Progress, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Card, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Progress, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_Card, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_Progress, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Card, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Progress, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_Card, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_Progress, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_Card, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_Progress, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_Card, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_Progress, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_TooltipArrow, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_Card, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_Progress, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_TooltipArrow, -:root.t_dark .t_light .t_dim_accent_Card, -:root.t_dark .t_light .t_dim_accent_DrawerFrame, -:root.t_dark .t_light .t_dim_accent_Progress, -:root.t_dark .t_light .t_dim_accent_TooltipArrow, -:root.t_dark .t_light .t_disabled_accent_Card, -:root.t_dark .t_light .t_disabled_accent_DrawerFrame, -:root.t_dark .t_light .t_disabled_accent_Progress, -:root.t_dark .t_light .t_disabled_accent_TooltipArrow, -:root.t_dark .t_light .t_error_accent_Card, -:root.t_dark .t_light .t_error_accent_DrawerFrame, -:root.t_dark .t_light .t_error_accent_Progress, -:root.t_dark .t_light .t_error_accent_TooltipArrow, -:root.t_dark .t_light .t_red_accent_Card, -:root.t_dark .t_light .t_red_accent_DrawerFrame, -:root.t_dark .t_light .t_red_accent_Progress, -:root.t_dark .t_light .t_red_accent_TooltipArrow, -:root.t_dark .t_light .t_success_accent_Card, -:root.t_dark .t_light .t_success_accent_DrawerFrame, -:root.t_dark .t_light .t_success_accent_Progress, -:root.t_dark .t_light .t_success_accent_TooltipArrow, -:root.t_dark .t_light .t_warning_accent_Card, -:root.t_dark .t_light .t_warning_accent_DrawerFrame, -:root.t_dark .t_light .t_warning_accent_Progress, -:root.t_dark .t_light .t_warning_accent_TooltipArrow, -:root.t_light .t_accent_Card, -:root.t_light .t_accent_DrawerFrame, -:root.t_light .t_accent_Progress, -:root.t_light .t_accent_TooltipArrow, -:root.t_light .t_active_accent_Card, -:root.t_light .t_active_accent_DrawerFrame, -:root.t_light .t_active_accent_Progress, -:root.t_light .t_active_accent_TooltipArrow, -:root.t_light .t_alt1_accent_Card, -:root.t_light .t_alt1_accent_DrawerFrame, -:root.t_light .t_alt1_accent_Progress, -:root.t_light .t_alt1_accent_TooltipArrow, -:root.t_light .t_alt2_accent_Card, -:root.t_light .t_alt2_accent_DrawerFrame, -:root.t_light .t_alt2_accent_Progress, -:root.t_light .t_alt2_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_accent_Card, -:root.t_light .t_dark .t_light .t_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_accent_Progress, -:root.t_light .t_dark .t_light .t_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_active_accent_Card, -:root.t_light .t_dark .t_light .t_active_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_active_accent_Progress, -:root.t_light .t_dark .t_light .t_active_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_alt1_accent_Card, -:root.t_light .t_dark .t_light .t_alt1_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_alt1_accent_Progress, -:root.t_light .t_dark .t_light .t_alt1_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_alt2_accent_Card, -:root.t_light .t_dark .t_light .t_alt2_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_alt2_accent_Progress, -:root.t_light .t_dark .t_light .t_alt2_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_dim_accent_Card, -:root.t_light .t_dark .t_light .t_dim_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_dim_accent_Progress, -:root.t_light .t_dark .t_light .t_dim_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_disabled_accent_Card, -:root.t_light .t_dark .t_light .t_disabled_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_disabled_accent_Progress, -:root.t_light .t_dark .t_light .t_disabled_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_error_accent_Card, -:root.t_light .t_dark .t_light .t_error_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_error_accent_Progress, -:root.t_light .t_dark .t_light .t_error_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_red_accent_Card, -:root.t_light .t_dark .t_light .t_red_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_red_accent_Progress, -:root.t_light .t_dark .t_light .t_red_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_success_accent_Card, -:root.t_light .t_dark .t_light .t_success_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_success_accent_Progress, -:root.t_light .t_dark .t_light .t_success_accent_TooltipArrow, -:root.t_light .t_dark .t_light .t_warning_accent_Card, -:root.t_light .t_dark .t_light .t_warning_accent_DrawerFrame, -:root.t_light .t_dark .t_light .t_warning_accent_Progress, -:root.t_light .t_dark .t_light .t_warning_accent_TooltipArrow, -:root.t_light .t_dim_accent_Card, -:root.t_light .t_dim_accent_DrawerFrame, -:root.t_light .t_dim_accent_Progress, -:root.t_light .t_dim_accent_TooltipArrow, -:root.t_light .t_disabled_accent_Card, -:root.t_light .t_disabled_accent_DrawerFrame, -:root.t_light .t_disabled_accent_Progress, -:root.t_light .t_disabled_accent_TooltipArrow, -:root.t_light .t_error_accent_Card, -:root.t_light .t_error_accent_DrawerFrame, -:root.t_light .t_error_accent_Progress, -:root.t_light .t_error_accent_TooltipArrow, -:root.t_light .t_red_accent_Card, -:root.t_light .t_red_accent_DrawerFrame, -:root.t_light .t_red_accent_Progress, -:root.t_light .t_red_accent_TooltipArrow, -:root.t_light .t_success_accent_Card, -:root.t_light .t_success_accent_DrawerFrame, -:root.t_light .t_success_accent_Progress, -:root.t_light .t_success_accent_TooltipArrow, -:root.t_light .t_warning_accent_Card, -:root.t_light .t_warning_accent_DrawerFrame, -:root.t_light .t_warning_accent_Progress, -:root.t_light .t_warning_accent_TooltipArrow { - --background0: var(--color-229); - --background025: var(--color-230); - --background05: var(--color-231); - --background075: var(--color-232); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 32%, 10%, 1); - --color05: hsla(191, 33%, 10%, 0.75); - --color075: hsla(191, 33%, 10%, 0.5); - --background: var(--color-232); - --backgroundHover: var(--color-233); - --backgroundPress: var(--color-234); - --backgroundFocus: var(--color-235); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-239); - --borderColor: var(--color-235); - --borderColorHover: var(--color-236); - --borderColorFocus: var(--color-237); - --borderColorPress: var(--color-236); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_accent_Card, - .t_accent_DrawerFrame, - .t_accent_Progress, - .t_accent_TooltipArrow, - .t_active_accent_Card, - .t_active_accent_DrawerFrame, - .t_active_accent_Progress, - .t_active_accent_TooltipArrow, - .t_alt1_accent_Card, - .t_alt1_accent_DrawerFrame, - .t_alt1_accent_Progress, - .t_alt1_accent_TooltipArrow, - .t_alt2_accent_Card, - .t_alt2_accent_DrawerFrame, - .t_alt2_accent_Progress, - .t_alt2_accent_TooltipArrow, - .t_dark .t_light .t_accent_Card, - .t_dark .t_light .t_accent_DrawerFrame, - .t_dark .t_light .t_accent_Progress, - .t_dark .t_light .t_accent_TooltipArrow, - .t_dark .t_light .t_active_accent_Card, - .t_dark .t_light .t_active_accent_DrawerFrame, - .t_dark .t_light .t_active_accent_Progress, - .t_dark .t_light .t_active_accent_TooltipArrow, - .t_dark .t_light .t_alt1_accent_Card, - .t_dark .t_light .t_alt1_accent_DrawerFrame, - .t_dark .t_light .t_alt1_accent_Progress, - .t_dark .t_light .t_alt1_accent_TooltipArrow, - .t_dark .t_light .t_alt2_accent_Card, - .t_dark .t_light .t_alt2_accent_DrawerFrame, - .t_dark .t_light .t_alt2_accent_Progress, - .t_dark .t_light .t_alt2_accent_TooltipArrow, - .t_dark .t_light .t_dim_accent_Card, - .t_dark .t_light .t_dim_accent_DrawerFrame, - .t_dark .t_light .t_dim_accent_Progress, - .t_dark .t_light .t_dim_accent_TooltipArrow, - .t_dark .t_light .t_disabled_accent_Card, - .t_dark .t_light .t_disabled_accent_DrawerFrame, - .t_dark .t_light .t_disabled_accent_Progress, - .t_dark .t_light .t_disabled_accent_TooltipArrow, - .t_dark .t_light .t_error_accent_Card, - .t_dark .t_light .t_error_accent_DrawerFrame, - .t_dark .t_light .t_error_accent_Progress, - .t_dark .t_light .t_error_accent_TooltipArrow, - .t_dark .t_light .t_red_accent_Card, - .t_dark .t_light .t_red_accent_DrawerFrame, - .t_dark .t_light .t_red_accent_Progress, - .t_dark .t_light .t_red_accent_TooltipArrow, - .t_dark .t_light .t_success_accent_Card, - .t_dark .t_light .t_success_accent_DrawerFrame, - .t_dark .t_light .t_success_accent_Progress, - .t_dark .t_light .t_success_accent_TooltipArrow, - .t_dark .t_light .t_warning_accent_Card, - .t_dark .t_light .t_warning_accent_DrawerFrame, - .t_dark .t_light .t_warning_accent_Progress, - .t_dark .t_light .t_warning_accent_TooltipArrow, - .t_dim_accent_Card, - .t_dim_accent_DrawerFrame, - .t_dim_accent_Progress, - .t_dim_accent_TooltipArrow, - .t_disabled_accent_Card, - .t_disabled_accent_DrawerFrame, - .t_disabled_accent_Progress, - .t_disabled_accent_TooltipArrow, - .t_error_accent_Card, - .t_error_accent_DrawerFrame, - .t_error_accent_Progress, - .t_error_accent_TooltipArrow, - .t_red_accent_Card, - .t_red_accent_DrawerFrame, - .t_red_accent_Progress, - .t_red_accent_TooltipArrow, - .t_success_accent_Card, - .t_success_accent_DrawerFrame, - .t_success_accent_Progress, - .t_success_accent_TooltipArrow, - .t_warning_accent_Card, - .t_warning_accent_DrawerFrame, - .t_warning_accent_Progress, - .t_warning_accent_TooltipArrow { - --background0: var(--color-229); - --background025: var(--color-230); - --background05: var(--color-231); - --background075: var(--color-232); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 32%, 10%, 1); - --color05: hsla(191, 33%, 10%, 0.75); - --color075: hsla(191, 33%, 10%, 0.5); - --background: var(--color-232); - --backgroundHover: var(--color-233); - --backgroundPress: var(--color-234); - --backgroundFocus: var(--color-235); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-239); - --borderColor: var(--color-235); - --borderColorHover: var(--color-236); - --borderColorFocus: var(--color-237); - --borderColorPress: var(--color-236); - } -} - -:root.t_dark .t_light .t_accent_Checkbox, -:root.t_dark .t_light .t_accent_Input, -:root.t_dark .t_light .t_accent_RadioGroupItem, -:root.t_dark .t_light .t_accent_TextArea, -:root.t_dark .t_light .t_active_accent_Checkbox, -:root.t_dark .t_light .t_active_accent_Input, -:root.t_dark .t_light .t_active_accent_RadioGroupItem, -:root.t_dark .t_light .t_active_accent_TextArea, -:root.t_dark .t_light .t_alt1_accent_Checkbox, -:root.t_dark .t_light .t_alt1_accent_Input, -:root.t_dark .t_light .t_alt1_accent_RadioGroupItem, -:root.t_dark .t_light .t_alt1_accent_TextArea, -:root.t_dark .t_light .t_alt2_accent_Checkbox, -:root.t_dark .t_light .t_alt2_accent_Input, -:root.t_dark .t_light .t_alt2_accent_RadioGroupItem, -:root.t_dark .t_light .t_alt2_accent_TextArea, -:root.t_dark .t_light .t_dark .t_light .t_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_accent_Input, -:root.t_dark .t_light .t_dark .t_light .t_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_accent_TextArea, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_Input, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_TextArea, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Input, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_TextArea, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Input, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_TextArea, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_Input, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_TextArea, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Input, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_TextArea, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_Input, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_TextArea, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_Input, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_TextArea, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_Input, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_TextArea, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_Input, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_TextArea, -:root.t_dark .t_light .t_dim_accent_Checkbox, -:root.t_dark .t_light .t_dim_accent_Input, -:root.t_dark .t_light .t_dim_accent_RadioGroupItem, -:root.t_dark .t_light .t_dim_accent_TextArea, -:root.t_dark .t_light .t_disabled_accent_Checkbox, -:root.t_dark .t_light .t_disabled_accent_Input, -:root.t_dark .t_light .t_disabled_accent_RadioGroupItem, -:root.t_dark .t_light .t_disabled_accent_TextArea, -:root.t_dark .t_light .t_error_accent_Checkbox, -:root.t_dark .t_light .t_error_accent_Input, -:root.t_dark .t_light .t_error_accent_RadioGroupItem, -:root.t_dark .t_light .t_error_accent_TextArea, -:root.t_dark .t_light .t_red_accent_Checkbox, -:root.t_dark .t_light .t_red_accent_Input, -:root.t_dark .t_light .t_red_accent_RadioGroupItem, -:root.t_dark .t_light .t_red_accent_TextArea, -:root.t_dark .t_light .t_success_accent_Checkbox, -:root.t_dark .t_light .t_success_accent_Input, -:root.t_dark .t_light .t_success_accent_RadioGroupItem, -:root.t_dark .t_light .t_success_accent_TextArea, -:root.t_dark .t_light .t_warning_accent_Checkbox, -:root.t_dark .t_light .t_warning_accent_Input, -:root.t_dark .t_light .t_warning_accent_RadioGroupItem, -:root.t_dark .t_light .t_warning_accent_TextArea, -:root.t_light .t_accent_Checkbox, -:root.t_light .t_accent_Input, -:root.t_light .t_accent_RadioGroupItem, -:root.t_light .t_accent_TextArea, -:root.t_light .t_active_accent_Checkbox, -:root.t_light .t_active_accent_Input, -:root.t_light .t_active_accent_RadioGroupItem, -:root.t_light .t_active_accent_TextArea, -:root.t_light .t_alt1_accent_Checkbox, -:root.t_light .t_alt1_accent_Input, -:root.t_light .t_alt1_accent_RadioGroupItem, -:root.t_light .t_alt1_accent_TextArea, -:root.t_light .t_alt2_accent_Checkbox, -:root.t_light .t_alt2_accent_Input, -:root.t_light .t_alt2_accent_RadioGroupItem, -:root.t_light .t_alt2_accent_TextArea, -:root.t_light .t_dark .t_light .t_accent_Checkbox, -:root.t_light .t_dark .t_light .t_accent_Input, -:root.t_light .t_dark .t_light .t_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_accent_TextArea, -:root.t_light .t_dark .t_light .t_active_accent_Checkbox, -:root.t_light .t_dark .t_light .t_active_accent_Input, -:root.t_light .t_dark .t_light .t_active_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_active_accent_TextArea, -:root.t_light .t_dark .t_light .t_alt1_accent_Checkbox, -:root.t_light .t_dark .t_light .t_alt1_accent_Input, -:root.t_light .t_dark .t_light .t_alt1_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_alt1_accent_TextArea, -:root.t_light .t_dark .t_light .t_alt2_accent_Checkbox, -:root.t_light .t_dark .t_light .t_alt2_accent_Input, -:root.t_light .t_dark .t_light .t_alt2_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_alt2_accent_TextArea, -:root.t_light .t_dark .t_light .t_dim_accent_Checkbox, -:root.t_light .t_dark .t_light .t_dim_accent_Input, -:root.t_light .t_dark .t_light .t_dim_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dim_accent_TextArea, -:root.t_light .t_dark .t_light .t_disabled_accent_Checkbox, -:root.t_light .t_dark .t_light .t_disabled_accent_Input, -:root.t_light .t_dark .t_light .t_disabled_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_disabled_accent_TextArea, -:root.t_light .t_dark .t_light .t_error_accent_Checkbox, -:root.t_light .t_dark .t_light .t_error_accent_Input, -:root.t_light .t_dark .t_light .t_error_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_error_accent_TextArea, -:root.t_light .t_dark .t_light .t_red_accent_Checkbox, -:root.t_light .t_dark .t_light .t_red_accent_Input, -:root.t_light .t_dark .t_light .t_red_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_red_accent_TextArea, -:root.t_light .t_dark .t_light .t_success_accent_Checkbox, -:root.t_light .t_dark .t_light .t_success_accent_Input, -:root.t_light .t_dark .t_light .t_success_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_success_accent_TextArea, -:root.t_light .t_dark .t_light .t_warning_accent_Checkbox, -:root.t_light .t_dark .t_light .t_warning_accent_Input, -:root.t_light .t_dark .t_light .t_warning_accent_RadioGroupItem, -:root.t_light .t_dark .t_light .t_warning_accent_TextArea, -:root.t_light .t_dim_accent_Checkbox, -:root.t_light .t_dim_accent_Input, -:root.t_light .t_dim_accent_RadioGroupItem, -:root.t_light .t_dim_accent_TextArea, -:root.t_light .t_disabled_accent_Checkbox, -:root.t_light .t_disabled_accent_Input, -:root.t_light .t_disabled_accent_RadioGroupItem, -:root.t_light .t_disabled_accent_TextArea, -:root.t_light .t_error_accent_Checkbox, -:root.t_light .t_error_accent_Input, -:root.t_light .t_error_accent_RadioGroupItem, -:root.t_light .t_error_accent_TextArea, -:root.t_light .t_red_accent_Checkbox, -:root.t_light .t_red_accent_Input, -:root.t_light .t_red_accent_RadioGroupItem, -:root.t_light .t_red_accent_TextArea, -:root.t_light .t_success_accent_Checkbox, -:root.t_light .t_success_accent_Input, -:root.t_light .t_success_accent_RadioGroupItem, -:root.t_light .t_success_accent_TextArea, -:root.t_light .t_warning_accent_Checkbox, -:root.t_light .t_warning_accent_Input, -:root.t_light .t_warning_accent_RadioGroupItem, -:root.t_light .t_warning_accent_TextArea { - --accentBackground: hsla(125, 96%, 40%, 0); - --accentColor: hsla(125, 96%, 40%, 0); - --background0: hsla(125, 96%, 40%, 0.25); - --background025: var(--color-229); - --background05: var(--color-230); - --background075: var(--color-231); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 33%, 10%, 0.75); - --color05: hsla(191, 33%, 10%, 0.5); - --color075: hsla(191, 33%, 10%, 0.25); - --background: var(--color-231); - --backgroundHover: var(--color-232); - --backgroundPress: var(--color-233); - --backgroundFocus: var(--color-234); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-240); - --borderColor: var(--color-236); - --borderColorHover: var(--color-237); - --borderColorFocus: var(--color-238); - --borderColorPress: var(--color-237); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_accent_Checkbox, - .t_accent_Input, - .t_accent_RadioGroupItem, - .t_accent_TextArea, - .t_active_accent_Checkbox, - .t_active_accent_Input, - .t_active_accent_RadioGroupItem, - .t_active_accent_TextArea, - .t_alt1_accent_Checkbox, - .t_alt1_accent_Input, - .t_alt1_accent_RadioGroupItem, - .t_alt1_accent_TextArea, - .t_alt2_accent_Checkbox, - .t_alt2_accent_Input, - .t_alt2_accent_RadioGroupItem, - .t_alt2_accent_TextArea, - .t_dark .t_light .t_accent_Checkbox, - .t_dark .t_light .t_accent_Input, - .t_dark .t_light .t_accent_RadioGroupItem, - .t_dark .t_light .t_accent_TextArea, - .t_dark .t_light .t_active_accent_Checkbox, - .t_dark .t_light .t_active_accent_Input, - .t_dark .t_light .t_active_accent_RadioGroupItem, - .t_dark .t_light .t_active_accent_TextArea, - .t_dark .t_light .t_alt1_accent_Checkbox, - .t_dark .t_light .t_alt1_accent_Input, - .t_dark .t_light .t_alt1_accent_RadioGroupItem, - .t_dark .t_light .t_alt1_accent_TextArea, - .t_dark .t_light .t_alt2_accent_Checkbox, - .t_dark .t_light .t_alt2_accent_Input, - .t_dark .t_light .t_alt2_accent_RadioGroupItem, - .t_dark .t_light .t_alt2_accent_TextArea, - .t_dark .t_light .t_dim_accent_Checkbox, - .t_dark .t_light .t_dim_accent_Input, - .t_dark .t_light .t_dim_accent_RadioGroupItem, - .t_dark .t_light .t_dim_accent_TextArea, - .t_dark .t_light .t_disabled_accent_Checkbox, - .t_dark .t_light .t_disabled_accent_Input, - .t_dark .t_light .t_disabled_accent_RadioGroupItem, - .t_dark .t_light .t_disabled_accent_TextArea, - .t_dark .t_light .t_error_accent_Checkbox, - .t_dark .t_light .t_error_accent_Input, - .t_dark .t_light .t_error_accent_RadioGroupItem, - .t_dark .t_light .t_error_accent_TextArea, - .t_dark .t_light .t_red_accent_Checkbox, - .t_dark .t_light .t_red_accent_Input, - .t_dark .t_light .t_red_accent_RadioGroupItem, - .t_dark .t_light .t_red_accent_TextArea, - .t_dark .t_light .t_success_accent_Checkbox, - .t_dark .t_light .t_success_accent_Input, - .t_dark .t_light .t_success_accent_RadioGroupItem, - .t_dark .t_light .t_success_accent_TextArea, - .t_dark .t_light .t_warning_accent_Checkbox, - .t_dark .t_light .t_warning_accent_Input, - .t_dark .t_light .t_warning_accent_RadioGroupItem, - .t_dark .t_light .t_warning_accent_TextArea, - .t_dim_accent_Checkbox, - .t_dim_accent_Input, - .t_dim_accent_RadioGroupItem, - .t_dim_accent_TextArea, - .t_disabled_accent_Checkbox, - .t_disabled_accent_Input, - .t_disabled_accent_RadioGroupItem, - .t_disabled_accent_TextArea, - .t_error_accent_Checkbox, - .t_error_accent_Input, - .t_error_accent_RadioGroupItem, - .t_error_accent_TextArea, - .t_red_accent_Checkbox, - .t_red_accent_Input, - .t_red_accent_RadioGroupItem, - .t_red_accent_TextArea, - .t_success_accent_Checkbox, - .t_success_accent_Input, - .t_success_accent_RadioGroupItem, - .t_success_accent_TextArea, - .t_warning_accent_Checkbox, - .t_warning_accent_Input, - .t_warning_accent_RadioGroupItem, - .t_warning_accent_TextArea { - --accentBackground: hsla(125, 96%, 40%, 0); - --accentColor: hsla(125, 96%, 40%, 0); - --background0: hsla(125, 96%, 40%, 0.25); - --background025: var(--color-229); - --background05: var(--color-230); - --background075: var(--color-231); - --color0: hsla(191, 32%, 10%, 1); - --color025: hsla(191, 33%, 10%, 0.75); - --color05: hsla(191, 33%, 10%, 0.5); - --color075: hsla(191, 33%, 10%, 0.25); - --background: var(--color-231); - --backgroundHover: var(--color-232); - --backgroundPress: var(--color-233); - --backgroundFocus: var(--color-234); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-240); - --borderColor: var(--color-236); - --borderColorHover: var(--color-237); - --borderColorFocus: var(--color-238); - --borderColorPress: var(--color-237); - } -} - -:root.t_dark .t_light .t_accent_ProgressIndicator, -:root.t_dark .t_light .t_accent_SliderThumb, -:root.t_dark .t_light .t_accent_SwitchThumb, -:root.t_dark .t_light .t_accent_Tooltip, -:root.t_dark .t_light .t_active_accent_ProgressIndicator, -:root.t_dark .t_light .t_active_accent_SliderThumb, -:root.t_dark .t_light .t_active_accent_SwitchThumb, -:root.t_dark .t_light .t_active_accent_Tooltip, -:root.t_dark .t_light .t_alt1_accent_ProgressIndicator, -:root.t_dark .t_light .t_alt1_accent_SliderThumb, -:root.t_dark .t_light .t_alt1_accent_SwitchThumb, -:root.t_dark .t_light .t_alt1_accent_Tooltip, -:root.t_dark .t_light .t_alt2_accent_ProgressIndicator, -:root.t_dark .t_light .t_alt2_accent_SliderThumb, -:root.t_dark .t_light .t_alt2_accent_SwitchThumb, -:root.t_dark .t_light .t_alt2_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_light .t_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_Tooltip, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_Tooltip, -:root.t_dark .t_light .t_dim_accent_ProgressIndicator, -:root.t_dark .t_light .t_dim_accent_SliderThumb, -:root.t_dark .t_light .t_dim_accent_SwitchThumb, -:root.t_dark .t_light .t_dim_accent_Tooltip, -:root.t_dark .t_light .t_disabled_accent_ProgressIndicator, -:root.t_dark .t_light .t_disabled_accent_SliderThumb, -:root.t_dark .t_light .t_disabled_accent_SwitchThumb, -:root.t_dark .t_light .t_disabled_accent_Tooltip, -:root.t_dark .t_light .t_error_accent_ProgressIndicator, -:root.t_dark .t_light .t_error_accent_SliderThumb, -:root.t_dark .t_light .t_error_accent_SwitchThumb, -:root.t_dark .t_light .t_error_accent_Tooltip, -:root.t_dark .t_light .t_red_accent_ProgressIndicator, -:root.t_dark .t_light .t_red_accent_SliderThumb, -:root.t_dark .t_light .t_red_accent_SwitchThumb, -:root.t_dark .t_light .t_red_accent_Tooltip, -:root.t_dark .t_light .t_success_accent_ProgressIndicator, -:root.t_dark .t_light .t_success_accent_SliderThumb, -:root.t_dark .t_light .t_success_accent_SwitchThumb, -:root.t_dark .t_light .t_success_accent_Tooltip, -:root.t_dark .t_light .t_warning_accent_ProgressIndicator, -:root.t_dark .t_light .t_warning_accent_SliderThumb, -:root.t_dark .t_light .t_warning_accent_SwitchThumb, -:root.t_dark .t_light .t_warning_accent_Tooltip, -:root.t_light .t_accent_ProgressIndicator, -:root.t_light .t_accent_SliderThumb, -:root.t_light .t_accent_SwitchThumb, -:root.t_light .t_accent_Tooltip, -:root.t_light .t_active_accent_ProgressIndicator, -:root.t_light .t_active_accent_SliderThumb, -:root.t_light .t_active_accent_SwitchThumb, -:root.t_light .t_active_accent_Tooltip, -:root.t_light .t_alt1_accent_ProgressIndicator, -:root.t_light .t_alt1_accent_SliderThumb, -:root.t_light .t_alt1_accent_SwitchThumb, -:root.t_light .t_alt1_accent_Tooltip, -:root.t_light .t_alt2_accent_ProgressIndicator, -:root.t_light .t_alt2_accent_SliderThumb, -:root.t_light .t_alt2_accent_SwitchThumb, -:root.t_light .t_alt2_accent_Tooltip, -:root.t_light .t_dark .t_light .t_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_accent_Tooltip, -:root.t_light .t_dark .t_light .t_active_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_active_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_active_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_active_accent_Tooltip, -:root.t_light .t_dark .t_light .t_alt1_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_alt1_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_alt1_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_alt1_accent_Tooltip, -:root.t_light .t_dark .t_light .t_alt2_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_alt2_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_alt2_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_alt2_accent_Tooltip, -:root.t_light .t_dark .t_light .t_dim_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dim_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_dim_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_dim_accent_Tooltip, -:root.t_light .t_dark .t_light .t_disabled_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_disabled_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_disabled_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_disabled_accent_Tooltip, -:root.t_light .t_dark .t_light .t_error_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_error_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_error_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_error_accent_Tooltip, -:root.t_light .t_dark .t_light .t_red_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_red_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_red_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_red_accent_Tooltip, -:root.t_light .t_dark .t_light .t_success_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_success_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_success_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_success_accent_Tooltip, -:root.t_light .t_dark .t_light .t_warning_accent_ProgressIndicator, -:root.t_light .t_dark .t_light .t_warning_accent_SliderThumb, -:root.t_light .t_dark .t_light .t_warning_accent_SwitchThumb, -:root.t_light .t_dark .t_light .t_warning_accent_Tooltip, -:root.t_light .t_dim_accent_ProgressIndicator, -:root.t_light .t_dim_accent_SliderThumb, -:root.t_light .t_dim_accent_SwitchThumb, -:root.t_light .t_dim_accent_Tooltip, -:root.t_light .t_disabled_accent_ProgressIndicator, -:root.t_light .t_disabled_accent_SliderThumb, -:root.t_light .t_disabled_accent_SwitchThumb, -:root.t_light .t_disabled_accent_Tooltip, -:root.t_light .t_error_accent_ProgressIndicator, -:root.t_light .t_error_accent_SliderThumb, -:root.t_light .t_error_accent_SwitchThumb, -:root.t_light .t_error_accent_Tooltip, -:root.t_light .t_red_accent_ProgressIndicator, -:root.t_light .t_red_accent_SliderThumb, -:root.t_light .t_red_accent_SwitchThumb, -:root.t_light .t_red_accent_Tooltip, -:root.t_light .t_success_accent_ProgressIndicator, -:root.t_light .t_success_accent_SliderThumb, -:root.t_light .t_success_accent_SwitchThumb, -:root.t_light .t_success_accent_Tooltip, -:root.t_light .t_warning_accent_ProgressIndicator, -:root.t_light .t_warning_accent_SliderThumb, -:root.t_light .t_warning_accent_SwitchThumb, -:root.t_light .t_warning_accent_Tooltip { - --accentBackground: hsla(125, 96%, 40%, 0); - --accentColor: hsla(125, 96%, 40%, 0); - --background0: hsla(191, 33%, 10%, 0.25); - --background025: hsla(191, 33%, 10%, 0.5); - --background05: hsla(191, 33%, 10%, 0.75); - --background075: hsla(191, 32%, 10%, 1); - --color0: var(--color-231); - --color025: var(--color-230); - --color05: var(--color-229); - --color075: hsla(125, 96%, 40%, 0.25); - --background: hsla(191, 32%, 10%, 1); - --backgroundHover: hsla(191, 32%, 10%, 1); - --backgroundPress: var(--color-240); - --backgroundFocus: var(--color-239); - --color: var(--color-232); - --colorHover: var(--color-233); - --colorPress: var(--color-232); - --colorFocus: var(--color-233); - --placeholderColor: var(--color-233); - --borderColor: var(--color-239); - --borderColorHover: var(--color-238); - --borderColorFocus: var(--color-237); - --borderColorPress: var(--color-238); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_accent_ProgressIndicator, - .t_accent_SliderThumb, - .t_accent_SwitchThumb, - .t_accent_Tooltip, - .t_active_accent_ProgressIndicator, - .t_active_accent_SliderThumb, - .t_active_accent_SwitchThumb, - .t_active_accent_Tooltip, - .t_alt1_accent_ProgressIndicator, - .t_alt1_accent_SliderThumb, - .t_alt1_accent_SwitchThumb, - .t_alt1_accent_Tooltip, - .t_alt2_accent_ProgressIndicator, - .t_alt2_accent_SliderThumb, - .t_alt2_accent_SwitchThumb, - .t_alt2_accent_Tooltip, - .t_dark .t_light .t_accent_ProgressIndicator, - .t_dark .t_light .t_accent_SliderThumb, - .t_dark .t_light .t_accent_SwitchThumb, - .t_dark .t_light .t_accent_Tooltip, - .t_dark .t_light .t_active_accent_ProgressIndicator, - .t_dark .t_light .t_active_accent_SliderThumb, - .t_dark .t_light .t_active_accent_SwitchThumb, - .t_dark .t_light .t_active_accent_Tooltip, - .t_dark .t_light .t_alt1_accent_ProgressIndicator, - .t_dark .t_light .t_alt1_accent_SliderThumb, - .t_dark .t_light .t_alt1_accent_SwitchThumb, - .t_dark .t_light .t_alt1_accent_Tooltip, - .t_dark .t_light .t_alt2_accent_ProgressIndicator, - .t_dark .t_light .t_alt2_accent_SliderThumb, - .t_dark .t_light .t_alt2_accent_SwitchThumb, - .t_dark .t_light .t_alt2_accent_Tooltip, - .t_dark .t_light .t_dim_accent_ProgressIndicator, - .t_dark .t_light .t_dim_accent_SliderThumb, - .t_dark .t_light .t_dim_accent_SwitchThumb, - .t_dark .t_light .t_dim_accent_Tooltip, - .t_dark .t_light .t_disabled_accent_ProgressIndicator, - .t_dark .t_light .t_disabled_accent_SliderThumb, - .t_dark .t_light .t_disabled_accent_SwitchThumb, - .t_dark .t_light .t_disabled_accent_Tooltip, - .t_dark .t_light .t_error_accent_ProgressIndicator, - .t_dark .t_light .t_error_accent_SliderThumb, - .t_dark .t_light .t_error_accent_SwitchThumb, - .t_dark .t_light .t_error_accent_Tooltip, - .t_dark .t_light .t_red_accent_ProgressIndicator, - .t_dark .t_light .t_red_accent_SliderThumb, - .t_dark .t_light .t_red_accent_SwitchThumb, - .t_dark .t_light .t_red_accent_Tooltip, - .t_dark .t_light .t_success_accent_ProgressIndicator, - .t_dark .t_light .t_success_accent_SliderThumb, - .t_dark .t_light .t_success_accent_SwitchThumb, - .t_dark .t_light .t_success_accent_Tooltip, - .t_dark .t_light .t_warning_accent_ProgressIndicator, - .t_dark .t_light .t_warning_accent_SliderThumb, - .t_dark .t_light .t_warning_accent_SwitchThumb, - .t_dark .t_light .t_warning_accent_Tooltip, - .t_dim_accent_ProgressIndicator, - .t_dim_accent_SliderThumb, - .t_dim_accent_SwitchThumb, - .t_dim_accent_Tooltip, - .t_disabled_accent_ProgressIndicator, - .t_disabled_accent_SliderThumb, - .t_disabled_accent_SwitchThumb, - .t_disabled_accent_Tooltip, - .t_error_accent_ProgressIndicator, - .t_error_accent_SliderThumb, - .t_error_accent_SwitchThumb, - .t_error_accent_Tooltip, - .t_red_accent_ProgressIndicator, - .t_red_accent_SliderThumb, - .t_red_accent_SwitchThumb, - .t_red_accent_Tooltip, - .t_success_accent_ProgressIndicator, - .t_success_accent_SliderThumb, - .t_success_accent_SwitchThumb, - .t_success_accent_Tooltip, - .t_warning_accent_ProgressIndicator, - .t_warning_accent_SliderThumb, - .t_warning_accent_SwitchThumb, - .t_warning_accent_Tooltip { - --accentBackground: hsla(125, 96%, 40%, 0); - --accentColor: hsla(125, 96%, 40%, 0); - --background0: hsla(191, 33%, 10%, 0.25); - --background025: hsla(191, 33%, 10%, 0.5); - --background05: hsla(191, 33%, 10%, 0.75); - --background075: hsla(191, 32%, 10%, 1); - --color0: var(--color-231); - --color025: var(--color-230); - --color05: var(--color-229); - --color075: hsla(125, 96%, 40%, 0.25); - --background: hsla(191, 32%, 10%, 1); - --backgroundHover: hsla(191, 32%, 10%, 1); - --backgroundPress: var(--color-240); - --backgroundFocus: var(--color-239); - --color: var(--color-232); - --colorHover: var(--color-233); - --colorPress: var(--color-232); - --colorFocus: var(--color-233); - --placeholderColor: var(--color-233); - --borderColor: var(--color-239); - --borderColorHover: var(--color-238); - --borderColorFocus: var(--color-237); - --borderColorPress: var(--color-238); - } -} - -:root.t_dark .t_light .t_accent_SliderTrack, -:root.t_dark .t_light .t_accent_TooltipContent, -:root.t_dark .t_light .t_active_accent_Button, -:root.t_dark .t_light .t_active_accent_SliderTrack, -:root.t_dark .t_light .t_active_accent_Switch, -:root.t_dark .t_light .t_active_accent_TooltipContent, -:root.t_dark .t_light .t_alt1_accent_Button, -:root.t_dark .t_light .t_alt1_accent_SliderTrack, -:root.t_dark .t_light .t_alt1_accent_Switch, -:root.t_dark .t_light .t_alt1_accent_TooltipContent, -:root.t_dark .t_light .t_alt2_accent_Button, -:root.t_dark .t_light .t_alt2_accent_SliderTrack, -:root.t_dark .t_light .t_alt2_accent_Switch, -:root.t_dark .t_light .t_alt2_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_light .t_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_Button, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_Switch, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Button, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_Switch, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Button, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_Switch, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_Button, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_Switch, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Button, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_Switch, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_Button, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_Switch, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_Button, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_Switch, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_Button, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_Switch, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_TooltipContent, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_Button, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_Switch, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_TooltipContent, -:root.t_dark .t_light .t_dim_accent_Button, -:root.t_dark .t_light .t_dim_accent_SliderTrack, -:root.t_dark .t_light .t_dim_accent_Switch, -:root.t_dark .t_light .t_dim_accent_TooltipContent, -:root.t_dark .t_light .t_disabled_accent_Button, -:root.t_dark .t_light .t_disabled_accent_SliderTrack, -:root.t_dark .t_light .t_disabled_accent_Switch, -:root.t_dark .t_light .t_disabled_accent_TooltipContent, -:root.t_dark .t_light .t_error_accent_Button, -:root.t_dark .t_light .t_error_accent_SliderTrack, -:root.t_dark .t_light .t_error_accent_Switch, -:root.t_dark .t_light .t_error_accent_TooltipContent, -:root.t_dark .t_light .t_red_accent_Button, -:root.t_dark .t_light .t_red_accent_SliderTrack, -:root.t_dark .t_light .t_red_accent_Switch, -:root.t_dark .t_light .t_red_accent_TooltipContent, -:root.t_dark .t_light .t_success_accent_Button, -:root.t_dark .t_light .t_success_accent_SliderTrack, -:root.t_dark .t_light .t_success_accent_Switch, -:root.t_dark .t_light .t_success_accent_TooltipContent, -:root.t_dark .t_light .t_warning_accent_Button, -:root.t_dark .t_light .t_warning_accent_SliderTrack, -:root.t_dark .t_light .t_warning_accent_Switch, -:root.t_dark .t_light .t_warning_accent_TooltipContent, -:root.t_light .t_accent_SliderTrack, -:root.t_light .t_accent_TooltipContent, -:root.t_light .t_active_accent_Button, -:root.t_light .t_active_accent_SliderTrack, -:root.t_light .t_active_accent_Switch, -:root.t_light .t_active_accent_TooltipContent, -:root.t_light .t_alt1_accent_Button, -:root.t_light .t_alt1_accent_SliderTrack, -:root.t_light .t_alt1_accent_Switch, -:root.t_light .t_alt1_accent_TooltipContent, -:root.t_light .t_alt2_accent_Button, -:root.t_light .t_alt2_accent_SliderTrack, -:root.t_light .t_alt2_accent_Switch, -:root.t_light .t_alt2_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_active_accent_Button, -:root.t_light .t_dark .t_light .t_active_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_active_accent_Switch, -:root.t_light .t_dark .t_light .t_active_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_alt1_accent_Button, -:root.t_light .t_dark .t_light .t_alt1_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_alt1_accent_Switch, -:root.t_light .t_dark .t_light .t_alt1_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_alt2_accent_Button, -:root.t_light .t_dark .t_light .t_alt2_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_alt2_accent_Switch, -:root.t_light .t_dark .t_light .t_alt2_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_dim_accent_Button, -:root.t_light .t_dark .t_light .t_dim_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_dim_accent_Switch, -:root.t_light .t_dark .t_light .t_dim_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_disabled_accent_Button, -:root.t_light .t_dark .t_light .t_disabled_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_disabled_accent_Switch, -:root.t_light .t_dark .t_light .t_disabled_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_error_accent_Button, -:root.t_light .t_dark .t_light .t_error_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_error_accent_Switch, -:root.t_light .t_dark .t_light .t_error_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_red_accent_Button, -:root.t_light .t_dark .t_light .t_red_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_red_accent_Switch, -:root.t_light .t_dark .t_light .t_red_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_success_accent_Button, -:root.t_light .t_dark .t_light .t_success_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_success_accent_Switch, -:root.t_light .t_dark .t_light .t_success_accent_TooltipContent, -:root.t_light .t_dark .t_light .t_warning_accent_Button, -:root.t_light .t_dark .t_light .t_warning_accent_SliderTrack, -:root.t_light .t_dark .t_light .t_warning_accent_Switch, -:root.t_light .t_dark .t_light .t_warning_accent_TooltipContent, -:root.t_light .t_dim_accent_Button, -:root.t_light .t_dim_accent_SliderTrack, -:root.t_light .t_dim_accent_Switch, -:root.t_light .t_dim_accent_TooltipContent, -:root.t_light .t_disabled_accent_Button, -:root.t_light .t_disabled_accent_SliderTrack, -:root.t_light .t_disabled_accent_Switch, -:root.t_light .t_disabled_accent_TooltipContent, -:root.t_light .t_error_accent_Button, -:root.t_light .t_error_accent_SliderTrack, -:root.t_light .t_error_accent_Switch, -:root.t_light .t_error_accent_TooltipContent, -:root.t_light .t_red_accent_Button, -:root.t_light .t_red_accent_SliderTrack, -:root.t_light .t_red_accent_Switch, -:root.t_light .t_red_accent_TooltipContent, -:root.t_light .t_success_accent_Button, -:root.t_light .t_success_accent_SliderTrack, -:root.t_light .t_success_accent_Switch, -:root.t_light .t_success_accent_TooltipContent, -:root.t_light .t_warning_accent_Button, -:root.t_light .t_warning_accent_SliderTrack, -:root.t_light .t_warning_accent_Switch, -:root.t_light .t_warning_accent_TooltipContent { - --background0: var(--color-230); - --background025: var(--color-231); - --background05: var(--color-232); - --background075: var(--color-233); - --color0: var(--color-240); - --color025: hsla(191, 32%, 10%, 1); - --color05: hsla(191, 32%, 10%, 1); - --color075: hsla(191, 33%, 10%, 0.75); - --background: var(--color-233); - --backgroundHover: var(--color-234); - --backgroundPress: var(--color-235); - --backgroundFocus: var(--color-236); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-238); - --borderColor: var(--color-236); - --borderColorHover: var(--color-237); - --borderColorFocus: var(--color-238); - --borderColorPress: var(--color-237); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_accent_SliderTrack, - .t_accent_TooltipContent, - .t_active_accent_Button, - .t_active_accent_SliderTrack, - .t_active_accent_Switch, - .t_active_accent_TooltipContent, - .t_alt1_accent_Button, - .t_alt1_accent_SliderTrack, - .t_alt1_accent_Switch, - .t_alt1_accent_TooltipContent, - .t_alt2_accent_Button, - .t_alt2_accent_SliderTrack, - .t_alt2_accent_Switch, - .t_alt2_accent_TooltipContent, - .t_dark .t_light .t_accent_SliderTrack, - .t_dark .t_light .t_accent_TooltipContent, - .t_dark .t_light .t_active_accent_Button, - .t_dark .t_light .t_active_accent_SliderTrack, - .t_dark .t_light .t_active_accent_Switch, - .t_dark .t_light .t_active_accent_TooltipContent, - .t_dark .t_light .t_alt1_accent_Button, - .t_dark .t_light .t_alt1_accent_SliderTrack, - .t_dark .t_light .t_alt1_accent_Switch, - .t_dark .t_light .t_alt1_accent_TooltipContent, - .t_dark .t_light .t_alt2_accent_Button, - .t_dark .t_light .t_alt2_accent_SliderTrack, - .t_dark .t_light .t_alt2_accent_Switch, - .t_dark .t_light .t_alt2_accent_TooltipContent, - .t_dark .t_light .t_dim_accent_Button, - .t_dark .t_light .t_dim_accent_SliderTrack, - .t_dark .t_light .t_dim_accent_Switch, - .t_dark .t_light .t_dim_accent_TooltipContent, - .t_dark .t_light .t_disabled_accent_Button, - .t_dark .t_light .t_disabled_accent_SliderTrack, - .t_dark .t_light .t_disabled_accent_Switch, - .t_dark .t_light .t_disabled_accent_TooltipContent, - .t_dark .t_light .t_error_accent_Button, - .t_dark .t_light .t_error_accent_SliderTrack, - .t_dark .t_light .t_error_accent_Switch, - .t_dark .t_light .t_error_accent_TooltipContent, - .t_dark .t_light .t_red_accent_Button, - .t_dark .t_light .t_red_accent_SliderTrack, - .t_dark .t_light .t_red_accent_Switch, - .t_dark .t_light .t_red_accent_TooltipContent, - .t_dark .t_light .t_success_accent_Button, - .t_dark .t_light .t_success_accent_SliderTrack, - .t_dark .t_light .t_success_accent_Switch, - .t_dark .t_light .t_success_accent_TooltipContent, - .t_dark .t_light .t_warning_accent_Button, - .t_dark .t_light .t_warning_accent_SliderTrack, - .t_dark .t_light .t_warning_accent_Switch, - .t_dark .t_light .t_warning_accent_TooltipContent, - .t_dim_accent_Button, - .t_dim_accent_SliderTrack, - .t_dim_accent_Switch, - .t_dim_accent_TooltipContent, - .t_disabled_accent_Button, - .t_disabled_accent_SliderTrack, - .t_disabled_accent_Switch, - .t_disabled_accent_TooltipContent, - .t_error_accent_Button, - .t_error_accent_SliderTrack, - .t_error_accent_Switch, - .t_error_accent_TooltipContent, - .t_red_accent_Button, - .t_red_accent_SliderTrack, - .t_red_accent_Switch, - .t_red_accent_TooltipContent, - .t_success_accent_Button, - .t_success_accent_SliderTrack, - .t_success_accent_Switch, - .t_success_accent_TooltipContent, - .t_warning_accent_Button, - .t_warning_accent_SliderTrack, - .t_warning_accent_Switch, - .t_warning_accent_TooltipContent { - --background0: var(--color-230); - --background025: var(--color-231); - --background05: var(--color-232); - --background075: var(--color-233); - --color0: var(--color-240); - --color025: hsla(191, 32%, 10%, 1); - --color05: hsla(191, 32%, 10%, 1); - --color075: hsla(191, 33%, 10%, 0.75); - --background: var(--color-233); - --backgroundHover: var(--color-234); - --backgroundPress: var(--color-235); - --backgroundFocus: var(--color-236); - --color: hsla(191, 32%, 10%, 1); - --colorHover: var(--color-240); - --colorPress: hsla(191, 32%, 10%, 1); - --colorFocus: var(--color-240); - --placeholderColor: var(--color-238); - --borderColor: var(--color-236); - --borderColorHover: var(--color-237); - --borderColorFocus: var(--color-238); - --borderColorPress: var(--color-237); - } -} - -:root.t_dark .t_light .t_accent_SliderTrackActive, -:root.t_dark .t_light .t_active_accent_SliderTrackActive, -:root.t_dark .t_light .t_alt1_accent_SliderTrackActive, -:root.t_dark .t_light .t_alt2_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_light .t_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_light .t_active_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_light .t_alt1_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_light .t_alt2_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_light .t_dim_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_light .t_disabled_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_light .t_error_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_light .t_red_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_light .t_success_accent_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_light .t_warning_accent_SliderTrackActive, -:root.t_dark .t_light .t_dim_accent_SliderTrackActive, -:root.t_dark .t_light .t_disabled_accent_SliderTrackActive, -:root.t_dark .t_light .t_error_accent_SliderTrackActive, -:root.t_dark .t_light .t_red_accent_SliderTrackActive, -:root.t_dark .t_light .t_success_accent_SliderTrackActive, -:root.t_dark .t_light .t_warning_accent_SliderTrackActive, -:root.t_light .t_accent_SliderTrackActive, -:root.t_light .t_active_accent_SliderTrackActive, -:root.t_light .t_alt1_accent_SliderTrackActive, -:root.t_light .t_alt2_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_active_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_alt1_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_alt2_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dim_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_disabled_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_error_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_red_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_success_accent_SliderTrackActive, -:root.t_light .t_dark .t_light .t_warning_accent_SliderTrackActive, -:root.t_light .t_dim_accent_SliderTrackActive, -:root.t_light .t_disabled_accent_SliderTrackActive, -:root.t_light .t_error_accent_SliderTrackActive, -:root.t_light .t_red_accent_SliderTrackActive, -:root.t_light .t_success_accent_SliderTrackActive, -:root.t_light .t_warning_accent_SliderTrackActive { - --accentBackground: hsla(125, 96%, 40%, 0); - --accentColor: hsla(125, 96%, 40%, 0); - --background0: hsla(191, 33%, 10%, 0.75); - --background025: hsla(191, 32%, 10%, 1); - --background05: hsla(191, 32%, 10%, 1); - --background075: var(--color-240); - --color0: var(--color-233); - --color025: var(--color-232); - --color05: var(--color-231); - --color075: var(--color-230); - --background: var(--color-240); - --backgroundHover: var(--color-239); - --backgroundPress: var(--color-238); - --backgroundFocus: var(--color-237); - --color: var(--color-232); - --colorHover: var(--color-233); - --colorPress: var(--color-232); - --colorFocus: var(--color-233); - --placeholderColor: var(--color-235); - --borderColor: var(--color-237); - --borderColorHover: var(--color-236); - --borderColorFocus: var(--color-235); - --borderColorPress: var(--color-236); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_accent_SliderTrackActive, - .t_active_accent_SliderTrackActive, - .t_alt1_accent_SliderTrackActive, - .t_alt2_accent_SliderTrackActive, - .t_dark .t_light .t_accent_SliderTrackActive, - .t_dark .t_light .t_active_accent_SliderTrackActive, - .t_dark .t_light .t_alt1_accent_SliderTrackActive, - .t_dark .t_light .t_alt2_accent_SliderTrackActive, - .t_dark .t_light .t_dim_accent_SliderTrackActive, - .t_dark .t_light .t_disabled_accent_SliderTrackActive, - .t_dark .t_light .t_error_accent_SliderTrackActive, - .t_dark .t_light .t_red_accent_SliderTrackActive, - .t_dark .t_light .t_success_accent_SliderTrackActive, - .t_dark .t_light .t_warning_accent_SliderTrackActive, - .t_dim_accent_SliderTrackActive, - .t_disabled_accent_SliderTrackActive, - .t_error_accent_SliderTrackActive, - .t_red_accent_SliderTrackActive, - .t_success_accent_SliderTrackActive, - .t_warning_accent_SliderTrackActive { - --accentBackground: hsla(125, 96%, 40%, 0); - --accentColor: hsla(125, 96%, 40%, 0); - --background0: hsla(191, 33%, 10%, 0.75); - --background025: hsla(191, 32%, 10%, 1); - --background05: hsla(191, 32%, 10%, 1); - --background075: var(--color-240); - --color0: var(--color-233); - --color025: var(--color-232); - --color05: var(--color-231); - --color075: var(--color-230); - --background: var(--color-240); - --backgroundHover: var(--color-239); - --backgroundPress: var(--color-238); - --backgroundFocus: var(--color-237); - --color: var(--color-232); - --colorHover: var(--color-233); - --colorPress: var(--color-232); - --colorFocus: var(--color-233); - --placeholderColor: var(--color-235); - --borderColor: var(--color-237); - --borderColorHover: var(--color-236); - --borderColorFocus: var(--color-235); - --borderColorPress: var(--color-236); - } -} - -:root.t_dark .t_light .t_active, -:root.t_dark .t_light .t_dark .t_light .t_active, -:root.t_light .t_active, -:root.t_light .t_dark .t_light .t_active { - --background0: hsla(180, 20%, 99%, 0); - --background025: hsla(180, 20%, 99%, 0.25); - --background05: hsla(180, 20%, 99%, 0.5); - --background075: hsla(180, 20%, 99%, 0.75); - --color0: hsla(0, 0%, 0%, 0.75); - --color025: hsla(0, 0%, 0%, 0.5); - --color05: hsla(0, 0%, 0%, 0.25); - --color075: hsla(0, 0%, 0%, 0); - --background: hsla(180, 20%, 99%, 0.75); - --backgroundHover: hsla(191, 32%, 99%, 1); - --backgroundPress: hsla(191, 32%, 93%, 1); - --backgroundFocus: hsla(191, 32%, 88%, 1); - --colorHover: hsla(96, 16%, 25%, 1); - --colorPress: hsla(112, 22%, 0%, 1); - --colorFocus: hsla(96, 16%, 25%, 1); - --placeholderColor: hsla(96, 16%, 25%, 1); - --borderColor: hsla(191, 32%, 88%, 1); - --borderColorHover: hsla(191, 32%, 83%, 1); - --borderColorFocus: hsla(191, 32%, 77%, 1); - --borderColorPress: hsla(191, 32%, 83%, 1); - --color1: hsla(180, 20%, 99%, 0.75); - --color2: hsla(191, 32%, 99%, 1); - --color3: hsla(191, 32%, 93%, 1); - --color4: hsla(191, 32%, 88%, 1); - --color5: hsla(191, 32%, 83%, 1); - --color6: hsla(191, 32%, 77%, 1); - --color7: hsla(191, 32%, 72%, 1); - --color8: hsla(191, 32%, 66%, 1); - --color9: hsla(191, 32%, 61%, 1); - --color10: hsla(191, 32%, 55%, 1); - --color11: hsla(191, 32%, 50%, 1); - --color12: hsla(96, 16%, 25%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - } - - .t_active, - .t_dark .t_light .t_active { - --background0: hsla(180, 20%, 99%, 0); - --background025: hsla(180, 20%, 99%, 0.25); - --background05: hsla(180, 20%, 99%, 0.5); - --background075: hsla(180, 20%, 99%, 0.75); - --color0: hsla(0, 0%, 0%, 0.75); - --color025: hsla(0, 0%, 0%, 0.5); - --color05: hsla(0, 0%, 0%, 0.25); - --color075: hsla(0, 0%, 0%, 0); - --background: hsla(180, 20%, 99%, 0.75); - --backgroundHover: hsla(191, 32%, 99%, 1); - --backgroundPress: hsla(191, 32%, 93%, 1); - --backgroundFocus: hsla(191, 32%, 88%, 1); - --colorHover: hsla(96, 16%, 25%, 1); - --colorPress: hsla(112, 22%, 0%, 1); - --colorFocus: hsla(96, 16%, 25%, 1); - --placeholderColor: hsla(96, 16%, 25%, 1); - --borderColor: hsla(191, 32%, 88%, 1); - --borderColorHover: hsla(191, 32%, 83%, 1); - --borderColorFocus: hsla(191, 32%, 77%, 1); - --borderColorPress: hsla(191, 32%, 83%, 1); - --color1: hsla(180, 20%, 99%, 0.75); - --color2: hsla(191, 32%, 99%, 1); - --color3: hsla(191, 32%, 93%, 1); - --color4: hsla(191, 32%, 88%, 1); - --color5: hsla(191, 32%, 83%, 1); - --color6: hsla(191, 32%, 77%, 1); - --color7: hsla(191, 32%, 72%, 1); - --color8: hsla(191, 32%, 66%, 1); - --color9: hsla(191, 32%, 61%, 1); - --color10: hsla(191, 32%, 55%, 1); - --color11: hsla(191, 32%, 50%, 1); - --color12: hsla(96, 16%, 25%, 1); - } -} - -:root.t_dark .t_light .t_active_Button, -:root.t_dark .t_light .t_active_SliderTrack, -:root.t_dark .t_light .t_active_Switch, -:root.t_dark .t_light .t_active_TooltipContent, -:root.t_dark .t_light .t_dark .t_light .t_active_Button, -:root.t_dark .t_light .t_dark .t_light .t_active_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_active_Switch, -:root.t_dark .t_light .t_dark .t_light .t_active_TooltipContent, -:root.t_light .t_active_Button, -:root.t_light .t_active_SliderTrack, -:root.t_light .t_active_Switch, -:root.t_light .t_active_TooltipContent, -:root.t_light .t_dark .t_light .t_active_Button, -:root.t_light .t_dark .t_light .t_active_SliderTrack, -:root.t_light .t_dark .t_light .t_active_Switch, -:root.t_light .t_dark .t_light .t_active_TooltipContent { - --background0: hsla(180, 20%, 99%, 0.5); - --background025: hsla(180, 20%, 99%, 0.75); - --background05: hsla(191, 32%, 99%, 1); - --background075: hsla(191, 32%, 93%, 1); - --color0: hsla(96, 16%, 25%, 1); - --color025: hsla(112, 22%, 0%, 1); - --color05: hsla(0, 0%, 0%, 0.75); - --color075: hsla(0, 0%, 0%, 0.5); - --background: hsla(191, 32%, 93%, 1); - --backgroundHover: hsla(191, 32%, 88%, 1); - --backgroundPress: hsla(191, 32%, 83%, 1); - --backgroundFocus: hsla(191, 32%, 77%, 1); - --colorHover: hsla(96, 16%, 25%, 1); - --colorPress: hsla(112, 22%, 0%, 1); - --colorFocus: hsla(96, 16%, 25%, 1); - --placeholderColor: hsla(191, 32%, 55%, 1); - --borderColor: hsla(191, 32%, 77%, 1); - --borderColorHover: hsla(191, 32%, 72%, 1); - --borderColorFocus: hsla(191, 32%, 66%, 1); - --borderColorPress: hsla(191, 32%, 72%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - } - - .t_active_Button, - .t_active_SliderTrack, - .t_active_Switch, - .t_active_TooltipContent, - .t_dark .t_light .t_active_Button, - .t_dark .t_light .t_active_SliderTrack, - .t_dark .t_light .t_active_Switch, - .t_dark .t_light .t_active_TooltipContent { - --background0: hsla(180, 20%, 99%, 0.5); - --background025: hsla(180, 20%, 99%, 0.75); - --background05: hsla(191, 32%, 99%, 1); - --background075: hsla(191, 32%, 93%, 1); - --color0: hsla(96, 16%, 25%, 1); - --color025: hsla(112, 22%, 0%, 1); - --color05: hsla(0, 0%, 0%, 0.75); - --color075: hsla(0, 0%, 0%, 0.5); - --background: hsla(191, 32%, 93%, 1); - --backgroundHover: hsla(191, 32%, 88%, 1); - --backgroundPress: hsla(191, 32%, 83%, 1); - --backgroundFocus: hsla(191, 32%, 77%, 1); - --colorHover: hsla(96, 16%, 25%, 1); - --colorPress: hsla(112, 22%, 0%, 1); - --colorFocus: hsla(96, 16%, 25%, 1); - --placeholderColor: hsla(191, 32%, 55%, 1); - --borderColor: hsla(191, 32%, 77%, 1); - --borderColorHover: hsla(191, 32%, 72%, 1); - --borderColorFocus: hsla(191, 32%, 66%, 1); - --borderColorPress: hsla(191, 32%, 72%, 1); - } -} - -:root.t_dark .t_light .t_active_Card, -:root.t_dark .t_light .t_active_DrawerFrame, -:root.t_dark .t_light .t_active_Progress, -:root.t_dark .t_light .t_active_TooltipArrow, -:root.t_dark .t_light .t_dark .t_light .t_active_Card, -:root.t_dark .t_light .t_dark .t_light .t_active_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_active_Progress, -:root.t_dark .t_light .t_dark .t_light .t_active_TooltipArrow, -:root.t_light .t_active_Card, -:root.t_light .t_active_DrawerFrame, -:root.t_light .t_active_Progress, -:root.t_light .t_active_TooltipArrow, -:root.t_light .t_dark .t_light .t_active_Card, -:root.t_light .t_dark .t_light .t_active_DrawerFrame, -:root.t_light .t_dark .t_light .t_active_Progress, -:root.t_light .t_dark .t_light .t_active_TooltipArrow { - --background0: hsla(180, 20%, 99%, 0.25); - --background025: hsla(180, 20%, 99%, 0.5); - --background05: hsla(180, 20%, 99%, 0.75); - --background075: hsla(191, 32%, 99%, 1); - --color0: hsla(112, 22%, 0%, 1); - --color025: hsla(0, 0%, 0%, 0.75); - --color05: hsla(0, 0%, 0%, 0.5); - --color075: hsla(0, 0%, 0%, 0.25); - --background: hsla(191, 32%, 99%, 1); - --backgroundHover: hsla(191, 32%, 93%, 1); - --backgroundPress: hsla(191, 32%, 88%, 1); - --backgroundFocus: hsla(191, 32%, 83%, 1); - --colorHover: hsla(96, 16%, 25%, 1); - --colorPress: hsla(112, 22%, 0%, 1); - --colorFocus: hsla(96, 16%, 25%, 1); - --placeholderColor: hsla(191, 32%, 50%, 1); - --borderColor: hsla(191, 32%, 83%, 1); - --borderColorHover: hsla(191, 32%, 77%, 1); - --borderColorFocus: hsla(191, 32%, 72%, 1); - --borderColorPress: hsla(191, 32%, 77%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - } - - .t_active_Card, - .t_active_DrawerFrame, - .t_active_Progress, - .t_active_TooltipArrow, - .t_dark .t_light .t_active_Card, - .t_dark .t_light .t_active_DrawerFrame, - .t_dark .t_light .t_active_Progress, - .t_dark .t_light .t_active_TooltipArrow { - --background0: hsla(180, 20%, 99%, 0.25); - --background025: hsla(180, 20%, 99%, 0.5); - --background05: hsla(180, 20%, 99%, 0.75); - --background075: hsla(191, 32%, 99%, 1); - --color0: hsla(112, 22%, 0%, 1); - --color025: hsla(0, 0%, 0%, 0.75); - --color05: hsla(0, 0%, 0%, 0.5); - --color075: hsla(0, 0%, 0%, 0.25); - --background: hsla(191, 32%, 99%, 1); - --backgroundHover: hsla(191, 32%, 93%, 1); - --backgroundPress: hsla(191, 32%, 88%, 1); - --backgroundFocus: hsla(191, 32%, 83%, 1); - --colorHover: hsla(96, 16%, 25%, 1); - --colorPress: hsla(112, 22%, 0%, 1); - --colorFocus: hsla(96, 16%, 25%, 1); - --placeholderColor: hsla(191, 32%, 50%, 1); - --borderColor: hsla(191, 32%, 83%, 1); - --borderColorHover: hsla(191, 32%, 77%, 1); - --borderColorFocus: hsla(191, 32%, 72%, 1); - --borderColorPress: hsla(191, 32%, 77%, 1); - } -} - -:root.t_dark .t_light .t_active_Checkbox, -:root.t_dark .t_light .t_active_Input, -:root.t_dark .t_light .t_active_RadioGroupItem, -:root.t_dark .t_light .t_active_TextArea, -:root.t_dark .t_light .t_dark .t_light .t_active_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_active_Input, -:root.t_dark .t_light .t_dark .t_light .t_active_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_active_TextArea, -:root.t_light .t_active_Checkbox, -:root.t_light .t_active_Input, -:root.t_light .t_active_RadioGroupItem, -:root.t_light .t_active_TextArea, -:root.t_light .t_dark .t_light .t_active_Checkbox, -:root.t_light .t_dark .t_light .t_active_Input, -:root.t_light .t_dark .t_light .t_active_RadioGroupItem, -:root.t_light .t_dark .t_light .t_active_TextArea { - --background0: hsla(180, 20%, 99%, 0); - --background025: hsla(180, 20%, 99%, 0.25); - --background05: hsla(180, 20%, 99%, 0.5); - --background075: hsla(180, 20%, 99%, 0.75); - --color0: hsla(0, 0%, 0%, 0.75); - --color025: hsla(0, 0%, 0%, 0.5); - --color05: hsla(0, 0%, 0%, 0.25); - --color075: hsla(0, 0%, 0%, 0); - --background: hsla(180, 20%, 99%, 0.75); - --backgroundHover: hsla(191, 32%, 99%, 1); - --backgroundPress: hsla(191, 32%, 93%, 1); - --backgroundFocus: hsla(191, 32%, 88%, 1); - --colorHover: hsla(96, 16%, 25%, 1); - --colorPress: hsla(112, 22%, 0%, 1); - --colorFocus: hsla(96, 16%, 25%, 1); - --placeholderColor: hsla(96, 16%, 25%, 1); - --borderColor: hsla(191, 32%, 77%, 1); - --borderColorHover: hsla(191, 32%, 72%, 1); - --borderColorFocus: hsla(191, 32%, 66%, 1); - --borderColorPress: hsla(191, 32%, 72%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - } - - .t_active_Checkbox, - .t_active_Input, - .t_active_RadioGroupItem, - .t_active_TextArea, - .t_dark .t_light .t_active_Checkbox, - .t_dark .t_light .t_active_Input, - .t_dark .t_light .t_active_RadioGroupItem, - .t_dark .t_light .t_active_TextArea { - --background0: hsla(180, 20%, 99%, 0); - --background025: hsla(180, 20%, 99%, 0.25); - --background05: hsla(180, 20%, 99%, 0.5); - --background075: hsla(180, 20%, 99%, 0.75); - --color0: hsla(0, 0%, 0%, 0.75); - --color025: hsla(0, 0%, 0%, 0.5); - --color05: hsla(0, 0%, 0%, 0.25); - --color075: hsla(0, 0%, 0%, 0); - --background: hsla(180, 20%, 99%, 0.75); - --backgroundHover: hsla(191, 32%, 99%, 1); - --backgroundPress: hsla(191, 32%, 93%, 1); - --backgroundFocus: hsla(191, 32%, 88%, 1); - --colorHover: hsla(96, 16%, 25%, 1); - --colorPress: hsla(112, 22%, 0%, 1); - --colorFocus: hsla(96, 16%, 25%, 1); - --placeholderColor: hsla(96, 16%, 25%, 1); - --borderColor: hsla(191, 32%, 77%, 1); - --borderColorHover: hsla(191, 32%, 72%, 1); - --borderColorFocus: hsla(191, 32%, 66%, 1); - --borderColorPress: hsla(191, 32%, 72%, 1); - } -} - -:root.t_dark .t_light .t_active_ProgressIndicator, -:root.t_dark .t_light .t_active_SliderThumb, -:root.t_dark .t_light .t_active_SwitchThumb, -:root.t_dark .t_light .t_active_Tooltip, -:root.t_dark .t_light .t_dark .t_light .t_active_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_active_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_active_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_active_Tooltip, -:root.t_light .t_active_ProgressIndicator, -:root.t_light .t_active_SliderThumb, -:root.t_light .t_active_SwitchThumb, -:root.t_light .t_active_Tooltip, -:root.t_light .t_dark .t_light .t_active_ProgressIndicator, -:root.t_light .t_dark .t_light .t_active_SliderThumb, -:root.t_light .t_dark .t_light .t_active_SwitchThumb, -:root.t_light .t_dark .t_light .t_active_Tooltip { - --background0: hsla(0, 0%, 0%, 0); - --background025: hsla(0, 0%, 0%, 0.25); - --background05: hsla(0, 0%, 0%, 0.5); - --background075: hsla(0, 0%, 0%, 0.75); - --color0: hsla(180, 20%, 99%, 0.75); - --color025: hsla(180, 20%, 99%, 0.5); - --color05: hsla(180, 20%, 99%, 0.25); - --color075: hsla(180, 20%, 99%, 0); - --background: hsla(0, 0%, 0%, 0.75); - --backgroundHover: hsla(112, 22%, 0%, 1); - --backgroundPress: hsla(96, 16%, 25%, 1); - --backgroundFocus: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 93%, 1); - --colorPress: hsla(191, 32%, 99%, 1); - --colorFocus: hsla(191, 32%, 93%, 1); - --placeholderColor: hsla(191, 32%, 93%, 1); - --borderColor: hsla(191, 32%, 50%, 1); - --borderColorHover: hsla(191, 32%, 55%, 1); - --borderColorFocus: hsla(191, 32%, 61%, 1); - --borderColorPress: hsla(191, 32%, 55%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - } - - .t_active_ProgressIndicator, - .t_active_SliderThumb, - .t_active_SwitchThumb, - .t_active_Tooltip, - .t_dark .t_light .t_active_ProgressIndicator, - .t_dark .t_light .t_active_SliderThumb, - .t_dark .t_light .t_active_SwitchThumb, - .t_dark .t_light .t_active_Tooltip { - --background0: hsla(0, 0%, 0%, 0); - --background025: hsla(0, 0%, 0%, 0.25); - --background05: hsla(0, 0%, 0%, 0.5); - --background075: hsla(0, 0%, 0%, 0.75); - --color0: hsla(180, 20%, 99%, 0.75); - --color025: hsla(180, 20%, 99%, 0.5); - --color05: hsla(180, 20%, 99%, 0.25); - --color075: hsla(180, 20%, 99%, 0); - --background: hsla(0, 0%, 0%, 0.75); - --backgroundHover: hsla(112, 22%, 0%, 1); - --backgroundPress: hsla(96, 16%, 25%, 1); - --backgroundFocus: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 93%, 1); - --colorPress: hsla(191, 32%, 99%, 1); - --colorFocus: hsla(191, 32%, 93%, 1); - --placeholderColor: hsla(191, 32%, 93%, 1); - --borderColor: hsla(191, 32%, 50%, 1); - --borderColorHover: hsla(191, 32%, 55%, 1); - --borderColorFocus: hsla(191, 32%, 61%, 1); - --borderColorPress: hsla(191, 32%, 55%, 1); - } -} - -:root.t_dark .t_light .t_active_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_light .t_active_SliderTrackActive, -:root.t_light .t_active_SliderTrackActive, -:root.t_light .t_dark .t_light .t_active_SliderTrackActive { - --background0: hsla(0, 0%, 0%, 0.5); - --background025: hsla(0, 0%, 0%, 0.75); - --background05: hsla(112, 22%, 0%, 1); - --background075: hsla(96, 16%, 25%, 1); - --color0: hsla(191, 32%, 93%, 1); - --color025: hsla(191, 32%, 99%, 1); - --color05: hsla(180, 20%, 99%, 0.75); - --color075: hsla(180, 20%, 99%, 0.5); - --background: hsla(96, 16%, 25%, 1); - --backgroundHover: hsla(191, 32%, 50%, 1); - --backgroundPress: hsla(191, 32%, 55%, 1); - --backgroundFocus: hsla(191, 32%, 61%, 1); - --colorHover: hsla(191, 32%, 93%, 1); - --colorPress: hsla(191, 32%, 99%, 1); - --colorFocus: hsla(191, 32%, 93%, 1); - --placeholderColor: hsla(191, 32%, 83%, 1); - --borderColor: hsla(191, 32%, 61%, 1); - --borderColorHover: hsla(191, 32%, 66%, 1); - --borderColorFocus: hsla(191, 32%, 72%, 1); - --borderColorPress: hsla(191, 32%, 66%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - } - - .t_active_SliderTrackActive, - .t_dark .t_light .t_active_SliderTrackActive { - --background0: hsla(0, 0%, 0%, 0.5); - --background025: hsla(0, 0%, 0%, 0.75); - --background05: hsla(112, 22%, 0%, 1); - --background075: hsla(96, 16%, 25%, 1); - --color0: hsla(191, 32%, 93%, 1); - --color025: hsla(191, 32%, 99%, 1); - --color05: hsla(180, 20%, 99%, 0.75); - --color075: hsla(180, 20%, 99%, 0.5); - --background: hsla(96, 16%, 25%, 1); - --backgroundHover: hsla(191, 32%, 50%, 1); - --backgroundPress: hsla(191, 32%, 55%, 1); - --backgroundFocus: hsla(191, 32%, 61%, 1); - --colorHover: hsla(191, 32%, 93%, 1); - --colorPress: hsla(191, 32%, 99%, 1); - --colorFocus: hsla(191, 32%, 93%, 1); - --placeholderColor: hsla(191, 32%, 83%, 1); - --borderColor: hsla(191, 32%, 61%, 1); - --borderColorHover: hsla(191, 32%, 66%, 1); - --borderColorFocus: hsla(191, 32%, 72%, 1); - --borderColorPress: hsla(191, 32%, 66%, 1); - } -} - -:root.t_dark .t_light .t_alt1, -:root.t_dark .t_light .t_dark .t_light .t_alt1, -:root.t_light .t_alt1, -:root.t_light .t_dark .t_light .t_alt1 { - --background0: hsla(180, 20%, 99%, 0.5); - --background025: hsla(180, 20%, 99%, 0.75); - --background05: hsla(191, 32%, 99%, 1); - --background075: hsla(191, 32%, 93%, 1); - --color0: hsla(96, 16%, 25%, 1); - --color025: hsla(112, 22%, 0%, 1); - --color05: hsla(0, 0%, 0%, 0.75); - --color075: hsla(0, 0%, 0%, 0.5); - --background: hsla(191, 32%, 93%, 1); - --backgroundHover: hsla(191, 32%, 88%, 1); - --backgroundPress: hsla(191, 32%, 83%, 1); - --backgroundFocus: hsla(191, 32%, 77%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 55%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 55%, 1); - --placeholderColor: hsla(191, 32%, 55%, 1); - --borderColor: hsla(191, 32%, 77%, 1); - --borderColorHover: hsla(191, 32%, 72%, 1); - --borderColorFocus: hsla(191, 32%, 66%, 1); - --borderColorPress: hsla(191, 32%, 72%, 1); - --color1: hsla(191, 32%, 93%, 1); - --color2: hsla(191, 32%, 88%, 1); - --color3: hsla(191, 32%, 83%, 1); - --color4: hsla(191, 32%, 77%, 1); - --color5: hsla(191, 32%, 72%, 1); - --color6: hsla(191, 32%, 66%, 1); - --color7: hsla(191, 32%, 61%, 1); - --color8: hsla(191, 32%, 55%, 1); - --color9: hsla(191, 32%, 55%, 1); - --color10: hsla(191, 32%, 55%, 1); - --color11: hsla(191, 32%, 55%, 1); - --color12: hsla(191, 32%, 55%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt1, - .t_dark .t_light .t_alt1 { - --background0: hsla(180, 20%, 99%, 0.5); - --background025: hsla(180, 20%, 99%, 0.75); - --background05: hsla(191, 32%, 99%, 1); - --background075: hsla(191, 32%, 93%, 1); - --color0: hsla(96, 16%, 25%, 1); - --color025: hsla(112, 22%, 0%, 1); - --color05: hsla(0, 0%, 0%, 0.75); - --color075: hsla(0, 0%, 0%, 0.5); - --background: hsla(191, 32%, 93%, 1); - --backgroundHover: hsla(191, 32%, 88%, 1); - --backgroundPress: hsla(191, 32%, 83%, 1); - --backgroundFocus: hsla(191, 32%, 77%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 55%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 55%, 1); - --placeholderColor: hsla(191, 32%, 55%, 1); - --borderColor: hsla(191, 32%, 77%, 1); - --borderColorHover: hsla(191, 32%, 72%, 1); - --borderColorFocus: hsla(191, 32%, 66%, 1); - --borderColorPress: hsla(191, 32%, 72%, 1); - --color1: hsla(191, 32%, 93%, 1); - --color2: hsla(191, 32%, 88%, 1); - --color3: hsla(191, 32%, 83%, 1); - --color4: hsla(191, 32%, 77%, 1); - --color5: hsla(191, 32%, 72%, 1); - --color6: hsla(191, 32%, 66%, 1); - --color7: hsla(191, 32%, 61%, 1); - --color8: hsla(191, 32%, 55%, 1); - --color9: hsla(191, 32%, 55%, 1); - --color10: hsla(191, 32%, 55%, 1); - --color11: hsla(191, 32%, 55%, 1); - --color12: hsla(191, 32%, 55%, 1); - } -} - -:root.t_dark .t_light .t_alt1_Button, -:root.t_dark .t_light .t_alt1_SliderTrack, -:root.t_dark .t_light .t_alt1_Switch, -:root.t_dark .t_light .t_alt1_TooltipContent, -:root.t_dark .t_light .t_dark .t_light .t_alt1_Button, -:root.t_dark .t_light .t_dark .t_light .t_alt1_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_alt1_Switch, -:root.t_dark .t_light .t_dark .t_light .t_alt1_TooltipContent, -:root.t_dark .t_light .t_dark .t_light .t_dim_Button, -:root.t_dark .t_light .t_dark .t_light .t_dim_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_dim_Switch, -:root.t_dark .t_light .t_dark .t_light .t_dim_TooltipContent, -:root.t_dark .t_light .t_dim_Button, -:root.t_dark .t_light .t_dim_SliderTrack, -:root.t_dark .t_light .t_dim_Switch, -:root.t_dark .t_light .t_dim_TooltipContent, -:root.t_light .t_alt1_Button, -:root.t_light .t_alt1_SliderTrack, -:root.t_light .t_alt1_Switch, -:root.t_light .t_alt1_TooltipContent, -:root.t_light .t_dark .t_light .t_alt1_Button, -:root.t_light .t_dark .t_light .t_alt1_SliderTrack, -:root.t_light .t_dark .t_light .t_alt1_Switch, -:root.t_light .t_dark .t_light .t_alt1_TooltipContent, -:root.t_light .t_dark .t_light .t_dim_Button, -:root.t_light .t_dark .t_light .t_dim_SliderTrack, -:root.t_light .t_dark .t_light .t_dim_Switch, -:root.t_light .t_dark .t_light .t_dim_TooltipContent, -:root.t_light .t_dim_Button, -:root.t_light .t_dim_SliderTrack, -:root.t_light .t_dim_Switch, -:root.t_light .t_dim_TooltipContent { - --background0: hsla(191, 32%, 99%, 1); - --background025: hsla(191, 32%, 93%, 1); - --background05: hsla(191, 32%, 88%, 1); - --background075: hsla(191, 32%, 83%, 1); - --color0: hsla(191, 32%, 55%, 1); - --color025: hsla(191, 32%, 50%, 1); - --color05: hsla(96, 16%, 25%, 1); - --color075: hsla(112, 22%, 0%, 1); - --background: hsla(191, 32%, 83%, 1); - --backgroundHover: hsla(191, 32%, 77%, 1); - --backgroundPress: hsla(191, 32%, 72%, 1); - --backgroundFocus: hsla(191, 32%, 66%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 55%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 55%, 1); - --placeholderColor: hsla(191, 32%, 66%, 1); - --borderColor: hsla(191, 32%, 66%, 1); - --borderColorHover: hsla(191, 32%, 61%, 1); - --borderColorFocus: hsla(191, 32%, 55%, 1); - --borderColorPress: hsla(191, 32%, 61%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt1_Button, - .t_alt1_SliderTrack, - .t_alt1_Switch, - .t_alt1_TooltipContent, - .t_dark .t_light .t_alt1_Button, - .t_dark .t_light .t_alt1_SliderTrack, - .t_dark .t_light .t_alt1_Switch, - .t_dark .t_light .t_alt1_TooltipContent, - .t_dark .t_light .t_dim_Button, - .t_dark .t_light .t_dim_SliderTrack, - .t_dark .t_light .t_dim_Switch, - .t_dark .t_light .t_dim_TooltipContent, - .t_dim_Button, - .t_dim_SliderTrack, - .t_dim_Switch, - .t_dim_TooltipContent { - --background0: hsla(191, 32%, 99%, 1); - --background025: hsla(191, 32%, 93%, 1); - --background05: hsla(191, 32%, 88%, 1); - --background075: hsla(191, 32%, 83%, 1); - --color0: hsla(191, 32%, 55%, 1); - --color025: hsla(191, 32%, 50%, 1); - --color05: hsla(96, 16%, 25%, 1); - --color075: hsla(112, 22%, 0%, 1); - --background: hsla(191, 32%, 83%, 1); - --backgroundHover: hsla(191, 32%, 77%, 1); - --backgroundPress: hsla(191, 32%, 72%, 1); - --backgroundFocus: hsla(191, 32%, 66%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 55%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 55%, 1); - --placeholderColor: hsla(191, 32%, 66%, 1); - --borderColor: hsla(191, 32%, 66%, 1); - --borderColorHover: hsla(191, 32%, 61%, 1); - --borderColorFocus: hsla(191, 32%, 55%, 1); - --borderColorPress: hsla(191, 32%, 61%, 1); - } -} - -:root.t_dark .t_light .t_alt1_Card, -:root.t_dark .t_light .t_alt1_DrawerFrame, -:root.t_dark .t_light .t_alt1_Progress, -:root.t_dark .t_light .t_alt1_TooltipArrow, -:root.t_dark .t_light .t_dark .t_light .t_alt1_Card, -:root.t_dark .t_light .t_dark .t_light .t_alt1_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_alt1_Progress, -:root.t_dark .t_light .t_dark .t_light .t_alt1_TooltipArrow, -:root.t_dark .t_light .t_dark .t_light .t_dim_Card, -:root.t_dark .t_light .t_dark .t_light .t_dim_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_dim_Progress, -:root.t_dark .t_light .t_dark .t_light .t_dim_TooltipArrow, -:root.t_dark .t_light .t_dim_Card, -:root.t_dark .t_light .t_dim_DrawerFrame, -:root.t_dark .t_light .t_dim_Progress, -:root.t_dark .t_light .t_dim_TooltipArrow, -:root.t_light .t_alt1_Card, -:root.t_light .t_alt1_DrawerFrame, -:root.t_light .t_alt1_Progress, -:root.t_light .t_alt1_TooltipArrow, -:root.t_light .t_dark .t_light .t_alt1_Card, -:root.t_light .t_dark .t_light .t_alt1_DrawerFrame, -:root.t_light .t_dark .t_light .t_alt1_Progress, -:root.t_light .t_dark .t_light .t_alt1_TooltipArrow, -:root.t_light .t_dark .t_light .t_dim_Card, -:root.t_light .t_dark .t_light .t_dim_DrawerFrame, -:root.t_light .t_dark .t_light .t_dim_Progress, -:root.t_light .t_dark .t_light .t_dim_TooltipArrow, -:root.t_light .t_dim_Card, -:root.t_light .t_dim_DrawerFrame, -:root.t_light .t_dim_Progress, -:root.t_light .t_dim_TooltipArrow { - --background0: hsla(180, 20%, 99%, 0.75); - --background025: hsla(191, 32%, 99%, 1); - --background05: hsla(191, 32%, 93%, 1); - --background075: hsla(191, 32%, 88%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(96, 16%, 25%, 1); - --color05: hsla(112, 22%, 0%, 1); - --color075: hsla(0, 0%, 0%, 0.75); - --background: hsla(191, 32%, 88%, 1); - --backgroundHover: hsla(191, 32%, 83%, 1); - --backgroundPress: hsla(191, 32%, 77%, 1); - --backgroundFocus: hsla(191, 32%, 72%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 55%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 55%, 1); - --placeholderColor: hsla(191, 32%, 61%, 1); - --borderColor: hsla(191, 32%, 72%, 1); - --borderColorHover: hsla(191, 32%, 66%, 1); - --borderColorFocus: hsla(191, 32%, 61%, 1); - --borderColorPress: hsla(191, 32%, 66%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt1_Card, - .t_alt1_DrawerFrame, - .t_alt1_Progress, - .t_alt1_TooltipArrow, - .t_dark .t_light .t_alt1_Card, - .t_dark .t_light .t_alt1_DrawerFrame, - .t_dark .t_light .t_alt1_Progress, - .t_dark .t_light .t_alt1_TooltipArrow, - .t_dark .t_light .t_dim_Card, - .t_dark .t_light .t_dim_DrawerFrame, - .t_dark .t_light .t_dim_Progress, - .t_dark .t_light .t_dim_TooltipArrow, - .t_dim_Card, - .t_dim_DrawerFrame, - .t_dim_Progress, - .t_dim_TooltipArrow { - --background0: hsla(180, 20%, 99%, 0.75); - --background025: hsla(191, 32%, 99%, 1); - --background05: hsla(191, 32%, 93%, 1); - --background075: hsla(191, 32%, 88%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(96, 16%, 25%, 1); - --color05: hsla(112, 22%, 0%, 1); - --color075: hsla(0, 0%, 0%, 0.75); - --background: hsla(191, 32%, 88%, 1); - --backgroundHover: hsla(191, 32%, 83%, 1); - --backgroundPress: hsla(191, 32%, 77%, 1); - --backgroundFocus: hsla(191, 32%, 72%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 55%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 55%, 1); - --placeholderColor: hsla(191, 32%, 61%, 1); - --borderColor: hsla(191, 32%, 72%, 1); - --borderColorHover: hsla(191, 32%, 66%, 1); - --borderColorFocus: hsla(191, 32%, 61%, 1); - --borderColorPress: hsla(191, 32%, 66%, 1); - } -} - -:root.t_dark .t_light .t_alt1_Checkbox, -:root.t_dark .t_light .t_alt1_Input, -:root.t_dark .t_light .t_alt1_RadioGroupItem, -:root.t_dark .t_light .t_alt1_TextArea, -:root.t_dark .t_light .t_dark .t_light .t_alt1_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_alt1_Input, -:root.t_dark .t_light .t_dark .t_light .t_alt1_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_alt1_TextArea, -:root.t_dark .t_light .t_dark .t_light .t_dim_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_dim_Input, -:root.t_dark .t_light .t_dark .t_light .t_dim_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_dim_TextArea, -:root.t_dark .t_light .t_dim_Checkbox, -:root.t_dark .t_light .t_dim_Input, -:root.t_dark .t_light .t_dim_RadioGroupItem, -:root.t_dark .t_light .t_dim_TextArea, -:root.t_light .t_alt1_Checkbox, -:root.t_light .t_alt1_Input, -:root.t_light .t_alt1_RadioGroupItem, -:root.t_light .t_alt1_TextArea, -:root.t_light .t_dark .t_light .t_alt1_Checkbox, -:root.t_light .t_dark .t_light .t_alt1_Input, -:root.t_light .t_dark .t_light .t_alt1_RadioGroupItem, -:root.t_light .t_dark .t_light .t_alt1_TextArea, -:root.t_light .t_dark .t_light .t_dim_Checkbox, -:root.t_light .t_dark .t_light .t_dim_Input, -:root.t_light .t_dark .t_light .t_dim_RadioGroupItem, -:root.t_light .t_dark .t_light .t_dim_TextArea, -:root.t_light .t_dim_Checkbox, -:root.t_light .t_dim_Input, -:root.t_light .t_dim_RadioGroupItem, -:root.t_light .t_dim_TextArea { - --background0: hsla(180, 20%, 99%, 0.5); - --background025: hsla(180, 20%, 99%, 0.75); - --background05: hsla(191, 32%, 99%, 1); - --background075: hsla(191, 32%, 93%, 1); - --color0: hsla(96, 16%, 25%, 1); - --color025: hsla(112, 22%, 0%, 1); - --color05: hsla(0, 0%, 0%, 0.75); - --color075: hsla(0, 0%, 0%, 0.5); - --background: hsla(191, 32%, 93%, 1); - --backgroundHover: hsla(191, 32%, 88%, 1); - --backgroundPress: hsla(191, 32%, 83%, 1); - --backgroundFocus: hsla(191, 32%, 77%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 55%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 55%, 1); - --placeholderColor: hsla(191, 32%, 55%, 1); - --borderColor: hsla(191, 32%, 66%, 1); - --borderColorHover: hsla(191, 32%, 61%, 1); - --borderColorFocus: hsla(191, 32%, 55%, 1); - --borderColorPress: hsla(191, 32%, 61%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt1_Checkbox, - .t_alt1_Input, - .t_alt1_RadioGroupItem, - .t_alt1_TextArea, - .t_dark .t_light .t_alt1_Checkbox, - .t_dark .t_light .t_alt1_Input, - .t_dark .t_light .t_alt1_RadioGroupItem, - .t_dark .t_light .t_alt1_TextArea, - .t_dark .t_light .t_dim_Checkbox, - .t_dark .t_light .t_dim_Input, - .t_dark .t_light .t_dim_RadioGroupItem, - .t_dark .t_light .t_dim_TextArea, - .t_dim_Checkbox, - .t_dim_Input, - .t_dim_RadioGroupItem, - .t_dim_TextArea { - --background0: hsla(180, 20%, 99%, 0.5); - --background025: hsla(180, 20%, 99%, 0.75); - --background05: hsla(191, 32%, 99%, 1); - --background075: hsla(191, 32%, 93%, 1); - --color0: hsla(96, 16%, 25%, 1); - --color025: hsla(112, 22%, 0%, 1); - --color05: hsla(0, 0%, 0%, 0.75); - --color075: hsla(0, 0%, 0%, 0.5); - --background: hsla(191, 32%, 93%, 1); - --backgroundHover: hsla(191, 32%, 88%, 1); - --backgroundPress: hsla(191, 32%, 83%, 1); - --backgroundFocus: hsla(191, 32%, 77%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 55%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 55%, 1); - --placeholderColor: hsla(191, 32%, 55%, 1); - --borderColor: hsla(191, 32%, 66%, 1); - --borderColorHover: hsla(191, 32%, 61%, 1); - --borderColorFocus: hsla(191, 32%, 55%, 1); - --borderColorPress: hsla(191, 32%, 61%, 1); - } -} - -:root.t_dark .t_light .t_alt1_ProgressIndicator, -:root.t_dark .t_light .t_alt1_SliderThumb, -:root.t_dark .t_light .t_alt1_SwitchThumb, -:root.t_dark .t_light .t_alt1_Tooltip, -:root.t_dark .t_light .t_dark .t_light .t_alt1_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_alt1_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_alt1_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_alt1_Tooltip, -:root.t_dark .t_light .t_dark .t_light .t_dim_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_dim_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_dim_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_dim_Tooltip, -:root.t_dark .t_light .t_dim_ProgressIndicator, -:root.t_dark .t_light .t_dim_SliderThumb, -:root.t_dark .t_light .t_dim_SwitchThumb, -:root.t_dark .t_light .t_dim_Tooltip, -:root.t_light .t_alt1_ProgressIndicator, -:root.t_light .t_alt1_SliderThumb, -:root.t_light .t_alt1_SwitchThumb, -:root.t_light .t_alt1_Tooltip, -:root.t_light .t_dark .t_light .t_alt1_ProgressIndicator, -:root.t_light .t_dark .t_light .t_alt1_SliderThumb, -:root.t_light .t_dark .t_light .t_alt1_SwitchThumb, -:root.t_light .t_dark .t_light .t_alt1_Tooltip, -:root.t_light .t_dark .t_light .t_dim_ProgressIndicator, -:root.t_light .t_dark .t_light .t_dim_SliderThumb, -:root.t_light .t_dark .t_light .t_dim_SwitchThumb, -:root.t_light .t_dark .t_light .t_dim_Tooltip, -:root.t_light .t_dim_ProgressIndicator, -:root.t_light .t_dim_SliderThumb, -:root.t_light .t_dim_SwitchThumb, -:root.t_light .t_dim_Tooltip { - --background0: hsla(0, 0%, 0%, 0.5); - --background025: hsla(0, 0%, 0%, 0.75); - --background05: hsla(112, 22%, 0%, 1); - --background075: hsla(96, 16%, 25%, 1); - --color0: hsla(191, 32%, 93%, 1); - --color025: hsla(191, 32%, 99%, 1); - --color05: hsla(180, 20%, 99%, 0.75); - --color075: hsla(180, 20%, 99%, 0.5); - --background: hsla(96, 16%, 25%, 1); - --backgroundHover: hsla(191, 32%, 50%, 1); - --backgroundPress: hsla(191, 32%, 55%, 1); - --backgroundFocus: hsla(191, 32%, 61%, 1); - --color: hsla(191, 32%, 88%, 1); - --colorHover: hsla(191, 32%, 83%, 1); - --colorPress: hsla(191, 32%, 88%, 1); - --colorFocus: hsla(191, 32%, 83%, 1); - --placeholderColor: hsla(191, 32%, 83%, 1); - --borderColor: hsla(191, 32%, 61%, 1); - --borderColorHover: hsla(191, 32%, 66%, 1); - --borderColorFocus: hsla(191, 32%, 72%, 1); - --borderColorPress: hsla(191, 32%, 66%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt1_ProgressIndicator, - .t_alt1_SliderThumb, - .t_alt1_SwitchThumb, - .t_alt1_Tooltip, - .t_dark .t_light .t_alt1_ProgressIndicator, - .t_dark .t_light .t_alt1_SliderThumb, - .t_dark .t_light .t_alt1_SwitchThumb, - .t_dark .t_light .t_alt1_Tooltip, - .t_dark .t_light .t_dim_ProgressIndicator, - .t_dark .t_light .t_dim_SliderThumb, - .t_dark .t_light .t_dim_SwitchThumb, - .t_dark .t_light .t_dim_Tooltip, - .t_dim_ProgressIndicator, - .t_dim_SliderThumb, - .t_dim_SwitchThumb, - .t_dim_Tooltip { - --background0: hsla(0, 0%, 0%, 0.5); - --background025: hsla(0, 0%, 0%, 0.75); - --background05: hsla(112, 22%, 0%, 1); - --background075: hsla(96, 16%, 25%, 1); - --color0: hsla(191, 32%, 93%, 1); - --color025: hsla(191, 32%, 99%, 1); - --color05: hsla(180, 20%, 99%, 0.75); - --color075: hsla(180, 20%, 99%, 0.5); - --background: hsla(96, 16%, 25%, 1); - --backgroundHover: hsla(191, 32%, 50%, 1); - --backgroundPress: hsla(191, 32%, 55%, 1); - --backgroundFocus: hsla(191, 32%, 61%, 1); - --color: hsla(191, 32%, 88%, 1); - --colorHover: hsla(191, 32%, 83%, 1); - --colorPress: hsla(191, 32%, 88%, 1); - --colorFocus: hsla(191, 32%, 83%, 1); - --placeholderColor: hsla(191, 32%, 83%, 1); - --borderColor: hsla(191, 32%, 61%, 1); - --borderColorHover: hsla(191, 32%, 66%, 1); - --borderColorFocus: hsla(191, 32%, 72%, 1); - --borderColorPress: hsla(191, 32%, 66%, 1); - } -} - -:root.t_dark .t_light .t_alt1_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_light .t_alt1_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_light .t_dim_SliderTrackActive, -:root.t_dark .t_light .t_dim_SliderTrackActive, -:root.t_light .t_alt1_SliderTrackActive, -:root.t_light .t_dark .t_light .t_alt1_SliderTrackActive, -:root.t_light .t_dark .t_light .t_dim_SliderTrackActive, -:root.t_light .t_dim_SliderTrackActive { - --background0: hsla(112, 22%, 0%, 1); - --background025: hsla(96, 16%, 25%, 1); - --background05: hsla(191, 32%, 50%, 1); - --background075: hsla(191, 32%, 55%, 1); - --color0: hsla(191, 32%, 83%, 1); - --color025: hsla(191, 32%, 88%, 1); - --color05: hsla(191, 32%, 93%, 1); - --color075: hsla(191, 32%, 99%, 1); - --background: hsla(191, 32%, 55%, 1); - --backgroundHover: hsla(191, 32%, 61%, 1); - --backgroundPress: hsla(191, 32%, 66%, 1); - --backgroundFocus: hsla(191, 32%, 72%, 1); - --color: hsla(191, 32%, 88%, 1); - --colorHover: hsla(191, 32%, 83%, 1); - --colorPress: hsla(191, 32%, 88%, 1); - --colorFocus: hsla(191, 32%, 83%, 1); - --placeholderColor: hsla(191, 32%, 72%, 1); - --borderColor: hsla(191, 32%, 72%, 1); - --borderColorHover: hsla(191, 32%, 77%, 1); - --borderColorFocus: hsla(191, 32%, 83%, 1); - --borderColorPress: hsla(191, 32%, 77%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt1_SliderTrackActive, - .t_dark .t_light .t_alt1_SliderTrackActive, - .t_dark .t_light .t_dim_SliderTrackActive, - .t_dim_SliderTrackActive { - --background0: hsla(112, 22%, 0%, 1); - --background025: hsla(96, 16%, 25%, 1); - --background05: hsla(191, 32%, 50%, 1); - --background075: hsla(191, 32%, 55%, 1); - --color0: hsla(191, 32%, 83%, 1); - --color025: hsla(191, 32%, 88%, 1); - --color05: hsla(191, 32%, 93%, 1); - --color075: hsla(191, 32%, 99%, 1); - --background: hsla(191, 32%, 55%, 1); - --backgroundHover: hsla(191, 32%, 61%, 1); - --backgroundPress: hsla(191, 32%, 66%, 1); - --backgroundFocus: hsla(191, 32%, 72%, 1); - --color: hsla(191, 32%, 88%, 1); - --colorHover: hsla(191, 32%, 83%, 1); - --colorPress: hsla(191, 32%, 88%, 1); - --colorFocus: hsla(191, 32%, 83%, 1); - --placeholderColor: hsla(191, 32%, 72%, 1); - --borderColor: hsla(191, 32%, 72%, 1); - --borderColorHover: hsla(191, 32%, 77%, 1); - --borderColorFocus: hsla(191, 32%, 83%, 1); - --borderColorPress: hsla(191, 32%, 77%, 1); - } -} - -:root.t_dark .t_light .t_alt2, -:root.t_dark .t_light .t_dark .t_light .t_alt2, -:root.t_light .t_alt2, -:root.t_light .t_dark .t_light .t_alt2 { - --background0: hsla(180, 20%, 99%, 0.75); - --background025: hsla(191, 32%, 99%, 1); - --background05: hsla(191, 32%, 93%, 1); - --background075: hsla(191, 32%, 88%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(96, 16%, 25%, 1); - --color05: hsla(112, 22%, 0%, 1); - --color075: hsla(0, 0%, 0%, 0.75); - --background: hsla(191, 32%, 88%, 1); - --backgroundHover: hsla(191, 32%, 83%, 1); - --backgroundPress: hsla(191, 32%, 77%, 1); - --backgroundFocus: hsla(191, 32%, 72%, 1); - --color: hsla(191, 32%, 55%, 1); - --colorHover: hsla(191, 32%, 61%, 1); - --colorPress: hsla(191, 32%, 55%, 1); - --colorFocus: hsla(191, 32%, 61%, 1); - --placeholderColor: hsla(191, 32%, 61%, 1); - --borderColor: hsla(191, 32%, 72%, 1); - --borderColorHover: hsla(191, 32%, 66%, 1); - --borderColorFocus: hsla(191, 32%, 61%, 1); - --borderColorPress: hsla(191, 32%, 66%, 1); - --color1: hsla(191, 32%, 88%, 1); - --color2: hsla(191, 32%, 83%, 1); - --color3: hsla(191, 32%, 77%, 1); - --color4: hsla(191, 32%, 72%, 1); - --color5: hsla(191, 32%, 66%, 1); - --color6: hsla(191, 32%, 61%, 1); - --color7: hsla(191, 32%, 55%, 1); - --color8: hsla(191, 32%, 55%, 1); - --color9: hsla(191, 32%, 55%, 1); - --color10: hsla(191, 32%, 55%, 1); - --color11: hsla(191, 32%, 55%, 1); - --color12: hsla(191, 32%, 55%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt2, - .t_dark .t_light .t_alt2 { - --background0: hsla(180, 20%, 99%, 0.75); - --background025: hsla(191, 32%, 99%, 1); - --background05: hsla(191, 32%, 93%, 1); - --background075: hsla(191, 32%, 88%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(96, 16%, 25%, 1); - --color05: hsla(112, 22%, 0%, 1); - --color075: hsla(0, 0%, 0%, 0.75); - --background: hsla(191, 32%, 88%, 1); - --backgroundHover: hsla(191, 32%, 83%, 1); - --backgroundPress: hsla(191, 32%, 77%, 1); - --backgroundFocus: hsla(191, 32%, 72%, 1); - --color: hsla(191, 32%, 55%, 1); - --colorHover: hsla(191, 32%, 61%, 1); - --colorPress: hsla(191, 32%, 55%, 1); - --colorFocus: hsla(191, 32%, 61%, 1); - --placeholderColor: hsla(191, 32%, 61%, 1); - --borderColor: hsla(191, 32%, 72%, 1); - --borderColorHover: hsla(191, 32%, 66%, 1); - --borderColorFocus: hsla(191, 32%, 61%, 1); - --borderColorPress: hsla(191, 32%, 66%, 1); - --color1: hsla(191, 32%, 88%, 1); - --color2: hsla(191, 32%, 83%, 1); - --color3: hsla(191, 32%, 77%, 1); - --color4: hsla(191, 32%, 72%, 1); - --color5: hsla(191, 32%, 66%, 1); - --color6: hsla(191, 32%, 61%, 1); - --color7: hsla(191, 32%, 55%, 1); - --color8: hsla(191, 32%, 55%, 1); - --color9: hsla(191, 32%, 55%, 1); - --color10: hsla(191, 32%, 55%, 1); - --color11: hsla(191, 32%, 55%, 1); - --color12: hsla(191, 32%, 55%, 1); - } -} - -:root.t_dark .t_light .t_alt2_Button, -:root.t_dark .t_light .t_alt2_SliderTrack, -:root.t_dark .t_light .t_alt2_Switch, -:root.t_dark .t_light .t_alt2_TooltipContent, -:root.t_dark .t_light .t_dark .t_light .t_alt2_Button, -:root.t_dark .t_light .t_dark .t_light .t_alt2_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_alt2_Switch, -:root.t_dark .t_light .t_dark .t_light .t_alt2_TooltipContent, -:root.t_dark .t_light .t_dark .t_light .t_disabled_Button, -:root.t_dark .t_light .t_dark .t_light .t_disabled_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_disabled_Switch, -:root.t_dark .t_light .t_dark .t_light .t_disabled_TooltipContent, -:root.t_dark .t_light .t_disabled_Button, -:root.t_dark .t_light .t_disabled_SliderTrack, -:root.t_dark .t_light .t_disabled_Switch, -:root.t_dark .t_light .t_disabled_TooltipContent, -:root.t_light .t_alt2_Button, -:root.t_light .t_alt2_SliderTrack, -:root.t_light .t_alt2_Switch, -:root.t_light .t_alt2_TooltipContent, -:root.t_light .t_dark .t_light .t_alt2_Button, -:root.t_light .t_dark .t_light .t_alt2_SliderTrack, -:root.t_light .t_dark .t_light .t_alt2_Switch, -:root.t_light .t_dark .t_light .t_alt2_TooltipContent, -:root.t_light .t_dark .t_light .t_disabled_Button, -:root.t_light .t_dark .t_light .t_disabled_SliderTrack, -:root.t_light .t_dark .t_light .t_disabled_Switch, -:root.t_light .t_dark .t_light .t_disabled_TooltipContent, -:root.t_light .t_disabled_Button, -:root.t_light .t_disabled_SliderTrack, -:root.t_light .t_disabled_Switch, -:root.t_light .t_disabled_TooltipContent { - --background0: hsla(191, 32%, 93%, 1); - --background025: hsla(191, 32%, 88%, 1); - --background05: hsla(191, 32%, 83%, 1); - --background075: hsla(191, 32%, 77%, 1); - --color0: hsla(191, 32%, 61%, 1); - --color025: hsla(191, 32%, 55%, 1); - --color05: hsla(191, 32%, 50%, 1); - --color075: hsla(96, 16%, 25%, 1); - --background: hsla(191, 32%, 77%, 1); - --backgroundHover: hsla(191, 32%, 72%, 1); - --backgroundPress: hsla(191, 32%, 66%, 1); - --backgroundFocus: hsla(191, 32%, 61%, 1); - --color: hsla(191, 32%, 55%, 1); - --colorHover: hsla(191, 32%, 61%, 1); - --colorPress: hsla(191, 32%, 55%, 1); - --colorFocus: hsla(191, 32%, 61%, 1); - --placeholderColor: hsla(191, 32%, 72%, 1); - --borderColor: hsla(191, 32%, 61%, 1); - --borderColorHover: hsla(191, 32%, 55%, 1); - --borderColorFocus: hsla(191, 32%, 50%, 1); - --borderColorPress: hsla(191, 32%, 55%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt2_Button, - .t_alt2_SliderTrack, - .t_alt2_Switch, - .t_alt2_TooltipContent, - .t_dark .t_light .t_alt2_Button, - .t_dark .t_light .t_alt2_SliderTrack, - .t_dark .t_light .t_alt2_Switch, - .t_dark .t_light .t_alt2_TooltipContent, - .t_dark .t_light .t_disabled_Button, - .t_dark .t_light .t_disabled_SliderTrack, - .t_dark .t_light .t_disabled_Switch, - .t_dark .t_light .t_disabled_TooltipContent, - .t_disabled_Button, - .t_disabled_SliderTrack, - .t_disabled_Switch, - .t_disabled_TooltipContent { - --background0: hsla(191, 32%, 93%, 1); - --background025: hsla(191, 32%, 88%, 1); - --background05: hsla(191, 32%, 83%, 1); - --background075: hsla(191, 32%, 77%, 1); - --color0: hsla(191, 32%, 61%, 1); - --color025: hsla(191, 32%, 55%, 1); - --color05: hsla(191, 32%, 50%, 1); - --color075: hsla(96, 16%, 25%, 1); - --background: hsla(191, 32%, 77%, 1); - --backgroundHover: hsla(191, 32%, 72%, 1); - --backgroundPress: hsla(191, 32%, 66%, 1); - --backgroundFocus: hsla(191, 32%, 61%, 1); - --color: hsla(191, 32%, 55%, 1); - --colorHover: hsla(191, 32%, 61%, 1); - --colorPress: hsla(191, 32%, 55%, 1); - --colorFocus: hsla(191, 32%, 61%, 1); - --placeholderColor: hsla(191, 32%, 72%, 1); - --borderColor: hsla(191, 32%, 61%, 1); - --borderColorHover: hsla(191, 32%, 55%, 1); - --borderColorFocus: hsla(191, 32%, 50%, 1); - --borderColorPress: hsla(191, 32%, 55%, 1); - } -} - -:root.t_dark .t_light .t_alt2_Card, -:root.t_dark .t_light .t_alt2_DrawerFrame, -:root.t_dark .t_light .t_alt2_Progress, -:root.t_dark .t_light .t_alt2_TooltipArrow, -:root.t_dark .t_light .t_dark .t_light .t_alt2_Card, -:root.t_dark .t_light .t_dark .t_light .t_alt2_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_alt2_Progress, -:root.t_dark .t_light .t_dark .t_light .t_alt2_TooltipArrow, -:root.t_dark .t_light .t_dark .t_light .t_disabled_Card, -:root.t_dark .t_light .t_dark .t_light .t_disabled_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_disabled_Progress, -:root.t_dark .t_light .t_dark .t_light .t_disabled_TooltipArrow, -:root.t_dark .t_light .t_disabled_Card, -:root.t_dark .t_light .t_disabled_DrawerFrame, -:root.t_dark .t_light .t_disabled_Progress, -:root.t_dark .t_light .t_disabled_TooltipArrow, -:root.t_light .t_alt2_Card, -:root.t_light .t_alt2_DrawerFrame, -:root.t_light .t_alt2_Progress, -:root.t_light .t_alt2_TooltipArrow, -:root.t_light .t_dark .t_light .t_alt2_Card, -:root.t_light .t_dark .t_light .t_alt2_DrawerFrame, -:root.t_light .t_dark .t_light .t_alt2_Progress, -:root.t_light .t_dark .t_light .t_alt2_TooltipArrow, -:root.t_light .t_dark .t_light .t_disabled_Card, -:root.t_light .t_dark .t_light .t_disabled_DrawerFrame, -:root.t_light .t_dark .t_light .t_disabled_Progress, -:root.t_light .t_dark .t_light .t_disabled_TooltipArrow, -:root.t_light .t_disabled_Card, -:root.t_light .t_disabled_DrawerFrame, -:root.t_light .t_disabled_Progress, -:root.t_light .t_disabled_TooltipArrow { - --background0: hsla(191, 32%, 99%, 1); - --background025: hsla(191, 32%, 93%, 1); - --background05: hsla(191, 32%, 88%, 1); - --background075: hsla(191, 32%, 83%, 1); - --color0: hsla(191, 32%, 55%, 1); - --color025: hsla(191, 32%, 50%, 1); - --color05: hsla(96, 16%, 25%, 1); - --color075: hsla(112, 22%, 0%, 1); - --background: hsla(191, 32%, 83%, 1); - --backgroundHover: hsla(191, 32%, 77%, 1); - --backgroundPress: hsla(191, 32%, 72%, 1); - --backgroundFocus: hsla(191, 32%, 66%, 1); - --color: hsla(191, 32%, 55%, 1); - --colorHover: hsla(191, 32%, 61%, 1); - --colorPress: hsla(191, 32%, 55%, 1); - --colorFocus: hsla(191, 32%, 61%, 1); - --placeholderColor: hsla(191, 32%, 66%, 1); - --borderColor: hsla(191, 32%, 66%, 1); - --borderColorHover: hsla(191, 32%, 61%, 1); - --borderColorFocus: hsla(191, 32%, 55%, 1); - --borderColorPress: hsla(191, 32%, 61%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt2_Card, - .t_alt2_DrawerFrame, - .t_alt2_Progress, - .t_alt2_TooltipArrow, - .t_dark .t_light .t_alt2_Card, - .t_dark .t_light .t_alt2_DrawerFrame, - .t_dark .t_light .t_alt2_Progress, - .t_dark .t_light .t_alt2_TooltipArrow, - .t_dark .t_light .t_disabled_Card, - .t_dark .t_light .t_disabled_DrawerFrame, - .t_dark .t_light .t_disabled_Progress, - .t_dark .t_light .t_disabled_TooltipArrow, - .t_disabled_Card, - .t_disabled_DrawerFrame, - .t_disabled_Progress, - .t_disabled_TooltipArrow { - --background0: hsla(191, 32%, 99%, 1); - --background025: hsla(191, 32%, 93%, 1); - --background05: hsla(191, 32%, 88%, 1); - --background075: hsla(191, 32%, 83%, 1); - --color0: hsla(191, 32%, 55%, 1); - --color025: hsla(191, 32%, 50%, 1); - --color05: hsla(96, 16%, 25%, 1); - --color075: hsla(112, 22%, 0%, 1); - --background: hsla(191, 32%, 83%, 1); - --backgroundHover: hsla(191, 32%, 77%, 1); - --backgroundPress: hsla(191, 32%, 72%, 1); - --backgroundFocus: hsla(191, 32%, 66%, 1); - --color: hsla(191, 32%, 55%, 1); - --colorHover: hsla(191, 32%, 61%, 1); - --colorPress: hsla(191, 32%, 55%, 1); - --colorFocus: hsla(191, 32%, 61%, 1); - --placeholderColor: hsla(191, 32%, 66%, 1); - --borderColor: hsla(191, 32%, 66%, 1); - --borderColorHover: hsla(191, 32%, 61%, 1); - --borderColorFocus: hsla(191, 32%, 55%, 1); - --borderColorPress: hsla(191, 32%, 61%, 1); - } -} - -:root.t_dark .t_light .t_alt2_Checkbox, -:root.t_dark .t_light .t_alt2_Input, -:root.t_dark .t_light .t_alt2_RadioGroupItem, -:root.t_dark .t_light .t_alt2_TextArea, -:root.t_dark .t_light .t_dark .t_light .t_alt2_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_alt2_Input, -:root.t_dark .t_light .t_dark .t_light .t_alt2_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_alt2_TextArea, -:root.t_dark .t_light .t_dark .t_light .t_disabled_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_disabled_Input, -:root.t_dark .t_light .t_dark .t_light .t_disabled_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_disabled_TextArea, -:root.t_dark .t_light .t_disabled_Checkbox, -:root.t_dark .t_light .t_disabled_Input, -:root.t_dark .t_light .t_disabled_RadioGroupItem, -:root.t_dark .t_light .t_disabled_TextArea, -:root.t_light .t_alt2_Checkbox, -:root.t_light .t_alt2_Input, -:root.t_light .t_alt2_RadioGroupItem, -:root.t_light .t_alt2_TextArea, -:root.t_light .t_dark .t_light .t_alt2_Checkbox, -:root.t_light .t_dark .t_light .t_alt2_Input, -:root.t_light .t_dark .t_light .t_alt2_RadioGroupItem, -:root.t_light .t_dark .t_light .t_alt2_TextArea, -:root.t_light .t_dark .t_light .t_disabled_Checkbox, -:root.t_light .t_dark .t_light .t_disabled_Input, -:root.t_light .t_dark .t_light .t_disabled_RadioGroupItem, -:root.t_light .t_dark .t_light .t_disabled_TextArea, -:root.t_light .t_disabled_Checkbox, -:root.t_light .t_disabled_Input, -:root.t_light .t_disabled_RadioGroupItem, -:root.t_light .t_disabled_TextArea { - --background0: hsla(180, 20%, 99%, 0.75); - --background025: hsla(191, 32%, 99%, 1); - --background05: hsla(191, 32%, 93%, 1); - --background075: hsla(191, 32%, 88%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(96, 16%, 25%, 1); - --color05: hsla(112, 22%, 0%, 1); - --color075: hsla(0, 0%, 0%, 0.75); - --background: hsla(191, 32%, 88%, 1); - --backgroundHover: hsla(191, 32%, 83%, 1); - --backgroundPress: hsla(191, 32%, 77%, 1); - --backgroundFocus: hsla(191, 32%, 72%, 1); - --color: hsla(191, 32%, 55%, 1); - --colorHover: hsla(191, 32%, 61%, 1); - --colorPress: hsla(191, 32%, 55%, 1); - --colorFocus: hsla(191, 32%, 61%, 1); - --placeholderColor: hsla(191, 32%, 61%, 1); - --borderColor: hsla(191, 32%, 61%, 1); - --borderColorHover: hsla(191, 32%, 55%, 1); - --borderColorFocus: hsla(191, 32%, 50%, 1); - --borderColorPress: hsla(191, 32%, 55%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt2_Checkbox, - .t_alt2_Input, - .t_alt2_RadioGroupItem, - .t_alt2_TextArea, - .t_dark .t_light .t_alt2_Checkbox, - .t_dark .t_light .t_alt2_Input, - .t_dark .t_light .t_alt2_RadioGroupItem, - .t_dark .t_light .t_alt2_TextArea, - .t_dark .t_light .t_disabled_Checkbox, - .t_dark .t_light .t_disabled_Input, - .t_dark .t_light .t_disabled_RadioGroupItem, - .t_dark .t_light .t_disabled_TextArea, - .t_disabled_Checkbox, - .t_disabled_Input, - .t_disabled_RadioGroupItem, - .t_disabled_TextArea { - --background0: hsla(180, 20%, 99%, 0.75); - --background025: hsla(191, 32%, 99%, 1); - --background05: hsla(191, 32%, 93%, 1); - --background075: hsla(191, 32%, 88%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(96, 16%, 25%, 1); - --color05: hsla(112, 22%, 0%, 1); - --color075: hsla(0, 0%, 0%, 0.75); - --background: hsla(191, 32%, 88%, 1); - --backgroundHover: hsla(191, 32%, 83%, 1); - --backgroundPress: hsla(191, 32%, 77%, 1); - --backgroundFocus: hsla(191, 32%, 72%, 1); - --color: hsla(191, 32%, 55%, 1); - --colorHover: hsla(191, 32%, 61%, 1); - --colorPress: hsla(191, 32%, 55%, 1); - --colorFocus: hsla(191, 32%, 61%, 1); - --placeholderColor: hsla(191, 32%, 61%, 1); - --borderColor: hsla(191, 32%, 61%, 1); - --borderColorHover: hsla(191, 32%, 55%, 1); - --borderColorFocus: hsla(191, 32%, 50%, 1); - --borderColorPress: hsla(191, 32%, 55%, 1); - } -} - -:root.t_dark .t_light .t_alt2_ProgressIndicator, -:root.t_dark .t_light .t_alt2_SliderThumb, -:root.t_dark .t_light .t_alt2_SwitchThumb, -:root.t_dark .t_light .t_alt2_Tooltip, -:root.t_dark .t_light .t_dark .t_light .t_alt2_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_alt2_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_alt2_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_alt2_Tooltip, -:root.t_dark .t_light .t_dark .t_light .t_disabled_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_disabled_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_disabled_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_disabled_Tooltip, -:root.t_dark .t_light .t_disabled_ProgressIndicator, -:root.t_dark .t_light .t_disabled_SliderThumb, -:root.t_dark .t_light .t_disabled_SwitchThumb, -:root.t_dark .t_light .t_disabled_Tooltip, -:root.t_light .t_alt2_ProgressIndicator, -:root.t_light .t_alt2_SliderThumb, -:root.t_light .t_alt2_SwitchThumb, -:root.t_light .t_alt2_Tooltip, -:root.t_light .t_dark .t_light .t_alt2_ProgressIndicator, -:root.t_light .t_dark .t_light .t_alt2_SliderThumb, -:root.t_light .t_dark .t_light .t_alt2_SwitchThumb, -:root.t_light .t_dark .t_light .t_alt2_Tooltip, -:root.t_light .t_dark .t_light .t_disabled_ProgressIndicator, -:root.t_light .t_dark .t_light .t_disabled_SliderThumb, -:root.t_light .t_dark .t_light .t_disabled_SwitchThumb, -:root.t_light .t_dark .t_light .t_disabled_Tooltip, -:root.t_light .t_disabled_ProgressIndicator, -:root.t_light .t_disabled_SliderThumb, -:root.t_light .t_disabled_SwitchThumb, -:root.t_light .t_disabled_Tooltip { - --background0: hsla(0, 0%, 0%, 0.75); - --background025: hsla(112, 22%, 0%, 1); - --background05: hsla(96, 16%, 25%, 1); - --background075: hsla(191, 32%, 50%, 1); - --color0: hsla(191, 32%, 88%, 1); - --color025: hsla(191, 32%, 93%, 1); - --color05: hsla(191, 32%, 99%, 1); - --color075: hsla(180, 20%, 99%, 0.75); - --background: hsla(191, 32%, 50%, 1); - --backgroundHover: hsla(191, 32%, 55%, 1); - --backgroundPress: hsla(191, 32%, 61%, 1); - --backgroundFocus: hsla(191, 32%, 66%, 1); - --color: hsla(191, 32%, 83%, 1); - --colorHover: hsla(191, 32%, 77%, 1); - --colorPress: hsla(191, 32%, 83%, 1); - --colorFocus: hsla(191, 32%, 77%, 1); - --placeholderColor: hsla(191, 32%, 77%, 1); - --borderColor: hsla(191, 32%, 66%, 1); - --borderColorHover: hsla(191, 32%, 72%, 1); - --borderColorFocus: hsla(191, 32%, 77%, 1); - --borderColorPress: hsla(191, 32%, 72%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt2_ProgressIndicator, - .t_alt2_SliderThumb, - .t_alt2_SwitchThumb, - .t_alt2_Tooltip, - .t_dark .t_light .t_alt2_ProgressIndicator, - .t_dark .t_light .t_alt2_SliderThumb, - .t_dark .t_light .t_alt2_SwitchThumb, - .t_dark .t_light .t_alt2_Tooltip, - .t_dark .t_light .t_disabled_ProgressIndicator, - .t_dark .t_light .t_disabled_SliderThumb, - .t_dark .t_light .t_disabled_SwitchThumb, - .t_dark .t_light .t_disabled_Tooltip, - .t_disabled_ProgressIndicator, - .t_disabled_SliderThumb, - .t_disabled_SwitchThumb, - .t_disabled_Tooltip { - --background0: hsla(0, 0%, 0%, 0.75); - --background025: hsla(112, 22%, 0%, 1); - --background05: hsla(96, 16%, 25%, 1); - --background075: hsla(191, 32%, 50%, 1); - --color0: hsla(191, 32%, 88%, 1); - --color025: hsla(191, 32%, 93%, 1); - --color05: hsla(191, 32%, 99%, 1); - --color075: hsla(180, 20%, 99%, 0.75); - --background: hsla(191, 32%, 50%, 1); - --backgroundHover: hsla(191, 32%, 55%, 1); - --backgroundPress: hsla(191, 32%, 61%, 1); - --backgroundFocus: hsla(191, 32%, 66%, 1); - --color: hsla(191, 32%, 83%, 1); - --colorHover: hsla(191, 32%, 77%, 1); - --colorPress: hsla(191, 32%, 83%, 1); - --colorFocus: hsla(191, 32%, 77%, 1); - --placeholderColor: hsla(191, 32%, 77%, 1); - --borderColor: hsla(191, 32%, 66%, 1); - --borderColorHover: hsla(191, 32%, 72%, 1); - --borderColorFocus: hsla(191, 32%, 77%, 1); - --borderColorPress: hsla(191, 32%, 72%, 1); - } -} - -:root.t_dark .t_light .t_alt2_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_light .t_alt2_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_light .t_disabled_SliderTrackActive, -:root.t_dark .t_light .t_disabled_SliderTrackActive, -:root.t_light .t_alt2_SliderTrackActive, -:root.t_light .t_dark .t_light .t_alt2_SliderTrackActive, -:root.t_light .t_dark .t_light .t_disabled_SliderTrackActive, -:root.t_light .t_disabled_SliderTrackActive { - --background0: hsla(96, 16%, 25%, 1); - --background025: hsla(191, 32%, 50%, 1); - --background05: hsla(191, 32%, 55%, 1); - --background075: hsla(191, 32%, 61%, 1); - --color0: hsla(191, 32%, 77%, 1); - --color025: hsla(191, 32%, 83%, 1); - --color05: hsla(191, 32%, 88%, 1); - --color075: hsla(191, 32%, 93%, 1); - --background: hsla(191, 32%, 61%, 1); - --backgroundHover: hsla(191, 32%, 66%, 1); - --backgroundPress: hsla(191, 32%, 72%, 1); - --backgroundFocus: hsla(191, 32%, 77%, 1); - --color: hsla(191, 32%, 83%, 1); - --colorHover: hsla(191, 32%, 77%, 1); - --colorPress: hsla(191, 32%, 83%, 1); - --colorFocus: hsla(191, 32%, 77%, 1); - --placeholderColor: hsla(191, 32%, 66%, 1); - --borderColor: hsla(191, 32%, 77%, 1); - --borderColorHover: hsla(191, 32%, 83%, 1); - --borderColorFocus: hsla(191, 32%, 88%, 1); - --borderColorPress: hsla(191, 32%, 83%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_alt2_SliderTrackActive, - .t_dark .t_light .t_alt2_SliderTrackActive, - .t_dark .t_light .t_disabled_SliderTrackActive, - .t_disabled_SliderTrackActive { - --background0: hsla(96, 16%, 25%, 1); - --background025: hsla(191, 32%, 50%, 1); - --background05: hsla(191, 32%, 55%, 1); - --background075: hsla(191, 32%, 61%, 1); - --color0: hsla(191, 32%, 77%, 1); - --color025: hsla(191, 32%, 83%, 1); - --color05: hsla(191, 32%, 88%, 1); - --color075: hsla(191, 32%, 93%, 1); - --background: hsla(191, 32%, 61%, 1); - --backgroundHover: hsla(191, 32%, 66%, 1); - --backgroundPress: hsla(191, 32%, 72%, 1); - --backgroundFocus: hsla(191, 32%, 77%, 1); - --color: hsla(191, 32%, 83%, 1); - --colorHover: hsla(191, 32%, 77%, 1); - --colorPress: hsla(191, 32%, 83%, 1); - --colorFocus: hsla(191, 32%, 77%, 1); - --placeholderColor: hsla(191, 32%, 66%, 1); - --borderColor: hsla(191, 32%, 77%, 1); - --borderColorHover: hsla(191, 32%, 83%, 1); - --borderColorFocus: hsla(191, 32%, 88%, 1); - --borderColorPress: hsla(191, 32%, 83%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_dim, -:root.t_dark .t_light .t_dim, -:root.t_light .t_dark .t_light .t_dim, -:root.t_light .t_dim { - --background0: hsla(180, 20%, 99%, 0.5); - --background025: hsla(180, 20%, 99%, 0.75); - --background05: hsla(191, 32%, 99%, 1); - --background075: hsla(191, 32%, 93%, 1); - --color0: hsla(96, 16%, 25%, 1); - --color025: hsla(112, 22%, 0%, 1); - --color05: hsla(0, 0%, 0%, 0.75); - --color075: hsla(0, 0%, 0%, 0.5); - --background: hsla(191, 32%, 93%, 1); - --backgroundHover: hsla(191, 32%, 88%, 1); - --backgroundPress: hsla(191, 32%, 83%, 1); - --backgroundFocus: hsla(191, 32%, 77%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 55%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 55%, 1); - --placeholderColor: hsla(191, 32%, 55%, 1); - --borderColor: hsla(191, 32%, 77%, 1); - --borderColorHover: hsla(191, 32%, 72%, 1); - --borderColorFocus: hsla(191, 32%, 66%, 1); - --borderColorPress: hsla(191, 32%, 72%, 1); - --color1: hsla(191, 32%, 93%, 1); - --color2: hsla(191, 32%, 88%, 1); - --color3: hsla(191, 32%, 83%, 1); - --color4: hsla(191, 32%, 77%, 1); - --color5: hsla(191, 32%, 72%, 1); - --color6: hsla(191, 32%, 66%, 1); - --color7: hsla(191, 32%, 61%, 1); - --color8: hsla(191, 32%, 55%, 1); - --color9: hsla(191, 32%, 50%, 1); - --color10: hsla(96, 16%, 25%, 1); - --color11: hsla(112, 22%, 0%, 1); - --color12: hsla(0, 0%, 0%, 0.75); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_dim, - .t_dim { - --background0: hsla(180, 20%, 99%, 0.5); - --background025: hsla(180, 20%, 99%, 0.75); - --background05: hsla(191, 32%, 99%, 1); - --background075: hsla(191, 32%, 93%, 1); - --color0: hsla(96, 16%, 25%, 1); - --color025: hsla(112, 22%, 0%, 1); - --color05: hsla(0, 0%, 0%, 0.75); - --color075: hsla(0, 0%, 0%, 0.5); - --background: hsla(191, 32%, 93%, 1); - --backgroundHover: hsla(191, 32%, 88%, 1); - --backgroundPress: hsla(191, 32%, 83%, 1); - --backgroundFocus: hsla(191, 32%, 77%, 1); - --color: hsla(191, 32%, 50%, 1); - --colorHover: hsla(191, 32%, 55%, 1); - --colorPress: hsla(191, 32%, 50%, 1); - --colorFocus: hsla(191, 32%, 55%, 1); - --placeholderColor: hsla(191, 32%, 55%, 1); - --borderColor: hsla(191, 32%, 77%, 1); - --borderColorHover: hsla(191, 32%, 72%, 1); - --borderColorFocus: hsla(191, 32%, 66%, 1); - --borderColorPress: hsla(191, 32%, 72%, 1); - --color1: hsla(191, 32%, 93%, 1); - --color2: hsla(191, 32%, 88%, 1); - --color3: hsla(191, 32%, 83%, 1); - --color4: hsla(191, 32%, 77%, 1); - --color5: hsla(191, 32%, 72%, 1); - --color6: hsla(191, 32%, 66%, 1); - --color7: hsla(191, 32%, 61%, 1); - --color8: hsla(191, 32%, 55%, 1); - --color9: hsla(191, 32%, 50%, 1); - --color10: hsla(96, 16%, 25%, 1); - --color11: hsla(112, 22%, 0%, 1); - --color12: hsla(0, 0%, 0%, 0.75); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_disabled, -:root.t_dark .t_light .t_disabled, -:root.t_light .t_dark .t_light .t_disabled, -:root.t_light .t_disabled { - --background0: hsla(180, 20%, 99%, 0.75); - --background025: hsla(191, 32%, 99%, 1); - --background05: hsla(191, 32%, 93%, 1); - --background075: hsla(191, 32%, 88%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(96, 16%, 25%, 1); - --color05: hsla(112, 22%, 0%, 1); - --color075: hsla(0, 0%, 0%, 0.75); - --background: hsla(191, 32%, 88%, 1); - --backgroundHover: hsla(191, 32%, 83%, 1); - --backgroundPress: hsla(191, 32%, 77%, 1); - --backgroundFocus: hsla(191, 32%, 72%, 1); - --color: hsla(191, 32%, 55%, 1); - --colorHover: hsla(191, 32%, 61%, 1); - --colorPress: hsla(191, 32%, 55%, 1); - --colorFocus: hsla(191, 32%, 61%, 1); - --placeholderColor: hsla(191, 32%, 61%, 1); - --borderColor: hsla(191, 32%, 72%, 1); - --borderColorHover: hsla(191, 32%, 66%, 1); - --borderColorFocus: hsla(191, 32%, 61%, 1); - --borderColorPress: hsla(191, 32%, 66%, 1); - --color1: hsla(191, 32%, 88%, 1); - --color2: hsla(191, 32%, 83%, 1); - --color3: hsla(191, 32%, 77%, 1); - --color4: hsla(191, 32%, 72%, 1); - --color5: hsla(191, 32%, 66%, 1); - --color6: hsla(191, 32%, 61%, 1); - --color7: hsla(191, 32%, 55%, 1); - --color8: hsla(191, 32%, 50%, 1); - --color9: hsla(96, 16%, 25%, 1); - --color10: hsla(112, 22%, 0%, 1); - --color11: hsla(0, 0%, 0%, 0.75); - --color12: hsla(0, 0%, 0%, 0.5); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_disabled, - .t_disabled { - --background0: hsla(180, 20%, 99%, 0.75); - --background025: hsla(191, 32%, 99%, 1); - --background05: hsla(191, 32%, 93%, 1); - --background075: hsla(191, 32%, 88%, 1); - --color0: hsla(191, 32%, 50%, 1); - --color025: hsla(96, 16%, 25%, 1); - --color05: hsla(112, 22%, 0%, 1); - --color075: hsla(0, 0%, 0%, 0.75); - --background: hsla(191, 32%, 88%, 1); - --backgroundHover: hsla(191, 32%, 83%, 1); - --backgroundPress: hsla(191, 32%, 77%, 1); - --backgroundFocus: hsla(191, 32%, 72%, 1); - --color: hsla(191, 32%, 55%, 1); - --colorHover: hsla(191, 32%, 61%, 1); - --colorPress: hsla(191, 32%, 55%, 1); - --colorFocus: hsla(191, 32%, 61%, 1); - --placeholderColor: hsla(191, 32%, 61%, 1); - --borderColor: hsla(191, 32%, 72%, 1); - --borderColorHover: hsla(191, 32%, 66%, 1); - --borderColorFocus: hsla(191, 32%, 61%, 1); - --borderColorPress: hsla(191, 32%, 66%, 1); - --color1: hsla(191, 32%, 88%, 1); - --color2: hsla(191, 32%, 83%, 1); - --color3: hsla(191, 32%, 77%, 1); - --color4: hsla(191, 32%, 72%, 1); - --color5: hsla(191, 32%, 66%, 1); - --color6: hsla(191, 32%, 61%, 1); - --color7: hsla(191, 32%, 55%, 1); - --color8: hsla(191, 32%, 50%, 1); - --color9: hsla(96, 16%, 25%, 1); - --color10: hsla(112, 22%, 0%, 1); - --color11: hsla(0, 0%, 0%, 0.75); - --color12: hsla(0, 0%, 0%, 0.5); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_error, -:root.t_dark .t_light .t_dark .t_light .t_red, -:root.t_dark .t_light .t_error, -:root.t_dark .t_light .t_red, -:root.t_light .t_dark .t_light .t_error, -:root.t_light .t_dark .t_light .t_red, -:root.t_light .t_error, -:root.t_light .t_red { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(0, 60%, 99%, 0.25); - --background025: hsla(0, 60%, 99%, 0.5); - --background05: hsla(0, 60%, 99%, 0.75); - --background075: hsla(0, 70%, 99%, 1); - --color0: hsla(0, 70%, 10%, 1); - --color025: hsla(0, 69%, 10%, 0.75); - --color05: hsla(0, 69%, 10%, 0.5); - --color075: hsla(0, 69%, 10%, 0.25); - --background: hsla(0, 70%, 99%, 1); - --backgroundHover: hsla(0, 70%, 93%, 1); - --backgroundPress: hsla(0, 70%, 88%, 1); - --backgroundFocus: hsla(0, 70%, 82%, 1); - --color: hsla(0, 70%, 15%, 1); - --colorHover: hsla(0, 70%, 50%, 1); - --colorPress: hsla(0, 70%, 15%, 1); - --colorFocus: hsla(0, 70%, 50%, 1); - --placeholderColor: hsla(0, 70%, 50%, 1); - --borderColor: hsla(0, 70%, 82%, 1); - --borderColorHover: hsla(0, 70%, 77%, 1); - --borderColorFocus: hsla(0, 70%, 72%, 1); - --borderColorPress: hsla(0, 70%, 77%, 1); - --color1: hsla(0, 70%, 99%, 1); - --color2: hsla(0, 70%, 93%, 1); - --color3: hsla(0, 70%, 88%, 1); - --color4: hsla(0, 70%, 82%, 1); - --color5: hsla(0, 70%, 77%, 1); - --color6: hsla(0, 70%, 72%, 1); - --color7: hsla(0, 70%, 66%, 1); - --color8: hsla(0, 70%, 61%, 1); - --color9: hsla(0, 70%, 55%, 1); - --color10: hsla(0, 70%, 50%, 1); - --color11: hsla(0, 70%, 15%, 1); - --color12: hsla(0, 70%, 10%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_error, - .t_dark .t_light .t_red, - .t_error, - .t_red { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(0, 60%, 99%, 0.25); - --background025: hsla(0, 60%, 99%, 0.5); - --background05: hsla(0, 60%, 99%, 0.75); - --background075: hsla(0, 70%, 99%, 1); - --color0: hsla(0, 70%, 10%, 1); - --color025: hsla(0, 69%, 10%, 0.75); - --color05: hsla(0, 69%, 10%, 0.5); - --color075: hsla(0, 69%, 10%, 0.25); - --background: hsla(0, 70%, 99%, 1); - --backgroundHover: hsla(0, 70%, 93%, 1); - --backgroundPress: hsla(0, 70%, 88%, 1); - --backgroundFocus: hsla(0, 70%, 82%, 1); - --color: hsla(0, 70%, 15%, 1); - --colorHover: hsla(0, 70%, 50%, 1); - --colorPress: hsla(0, 70%, 15%, 1); - --colorFocus: hsla(0, 70%, 50%, 1); - --placeholderColor: hsla(0, 70%, 50%, 1); - --borderColor: hsla(0, 70%, 82%, 1); - --borderColorHover: hsla(0, 70%, 77%, 1); - --borderColorFocus: hsla(0, 70%, 72%, 1); - --borderColorPress: hsla(0, 70%, 77%, 1); - --color1: hsla(0, 70%, 99%, 1); - --color2: hsla(0, 70%, 93%, 1); - --color3: hsla(0, 70%, 88%, 1); - --color4: hsla(0, 70%, 82%, 1); - --color5: hsla(0, 70%, 77%, 1); - --color6: hsla(0, 70%, 72%, 1); - --color7: hsla(0, 70%, 66%, 1); - --color8: hsla(0, 70%, 61%, 1); - --color9: hsla(0, 70%, 55%, 1); - --color10: hsla(0, 70%, 50%, 1); - --color11: hsla(0, 70%, 15%, 1); - --color12: hsla(0, 70%, 10%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_error_Button, -:root.t_dark .t_light .t_dark .t_light .t_error_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_error_Switch, -:root.t_dark .t_light .t_dark .t_light .t_error_TooltipContent, -:root.t_dark .t_light .t_dark .t_light .t_red_Button, -:root.t_dark .t_light .t_dark .t_light .t_red_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_red_Switch, -:root.t_dark .t_light .t_dark .t_light .t_red_TooltipContent, -:root.t_dark .t_light .t_error_Button, -:root.t_dark .t_light .t_error_SliderTrack, -:root.t_dark .t_light .t_error_Switch, -:root.t_dark .t_light .t_error_TooltipContent, -:root.t_dark .t_light .t_red_Button, -:root.t_dark .t_light .t_red_SliderTrack, -:root.t_dark .t_light .t_red_Switch, -:root.t_dark .t_light .t_red_TooltipContent, -:root.t_light .t_dark .t_light .t_error_Button, -:root.t_light .t_dark .t_light .t_error_SliderTrack, -:root.t_light .t_dark .t_light .t_error_Switch, -:root.t_light .t_dark .t_light .t_error_TooltipContent, -:root.t_light .t_dark .t_light .t_red_Button, -:root.t_light .t_dark .t_light .t_red_SliderTrack, -:root.t_light .t_dark .t_light .t_red_Switch, -:root.t_light .t_dark .t_light .t_red_TooltipContent, -:root.t_light .t_error_Button, -:root.t_light .t_error_SliderTrack, -:root.t_light .t_error_Switch, -:root.t_light .t_error_TooltipContent, -:root.t_light .t_red_Button, -:root.t_light .t_red_SliderTrack, -:root.t_light .t_red_Switch, -:root.t_light .t_red_TooltipContent { - --background0: hsla(0, 60%, 99%, 0.75); - --background025: hsla(0, 70%, 99%, 1); - --background05: hsla(0, 70%, 93%, 1); - --background075: hsla(0, 70%, 88%, 1); - --color0: hsla(0, 70%, 50%, 1); - --color025: hsla(0, 70%, 15%, 1); - --color05: hsla(0, 70%, 10%, 1); - --color075: hsla(0, 69%, 10%, 0.75); - --background: hsla(0, 70%, 88%, 1); - --backgroundHover: hsla(0, 70%, 82%, 1); - --backgroundPress: hsla(0, 70%, 77%, 1); - --backgroundFocus: hsla(0, 70%, 72%, 1); - --color: hsla(0, 70%, 15%, 1); - --colorHover: hsla(0, 70%, 50%, 1); - --colorPress: hsla(0, 70%, 15%, 1); - --colorFocus: hsla(0, 70%, 50%, 1); - --placeholderColor: hsla(0, 70%, 61%, 1); - --borderColor: hsla(0, 70%, 72%, 1); - --borderColorHover: hsla(0, 70%, 66%, 1); - --borderColorFocus: hsla(0, 70%, 61%, 1); - --borderColorPress: hsla(0, 70%, 66%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_error_Button, - .t_dark .t_light .t_error_SliderTrack, - .t_dark .t_light .t_error_Switch, - .t_dark .t_light .t_error_TooltipContent, - .t_dark .t_light .t_red_Button, - .t_dark .t_light .t_red_SliderTrack, - .t_dark .t_light .t_red_Switch, - .t_dark .t_light .t_red_TooltipContent, - .t_error_Button, - .t_error_SliderTrack, - .t_error_Switch, - .t_error_TooltipContent, - .t_red_Button, - .t_red_SliderTrack, - .t_red_Switch, - .t_red_TooltipContent { - --background0: hsla(0, 60%, 99%, 0.75); - --background025: hsla(0, 70%, 99%, 1); - --background05: hsla(0, 70%, 93%, 1); - --background075: hsla(0, 70%, 88%, 1); - --color0: hsla(0, 70%, 50%, 1); - --color025: hsla(0, 70%, 15%, 1); - --color05: hsla(0, 70%, 10%, 1); - --color075: hsla(0, 69%, 10%, 0.75); - --background: hsla(0, 70%, 88%, 1); - --backgroundHover: hsla(0, 70%, 82%, 1); - --backgroundPress: hsla(0, 70%, 77%, 1); - --backgroundFocus: hsla(0, 70%, 72%, 1); - --color: hsla(0, 70%, 15%, 1); - --colorHover: hsla(0, 70%, 50%, 1); - --colorPress: hsla(0, 70%, 15%, 1); - --colorFocus: hsla(0, 70%, 50%, 1); - --placeholderColor: hsla(0, 70%, 61%, 1); - --borderColor: hsla(0, 70%, 72%, 1); - --borderColorHover: hsla(0, 70%, 66%, 1); - --borderColorFocus: hsla(0, 70%, 61%, 1); - --borderColorPress: hsla(0, 70%, 66%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_error_Card, -:root.t_dark .t_light .t_dark .t_light .t_error_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_error_Progress, -:root.t_dark .t_light .t_dark .t_light .t_error_TooltipArrow, -:root.t_dark .t_light .t_dark .t_light .t_red_Card, -:root.t_dark .t_light .t_dark .t_light .t_red_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_red_Progress, -:root.t_dark .t_light .t_dark .t_light .t_red_TooltipArrow, -:root.t_dark .t_light .t_error_Card, -:root.t_dark .t_light .t_error_DrawerFrame, -:root.t_dark .t_light .t_error_Progress, -:root.t_dark .t_light .t_error_TooltipArrow, -:root.t_dark .t_light .t_red_Card, -:root.t_dark .t_light .t_red_DrawerFrame, -:root.t_dark .t_light .t_red_Progress, -:root.t_dark .t_light .t_red_TooltipArrow, -:root.t_light .t_dark .t_light .t_error_Card, -:root.t_light .t_dark .t_light .t_error_DrawerFrame, -:root.t_light .t_dark .t_light .t_error_Progress, -:root.t_light .t_dark .t_light .t_error_TooltipArrow, -:root.t_light .t_dark .t_light .t_red_Card, -:root.t_light .t_dark .t_light .t_red_DrawerFrame, -:root.t_light .t_dark .t_light .t_red_Progress, -:root.t_light .t_dark .t_light .t_red_TooltipArrow, -:root.t_light .t_error_Card, -:root.t_light .t_error_DrawerFrame, -:root.t_light .t_error_Progress, -:root.t_light .t_error_TooltipArrow, -:root.t_light .t_red_Card, -:root.t_light .t_red_DrawerFrame, -:root.t_light .t_red_Progress, -:root.t_light .t_red_TooltipArrow { - --background0: hsla(0, 60%, 99%, 0.5); - --background025: hsla(0, 60%, 99%, 0.75); - --background05: hsla(0, 70%, 99%, 1); - --background075: hsla(0, 70%, 93%, 1); - --color0: hsla(0, 70%, 15%, 1); - --color025: hsla(0, 70%, 10%, 1); - --color05: hsla(0, 69%, 10%, 0.75); - --color075: hsla(0, 69%, 10%, 0.5); - --background: hsla(0, 70%, 93%, 1); - --backgroundHover: hsla(0, 70%, 88%, 1); - --backgroundPress: hsla(0, 70%, 82%, 1); - --backgroundFocus: hsla(0, 70%, 77%, 1); - --color: hsla(0, 70%, 15%, 1); - --colorHover: hsla(0, 70%, 50%, 1); - --colorPress: hsla(0, 70%, 15%, 1); - --colorFocus: hsla(0, 70%, 50%, 1); - --placeholderColor: hsla(0, 70%, 55%, 1); - --borderColor: hsla(0, 70%, 77%, 1); - --borderColorHover: hsla(0, 70%, 72%, 1); - --borderColorFocus: hsla(0, 70%, 66%, 1); - --borderColorPress: hsla(0, 70%, 72%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_error_Card, - .t_dark .t_light .t_error_DrawerFrame, - .t_dark .t_light .t_error_Progress, - .t_dark .t_light .t_error_TooltipArrow, - .t_dark .t_light .t_red_Card, - .t_dark .t_light .t_red_DrawerFrame, - .t_dark .t_light .t_red_Progress, - .t_dark .t_light .t_red_TooltipArrow, - .t_error_Card, - .t_error_DrawerFrame, - .t_error_Progress, - .t_error_TooltipArrow, - .t_red_Card, - .t_red_DrawerFrame, - .t_red_Progress, - .t_red_TooltipArrow { - --background0: hsla(0, 60%, 99%, 0.5); - --background025: hsla(0, 60%, 99%, 0.75); - --background05: hsla(0, 70%, 99%, 1); - --background075: hsla(0, 70%, 93%, 1); - --color0: hsla(0, 70%, 15%, 1); - --color025: hsla(0, 70%, 10%, 1); - --color05: hsla(0, 69%, 10%, 0.75); - --color075: hsla(0, 69%, 10%, 0.5); - --background: hsla(0, 70%, 93%, 1); - --backgroundHover: hsla(0, 70%, 88%, 1); - --backgroundPress: hsla(0, 70%, 82%, 1); - --backgroundFocus: hsla(0, 70%, 77%, 1); - --color: hsla(0, 70%, 15%, 1); - --colorHover: hsla(0, 70%, 50%, 1); - --colorPress: hsla(0, 70%, 15%, 1); - --colorFocus: hsla(0, 70%, 50%, 1); - --placeholderColor: hsla(0, 70%, 55%, 1); - --borderColor: hsla(0, 70%, 77%, 1); - --borderColorHover: hsla(0, 70%, 72%, 1); - --borderColorFocus: hsla(0, 70%, 66%, 1); - --borderColorPress: hsla(0, 70%, 72%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_error_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_error_Input, -:root.t_dark .t_light .t_dark .t_light .t_error_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_error_TextArea, -:root.t_dark .t_light .t_dark .t_light .t_red_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_red_Input, -:root.t_dark .t_light .t_dark .t_light .t_red_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_red_TextArea, -:root.t_dark .t_light .t_error_Checkbox, -:root.t_dark .t_light .t_error_Input, -:root.t_dark .t_light .t_error_RadioGroupItem, -:root.t_dark .t_light .t_error_TextArea, -:root.t_dark .t_light .t_red_Checkbox, -:root.t_dark .t_light .t_red_Input, -:root.t_dark .t_light .t_red_RadioGroupItem, -:root.t_dark .t_light .t_red_TextArea, -:root.t_light .t_dark .t_light .t_error_Checkbox, -:root.t_light .t_dark .t_light .t_error_Input, -:root.t_light .t_dark .t_light .t_error_RadioGroupItem, -:root.t_light .t_dark .t_light .t_error_TextArea, -:root.t_light .t_dark .t_light .t_red_Checkbox, -:root.t_light .t_dark .t_light .t_red_Input, -:root.t_light .t_dark .t_light .t_red_RadioGroupItem, -:root.t_light .t_dark .t_light .t_red_TextArea, -:root.t_light .t_error_Checkbox, -:root.t_light .t_error_Input, -:root.t_light .t_error_RadioGroupItem, -:root.t_light .t_error_TextArea, -:root.t_light .t_red_Checkbox, -:root.t_light .t_red_Input, -:root.t_light .t_red_RadioGroupItem, -:root.t_light .t_red_TextArea { - --accentBackground: hsla(0, 60%, 99%, 0); - --accentColor: hsla(0, 60%, 99%, 0); - --background0: hsla(0, 60%, 99%, 0.25); - --background025: hsla(0, 60%, 99%, 0.5); - --background05: hsla(0, 60%, 99%, 0.75); - --background075: hsla(0, 70%, 99%, 1); - --color0: hsla(0, 70%, 10%, 1); - --color025: hsla(0, 69%, 10%, 0.75); - --color05: hsla(0, 69%, 10%, 0.5); - --color075: hsla(0, 69%, 10%, 0.25); - --background: hsla(0, 70%, 99%, 1); - --backgroundHover: hsla(0, 70%, 93%, 1); - --backgroundPress: hsla(0, 70%, 88%, 1); - --backgroundFocus: hsla(0, 70%, 82%, 1); - --color: hsla(0, 70%, 15%, 1); - --colorHover: hsla(0, 70%, 50%, 1); - --colorPress: hsla(0, 70%, 15%, 1); - --colorFocus: hsla(0, 70%, 50%, 1); - --placeholderColor: hsla(0, 70%, 50%, 1); - --borderColor: hsla(0, 70%, 72%, 1); - --borderColorHover: hsla(0, 70%, 66%, 1); - --borderColorFocus: hsla(0, 70%, 61%, 1); - --borderColorPress: hsla(0, 70%, 66%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_error_Checkbox, - .t_dark .t_light .t_error_Input, - .t_dark .t_light .t_error_RadioGroupItem, - .t_dark .t_light .t_error_TextArea, - .t_dark .t_light .t_red_Checkbox, - .t_dark .t_light .t_red_Input, - .t_dark .t_light .t_red_RadioGroupItem, - .t_dark .t_light .t_red_TextArea, - .t_error_Checkbox, - .t_error_Input, - .t_error_RadioGroupItem, - .t_error_TextArea, - .t_red_Checkbox, - .t_red_Input, - .t_red_RadioGroupItem, - .t_red_TextArea { - --accentBackground: hsla(0, 60%, 99%, 0); - --accentColor: hsla(0, 60%, 99%, 0); - --background0: hsla(0, 60%, 99%, 0.25); - --background025: hsla(0, 60%, 99%, 0.5); - --background05: hsla(0, 60%, 99%, 0.75); - --background075: hsla(0, 70%, 99%, 1); - --color0: hsla(0, 70%, 10%, 1); - --color025: hsla(0, 69%, 10%, 0.75); - --color05: hsla(0, 69%, 10%, 0.5); - --color075: hsla(0, 69%, 10%, 0.25); - --background: hsla(0, 70%, 99%, 1); - --backgroundHover: hsla(0, 70%, 93%, 1); - --backgroundPress: hsla(0, 70%, 88%, 1); - --backgroundFocus: hsla(0, 70%, 82%, 1); - --color: hsla(0, 70%, 15%, 1); - --colorHover: hsla(0, 70%, 50%, 1); - --colorPress: hsla(0, 70%, 15%, 1); - --colorFocus: hsla(0, 70%, 50%, 1); - --placeholderColor: hsla(0, 70%, 50%, 1); - --borderColor: hsla(0, 70%, 72%, 1); - --borderColorHover: hsla(0, 70%, 66%, 1); - --borderColorFocus: hsla(0, 70%, 61%, 1); - --borderColorPress: hsla(0, 70%, 66%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_error_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_error_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_error_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_error_Tooltip, -:root.t_dark .t_light .t_dark .t_light .t_red_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_red_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_red_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_red_Tooltip, -:root.t_dark .t_light .t_error_ProgressIndicator, -:root.t_dark .t_light .t_error_SliderThumb, -:root.t_dark .t_light .t_error_SwitchThumb, -:root.t_dark .t_light .t_error_Tooltip, -:root.t_dark .t_light .t_red_ProgressIndicator, -:root.t_dark .t_light .t_red_SliderThumb, -:root.t_dark .t_light .t_red_SwitchThumb, -:root.t_dark .t_light .t_red_Tooltip, -:root.t_light .t_dark .t_light .t_error_ProgressIndicator, -:root.t_light .t_dark .t_light .t_error_SliderThumb, -:root.t_light .t_dark .t_light .t_error_SwitchThumb, -:root.t_light .t_dark .t_light .t_error_Tooltip, -:root.t_light .t_dark .t_light .t_red_ProgressIndicator, -:root.t_light .t_dark .t_light .t_red_SliderThumb, -:root.t_light .t_dark .t_light .t_red_SwitchThumb, -:root.t_light .t_dark .t_light .t_red_Tooltip, -:root.t_light .t_error_ProgressIndicator, -:root.t_light .t_error_SliderThumb, -:root.t_light .t_error_SwitchThumb, -:root.t_light .t_error_Tooltip, -:root.t_light .t_red_ProgressIndicator, -:root.t_light .t_red_SliderThumb, -:root.t_light .t_red_SwitchThumb, -:root.t_light .t_red_Tooltip { - --accentBackground: hsla(0, 60%, 99%, 0); - --accentColor: hsla(0, 60%, 99%, 0); - --background0: hsla(0, 69%, 10%, 0.25); - --background025: hsla(0, 69%, 10%, 0.5); - --background05: hsla(0, 69%, 10%, 0.75); - --background075: hsla(0, 70%, 10%, 1); - --color0: hsla(0, 70%, 99%, 1); - --color025: hsla(0, 60%, 99%, 0.75); - --color05: hsla(0, 60%, 99%, 0.5); - --color075: hsla(0, 60%, 99%, 0.25); - --background: hsla(0, 70%, 10%, 1); - --backgroundHover: hsla(0, 70%, 15%, 1); - --backgroundPress: hsla(0, 70%, 50%, 1); - --backgroundFocus: hsla(0, 70%, 55%, 1); - --color: hsla(0, 70%, 93%, 1); - --colorHover: hsla(0, 70%, 88%, 1); - --colorPress: hsla(0, 70%, 93%, 1); - --colorFocus: hsla(0, 70%, 88%, 1); - --placeholderColor: hsla(0, 70%, 88%, 1); - --borderColor: hsla(0, 70%, 55%, 1); - --borderColorHover: hsla(0, 70%, 61%, 1); - --borderColorFocus: hsla(0, 70%, 66%, 1); - --borderColorPress: hsla(0, 70%, 61%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_error_ProgressIndicator, - .t_dark .t_light .t_error_SliderThumb, - .t_dark .t_light .t_error_SwitchThumb, - .t_dark .t_light .t_error_Tooltip, - .t_dark .t_light .t_red_ProgressIndicator, - .t_dark .t_light .t_red_SliderThumb, - .t_dark .t_light .t_red_SwitchThumb, - .t_dark .t_light .t_red_Tooltip, - .t_error_ProgressIndicator, - .t_error_SliderThumb, - .t_error_SwitchThumb, - .t_error_Tooltip, - .t_red_ProgressIndicator, - .t_red_SliderThumb, - .t_red_SwitchThumb, - .t_red_Tooltip { - --accentBackground: hsla(0, 60%, 99%, 0); - --accentColor: hsla(0, 60%, 99%, 0); - --background0: hsla(0, 69%, 10%, 0.25); - --background025: hsla(0, 69%, 10%, 0.5); - --background05: hsla(0, 69%, 10%, 0.75); - --background075: hsla(0, 70%, 10%, 1); - --color0: hsla(0, 70%, 99%, 1); - --color025: hsla(0, 60%, 99%, 0.75); - --color05: hsla(0, 60%, 99%, 0.5); - --color075: hsla(0, 60%, 99%, 0.25); - --background: hsla(0, 70%, 10%, 1); - --backgroundHover: hsla(0, 70%, 15%, 1); - --backgroundPress: hsla(0, 70%, 50%, 1); - --backgroundFocus: hsla(0, 70%, 55%, 1); - --color: hsla(0, 70%, 93%, 1); - --colorHover: hsla(0, 70%, 88%, 1); - --colorPress: hsla(0, 70%, 93%, 1); - --colorFocus: hsla(0, 70%, 88%, 1); - --placeholderColor: hsla(0, 70%, 88%, 1); - --borderColor: hsla(0, 70%, 55%, 1); - --borderColorHover: hsla(0, 70%, 61%, 1); - --borderColorFocus: hsla(0, 70%, 66%, 1); - --borderColorPress: hsla(0, 70%, 61%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_error_SliderTrackActive, -:root.t_dark .t_light .t_dark .t_light .t_red_SliderTrackActive, -:root.t_dark .t_light .t_error_SliderTrackActive, -:root.t_dark .t_light .t_red_SliderTrackActive, -:root.t_light .t_dark .t_light .t_error_SliderTrackActive, -:root.t_light .t_dark .t_light .t_red_SliderTrackActive, -:root.t_light .t_error_SliderTrackActive, -:root.t_light .t_red_SliderTrackActive { - --accentBackground: hsla(0, 60%, 99%, 0); - --accentColor: hsla(0, 60%, 99%, 0); - --background0: hsla(0, 69%, 10%, 0.75); - --background025: hsla(0, 70%, 10%, 1); - --background05: hsla(0, 70%, 15%, 1); - --background075: hsla(0, 70%, 50%, 1); - --color0: hsla(0, 70%, 88%, 1); - --color025: hsla(0, 70%, 93%, 1); - --color05: hsla(0, 70%, 99%, 1); - --color075: hsla(0, 60%, 99%, 0.75); - --background: hsla(0, 70%, 50%, 1); - --backgroundHover: hsla(0, 70%, 55%, 1); - --backgroundPress: hsla(0, 70%, 61%, 1); - --backgroundFocus: hsla(0, 70%, 66%, 1); - --color: hsla(0, 70%, 93%, 1); - --colorHover: hsla(0, 70%, 88%, 1); - --colorPress: hsla(0, 70%, 93%, 1); - --colorFocus: hsla(0, 70%, 88%, 1); - --placeholderColor: hsla(0, 70%, 77%, 1); - --borderColor: hsla(0, 70%, 66%, 1); - --borderColorHover: hsla(0, 70%, 72%, 1); - --borderColorFocus: hsla(0, 70%, 77%, 1); - --borderColorPress: hsla(0, 70%, 72%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_error_SliderTrackActive, - .t_dark .t_light .t_red_SliderTrackActive, - .t_error_SliderTrackActive, - .t_red_SliderTrackActive { - --accentBackground: hsla(0, 60%, 99%, 0); - --accentColor: hsla(0, 60%, 99%, 0); - --background0: hsla(0, 69%, 10%, 0.75); - --background025: hsla(0, 70%, 10%, 1); - --background05: hsla(0, 70%, 15%, 1); - --background075: hsla(0, 70%, 50%, 1); - --color0: hsla(0, 70%, 88%, 1); - --color025: hsla(0, 70%, 93%, 1); - --color05: hsla(0, 70%, 99%, 1); - --color075: hsla(0, 60%, 99%, 0.75); - --background: hsla(0, 70%, 50%, 1); - --backgroundHover: hsla(0, 70%, 55%, 1); - --backgroundPress: hsla(0, 70%, 61%, 1); - --backgroundFocus: hsla(0, 70%, 66%, 1); - --color: hsla(0, 70%, 93%, 1); - --colorHover: hsla(0, 70%, 88%, 1); - --colorPress: hsla(0, 70%, 93%, 1); - --colorFocus: hsla(0, 70%, 88%, 1); - --placeholderColor: hsla(0, 70%, 77%, 1); - --borderColor: hsla(0, 70%, 66%, 1); - --borderColorHover: hsla(0, 70%, 72%, 1); - --borderColorFocus: hsla(0, 70%, 77%, 1); - --borderColorPress: hsla(0, 70%, 72%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_success, -:root.t_dark .t_light .t_success, -:root.t_light .t_dark .t_light .t_success, -:root.t_light .t_success { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(160, 60%, 99%, 0.25); - --background025: hsla(160, 60%, 99%, 0.5); - --background05: hsla(160, 60%, 99%, 0.75); - --background075: hsla(153, 70%, 99%, 1); - --color0: hsla(153, 70%, 10%, 1); - --color025: hsla(153, 69%, 10%, 0.75); - --color05: hsla(153, 69%, 10%, 0.5); - --color075: hsla(153, 69%, 10%, 0.25); - --background: hsla(153, 70%, 99%, 1); - --backgroundHover: hsla(153, 70%, 93%, 1); - --backgroundPress: hsla(153, 70%, 88%, 1); - --backgroundFocus: hsla(153, 70%, 82%, 1); - --color: hsla(153, 70%, 15%, 1); - --colorHover: hsla(153, 70%, 50%, 1); - --colorPress: hsla(153, 70%, 15%, 1); - --colorFocus: hsla(153, 70%, 50%, 1); - --placeholderColor: hsla(153, 70%, 50%, 1); - --borderColor: hsla(153, 70%, 82%, 1); - --borderColorHover: hsla(153, 70%, 77%, 1); - --borderColorFocus: hsla(153, 70%, 72%, 1); - --borderColorPress: hsla(153, 70%, 77%, 1); - --color1: hsla(153, 70%, 99%, 1); - --color2: hsla(153, 70%, 93%, 1); - --color3: hsla(153, 70%, 88%, 1); - --color4: hsla(153, 70%, 82%, 1); - --color5: hsla(153, 70%, 77%, 1); - --color6: hsla(153, 70%, 72%, 1); - --color7: hsla(153, 70%, 66%, 1); - --color8: hsla(153, 70%, 61%, 1); - --color9: hsla(153, 70%, 55%, 1); - --color10: hsla(153, 70%, 50%, 1); - --color11: hsla(153, 70%, 15%, 1); - --color12: hsla(153, 70%, 10%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_success, - .t_success { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(160, 60%, 99%, 0.25); - --background025: hsla(160, 60%, 99%, 0.5); - --background05: hsla(160, 60%, 99%, 0.75); - --background075: hsla(153, 70%, 99%, 1); - --color0: hsla(153, 70%, 10%, 1); - --color025: hsla(153, 69%, 10%, 0.75); - --color05: hsla(153, 69%, 10%, 0.5); - --color075: hsla(153, 69%, 10%, 0.25); - --background: hsla(153, 70%, 99%, 1); - --backgroundHover: hsla(153, 70%, 93%, 1); - --backgroundPress: hsla(153, 70%, 88%, 1); - --backgroundFocus: hsla(153, 70%, 82%, 1); - --color: hsla(153, 70%, 15%, 1); - --colorHover: hsla(153, 70%, 50%, 1); - --colorPress: hsla(153, 70%, 15%, 1); - --colorFocus: hsla(153, 70%, 50%, 1); - --placeholderColor: hsla(153, 70%, 50%, 1); - --borderColor: hsla(153, 70%, 82%, 1); - --borderColorHover: hsla(153, 70%, 77%, 1); - --borderColorFocus: hsla(153, 70%, 72%, 1); - --borderColorPress: hsla(153, 70%, 77%, 1); - --color1: hsla(153, 70%, 99%, 1); - --color2: hsla(153, 70%, 93%, 1); - --color3: hsla(153, 70%, 88%, 1); - --color4: hsla(153, 70%, 82%, 1); - --color5: hsla(153, 70%, 77%, 1); - --color6: hsla(153, 70%, 72%, 1); - --color7: hsla(153, 70%, 66%, 1); - --color8: hsla(153, 70%, 61%, 1); - --color9: hsla(153, 70%, 55%, 1); - --color10: hsla(153, 70%, 50%, 1); - --color11: hsla(153, 70%, 15%, 1); - --color12: hsla(153, 70%, 10%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_success_Button, -:root.t_dark .t_light .t_dark .t_light .t_success_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_success_Switch, -:root.t_dark .t_light .t_dark .t_light .t_success_TooltipContent, -:root.t_dark .t_light .t_success_Button, -:root.t_dark .t_light .t_success_SliderTrack, -:root.t_dark .t_light .t_success_Switch, -:root.t_dark .t_light .t_success_TooltipContent, -:root.t_light .t_dark .t_light .t_success_Button, -:root.t_light .t_dark .t_light .t_success_SliderTrack, -:root.t_light .t_dark .t_light .t_success_Switch, -:root.t_light .t_dark .t_light .t_success_TooltipContent, -:root.t_light .t_success_Button, -:root.t_light .t_success_SliderTrack, -:root.t_light .t_success_Switch, -:root.t_light .t_success_TooltipContent { - --background0: hsla(160, 60%, 99%, 0.75); - --background025: hsla(153, 70%, 99%, 1); - --background05: hsla(153, 70%, 93%, 1); - --background075: hsla(153, 70%, 88%, 1); - --color0: hsla(153, 70%, 50%, 1); - --color025: hsla(153, 70%, 15%, 1); - --color05: hsla(153, 70%, 10%, 1); - --color075: hsla(153, 69%, 10%, 0.75); - --background: hsla(153, 70%, 88%, 1); - --backgroundHover: hsla(153, 70%, 82%, 1); - --backgroundPress: hsla(153, 70%, 77%, 1); - --backgroundFocus: hsla(153, 70%, 72%, 1); - --color: hsla(153, 70%, 15%, 1); - --colorHover: hsla(153, 70%, 50%, 1); - --colorPress: hsla(153, 70%, 15%, 1); - --colorFocus: hsla(153, 70%, 50%, 1); - --placeholderColor: hsla(153, 70%, 61%, 1); - --borderColor: hsla(153, 70%, 72%, 1); - --borderColorHover: hsla(153, 70%, 66%, 1); - --borderColorFocus: hsla(153, 70%, 61%, 1); - --borderColorPress: hsla(153, 70%, 66%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_success_Button, - .t_dark .t_light .t_success_SliderTrack, - .t_dark .t_light .t_success_Switch, - .t_dark .t_light .t_success_TooltipContent, - .t_success_Button, - .t_success_SliderTrack, - .t_success_Switch, - .t_success_TooltipContent { - --background0: hsla(160, 60%, 99%, 0.75); - --background025: hsla(153, 70%, 99%, 1); - --background05: hsla(153, 70%, 93%, 1); - --background075: hsla(153, 70%, 88%, 1); - --color0: hsla(153, 70%, 50%, 1); - --color025: hsla(153, 70%, 15%, 1); - --color05: hsla(153, 70%, 10%, 1); - --color075: hsla(153, 69%, 10%, 0.75); - --background: hsla(153, 70%, 88%, 1); - --backgroundHover: hsla(153, 70%, 82%, 1); - --backgroundPress: hsla(153, 70%, 77%, 1); - --backgroundFocus: hsla(153, 70%, 72%, 1); - --color: hsla(153, 70%, 15%, 1); - --colorHover: hsla(153, 70%, 50%, 1); - --colorPress: hsla(153, 70%, 15%, 1); - --colorFocus: hsla(153, 70%, 50%, 1); - --placeholderColor: hsla(153, 70%, 61%, 1); - --borderColor: hsla(153, 70%, 72%, 1); - --borderColorHover: hsla(153, 70%, 66%, 1); - --borderColorFocus: hsla(153, 70%, 61%, 1); - --borderColorPress: hsla(153, 70%, 66%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_success_Card, -:root.t_dark .t_light .t_dark .t_light .t_success_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_success_Progress, -:root.t_dark .t_light .t_dark .t_light .t_success_TooltipArrow, -:root.t_dark .t_light .t_success_Card, -:root.t_dark .t_light .t_success_DrawerFrame, -:root.t_dark .t_light .t_success_Progress, -:root.t_dark .t_light .t_success_TooltipArrow, -:root.t_light .t_dark .t_light .t_success_Card, -:root.t_light .t_dark .t_light .t_success_DrawerFrame, -:root.t_light .t_dark .t_light .t_success_Progress, -:root.t_light .t_dark .t_light .t_success_TooltipArrow, -:root.t_light .t_success_Card, -:root.t_light .t_success_DrawerFrame, -:root.t_light .t_success_Progress, -:root.t_light .t_success_TooltipArrow { - --background0: hsla(160, 60%, 99%, 0.5); - --background025: hsla(160, 60%, 99%, 0.75); - --background05: hsla(153, 70%, 99%, 1); - --background075: hsla(153, 70%, 93%, 1); - --color0: hsla(153, 70%, 15%, 1); - --color025: hsla(153, 70%, 10%, 1); - --color05: hsla(153, 69%, 10%, 0.75); - --color075: hsla(153, 69%, 10%, 0.5); - --background: hsla(153, 70%, 93%, 1); - --backgroundHover: hsla(153, 70%, 88%, 1); - --backgroundPress: hsla(153, 70%, 82%, 1); - --backgroundFocus: hsla(153, 70%, 77%, 1); - --color: hsla(153, 70%, 15%, 1); - --colorHover: hsla(153, 70%, 50%, 1); - --colorPress: hsla(153, 70%, 15%, 1); - --colorFocus: hsla(153, 70%, 50%, 1); - --placeholderColor: hsla(153, 70%, 55%, 1); - --borderColor: hsla(153, 70%, 77%, 1); - --borderColorHover: hsla(153, 70%, 72%, 1); - --borderColorFocus: hsla(153, 70%, 66%, 1); - --borderColorPress: hsla(153, 70%, 72%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_success_Card, - .t_dark .t_light .t_success_DrawerFrame, - .t_dark .t_light .t_success_Progress, - .t_dark .t_light .t_success_TooltipArrow, - .t_success_Card, - .t_success_DrawerFrame, - .t_success_Progress, - .t_success_TooltipArrow { - --background0: hsla(160, 60%, 99%, 0.5); - --background025: hsla(160, 60%, 99%, 0.75); - --background05: hsla(153, 70%, 99%, 1); - --background075: hsla(153, 70%, 93%, 1); - --color0: hsla(153, 70%, 15%, 1); - --color025: hsla(153, 70%, 10%, 1); - --color05: hsla(153, 69%, 10%, 0.75); - --color075: hsla(153, 69%, 10%, 0.5); - --background: hsla(153, 70%, 93%, 1); - --backgroundHover: hsla(153, 70%, 88%, 1); - --backgroundPress: hsla(153, 70%, 82%, 1); - --backgroundFocus: hsla(153, 70%, 77%, 1); - --color: hsla(153, 70%, 15%, 1); - --colorHover: hsla(153, 70%, 50%, 1); - --colorPress: hsla(153, 70%, 15%, 1); - --colorFocus: hsla(153, 70%, 50%, 1); - --placeholderColor: hsla(153, 70%, 55%, 1); - --borderColor: hsla(153, 70%, 77%, 1); - --borderColorHover: hsla(153, 70%, 72%, 1); - --borderColorFocus: hsla(153, 70%, 66%, 1); - --borderColorPress: hsla(153, 70%, 72%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_success_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_success_Input, -:root.t_dark .t_light .t_dark .t_light .t_success_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_success_TextArea, -:root.t_dark .t_light .t_success_Checkbox, -:root.t_dark .t_light .t_success_Input, -:root.t_dark .t_light .t_success_RadioGroupItem, -:root.t_dark .t_light .t_success_TextArea, -:root.t_light .t_dark .t_light .t_success_Checkbox, -:root.t_light .t_dark .t_light .t_success_Input, -:root.t_light .t_dark .t_light .t_success_RadioGroupItem, -:root.t_light .t_dark .t_light .t_success_TextArea, -:root.t_light .t_success_Checkbox, -:root.t_light .t_success_Input, -:root.t_light .t_success_RadioGroupItem, -:root.t_light .t_success_TextArea { - --accentBackground: hsla(160, 60%, 99%, 0); - --accentColor: hsla(160, 60%, 99%, 0); - --background0: hsla(160, 60%, 99%, 0.25); - --background025: hsla(160, 60%, 99%, 0.5); - --background05: hsla(160, 60%, 99%, 0.75); - --background075: hsla(153, 70%, 99%, 1); - --color0: hsla(153, 70%, 10%, 1); - --color025: hsla(153, 69%, 10%, 0.75); - --color05: hsla(153, 69%, 10%, 0.5); - --color075: hsla(153, 69%, 10%, 0.25); - --background: hsla(153, 70%, 99%, 1); - --backgroundHover: hsla(153, 70%, 93%, 1); - --backgroundPress: hsla(153, 70%, 88%, 1); - --backgroundFocus: hsla(153, 70%, 82%, 1); - --color: hsla(153, 70%, 15%, 1); - --colorHover: hsla(153, 70%, 50%, 1); - --colorPress: hsla(153, 70%, 15%, 1); - --colorFocus: hsla(153, 70%, 50%, 1); - --placeholderColor: hsla(153, 70%, 50%, 1); - --borderColor: hsla(153, 70%, 72%, 1); - --borderColorHover: hsla(153, 70%, 66%, 1); - --borderColorFocus: hsla(153, 70%, 61%, 1); - --borderColorPress: hsla(153, 70%, 66%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_success_Checkbox, - .t_dark .t_light .t_success_Input, - .t_dark .t_light .t_success_RadioGroupItem, - .t_dark .t_light .t_success_TextArea, - .t_success_Checkbox, - .t_success_Input, - .t_success_RadioGroupItem, - .t_success_TextArea { - --accentBackground: hsla(160, 60%, 99%, 0); - --accentColor: hsla(160, 60%, 99%, 0); - --background0: hsla(160, 60%, 99%, 0.25); - --background025: hsla(160, 60%, 99%, 0.5); - --background05: hsla(160, 60%, 99%, 0.75); - --background075: hsla(153, 70%, 99%, 1); - --color0: hsla(153, 70%, 10%, 1); - --color025: hsla(153, 69%, 10%, 0.75); - --color05: hsla(153, 69%, 10%, 0.5); - --color075: hsla(153, 69%, 10%, 0.25); - --background: hsla(153, 70%, 99%, 1); - --backgroundHover: hsla(153, 70%, 93%, 1); - --backgroundPress: hsla(153, 70%, 88%, 1); - --backgroundFocus: hsla(153, 70%, 82%, 1); - --color: hsla(153, 70%, 15%, 1); - --colorHover: hsla(153, 70%, 50%, 1); - --colorPress: hsla(153, 70%, 15%, 1); - --colorFocus: hsla(153, 70%, 50%, 1); - --placeholderColor: hsla(153, 70%, 50%, 1); - --borderColor: hsla(153, 70%, 72%, 1); - --borderColorHover: hsla(153, 70%, 66%, 1); - --borderColorFocus: hsla(153, 70%, 61%, 1); - --borderColorPress: hsla(153, 70%, 66%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_success_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_success_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_success_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_success_Tooltip, -:root.t_dark .t_light .t_success_ProgressIndicator, -:root.t_dark .t_light .t_success_SliderThumb, -:root.t_dark .t_light .t_success_SwitchThumb, -:root.t_dark .t_light .t_success_Tooltip, -:root.t_light .t_dark .t_light .t_success_ProgressIndicator, -:root.t_light .t_dark .t_light .t_success_SliderThumb, -:root.t_light .t_dark .t_light .t_success_SwitchThumb, -:root.t_light .t_dark .t_light .t_success_Tooltip, -:root.t_light .t_success_ProgressIndicator, -:root.t_light .t_success_SliderThumb, -:root.t_light .t_success_SwitchThumb, -:root.t_light .t_success_Tooltip { - --accentBackground: hsla(160, 60%, 99%, 0); - --accentColor: hsla(160, 60%, 99%, 0); - --background0: hsla(153, 69%, 10%, 0.25); - --background025: hsla(153, 69%, 10%, 0.5); - --background05: hsla(153, 69%, 10%, 0.75); - --background075: hsla(153, 70%, 10%, 1); - --color0: hsla(153, 70%, 99%, 1); - --color025: hsla(160, 60%, 99%, 0.75); - --color05: hsla(160, 60%, 99%, 0.5); - --color075: hsla(160, 60%, 99%, 0.25); - --background: hsla(153, 70%, 10%, 1); - --backgroundHover: hsla(153, 70%, 15%, 1); - --backgroundPress: hsla(153, 70%, 50%, 1); - --backgroundFocus: hsla(153, 70%, 55%, 1); - --color: hsla(153, 70%, 93%, 1); - --colorHover: hsla(153, 70%, 88%, 1); - --colorPress: hsla(153, 70%, 93%, 1); - --colorFocus: hsla(153, 70%, 88%, 1); - --placeholderColor: hsla(153, 70%, 88%, 1); - --borderColor: hsla(153, 70%, 55%, 1); - --borderColorHover: hsla(153, 70%, 61%, 1); - --borderColorFocus: hsla(153, 70%, 66%, 1); - --borderColorPress: hsla(153, 70%, 61%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_success_ProgressIndicator, - .t_dark .t_light .t_success_SliderThumb, - .t_dark .t_light .t_success_SwitchThumb, - .t_dark .t_light .t_success_Tooltip, - .t_success_ProgressIndicator, - .t_success_SliderThumb, - .t_success_SwitchThumb, - .t_success_Tooltip { - --accentBackground: hsla(160, 60%, 99%, 0); - --accentColor: hsla(160, 60%, 99%, 0); - --background0: hsla(153, 69%, 10%, 0.25); - --background025: hsla(153, 69%, 10%, 0.5); - --background05: hsla(153, 69%, 10%, 0.75); - --background075: hsla(153, 70%, 10%, 1); - --color0: hsla(153, 70%, 99%, 1); - --color025: hsla(160, 60%, 99%, 0.75); - --color05: hsla(160, 60%, 99%, 0.5); - --color075: hsla(160, 60%, 99%, 0.25); - --background: hsla(153, 70%, 10%, 1); - --backgroundHover: hsla(153, 70%, 15%, 1); - --backgroundPress: hsla(153, 70%, 50%, 1); - --backgroundFocus: hsla(153, 70%, 55%, 1); - --color: hsla(153, 70%, 93%, 1); - --colorHover: hsla(153, 70%, 88%, 1); - --colorPress: hsla(153, 70%, 93%, 1); - --colorFocus: hsla(153, 70%, 88%, 1); - --placeholderColor: hsla(153, 70%, 88%, 1); - --borderColor: hsla(153, 70%, 55%, 1); - --borderColorHover: hsla(153, 70%, 61%, 1); - --borderColorFocus: hsla(153, 70%, 66%, 1); - --borderColorPress: hsla(153, 70%, 61%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_success_SliderTrackActive, -:root.t_dark .t_light .t_success_SliderTrackActive, -:root.t_light .t_dark .t_light .t_success_SliderTrackActive, -:root.t_light .t_success_SliderTrackActive { - --accentBackground: hsla(160, 60%, 99%, 0); - --accentColor: hsla(160, 60%, 99%, 0); - --background0: hsla(153, 69%, 10%, 0.75); - --background025: hsla(153, 70%, 10%, 1); - --background05: hsla(153, 70%, 15%, 1); - --background075: hsla(153, 70%, 50%, 1); - --color0: hsla(153, 70%, 88%, 1); - --color025: hsla(153, 70%, 93%, 1); - --color05: hsla(153, 70%, 99%, 1); - --color075: hsla(160, 60%, 99%, 0.75); - --background: hsla(153, 70%, 50%, 1); - --backgroundHover: hsla(153, 70%, 55%, 1); - --backgroundPress: hsla(153, 70%, 61%, 1); - --backgroundFocus: hsla(153, 70%, 66%, 1); - --color: hsla(153, 70%, 93%, 1); - --colorHover: hsla(153, 70%, 88%, 1); - --colorPress: hsla(153, 70%, 93%, 1); - --colorFocus: hsla(153, 70%, 88%, 1); - --placeholderColor: hsla(153, 70%, 77%, 1); - --borderColor: hsla(153, 70%, 66%, 1); - --borderColorHover: hsla(153, 70%, 72%, 1); - --borderColorFocus: hsla(153, 70%, 77%, 1); - --borderColorPress: hsla(153, 70%, 72%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_success_SliderTrackActive, - .t_success_SliderTrackActive { - --accentBackground: hsla(160, 60%, 99%, 0); - --accentColor: hsla(160, 60%, 99%, 0); - --background0: hsla(153, 69%, 10%, 0.75); - --background025: hsla(153, 70%, 10%, 1); - --background05: hsla(153, 70%, 15%, 1); - --background075: hsla(153, 70%, 50%, 1); - --color0: hsla(153, 70%, 88%, 1); - --color025: hsla(153, 70%, 93%, 1); - --color05: hsla(153, 70%, 99%, 1); - --color075: hsla(160, 60%, 99%, 0.75); - --background: hsla(153, 70%, 50%, 1); - --backgroundHover: hsla(153, 70%, 55%, 1); - --backgroundPress: hsla(153, 70%, 61%, 1); - --backgroundFocus: hsla(153, 70%, 66%, 1); - --color: hsla(153, 70%, 93%, 1); - --colorHover: hsla(153, 70%, 88%, 1); - --colorPress: hsla(153, 70%, 93%, 1); - --colorFocus: hsla(153, 70%, 88%, 1); - --placeholderColor: hsla(153, 70%, 77%, 1); - --borderColor: hsla(153, 70%, 66%, 1); - --borderColorHover: hsla(153, 70%, 72%, 1); - --borderColorFocus: hsla(153, 70%, 77%, 1); - --borderColorPress: hsla(153, 70%, 72%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_warning, -:root.t_dark .t_light .t_warning, -:root.t_light .t_dark .t_light .t_warning, -:root.t_light .t_warning { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(60, 60%, 99%, 0.25); - --background025: hsla(60, 60%, 99%, 0.5); - --background05: hsla(60, 60%, 99%, 0.75); - --background075: hsla(48, 70%, 99%, 1); - --color0: hsla(48, 70%, 10%, 1); - --color025: hsla(48, 69%, 10%, 0.75); - --color05: hsla(48, 69%, 10%, 0.5); - --color075: hsla(48, 69%, 10%, 0.25); - --background: hsla(48, 70%, 99%, 1); - --backgroundHover: hsla(48, 70%, 93%, 1); - --backgroundPress: hsla(48, 70%, 88%, 1); - --backgroundFocus: hsla(48, 70%, 82%, 1); - --color: hsla(48, 70%, 15%, 1); - --colorHover: hsla(48, 70%, 50%, 1); - --colorPress: hsla(48, 70%, 15%, 1); - --colorFocus: hsla(48, 70%, 50%, 1); - --placeholderColor: hsla(48, 70%, 50%, 1); - --borderColor: hsla(48, 70%, 82%, 1); - --borderColorHover: hsla(48, 70%, 77%, 1); - --borderColorFocus: hsla(48, 70%, 72%, 1); - --borderColorPress: hsla(48, 70%, 77%, 1); - --color1: hsla(48, 70%, 99%, 1); - --color2: hsla(48, 70%, 93%, 1); - --color3: hsla(48, 70%, 88%, 1); - --color4: hsla(48, 70%, 82%, 1); - --color5: hsla(48, 70%, 77%, 1); - --color6: hsla(48, 70%, 72%, 1); - --color7: hsla(48, 70%, 66%, 1); - --color8: hsla(48, 70%, 61%, 1); - --color9: hsla(48, 70%, 55%, 1); - --color10: hsla(48, 70%, 50%, 1); - --color11: hsla(48, 70%, 15%, 1); - --color12: hsla(48, 70%, 10%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_warning, - .t_warning { - --accentBackground: var(--color-231); - --accentColor: hsla(191, 32%, 10%, 1); - --background0: hsla(60, 60%, 99%, 0.25); - --background025: hsla(60, 60%, 99%, 0.5); - --background05: hsla(60, 60%, 99%, 0.75); - --background075: hsla(48, 70%, 99%, 1); - --color0: hsla(48, 70%, 10%, 1); - --color025: hsla(48, 69%, 10%, 0.75); - --color05: hsla(48, 69%, 10%, 0.5); - --color075: hsla(48, 69%, 10%, 0.25); - --background: hsla(48, 70%, 99%, 1); - --backgroundHover: hsla(48, 70%, 93%, 1); - --backgroundPress: hsla(48, 70%, 88%, 1); - --backgroundFocus: hsla(48, 70%, 82%, 1); - --color: hsla(48, 70%, 15%, 1); - --colorHover: hsla(48, 70%, 50%, 1); - --colorPress: hsla(48, 70%, 15%, 1); - --colorFocus: hsla(48, 70%, 50%, 1); - --placeholderColor: hsla(48, 70%, 50%, 1); - --borderColor: hsla(48, 70%, 82%, 1); - --borderColorHover: hsla(48, 70%, 77%, 1); - --borderColorFocus: hsla(48, 70%, 72%, 1); - --borderColorPress: hsla(48, 70%, 77%, 1); - --color1: hsla(48, 70%, 99%, 1); - --color2: hsla(48, 70%, 93%, 1); - --color3: hsla(48, 70%, 88%, 1); - --color4: hsla(48, 70%, 82%, 1); - --color5: hsla(48, 70%, 77%, 1); - --color6: hsla(48, 70%, 72%, 1); - --color7: hsla(48, 70%, 66%, 1); - --color8: hsla(48, 70%, 61%, 1); - --color9: hsla(48, 70%, 55%, 1); - --color10: hsla(48, 70%, 50%, 1); - --color11: hsla(48, 70%, 15%, 1); - --color12: hsla(48, 70%, 10%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_warning_Button, -:root.t_dark .t_light .t_dark .t_light .t_warning_SliderTrack, -:root.t_dark .t_light .t_dark .t_light .t_warning_Switch, -:root.t_dark .t_light .t_dark .t_light .t_warning_TooltipContent, -:root.t_dark .t_light .t_warning_Button, -:root.t_dark .t_light .t_warning_SliderTrack, -:root.t_dark .t_light .t_warning_Switch, -:root.t_dark .t_light .t_warning_TooltipContent, -:root.t_light .t_dark .t_light .t_warning_Button, -:root.t_light .t_dark .t_light .t_warning_SliderTrack, -:root.t_light .t_dark .t_light .t_warning_Switch, -:root.t_light .t_dark .t_light .t_warning_TooltipContent, -:root.t_light .t_warning_Button, -:root.t_light .t_warning_SliderTrack, -:root.t_light .t_warning_Switch, -:root.t_light .t_warning_TooltipContent { - --background0: hsla(60, 60%, 99%, 0.75); - --background025: hsla(48, 70%, 99%, 1); - --background05: hsla(48, 70%, 93%, 1); - --background075: hsla(48, 70%, 88%, 1); - --color0: hsla(48, 70%, 50%, 1); - --color025: hsla(48, 70%, 15%, 1); - --color05: hsla(48, 70%, 10%, 1); - --color075: hsla(48, 69%, 10%, 0.75); - --background: hsla(48, 70%, 88%, 1); - --backgroundHover: hsla(48, 70%, 82%, 1); - --backgroundPress: hsla(48, 70%, 77%, 1); - --backgroundFocus: hsla(48, 70%, 72%, 1); - --color: hsla(48, 70%, 15%, 1); - --colorHover: hsla(48, 70%, 50%, 1); - --colorPress: hsla(48, 70%, 15%, 1); - --colorFocus: hsla(48, 70%, 50%, 1); - --placeholderColor: hsla(48, 70%, 61%, 1); - --borderColor: hsla(48, 70%, 72%, 1); - --borderColorHover: hsla(48, 70%, 66%, 1); - --borderColorFocus: hsla(48, 70%, 61%, 1); - --borderColorPress: hsla(48, 70%, 66%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_warning_Button, - .t_dark .t_light .t_warning_SliderTrack, - .t_dark .t_light .t_warning_Switch, - .t_dark .t_light .t_warning_TooltipContent, - .t_warning_Button, - .t_warning_SliderTrack, - .t_warning_Switch, - .t_warning_TooltipContent { - --background0: hsla(60, 60%, 99%, 0.75); - --background025: hsla(48, 70%, 99%, 1); - --background05: hsla(48, 70%, 93%, 1); - --background075: hsla(48, 70%, 88%, 1); - --color0: hsla(48, 70%, 50%, 1); - --color025: hsla(48, 70%, 15%, 1); - --color05: hsla(48, 70%, 10%, 1); - --color075: hsla(48, 69%, 10%, 0.75); - --background: hsla(48, 70%, 88%, 1); - --backgroundHover: hsla(48, 70%, 82%, 1); - --backgroundPress: hsla(48, 70%, 77%, 1); - --backgroundFocus: hsla(48, 70%, 72%, 1); - --color: hsla(48, 70%, 15%, 1); - --colorHover: hsla(48, 70%, 50%, 1); - --colorPress: hsla(48, 70%, 15%, 1); - --colorFocus: hsla(48, 70%, 50%, 1); - --placeholderColor: hsla(48, 70%, 61%, 1); - --borderColor: hsla(48, 70%, 72%, 1); - --borderColorHover: hsla(48, 70%, 66%, 1); - --borderColorFocus: hsla(48, 70%, 61%, 1); - --borderColorPress: hsla(48, 70%, 66%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_warning_Card, -:root.t_dark .t_light .t_dark .t_light .t_warning_DrawerFrame, -:root.t_dark .t_light .t_dark .t_light .t_warning_Progress, -:root.t_dark .t_light .t_dark .t_light .t_warning_TooltipArrow, -:root.t_dark .t_light .t_warning_Card, -:root.t_dark .t_light .t_warning_DrawerFrame, -:root.t_dark .t_light .t_warning_Progress, -:root.t_dark .t_light .t_warning_TooltipArrow, -:root.t_light .t_dark .t_light .t_warning_Card, -:root.t_light .t_dark .t_light .t_warning_DrawerFrame, -:root.t_light .t_dark .t_light .t_warning_Progress, -:root.t_light .t_dark .t_light .t_warning_TooltipArrow, -:root.t_light .t_warning_Card, -:root.t_light .t_warning_DrawerFrame, -:root.t_light .t_warning_Progress, -:root.t_light .t_warning_TooltipArrow { - --background0: hsla(60, 60%, 99%, 0.5); - --background025: hsla(60, 60%, 99%, 0.75); - --background05: hsla(48, 70%, 99%, 1); - --background075: hsla(48, 70%, 93%, 1); - --color0: hsla(48, 70%, 15%, 1); - --color025: hsla(48, 70%, 10%, 1); - --color05: hsla(48, 69%, 10%, 0.75); - --color075: hsla(48, 69%, 10%, 0.5); - --background: hsla(48, 70%, 93%, 1); - --backgroundHover: hsla(48, 70%, 88%, 1); - --backgroundPress: hsla(48, 70%, 82%, 1); - --backgroundFocus: hsla(48, 70%, 77%, 1); - --color: hsla(48, 70%, 15%, 1); - --colorHover: hsla(48, 70%, 50%, 1); - --colorPress: hsla(48, 70%, 15%, 1); - --colorFocus: hsla(48, 70%, 50%, 1); - --placeholderColor: hsla(48, 70%, 55%, 1); - --borderColor: hsla(48, 70%, 77%, 1); - --borderColorHover: hsla(48, 70%, 72%, 1); - --borderColorFocus: hsla(48, 70%, 66%, 1); - --borderColorPress: hsla(48, 70%, 72%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_warning_Card, - .t_dark .t_light .t_warning_DrawerFrame, - .t_dark .t_light .t_warning_Progress, - .t_dark .t_light .t_warning_TooltipArrow, - .t_warning_Card, - .t_warning_DrawerFrame, - .t_warning_Progress, - .t_warning_TooltipArrow { - --background0: hsla(60, 60%, 99%, 0.5); - --background025: hsla(60, 60%, 99%, 0.75); - --background05: hsla(48, 70%, 99%, 1); - --background075: hsla(48, 70%, 93%, 1); - --color0: hsla(48, 70%, 15%, 1); - --color025: hsla(48, 70%, 10%, 1); - --color05: hsla(48, 69%, 10%, 0.75); - --color075: hsla(48, 69%, 10%, 0.5); - --background: hsla(48, 70%, 93%, 1); - --backgroundHover: hsla(48, 70%, 88%, 1); - --backgroundPress: hsla(48, 70%, 82%, 1); - --backgroundFocus: hsla(48, 70%, 77%, 1); - --color: hsla(48, 70%, 15%, 1); - --colorHover: hsla(48, 70%, 50%, 1); - --colorPress: hsla(48, 70%, 15%, 1); - --colorFocus: hsla(48, 70%, 50%, 1); - --placeholderColor: hsla(48, 70%, 55%, 1); - --borderColor: hsla(48, 70%, 77%, 1); - --borderColorHover: hsla(48, 70%, 72%, 1); - --borderColorFocus: hsla(48, 70%, 66%, 1); - --borderColorPress: hsla(48, 70%, 72%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_warning_Checkbox, -:root.t_dark .t_light .t_dark .t_light .t_warning_Input, -:root.t_dark .t_light .t_dark .t_light .t_warning_RadioGroupItem, -:root.t_dark .t_light .t_dark .t_light .t_warning_TextArea, -:root.t_dark .t_light .t_warning_Checkbox, -:root.t_dark .t_light .t_warning_Input, -:root.t_dark .t_light .t_warning_RadioGroupItem, -:root.t_dark .t_light .t_warning_TextArea, -:root.t_light .t_dark .t_light .t_warning_Checkbox, -:root.t_light .t_dark .t_light .t_warning_Input, -:root.t_light .t_dark .t_light .t_warning_RadioGroupItem, -:root.t_light .t_dark .t_light .t_warning_TextArea, -:root.t_light .t_warning_Checkbox, -:root.t_light .t_warning_Input, -:root.t_light .t_warning_RadioGroupItem, -:root.t_light .t_warning_TextArea { - --accentBackground: hsla(60, 60%, 99%, 0); - --accentColor: hsla(60, 60%, 99%, 0); - --background0: hsla(60, 60%, 99%, 0.25); - --background025: hsla(60, 60%, 99%, 0.5); - --background05: hsla(60, 60%, 99%, 0.75); - --background075: hsla(48, 70%, 99%, 1); - --color0: hsla(48, 70%, 10%, 1); - --color025: hsla(48, 69%, 10%, 0.75); - --color05: hsla(48, 69%, 10%, 0.5); - --color075: hsla(48, 69%, 10%, 0.25); - --background: hsla(48, 70%, 99%, 1); - --backgroundHover: hsla(48, 70%, 93%, 1); - --backgroundPress: hsla(48, 70%, 88%, 1); - --backgroundFocus: hsla(48, 70%, 82%, 1); - --color: hsla(48, 70%, 15%, 1); - --colorHover: hsla(48, 70%, 50%, 1); - --colorPress: hsla(48, 70%, 15%, 1); - --colorFocus: hsla(48, 70%, 50%, 1); - --placeholderColor: hsla(48, 70%, 50%, 1); - --borderColor: hsla(48, 70%, 72%, 1); - --borderColorHover: hsla(48, 70%, 66%, 1); - --borderColorFocus: hsla(48, 70%, 61%, 1); - --borderColorPress: hsla(48, 70%, 66%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_warning_Checkbox, - .t_dark .t_light .t_warning_Input, - .t_dark .t_light .t_warning_RadioGroupItem, - .t_dark .t_light .t_warning_TextArea, - .t_warning_Checkbox, - .t_warning_Input, - .t_warning_RadioGroupItem, - .t_warning_TextArea { - --accentBackground: hsla(60, 60%, 99%, 0); - --accentColor: hsla(60, 60%, 99%, 0); - --background0: hsla(60, 60%, 99%, 0.25); - --background025: hsla(60, 60%, 99%, 0.5); - --background05: hsla(60, 60%, 99%, 0.75); - --background075: hsla(48, 70%, 99%, 1); - --color0: hsla(48, 70%, 10%, 1); - --color025: hsla(48, 69%, 10%, 0.75); - --color05: hsla(48, 69%, 10%, 0.5); - --color075: hsla(48, 69%, 10%, 0.25); - --background: hsla(48, 70%, 99%, 1); - --backgroundHover: hsla(48, 70%, 93%, 1); - --backgroundPress: hsla(48, 70%, 88%, 1); - --backgroundFocus: hsla(48, 70%, 82%, 1); - --color: hsla(48, 70%, 15%, 1); - --colorHover: hsla(48, 70%, 50%, 1); - --colorPress: hsla(48, 70%, 15%, 1); - --colorFocus: hsla(48, 70%, 50%, 1); - --placeholderColor: hsla(48, 70%, 50%, 1); - --borderColor: hsla(48, 70%, 72%, 1); - --borderColorHover: hsla(48, 70%, 66%, 1); - --borderColorFocus: hsla(48, 70%, 61%, 1); - --borderColorPress: hsla(48, 70%, 66%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_warning_ProgressIndicator, -:root.t_dark .t_light .t_dark .t_light .t_warning_SliderThumb, -:root.t_dark .t_light .t_dark .t_light .t_warning_SwitchThumb, -:root.t_dark .t_light .t_dark .t_light .t_warning_Tooltip, -:root.t_dark .t_light .t_warning_ProgressIndicator, -:root.t_dark .t_light .t_warning_SliderThumb, -:root.t_dark .t_light .t_warning_SwitchThumb, -:root.t_dark .t_light .t_warning_Tooltip, -:root.t_light .t_dark .t_light .t_warning_ProgressIndicator, -:root.t_light .t_dark .t_light .t_warning_SliderThumb, -:root.t_light .t_dark .t_light .t_warning_SwitchThumb, -:root.t_light .t_dark .t_light .t_warning_Tooltip, -:root.t_light .t_warning_ProgressIndicator, -:root.t_light .t_warning_SliderThumb, -:root.t_light .t_warning_SwitchThumb, -:root.t_light .t_warning_Tooltip { - --accentBackground: hsla(60, 60%, 99%, 0); - --accentColor: hsla(60, 60%, 99%, 0); - --background0: hsla(48, 69%, 10%, 0.25); - --background025: hsla(48, 69%, 10%, 0.5); - --background05: hsla(48, 69%, 10%, 0.75); - --background075: hsla(48, 70%, 10%, 1); - --color0: hsla(48, 70%, 99%, 1); - --color025: hsla(60, 60%, 99%, 0.75); - --color05: hsla(60, 60%, 99%, 0.5); - --color075: hsla(60, 60%, 99%, 0.25); - --background: hsla(48, 70%, 10%, 1); - --backgroundHover: hsla(48, 70%, 15%, 1); - --backgroundPress: hsla(48, 70%, 50%, 1); - --backgroundFocus: hsla(48, 70%, 55%, 1); - --color: hsla(48, 70%, 93%, 1); - --colorHover: hsla(48, 70%, 88%, 1); - --colorPress: hsla(48, 70%, 93%, 1); - --colorFocus: hsla(48, 70%, 88%, 1); - --placeholderColor: hsla(48, 70%, 88%, 1); - --borderColor: hsla(48, 70%, 55%, 1); - --borderColorHover: hsla(48, 70%, 61%, 1); - --borderColorFocus: hsla(48, 70%, 66%, 1); - --borderColorPress: hsla(48, 70%, 61%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_warning_ProgressIndicator, - .t_dark .t_light .t_warning_SliderThumb, - .t_dark .t_light .t_warning_SwitchThumb, - .t_dark .t_light .t_warning_Tooltip, - .t_warning_ProgressIndicator, - .t_warning_SliderThumb, - .t_warning_SwitchThumb, - .t_warning_Tooltip { - --accentBackground: hsla(60, 60%, 99%, 0); - --accentColor: hsla(60, 60%, 99%, 0); - --background0: hsla(48, 69%, 10%, 0.25); - --background025: hsla(48, 69%, 10%, 0.5); - --background05: hsla(48, 69%, 10%, 0.75); - --background075: hsla(48, 70%, 10%, 1); - --color0: hsla(48, 70%, 99%, 1); - --color025: hsla(60, 60%, 99%, 0.75); - --color05: hsla(60, 60%, 99%, 0.5); - --color075: hsla(60, 60%, 99%, 0.25); - --background: hsla(48, 70%, 10%, 1); - --backgroundHover: hsla(48, 70%, 15%, 1); - --backgroundPress: hsla(48, 70%, 50%, 1); - --backgroundFocus: hsla(48, 70%, 55%, 1); - --color: hsla(48, 70%, 93%, 1); - --colorHover: hsla(48, 70%, 88%, 1); - --colorPress: hsla(48, 70%, 93%, 1); - --colorFocus: hsla(48, 70%, 88%, 1); - --placeholderColor: hsla(48, 70%, 88%, 1); - --borderColor: hsla(48, 70%, 55%, 1); - --borderColorHover: hsla(48, 70%, 61%, 1); - --borderColorFocus: hsla(48, 70%, 66%, 1); - --borderColorPress: hsla(48, 70%, 61%, 1); - } -} - -:root.t_dark .t_light .t_dark .t_light .t_warning_SliderTrackActive, -:root.t_dark .t_light .t_warning_SliderTrackActive, -:root.t_light .t_dark .t_light .t_warning_SliderTrackActive, -:root.t_light .t_warning_SliderTrackActive { - --accentBackground: hsla(60, 60%, 99%, 0); - --accentColor: hsla(60, 60%, 99%, 0); - --background0: hsla(48, 69%, 10%, 0.75); - --background025: hsla(48, 70%, 10%, 1); - --background05: hsla(48, 70%, 15%, 1); - --background075: hsla(48, 70%, 50%, 1); - --color0: hsla(48, 70%, 88%, 1); - --color025: hsla(48, 70%, 93%, 1); - --color05: hsla(48, 70%, 99%, 1); - --color075: hsla(60, 60%, 99%, 0.75); - --background: hsla(48, 70%, 50%, 1); - --backgroundHover: hsla(48, 70%, 55%, 1); - --backgroundPress: hsla(48, 70%, 61%, 1); - --backgroundFocus: hsla(48, 70%, 66%, 1); - --color: hsla(48, 70%, 93%, 1); - --colorHover: hsla(48, 70%, 88%, 1); - --colorPress: hsla(48, 70%, 93%, 1); - --colorFocus: hsla(48, 70%, 88%, 1); - --placeholderColor: hsla(48, 70%, 77%, 1); - --borderColor: hsla(48, 70%, 66%, 1); - --borderColorHover: hsla(48, 70%, 72%, 1); - --borderColorFocus: hsla(48, 70%, 77%, 1); - --borderColorPress: hsla(48, 70%, 72%, 1); -} - -@media(prefers-color-scheme:light) { - body { - background: var(--background); - color: var(--color) - } - - .t_dark .t_light .t_warning_SliderTrackActive, - .t_warning_SliderTrackActive { - --accentBackground: hsla(60, 60%, 99%, 0); - --accentColor: hsla(60, 60%, 99%, 0); - --background0: hsla(48, 69%, 10%, 0.75); - --background025: hsla(48, 70%, 10%, 1); - --background05: hsla(48, 70%, 15%, 1); - --background075: hsla(48, 70%, 50%, 1); - --color0: hsla(48, 70%, 88%, 1); - --color025: hsla(48, 70%, 93%, 1); - --color05: hsla(48, 70%, 99%, 1); - --color075: hsla(60, 60%, 99%, 0.75); - --background: hsla(48, 70%, 50%, 1); - --backgroundHover: hsla(48, 70%, 55%, 1); - --backgroundPress: hsla(48, 70%, 61%, 1); - --backgroundFocus: hsla(48, 70%, 66%, 1); - --color: hsla(48, 70%, 93%, 1); - --colorHover: hsla(48, 70%, 88%, 1); - --colorPress: hsla(48, 70%, 93%, 1); - --colorFocus: hsla(48, 70%, 88%, 1); - --placeholderColor: hsla(48, 70%, 77%, 1); - --borderColor: hsla(48, 70%, 66%, 1); - --borderColorHover: hsla(48, 70%, 72%, 1); - --borderColorFocus: hsla(48, 70%, 77%, 1); - --borderColorPress: hsla(48, 70%, 72%, 1); - } -} \ No newline at end of file diff --git a/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap b/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap index 0f1954dde..d387106ab 100644 --- a/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap +++ b/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap @@ -7,18 +7,13 @@ exports[`OnboardingScreen 1`] = ` "flexDirection": "column", "height": "100%", "justifyContent": "flex-start", - "paddingBottom": 39, "paddingTop": 39, "width": "100%", } } > { factoryData, entryPoint: entrypoint.address, }) + assert(!!senderAddress, 'No sender address') + assert(senderAddress !== zeroAddress, 'Zero sender address') const { error } = await supabase.rpc('create_send_account', { send_account: { address: senderAddress, diff --git a/packages/app/features/auth/onboarding/screen.tsx b/packages/app/features/auth/onboarding/screen.tsx index d5aef6fe0..0f5039f32 100644 --- a/packages/app/features/auth/onboarding/screen.tsx +++ b/packages/app/features/auth/onboarding/screen.tsx @@ -26,7 +26,7 @@ import { Carousel } from '../components/Carousel' import { testClient } from 'app/utils/userop' import { parseEther } from 'viem' import { setERC20Balance } from 'app/utils/useSetErc20Balance' -import { baseMainnetClient, usdcAddress } from '@my/wagmi' +import { baseMainnetClient, sendTokenAddress, usdcAddress } from '@my/wagmi' export function OnboardingScreen() { const media = useMedia() @@ -112,6 +112,19 @@ export function SendAccountCongratulations() { > Fund with 100 USDC +
)} diff --git a/packages/app/features/profile/SendForm.tsx b/packages/app/features/profile/SendForm.tsx index 713bfc15b..b66d7633f 100644 --- a/packages/app/features/profile/SendForm.tsx +++ b/packages/app/features/profile/SendForm.tsx @@ -4,7 +4,7 @@ import { SchemaForm, formFields } from 'app/utils/SchemaForm' import { FormProvider, useForm } from 'react-hook-form' import { useSendAccounts } from 'app/utils/send-accounts' import { Hex, formatUnits, parseUnits, isAddress, isHex } from 'viem' -import { baseMainnet, usdcAddress as usdcAddresses } from '@my/wagmi' +import { baseMainnet, sendTokenAddress, usdcAddress as usdcAddresses } from '@my/wagmi' import { useState } from 'react' import { ProfileProp } from './SendDialog' import { useBalance, useTransactionCount } from 'wagmi' @@ -105,6 +105,7 @@ export function SendForm({ profile }: { profile: ProfileProp }) { options: [ { name: 'ETH', value: '' }, { name: 'USDC', value: usdcAddresses[baseMainnet.id] }, + { name: 'SEND', value: sendTokenAddress[baseMainnet.id] }, ], }, }} diff --git a/packages/app/features/profile/__snapshots__/SendDialog.test.tsx.snap b/packages/app/features/profile/__snapshots__/SendDialog.test.tsx.snap index ac9357700..42cfa963c 100644 --- a/packages/app/features/profile/__snapshots__/SendDialog.test.tsx.snap +++ b/packages/app/features/profile/__snapshots__/SendDialog.test.tsx.snap @@ -1339,6 +1339,78 @@ exports[`SendDialog it can send: SendForm 1`] = ` USDC + + + + SEND + + @@ -2830,6 +2902,78 @@ exports[`SendDialog it can send: SendForm Error 1`] = ` USDC + + + + SEND + + diff --git a/packages/app/package.json b/packages/app/package.json index 87cf70048..00707b739 100644 --- a/packages/app/package.json +++ b/packages/app/package.json @@ -46,7 +46,7 @@ "expo-image-picker": "~14.3.1", "expo-linking": "~5.0.2", "expo-secure-store": "~12.3.1", - "permissionless": "^0.1.0", + "permissionless": "^0.1.4", "react-hook-form": "^7.48.2", "react-native-safe-area-context": "4.6.3", "react-native-svg": "13.9.0", diff --git a/packages/app/provider/auth/AuthStateChangeHandler.ts b/packages/app/provider/auth/AuthStateChangeHandler.ts index 883d07a61..a84f8edaa 100644 --- a/packages/app/provider/auth/AuthStateChangeHandler.ts +++ b/packages/app/provider/auth/AuthStateChangeHandler.ts @@ -8,7 +8,7 @@ const useRedirectAfterSignOut = () => { useEffect(() => { const signOutListener = supabase.auth.onAuthStateChange((event) => { if (event === 'SIGNED_OUT') { - router.replace('/sign-in') + router.replace('/auth/sign-in') } }) return () => { diff --git a/packages/contracts/test/BaseSepoliaForkTest.sol b/packages/contracts/test/BaseSepoliaForkTest.sol index ebd22daef..2b918f5dd 100644 --- a/packages/contracts/test/BaseSepoliaForkTest.sol +++ b/packages/contracts/test/BaseSepoliaForkTest.sol @@ -6,7 +6,7 @@ import "forge-std/Test.sol"; import {P256} from "p256-verifier/P256.sol"; abstract contract BaseSepoliaForkTest is Test { - string defaultUrl = "https://base-sepolia.publicnode.com"; + string defaultUrl = "https://base-sepolia-rpc.publicnode.com"; string BASE_SEPOLIA_RPC_URL = vm.envOr("BASE_SEPOLIA_RPC_URL", defaultUrl); function createAndSelectFork() public { diff --git a/packages/playwright/package.json b/packages/playwright/package.json index 53287c97f..d82fb6473 100644 --- a/packages/playwright/package.json +++ b/packages/playwright/package.json @@ -12,20 +12,20 @@ "@types/pg": "^8", "app": "workspace:*", "debug": "^4.3.4", - "dotenv-cli": "^6.0.0", + "dotenv-cli": "^7.3.0", "extract-zip": "^2.0.1", "headless-web3-provider": "^0.2.3", "jsonwebtoken": "^9.0.2", "viem": "^2.7.6" }, "scripts": { - "_with-env": "dotenv -e ../../.env -c -- ", + "_with-env": "dotenv -e ../../.env -c", "codegen": "npx ts-node ./bin/codegen.ts", - "test": "yarn _with-env yarn playwright test" + "test": "yarn _with-env -- yarn playwright test" }, "dependencies": { "cbor": "^9.0.1", - "permissionless": "^0.1.0", + "permissionless": "^0.1.4", "pg": "^8.11.3", "typescript": "^5.1.3" } diff --git a/packages/playwright/playwright.config.ts b/packages/playwright/playwright.config.ts index 7dc89d0b4..0743514ad 100644 --- a/packages/playwright/playwright.config.ts +++ b/packages/playwright/playwright.config.ts @@ -33,7 +33,7 @@ export default defineConfig({ /* Retry on CI only */ retries: process.env.CI ? 2 : 0, /* Opt out of parallel tests on CI. */ - // workers: process.env.CI ? 1 : undefined, + workers: process.env.CI ? 1 : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: [ process.env.CI ? ['github'] : ['list'], diff --git a/packages/playwright/tests/fixtures/send-accounts/test.ts b/packages/playwright/tests/fixtures/send-accounts/test.ts index 22eacf90c..ec80e4a7c 100644 --- a/packages/playwright/tests/fixtures/send-accounts/test.ts +++ b/packages/playwright/tests/fixtures/send-accounts/test.ts @@ -3,7 +3,7 @@ import { test as base } from '../auth' import { OnboardingPage } from './page' import { testBaseClient } from '../viem/base' import { assert } from 'app/utils/assert' -import { parseEther } from 'viem' +import { parseEther, zeroAddress } from 'viem' import { debug } from 'debug' import { setERC20Balance } from 'app/utils/useSetErc20Balance' @@ -35,13 +35,14 @@ const sendAccountTest = base.extend<{ throw error } assert(!!sendAccount, 'no send account found') + assert(sendAccount.address !== zeroAddress, 'send account address is zero') log('fund send account', sendAccount.address) await testBaseClient.setBalance({ address: sendAccount.address, value: parseEther('1'), }) - setERC20Balance({ + await setERC20Balance({ client: testBaseClient, address: sendAccount.address, tokenAddress: usdcAddress[testBaseClient.chain.id], diff --git a/packages/wagmi/package.json b/packages/wagmi/package.json index 4a62e4250..35e899276 100644 --- a/packages/wagmi/package.json +++ b/packages/wagmi/package.json @@ -33,7 +33,7 @@ "@my/contracts": "workspace:*", "@wagmi/core": "^2.6.3", "change-case": "^5.4.2", - "permissionless": "^0.1.0", + "permissionless": "^0.1.4", "viem": "^2.7.6", "wagmi": "^2.5.5" } diff --git a/supabase/package.json b/supabase/package.json index c7f5dcadd..927711497 100644 --- a/supabase/package.json +++ b/supabase/package.json @@ -23,7 +23,7 @@ "test": "npx supabase test db" }, "devDependencies": { - "dotenv-cli": "^6.0.0", + "dotenv-cli": "^7.3.0", "supabase": "1.145.4", "type-fest": "^4.3.1" } diff --git a/yarn.lock b/yarn.lock index 15c5ce943..84e7cc722 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5616,11 +5616,11 @@ __metadata: app: "workspace:*" cbor: "npm:^9.0.1" debug: "npm:^4.3.4" - dotenv-cli: "npm:^6.0.0" + dotenv-cli: "npm:^7.3.0" extract-zip: "npm:^2.0.1" headless-web3-provider: "npm:^0.2.3" jsonwebtoken: "npm:^9.0.2" - permissionless: "npm:^0.1.0" + permissionless: "npm:^0.1.4" pg: "npm:^8.11.3" typescript: "npm:^5.1.3" viem: "npm:^2.7.6" @@ -5644,7 +5644,7 @@ __metadata: version: 0.0.0-use.local resolution: "@my/supabase@workspace:supabase" dependencies: - dotenv-cli: "npm:^6.0.0" + dotenv-cli: "npm:^7.3.0" supabase: "npm:1.145.4" type-fest: "npm:^4.3.1" languageName: unknown @@ -5686,7 +5686,7 @@ __metadata: change-case: "npm:^5.4.2" debug: "npm:^4.3.4" globby: "npm:^14.0.0" - permissionless: "npm:^0.1.0" + permissionless: "npm:^0.1.4" typescript: "npm:^5.1.3" viem: "npm:^2.7.6" wagmi: "npm:^2.5.5" @@ -11792,7 +11792,7 @@ __metadata: jest: "npm:^29.7.0" jest-expo: "npm:^49.0.0" nock: "npm:^14.0.0-beta.2" - permissionless: "npm:^0.1.0" + permissionless: "npm:^0.1.4" react-hook-form: "npm:^7.48.2" react-native-safe-area-context: "npm:4.6.3" react-native-svg: "npm:13.9.0" @@ -14841,7 +14841,7 @@ __metadata: app: "workspace:*" bun-types: "npm:latest" debug: "npm:^4.3.4" - dotenv-cli: "npm:^6.0.0" + dotenv-cli: "npm:^7.3.0" express: "npm:^4.18.2" lru-cache: "npm:^10.0.1" pino: "npm:^8.16.1" @@ -14977,17 +14977,17 @@ __metadata: languageName: node linkType: hard -"dotenv-cli@npm:^6.0.0": - version: 6.0.0 - resolution: "dotenv-cli@npm:6.0.0" +"dotenv-cli@npm:^7.3.0": + version: 7.3.0 + resolution: "dotenv-cli@npm:7.3.0" dependencies: cross-spawn: "npm:^7.0.3" - dotenv: "npm:^16.0.0" - dotenv-expand: "npm:^8.0.1" - minimist: "npm:^1.2.5" + dotenv: "npm:^16.3.0" + dotenv-expand: "npm:^10.0.0" + minimist: "npm:^1.2.6" bin: dotenv: cli.js - checksum: 3db5a363eedd24d428001a956d9b8c72094983bfe0e0e722cda7803b614daf85dde9c9beb5d9fa28a139a5c594533ecd8f9d8430a90c244175e81c9a40abc5b1 + checksum: bc48e9872ed451aa7633cfde0079f5e4b40837d49dca4eab947682c80f524bd1e63ec31ff69b7cf955ff969185a05a343dd5d754dd5569e4ae31f8e9a790ab1b languageName: node linkType: hard @@ -15007,17 +15007,10 @@ __metadata: languageName: node linkType: hard -"dotenv-expand@npm:^8.0.1": - version: 8.0.3 - resolution: "dotenv-expand@npm:8.0.3" - checksum: 375c681ee44511ac30491494b106761c76a132b800ffe5060bfd2037fffa942941bf15b7fcc93113836c33ca05a8880d0bd82ba82d3c5cccc2d32419fe11b182 - languageName: node - linkType: hard - -"dotenv@npm:^16.0.0, dotenv@npm:~16.0.3": - version: 16.0.3 - resolution: "dotenv@npm:16.0.3" - checksum: d6788c8e40b35ad9a9ca29249dccf37fa6b3ad26700fcbc87f2f41101bf914f5193a04e36a3d23de70b1dcb8e5d5a3b21e151debace2c4cd08d868be500a1b29 +"dotenv@npm:^16.3.0": + version: 16.4.5 + resolution: "dotenv@npm:16.4.5" + checksum: 55a3134601115194ae0f924e54473459ed0d9fc340ae610b676e248cca45aa7c680d86365318ea964e6da4e2ea80c4514c1adab5adb43d6867fb57ff068f95c8 languageName: node linkType: hard @@ -15035,6 +15028,13 @@ __metadata: languageName: node linkType: hard +"dotenv@npm:~16.0.3": + version: 16.0.3 + resolution: "dotenv@npm:16.0.3" + checksum: d6788c8e40b35ad9a9ca29249dccf37fa6b3ad26700fcbc87f2f41101bf914f5193a04e36a3d23de70b1dcb8e5d5a3b21e151debace2c4cd08d868be500a1b29 + languageName: node + linkType: hard + "doublylinked@npm:^2.5.2, doublylinked@npm:^2.5.3": version: 2.5.3 resolution: "doublylinked@npm:2.5.3" @@ -22909,7 +22909,7 @@ __metadata: languageName: node linkType: hard -"minimist@npm:^1.2.0, minimist@npm:^1.2.3, minimist@npm:^1.2.5, minimist@npm:^1.2.6, minimist@npm:^1.2.8": +"minimist@npm:^1.2.0, minimist@npm:^1.2.3, minimist@npm:^1.2.6, minimist@npm:^1.2.8": version: 1.2.8 resolution: "minimist@npm:1.2.8" checksum: 908491b6cc15a6c440ba5b22780a0ba89b9810e1aea684e253e43c4e3b8d56ec1dcdd7ea96dde119c29df59c936cde16062159eae4225c691e19c70b432b6e6f @@ -23319,7 +23319,7 @@ __metadata: "@types/node": "npm:^20.11.0" "@welldone-software/why-did-you-render": "npm:^7.0.1" app: "workspace:*" - dotenv-cli: "npm:^6.0.0" + dotenv-cli: "npm:^7.3.0" eslint-config-next: "npm:^14.0.4" next: "npm:13.4.19" plaiceholder: "npm:^3.0.0" @@ -24653,12 +24653,12 @@ __metadata: languageName: node linkType: hard -"permissionless@npm:^0.1.0": - version: 0.1.0 - resolution: "permissionless@npm:0.1.0" +"permissionless@npm:^0.1.4": + version: 0.1.4 + resolution: "permissionless@npm:0.1.4" peerDependencies: viem: ^2.0.0 - checksum: a0c4f8f0d6d9360a6da76b36ba23fd62274bd962ba265441345f6dd36bd7723d4927ebf1688eeb7276249a157b2f9e570821802f3fdc64bbeb5359bf7929a506 + checksum: 29d82440c1ca0001d4f35e869cf0550e6a7505bdef4439ece25606740f212edcacdb0ff15d32870c253b01e2307854d7cbfcccc2a27b2ce37c8567d1e5ad9d23 languageName: node linkType: hard From 9b55338a4078e2f4403a770201b73fb806150a5c Mon Sep 17 00:00:00 2001 From: youngkidwarrior Date: Tue, 27 Feb 2024 12:41:13 -0800 Subject: [PATCH 025/177] Final Onboarding Tweaks --- .../components/layout/animation-layout.tsx | 13 +++-- .../app/components/sidebar/AuthSideBar.tsx | 8 +++- .../app/features/auth/components/Carousel.tsx | 48 ++++++++++++------- .../features/auth/components/VerifyCode.tsx | 19 ++++++-- packages/app/features/auth/layout.web.tsx | 38 ++++++++------- .../auth/onboarding/onboarding-form.tsx | 6 +-- .../app/features/auth/onboarding/screen.tsx | 16 ++----- packages/app/features/auth/sign-in/screen.tsx | 37 ++++++-------- .../features/auth/sign-in/sign-in-form.tsx | 19 +++++--- .../FormFields/CountryCodeField.tsx | 25 ++++++++-- packages/ui/src/components/SideBar/index.tsx | 2 +- 11 files changed, 139 insertions(+), 92 deletions(-) diff --git a/packages/app/components/layout/animation-layout.tsx b/packages/app/components/layout/animation-layout.tsx index a1b49abf7..57a822fbe 100644 --- a/packages/app/components/layout/animation-layout.tsx +++ b/packages/app/components/layout/animation-layout.tsx @@ -9,8 +9,8 @@ type AnimationLayoutProps = { const YStackEnterable = styled(YStack, { variants: { - isLeft: { true: { x: -300, opacity: 0 } }, - isRight: { true: { x: 300, opacity: 0 } }, + isLeft: { true: { x: -300, opacity: 0, display: 'none' } }, + isRight: { true: { x: 300, opacity: 0, display: 'none' } }, } as const, }) @@ -25,7 +25,14 @@ export const AnimationLayout = ({ return ( - + {children} diff --git a/packages/app/components/sidebar/AuthSideBar.tsx b/packages/app/components/sidebar/AuthSideBar.tsx index 797afebb6..5ac07eb9f 100644 --- a/packages/app/components/sidebar/AuthSideBar.tsx +++ b/packages/app/components/sidebar/AuthSideBar.tsx @@ -17,7 +17,7 @@ const AuthSideBar = ({ ...props }: YStackProps) => { return ( - + @@ -38,7 +38,11 @@ const AuthSideBar = ({ ...props }: YStackProps) => { export const AuthSideBarWrapper = ({ children }: { children?: React.ReactNode }) => { const media = useMedia() if (media.gtMd) { - return }>{children} + return ( + }> + {children} + + ) } return children } diff --git a/packages/app/features/auth/components/Carousel.tsx b/packages/app/features/auth/components/Carousel.tsx index af7042cd7..0d4b84440 100644 --- a/packages/app/features/auth/components/Carousel.tsx +++ b/packages/app/features/auth/components/Carousel.tsx @@ -1,19 +1,23 @@ import { useContext, useEffect, useState } from 'react' import { AuthCarouselContext } from '../AuthCarouselContext' import { H1, Paragraph, Progress, Stack, XStack, useMedia } from '@my/ui' +import { AnimationLayout } from 'app/components/layout/animation-layout' const carouselItems = [ { - title: 'LIKE CASH', + title: 'Like Cash', description: 'Send and receive money globally in seconds', + descriptionFontSize: 16, }, { - title: 'ALL YOURS', + title: 'All Yours', description: 'Only you have access to your funds', + descriptionFontSize: 18, }, { - title: 'SECURE', + title: 'Secure', description: 'Privacy first with verified sign-in and transfers', + descriptionFontSize: 16, }, ] as const @@ -30,27 +34,28 @@ const CarouselProgress = () => { useEffect(() => { const progressWidthInterval = setInterval(() => { setProgressWidth((progressWidth) => { + if (progressWidth >= 100) { + setCarouselProgress((progress) => { + return (progress + 1) % carouselItems?.length + }) + } return progressWidth >= 100 ? 0 : progressWidth + 1 }) - if (progressWidth >= 100) { - setCarouselProgress((progress) => (progress + 1) % carouselItems?.length) - } }, 50) - return () => { clearInterval(progressWidthInterval) } - }, [setCarouselProgress, progressWidth]) + }, [setCarouselProgress]) return ( - + {carouselItems?.map(({ title }, i) => { return ( { ) } -export const Carousel = () => { +export const Carousel = (props: { currentKey: string | undefined; fullscreen: boolean }) => { const { carouselProgress } = useContext(AuthCarouselContext) const { gtMd } = useMedia() const item = carouselItems?.at(carouselProgress) return ( - <> + -

{item?.title}

+

+ {item?.title} +

{item?.description}
{gtMd && } - +
) } diff --git a/packages/app/features/auth/components/VerifyCode.tsx b/packages/app/features/auth/components/VerifyCode.tsx index 87000b3d3..9c15b071a 100644 --- a/packages/app/features/auth/components/VerifyCode.tsx +++ b/packages/app/features/auth/components/VerifyCode.tsx @@ -84,7 +84,20 @@ export const VerifyCode = ({ phone, onSuccess, type = 'sms' }: VerifyCodeProps) $sm={{ jc: 'center', height: '100%' }} ai={'flex-start'} > - submit()} br="$3" bc={'$accent9Light'} $sm={{ w: '100%' }}> + submit()} + br="$3" + bc={'$accent9Light'} + $sm={{ w: '100%' }} + $gtMd={{ + mt: '0', + als: 'flex-end', + mx: 0, + ml: 'auto', + w: '$10.5', + h: '$3.5', + }} + > {'VERIFY ACCOUNT'} @@ -100,13 +113,13 @@ export const VerifyCode = ({ phone, onSuccess, type = 'sms' }: VerifyCodeProps)

Enter the code we sent you on your phone

- + Your Code diff --git a/packages/app/features/auth/layout.web.tsx b/packages/app/features/auth/layout.web.tsx index e83e546a4..702c8123f 100644 --- a/packages/app/features/auth/layout.web.tsx +++ b/packages/app/features/auth/layout.web.tsx @@ -16,7 +16,7 @@ export function AuthLayout({ }) { const media = useMedia() const pathname = usePathname() - const isMobileOnboarding = media.sm && pathname.includes('/auth/onboarding') + const isMobileOnboarding = !media.gtMd && pathname.includes('/auth/onboarding') const [carouselImages, setCarouselImages] = useState([]) const [carouselProgress, setCarouselProgress] = useState(0) @@ -41,22 +41,26 @@ export function AuthLayout({ direction={1} fullscreen={true} > - - + <> + + + )} diff --git a/packages/app/features/auth/onboarding/onboarding-form.tsx b/packages/app/features/auth/onboarding/onboarding-form.tsx index 615cb561d..63ad3cd28 100644 --- a/packages/app/features/auth/onboarding/onboarding-form.tsx +++ b/packages/app/features/auth/onboarding/onboarding-form.tsx @@ -17,7 +17,6 @@ import { XStack, SubmitButton, ButtonText, - H1, Paragraph, BigHeading, H3, @@ -157,6 +156,7 @@ export const OnboardingForm = () => { mx: 0, ml: 'auto', maw: '$12', + h: '$3.5', }} > @@ -175,13 +175,13 @@ export const OnboardingForm = () => {

Start by creating a Passkey below. Send uses passkeys to secure your account

- + Passkey Name diff --git a/packages/app/features/auth/onboarding/screen.tsx b/packages/app/features/auth/onboarding/screen.tsx index 0f5039f32..1692b1882 100644 --- a/packages/app/features/auth/onboarding/screen.tsx +++ b/packages/app/features/auth/onboarding/screen.tsx @@ -27,16 +27,18 @@ import { testClient } from 'app/utils/userop' import { parseEther } from 'viem' import { setERC20Balance } from 'app/utils/useSetErc20Balance' import { baseMainnetClient, sendTokenAddress, usdcAddress } from '@my/wagmi' +import { useAuthCarouselContext } from 'app/features/auth/AuthCarouselContext' export function OnboardingScreen() { + const { carouselProgress } = useAuthCarouselContext() const media = useMedia() const { data: sendAccts } = useSendAccounts() if (media.gtMd) return ( - - + + ) @@ -50,15 +52,7 @@ export function OnboardingScreen() {
- {media.gtMd ? ( - - - - ) : sendAccts?.length === 0 ? ( - - ) : ( - - )} + {sendAccts?.length === 0 ? : }
) diff --git a/packages/app/features/auth/sign-in/screen.tsx b/packages/app/features/auth/sign-in/screen.tsx index 231d25e30..79f08bfd6 100644 --- a/packages/app/features/auth/sign-in/screen.tsx +++ b/packages/app/features/auth/sign-in/screen.tsx @@ -2,30 +2,26 @@ import { Stack, YStack, Button, ButtonText, XStack, useMedia, Theme } from '@my/ import { IconSendLogo } from 'app/components/icons' import { useContext, useEffect, useState } from 'react' import { SignInForm } from 'app/features/auth/sign-in/sign-in-form' -import { AnimationLayout } from 'app/components/layout/animation-layout' + import { AuthCarouselContext } from 'app/features/auth/AuthCarouselContext' import { Carousel } from 'app/features/auth/components/Carousel' export const SignInScreen = () => { + const { carouselProgress } = useContext(AuthCarouselContext) const media = useMedia() + if (media.gtMd) + return ( + + + + + + ) + return ( - {media.gtMd ? ( - - - - ) : ( - - )} + ) } @@ -76,13 +72,8 @@ const SignInScreensMobile = () => { ) : ( <> - - - + + {getSignInButtons(screens[signInProgress])} )} diff --git a/packages/app/features/auth/sign-in/sign-in-form.tsx b/packages/app/features/auth/sign-in/sign-in-form.tsx index 8f3f0fe49..221b8cc17 100644 --- a/packages/app/features/auth/sign-in/sign-in-form.tsx +++ b/packages/app/features/auth/sign-in/sign-in-form.tsx @@ -54,7 +54,7 @@ export const SignInForm = () => { countrycode: { // @ts-expect-error unsure how to get web props to work with tamagui 'aria-label': 'Country Code', - height: '$3', + size: '$3', }, phone: { 'aria-label': 'Phone number', @@ -67,7 +67,6 @@ export const SignInForm = () => { borderWidth: 0, borderBottomWidth: 2, borderRadius: '$0', - placeholder: 'Phone number', width: '100%', backgroundColor: 'transparent', outlineColor: 'transparent', @@ -86,8 +85,16 @@ export const SignInForm = () => { br="$3" bc={'$accent9Light'} $sm={{ w: '100%' }} + $gtMd={{ + mt: '0', + als: 'flex-end', + mx: 0, + ml: 'auto', + w: '$10', + h: '$3.5', + }} > - + {'/SEND IT'} @@ -102,20 +109,20 @@ export const SignInForm = () => {

Sign in with your phone number

- + Your Phone - {Object.values(fields)} + {Object.values(fields)} )} diff --git a/packages/ui/src/components/FormFields/CountryCodeField.tsx b/packages/ui/src/components/FormFields/CountryCodeField.tsx index adfe474fa..0b8cd23e6 100644 --- a/packages/ui/src/components/FormFields/CountryCodeField.tsx +++ b/packages/ui/src/components/FormFields/CountryCodeField.tsx @@ -11,7 +11,6 @@ import { Select, SelectProps, Sheet, - Spinner, Text, Theme, XStack, @@ -67,11 +66,27 @@ export const CountryCodeField = ({ value={country ? country.name : undefined} {...props} > - + } + space="$2" + > {country ? ( ) : ( - + Country )} diff --git a/packages/ui/src/components/SideBar/index.tsx b/packages/ui/src/components/SideBar/index.tsx index 8ab4975ee..a70c1f925 100644 --- a/packages/ui/src/components/SideBar/index.tsx +++ b/packages/ui/src/components/SideBar/index.tsx @@ -7,7 +7,7 @@ export const SideBar = ({ }: { children?: React.ReactNode } & YStackProps) => { return ( Date: Wed, 28 Feb 2024 22:26:23 -0800 Subject: [PATCH 026/177] Add OTP form props --- packages/app/features/auth/components/VerifyCode.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/app/features/auth/components/VerifyCode.tsx b/packages/app/features/auth/components/VerifyCode.tsx index 9c15b071a..45af99d65 100644 --- a/packages/app/features/auth/components/VerifyCode.tsx +++ b/packages/app/features/auth/components/VerifyCode.tsx @@ -73,6 +73,9 @@ export const VerifyCode = ({ phone, onSuccess, type = 'sms' }: VerifyCodeProps) $sm: { w: '60%', }, + // @todo move these to OTP form when that becomes stable + textContentType: 'oneTimeCode', + autoComplete: 'sms-otp', outlineColor: 'transparent', }, }} From 12bf54e14db37fb29e6c65ed4b21f5135514b0be Mon Sep 17 00:00:00 2001 From: youngkidwarrior Date: Wed, 28 Feb 2024 22:59:03 -0800 Subject: [PATCH 027/177] Remove Congratulations screen and navigate to home after send account success --- .../app/components/sidebar/AuthSideBar.tsx | 14 ++----------- .../auth/onboarding/onboarding-form.tsx | 10 +++++++++- .../app/features/auth/onboarding/screen.tsx | 20 ++++--------------- 3 files changed, 15 insertions(+), 29 deletions(-) diff --git a/packages/app/components/sidebar/AuthSideBar.tsx b/packages/app/components/sidebar/AuthSideBar.tsx index 5ac07eb9f..1b0f5d686 100644 --- a/packages/app/components/sidebar/AuthSideBar.tsx +++ b/packages/app/components/sidebar/AuthSideBar.tsx @@ -3,17 +3,9 @@ import { IconSendLogo } from 'app/components/icons' import { SignInForm } from 'app/features/auth/sign-in/sign-in-form' import { OnboardingForm } from 'app/features/auth/onboarding/onboarding-form' import { usePathname } from 'app/utils/usePathname' -import { useSendAccounts } from 'app/utils/send-accounts' -import { SendAccountCongratulations } from 'app/features/auth/onboarding/screen' const AuthSideBar = ({ ...props }: YStackProps) => { const pathName = usePathname() - // @todo handle loading and error states - const { - data: sendAccts, - // error: sendAcctsError, - // isLoading: sendAcctsIsLoading, - } = useSendAccounts() return ( @@ -25,11 +17,9 @@ const AuthSideBar = ({ ...props }: YStackProps) => { {pathName.includes('/auth/sign-in') ? ( - ) : pathName.includes('auth/onboarding') && sendAccts?.length === 0 ? ( + ) : pathName.includes('auth/onboarding') ? ( - ) : ( - - )} + ) : null} ) diff --git a/packages/app/features/auth/onboarding/onboarding-form.tsx b/packages/app/features/auth/onboarding/onboarding-form.tsx index 63ad3cd28..834daa0ce 100644 --- a/packages/app/features/auth/onboarding/onboarding-form.tsx +++ b/packages/app/features/auth/onboarding/onboarding-form.tsx @@ -25,6 +25,7 @@ import { SchemaForm, formFields } from 'app/utils/SchemaForm' import { z } from 'zod' import { useForm, FormProvider } from 'react-hook-form' import { useSendAccounts } from 'app/utils/send-accounts' +import { useRouter } from 'solito/router' const OnboardingSchema = z.object({ accountName: formFields.text, @@ -39,6 +40,7 @@ export const OnboardingForm = () => { const { user } = useUser() const form = useForm>() const { refetch: refetchSendAccounts } = useSendAccounts() + const { replace } = useRouter() // PASSKEY / ACCOUNT CREATION STATE const deviceName = Device.deviceName @@ -92,7 +94,13 @@ export const OnboardingForm = () => { if (error) { throw error } - await refetchSendAccounts() + try { + const { data: sendAccts, error: refetchError } = await refetchSendAccounts() + if (refetchError) throw refetchError + if (sendAccts?.length && sendAccts.length > 0) replace('/') + } catch (e) { + throw Error(`Sorry something went wrong \n\n ${e}`) + } } return ( diff --git a/packages/app/features/auth/onboarding/screen.tsx b/packages/app/features/auth/onboarding/screen.tsx index 1692b1882..97d59d47e 100644 --- a/packages/app/features/auth/onboarding/screen.tsx +++ b/packages/app/features/auth/onboarding/screen.tsx @@ -7,20 +7,9 @@ * - Generate a deterministic address from the public key * - Ask the user to deposit funds */ -import { - Paragraph, - Stack, - YStack, - XStack, - Theme, - useMedia, - H3, - useToastController, - Button, -} from '@my/ui' +import { Paragraph, Stack, YStack, Theme, useMedia, useToastController, Button } from '@my/ui' import { useSendAccounts } from 'app/utils/send-accounts' -import { IconSendLogo, IconCopy } from 'app/components/icons' -import { shorten } from 'app/utils/strings' +import { IconSendLogo } from 'app/components/icons' import { OnboardingForm } from './onboarding-form' import { Carousel } from '../components/Carousel' import { testClient } from 'app/utils/userop' @@ -32,7 +21,6 @@ import { useAuthCarouselContext } from 'app/features/auth/AuthCarouselContext' export function OnboardingScreen() { const { carouselProgress } = useAuthCarouselContext() const media = useMedia() - const { data: sendAccts } = useSendAccounts() if (media.gtMd) return ( @@ -52,12 +40,12 @@ export function OnboardingScreen() { - {sendAccts?.length === 0 ? : } + ) } -export function SendAccountCongratulations() { +export function SendSecretStore() { const toast = useToastController() const { data: sendAccts } = useSendAccounts() const sendAcct = sendAccts?.[0] From 88df92f0d2cc4e60ed788dbeacc6d3ec8cfbfe80 Mon Sep 17 00:00:00 2001 From: youngkidwarrior Date: Sun, 3 Mar 2024 16:46:16 -0800 Subject: [PATCH 028/177] Replace Setting page index with Account --- apps/next/pages/{settings => account}/change-phone.tsx | 0 apps/next/pages/{settings => account}/index.tsx | 0 apps/next/pages/{settings => account}/profile.tsx | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename apps/next/pages/{settings => account}/change-phone.tsx (100%) rename apps/next/pages/{settings => account}/index.tsx (100%) rename apps/next/pages/{settings => account}/profile.tsx (100%) diff --git a/apps/next/pages/settings/change-phone.tsx b/apps/next/pages/account/change-phone.tsx similarity index 100% rename from apps/next/pages/settings/change-phone.tsx rename to apps/next/pages/account/change-phone.tsx diff --git a/apps/next/pages/settings/index.tsx b/apps/next/pages/account/index.tsx similarity index 100% rename from apps/next/pages/settings/index.tsx rename to apps/next/pages/account/index.tsx diff --git a/apps/next/pages/settings/profile.tsx b/apps/next/pages/account/profile.tsx similarity index 100% rename from apps/next/pages/settings/profile.tsx rename to apps/next/pages/account/profile.tsx From 37c8e4c7bb4fb8d38c4512204dc354937048b064 Mon Sep 17 00:00:00 2001 From: youngkidwarrior Date: Sun, 3 Mar 2024 16:49:08 -0800 Subject: [PATCH 029/177] Improve Sidebar prop resolution and update w/ new designs & routes --- packages/app/components/icons/IconAccount.tsx | 25 ++++ packages/app/components/icons/IconHome.tsx | 9 +- packages/app/components/icons/index.tsx | 1 + .../app/components/sidebar/HomeSideBar.tsx | 107 +++--------------- .../app/components/sidebar/SideBarNavLink.tsx | 2 +- packages/ui/src/components/SideBar/index.tsx | 30 ++--- packages/ui/src/components/index.ts | 1 + 7 files changed, 62 insertions(+), 113 deletions(-) create mode 100644 packages/app/components/icons/IconAccount.tsx diff --git a/packages/app/components/icons/IconAccount.tsx b/packages/app/components/icons/IconAccount.tsx new file mode 100644 index 000000000..757ecc96c --- /dev/null +++ b/packages/app/components/icons/IconAccount.tsx @@ -0,0 +1,25 @@ +import { ColorTokens } from '@my/ui/types' +import { IconProps, themed } from '@tamagui/helpers-icon' +import { memo } from 'react' +import { Path, Svg } from 'react-native-svg' + +const Account = (props: IconProps) => { + const { size, color, ...rest } = props + return ( + + + + ) +} +const IconAccount = memo(themed(Account)) +export { IconAccount } diff --git a/packages/app/components/icons/IconHome.tsx b/packages/app/components/icons/IconHome.tsx index 78ed4fdab..50268860f 100644 --- a/packages/app/components/icons/IconHome.tsx +++ b/packages/app/components/icons/IconHome.tsx @@ -7,14 +7,15 @@ const Home = (props: IconProps) => { const { size, color, ...rest } = props return ( diff --git a/packages/app/components/icons/index.tsx b/packages/app/components/icons/index.tsx index 637a9d7d8..8d363e258 100644 --- a/packages/app/components/icons/index.tsx +++ b/packages/app/components/icons/index.tsx @@ -40,3 +40,4 @@ export { IconTelegram } from './IconTelegram' export { IconTheme } from './IconTheme' export { IconLogout } from './IconLogout' export { IconGear } from './IconGear' +export { IconAccount } from './IconAccount' diff --git a/packages/app/components/sidebar/HomeSideBar.tsx b/packages/app/components/sidebar/HomeSideBar.tsx index 05970e1d4..297699475 100644 --- a/packages/app/components/sidebar/HomeSideBar.tsx +++ b/packages/app/components/sidebar/HomeSideBar.tsx @@ -1,86 +1,45 @@ import { BottomSheet, - Button, - ButtonIcon, Nav, SheetProps, SideBar, SideBarWrapper, - XStack, YStack, YStackProps, useMedia, } from '@my/ui' import { Link } from '@my/ui' import { + IconAccount, IconActivity, IconDashboard, IconDistributions, - IconGear, + IconHome, IconSLogo, IconSendLogo, - IconTelegramLogo, - IconXLogo, } from 'app/components/icons' -import { SideBarFooterLink } from 'app/components/sidebar/SideBarFooterLink' import { SideBarNavLink } from 'app/components/sidebar/SideBarNavLink' -import { telegram as telegramSocial, twitter as twitterSocial } from 'app/data/socialLinks' import { useNav } from 'app/routers/params' const HomeSideBar = ({ ...props }: YStackProps) => { return ( - - + + -

+ ) +} + +const numOfDistributions = 10 +const DistributionRewardsList = ({ + distributions, +}: { distributions?: UseDistributionsResultData }) => { + const { isLoading, error } = useDistributions() + const [distributionNumberParam, setDistributionNumberParam] = useDistributionNumber() + const allDistributions = distributions?.concat( + Array(numOfDistributions - distributions.length).fill(undefined) + ) + + if (error) throw error + + if (isLoading) return + + return ( + + + {allDistributions?.map((distribution, i) => { + return distribution === undefined ? ( + + ) : distributionNumberParam === distribution?.number || + (distributionNumberParam === undefined && + distribution?.number === distributions?.length) ? ( + - ) : ( - - ) - })} - + + {`# ${distribution?.number} `} + + + ) : ( + + ) + })} +
+ ) } -const EarnListSkeleton = () => { +const DistributionRewardsSkeleton = () => { return null } From b7f65b399515ba252e348020ab77ca5bb37db588 Mon Sep 17 00:00:00 2001 From: Victor Ginelli Date: Thu, 14 Mar 2024 12:59:36 -0700 Subject: [PATCH 079/177] Distribution mobile styling & layout tweaks (#185) --- packages/app/components/HomeTopNav.tsx | 3 +- .../components/DistributionClaimButton.tsx | 37 +-- .../features/account/earn-tokens/screen.tsx | 286 ++++++++++-------- packages/app/features/home/layout.web.tsx | 6 +- packages/app/utils/useTimeRemaining.ts | 2 +- 5 files changed, 176 insertions(+), 158 deletions(-) diff --git a/packages/app/components/HomeTopNav.tsx b/packages/app/components/HomeTopNav.tsx index d357d0ca6..0f7456196 100644 --- a/packages/app/components/HomeTopNav.tsx +++ b/packages/app/components/HomeTopNav.tsx @@ -73,7 +73,8 @@ export function HomeTopNav({ header, subheader }: { header: string; subheader?: fontFamily={'$mono'} lineHeight={24} px="$6" - $lg={{ py: '$6' }} + py="$3" + $gtMd={{ py: '$6' }} $gtLg={{ ml: '$7', pb: '$4' }} $theme-light={{ col: '$gray10Light' }} $theme-dark={{ col: '$gray10Dark' }} diff --git a/packages/app/features/account/earn-tokens/components/DistributionClaimButton.tsx b/packages/app/features/account/earn-tokens/components/DistributionClaimButton.tsx index 09e173948..93e3d0cc3 100644 --- a/packages/app/features/account/earn-tokens/components/DistributionClaimButton.tsx +++ b/packages/app/features/account/earn-tokens/components/DistributionClaimButton.tsx @@ -74,14 +74,9 @@ export const DistributionClaimButton = ({ distribution }: DistributionsClaimButt } ) - if (!isClaimActive) { - return null - } + if (!isClaimActive) return null - if (!isEligible) { - // If the user is not eligible, show the claim button disabled - return null - } + if (!isEligible) return null if (!isConnected) { return ( @@ -146,7 +141,7 @@ export const DistributionClaimButton = ({ distribution }: DistributionsClaimButt return ( Checking claimability... @@ -159,7 +154,7 @@ export const DistributionClaimButton = ({ distribution }: DistributionsClaimButt return ( Error checking eligibility. Please try again later. {isTrancheActiveError?.message} @@ -170,31 +165,13 @@ export const DistributionClaimButton = ({ distribution }: DistributionsClaimButt } // If the user is eligible but the tranche is inactive, show the claim button disabled - if (!isTrancheActive) { - return ( - - - - - Tranche is inactive. - - - - ) - } + if (!isTrancheActive) null // If the user is eligible but has already claimed, show the claim button disabled if (isClaimed) { return ( - Already claimed{' '} + Already claimed {claimReceiptSuccess && ( Error preparing claim. Please try again later. {claimWriteConfigError.message} diff --git a/packages/app/features/account/earn-tokens/screen.tsx b/packages/app/features/account/earn-tokens/screen.tsx index 359b302d9..2c382ba4b 100644 --- a/packages/app/features/account/earn-tokens/screen.tsx +++ b/packages/app/features/account/earn-tokens/screen.tsx @@ -3,6 +3,7 @@ import { ButtonText, Card, H1, + H2, H3, Label, Paragraph, @@ -10,20 +11,20 @@ import { Stack, Text, Theme, + View, XStack, YStack, } from '@my/ui' -import { sendMerkleDropAddress } from '@my/wagmi' + import React from 'react' import { UseDistributionsResultData, useDistributions, - useSendMerkleDropIsClaimed, useSendTokenBalance, } from 'app/utils/distributions' import { useDistributionNumber } from 'app/routers/params' -import { useTimeRemaining } from 'app/utils/useTimeRemaining' +import { TimeRemaining, useTimeRemaining } from 'app/utils/useTimeRemaining' import { useUserReferralsCount } from 'app/utils/useUserReferralsCount' import { useChainAddresses } from 'app/utils/useChainAddresses' @@ -32,18 +33,43 @@ import { DistributionClaimButton } from './components/DistributionClaimButton' export function EarnTokensScreen() { const { data: distributions, isLoading } = useDistributions() const [distributionNumberParam] = useDistributionNumber() - const selectedDistribution = distributionNumberParam - ? distributions?.at(distributionNumberParam - 1) - : distributions?.at(distributions.length - 1) - - if (!selectedDistribution) return 'No distribution selected' + const selectedDistributionIndex = distributionNumberParam + ? distributionNumberParam - 1 + : distributions + ? distributions.length - 1 + : 0 + const selectedDistribution = distributions?.at(selectedDistributionIndex) return ( - - - - - + + {selectedDistribution ? ( + + + + ) : ( + +

No distributions available

+
+ )} + +
) } @@ -81,79 +107,102 @@ const DistributionRewardsSection = ({ : now ) return ( - - - - - - + + + - + - - + + ) } +const ClaimTimeRemaining = ({ timeRemaining }: { timeRemaining: TimeRemaining }) => { + return ( + + + + + + {String(timeRemaining.days).padStart(2, '0')}D + + : + + {String(timeRemaining.hours).padStart(2, '0')}Hr + + : + + {String(timeRemaining.minutes).padStart(2, '0')}Min + + : + + {String(timeRemaining.seconds).padStart(2, '0')}Sec + + + + + ) +} + +const ClaimTimeRemainingDigit = ({ children }: { children?: string | string[] }) => ( + + {children} + +) + const SendBalanceCard = () => { - const { - data: addresses, - isLoading: isLoadingChainAddresses, - error: chainAddressesError, - } = useChainAddresses() + const { data: addresses, error: chainAddressesError } = useChainAddresses() const address = addresses?.[0]?.address if (chainAddressesError) throw chainAddressesError @@ -163,7 +212,16 @@ const SendBalanceCard = () => { if (sendBalanceError) throw sendBalanceError return ( - +
@@ -328,8 +351,7 @@ const DistributionStatus = ({ const numOfDistributions = 10 const DistributionRewardsList = ({ distributions, - selectedIndex, -}: { distributions?: UseDistributionsResultData; selectedIndex: number }) => { +}: { distributions?: UseDistributionsResultData }) => { const { isLoading, error } = useDistributions() const [distributionNumberParam, setDistributionNumberParam] = useDistributionNumber() const allDistributions = distributions?.concat( From b2fa547cc0d75ac5ab17411c1a1452eec8b89be3 Mon Sep 17 00:00:00 2001 From: Victor Ginelli Date: Thu, 14 Mar 2024 13:00:33 -0700 Subject: [PATCH 081/177] Replace titles with /send (#183) * Distro Rewards, snapshot balance, claim button tweaks * Replace titles with /send --- apps/next/pages/_app.tsx | 2 +- apps/next/pages/activity.tsx | 2 +- apps/next/pages/checkout.tsx | 2 +- apps/next/pages/leaderboard.tsx | 2 +- apps/next/pages/referrals.tsx | 2 +- apps/next/pages/send.tsx | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/next/pages/_app.tsx b/apps/next/pages/_app.tsx index 2a670fd09..0629ce847 100644 --- a/apps/next/pages/_app.tsx +++ b/apps/next/pages/_app.tsx @@ -33,7 +33,7 @@ function MyApp({ return ( <> - Send + /send { return ( <> - Send | Activity + /send | Activity diff --git a/apps/next/pages/checkout.tsx b/apps/next/pages/checkout.tsx index e8204011b..782af107f 100644 --- a/apps/next/pages/checkout.tsx +++ b/apps/next/pages/checkout.tsx @@ -8,7 +8,7 @@ export const Page: NextPageWithLayout = () => { return ( <> - Send Tag Checkout + /send | Tag Checkout { return ( <> - Send | Leaderboard + /send | Leaderboard diff --git a/apps/next/pages/referrals.tsx b/apps/next/pages/referrals.tsx index bb877695d..4b6f9dbdc 100644 --- a/apps/next/pages/referrals.tsx +++ b/apps/next/pages/referrals.tsx @@ -8,7 +8,7 @@ export const Page: NextPageWithLayout = () => { return ( <> - Send | Referral Rewards + /send | Referral Rewards diff --git a/apps/next/pages/send.tsx b/apps/next/pages/send.tsx index 9dd16261e..706c5742b 100644 --- a/apps/next/pages/send.tsx +++ b/apps/next/pages/send.tsx @@ -7,7 +7,7 @@ export const Page: NextPageWithLayout = () => { return ( <> - Send + /send From ea00505a41f6aafd367669afecd37c3f33a10c3c Mon Sep 17 00:00:00 2001 From: Victor Ginelli Date: Thu, 14 Mar 2024 13:00:43 -0700 Subject: [PATCH 082/177] Tweak font sizes (#187) * Distro Rewards, snapshot balance, claim button tweaks * Replace titles with /send * Tweak font sizes --- packages/ui/src/config/fonts.ts | 42 ++++++++++++++++----------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/packages/ui/src/config/fonts.ts b/packages/ui/src/config/fonts.ts index c1a58f509..1abbc171e 100644 --- a/packages/ui/src/config/fonts.ts +++ b/packages/ui/src/config/fonts.ts @@ -37,13 +37,13 @@ export const bodyFont = createFont({ 7: 20, 8: 23, 9: 30, - 10: 46, - 11: 55, - 12: 62, - 13: 72, - 14: 92, - 15: 114, - 16: 134, + 10: 40, + 11: 46, + 12: 55, + 13: 62, + 14: 72, + 15: 92, + 16: 114, }, face: { @@ -65,13 +65,13 @@ export const monoFont = createFont({ 7: 20, 8: 23, 9: 30, - 10: 46, - 11: 55, - 12: 62, - 13: 72, - 14: 92, - 15: 114, - 16: 134, + 10: 40, + 11: 46, + 12: 55, + 13: 62, + 14: 72, + 15: 92, + 16: 114, }, lineHeight: { 1: 11, @@ -84,13 +84,13 @@ export const monoFont = createFont({ 7: 20, 8: 23, 9: 30, - 10: 46, - 11: 55, - 12: 62, - 13: 72, - 14: 92, - 15: 114, - 16: 134, + 10: 40, + 11: 46, + 12: 55, + 13: 62, + 14: 72, + 15: 92, + 16: 114, }, weight: { 3: '300', From c60b0c95535fb89f0657270b3c5371cf32cbf62f Mon Sep 17 00:00:00 2001 From: BigBoss Date: Thu, 14 Mar 2024 15:13:21 -0500 Subject: [PATCH 083/177] fix urls (#192) --- packages/app/features/account/screen.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/app/features/account/screen.tsx b/packages/app/features/account/screen.tsx index 4c1c1978b..c46453115 100644 --- a/packages/app/features/account/screen.tsx +++ b/packages/app/features/account/screen.tsx @@ -116,10 +116,10 @@ export function AccountScreen() {
- }> + }> Send Tags - }> + }> Earn Tokens From 7b1647251e9de58d481fc7181bf56eb621cef03a Mon Sep 17 00:00:00 2001 From: BigBoss Date: Thu, 14 Mar 2024 23:17:56 -0500 Subject: [PATCH 084/177] fix tests (#193) * fix tests * ci: add nextjs build cache * fix update profile spec * fix more unit tests * fix missing commits * disable shovel for now in CI * fix ci --- .github/actions/setup-env/action.yml | 16 ++++ .github/workflows/ci.yml | 33 +++++-- Tiltfile | 18 +++- apps/next/public/tamagui.css | 8 +- .../__snapshots__/screen.test.tsx.snap | 36 ++++++-- .../checkout/components/confirm-dialog.tsx | 2 +- .../home/__snapshots__/screen.test.tsx.snap | 4 +- packages/app/features/home/screen.tsx | 2 +- .../__snapshots__/SendDialog.test.tsx.snap | 90 ++++++++++++++----- .../CreateSendDistributionTranche.s.sol | 6 +- .../script/DeploySendAccountFactory.s.sol | 13 --- .../script/DeploySendMerkleDrop.s.sol | 1 - .../contracts/script/DeploySendVerifier.s.sol | 4 - .../anvil-add-send-merkle-drop-fixtures.ts | 2 +- packages/contracts/src/Helper.sol | 23 ----- .../tests/account.logged-in.spec.ts | 29 +++--- packages/shovel/etc/config.json | 3 +- packages/shovel/package.json | 2 +- .../test/__snapshots__/index.test.ts.snap | 1 - .../src/components/FormFields/TextField.tsx | 4 +- packages/ui/src/config/fonts.ts | 79 ++++++++++++---- packages/wagmi/src/generated.ts | 6 +- 22 files changed, 242 insertions(+), 140 deletions(-) diff --git a/.github/actions/setup-env/action.yml b/.github/actions/setup-env/action.yml index e1221336a..92c0daff1 100644 --- a/.github/actions/setup-env/action.yml +++ b/.github/actions/setup-env/action.yml @@ -17,6 +17,10 @@ inputs: description: "Whether to run Yarn install." required: false default: "true" + build-nextjs: + description: "Whether to build Next.js." + required: false + default: "false" runs: using: "composite" steps: @@ -38,3 +42,15 @@ runs: if: ${{ inputs.yarn-install == 'true' }} shell: bash run: yarn install --immutable + - name: Build Next.js + if: ${{ inputs.build-nextjs == 'true' }} + shell: bash + run: | + cp .env.local.template .env.local + yarn web:prod + - name: Save Next.js Cache + if: ${{ inputs.build-nextjs == 'true' }} + uses: actions/upload-artifact@v4 + with: + name: nextjs-build-cache + path: ${{ github.workspace }}/apps/next/.next/cache diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc256eca8..db7308bca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,11 +21,9 @@ jobs: - name: Setup Environment uses: ./.github/actions/setup-env with: - install-foundry: false - install-bun: false + build-nextjs: true env: YARN_ENABLE_HARDENED_MODE: 0 - SKIP_YARN_POST_INSTALL: 1 - name: Show github refs run: | echo github.ref=${{ github.ref }} @@ -77,15 +75,21 @@ jobs: YARN_ENABLE_HARDENED_MODE: 0 with: yarn-install: false + - name: Load Next.js Build Cache + uses: actions/download-artifact@v4 + with: + name: nextjs-build-cache + path: ${{ github.workspace }}/apps/next/.next/cache - name: Snaplet Login shell: bash run: bunx snaplet auth login ${{ secrets.CI_SNAPLET_AUTH_TOKEN }} - name: Tilt CI shell: bash run: tilt ci unit-tests - - name: All Changes Committed - shell: bash - run: git diff --exit-code + # @todo anvil fixtures cause dirty repo, but only in github actions 😢 + # - name: All Changes Committed + # shell: bash + # run: git diff --exit-code playwright-tests: name: Playwright Tests @@ -115,14 +119,20 @@ jobs: uses: ./.github/actions/setup-env env: YARN_ENABLE_HARDENED_MODE: 0 + - name: Load Next.js Build Cache + uses: actions/download-artifact@v4 + with: + name: nextjs-build-cache + path: ${{ github.workspace }}/apps/next/.next/cache - name: Snaplet Login shell: bash run: bunx snaplet auth login ${{ secrets.CI_SNAPLET_AUTH_TOKEN }} - name: Install Playwright Dependencies run: yarn playwright playwright install --with-deps - - name: All Changes Committed - shell: bash - run: git diff --exit-code + # @todo anvil fixtures cause dirty repo, but only in github actions 😢 + # - name: All Changes Committed + # shell: bash + # run: git diff --exit-code # this is on purpose so we get github annotations - name: Playwright Tests id: playwright @@ -173,6 +183,11 @@ jobs: yarn-install: false env: YARN_ENABLE_HARDENED_MODE: 0 + - name: Load Next.js Build Cache + uses: actions/download-artifact@v4 + with: + name: nextjs-build-cache + path: ${{ github.workspace }}/apps/next/.next/cache - name: Get Supabase Database Branch if: github.base_ref == 'dev' uses: 0xbigboss/supabase-branch-gh-action@v1 diff --git a/Tiltfile b/Tiltfile index aa2e9f761..ce4cae72d 100644 --- a/Tiltfile +++ b/Tiltfile @@ -203,6 +203,23 @@ local_resource( ), ) +local_resource( + name = "shovel:test", + allow_parallel = True, + auto_init = not CI, + cmd = "yarn workspace shovel test", + labels = labels, + resource_deps = [ + "yarn:install", + "shovel:generate-config", + ], + trigger_mode = CI and TRIGGER_MODE_MANUAL or TRIGGER_MODE_AUTO, + deps = files_matching( + os.path.join("packages", "shovel", "etc"), + lambda f: f.endswith(".json"), + ), +) + cmd_button( name = "shovel:generate-config", argv = [ @@ -612,7 +629,6 @@ local_resource( "daimo-expo-passkeys:build", "webauthn-authenticator:build", "shovel:generate-config", - "shovel:generate-config", ], deps = files_matching( diff --git a/apps/next/public/tamagui.css b/apps/next/public/tamagui.css index 3a48af454..145fb2fd5 100644 --- a/apps/next/public/tamagui.css +++ b/apps/next/public/tamagui.css @@ -1,10 +1,10 @@ ._ovs-contain {overscroll-behavior:contain;} .is_Text .is_Text {display:inline-flex;} ._dsp_contents {display:contents;} -:root {--color-1:hsl(206, 100%, 99.2%);--color-2:hsl(210, 100%, 98.0%);--color-3:hsl(209, 100%, 96.5%);--color-4:hsl(210, 98.8%, 94.0%);--color-5:hsl(209, 95.0%, 90.1%);--color-6:hsl(209, 81.2%, 84.5%);--color-7:hsl(208, 77.5%, 76.9%);--color-8:hsl(206, 81.9%, 65.3%);--color-9:hsl(206, 100%, 50.0%);--color-10:hsl(208, 100%, 47.3%);--color-11:hsl(211, 100%, 43.2%);--color-12:hsl(211, 100%, 15.0%);--color-13:hsl(0, 0%, 99.0%);--color-14:hsl(0, 0%, 97.3%);--color-15:hsl(0, 0%, 95.1%);--color-16:hsl(0, 0%, 93.0%);--color-17:hsl(0, 0%, 90.9%);--color-18:hsl(0, 0%, 88.7%);--color-19:hsl(0, 0%, 85.8%);--color-20:hsl(0, 0%, 78.0%);--color-21:hsl(0, 0%, 56.1%);--color-22:hsl(0, 0%, 52.3%);--color-23:hsl(0, 0%, 43.5%);--color-24:hsl(0, 0%, 9.0%);--color-25:hsl(136, 50.0%, 98.9%);--color-26:hsl(138, 62.5%, 96.9%);--color-27:hsl(139, 55.2%, 94.5%);--color-28:hsl(140, 48.7%, 91.0%);--color-29:hsl(141, 43.7%, 86.0%);--color-30:hsl(143, 40.3%, 79.0%);--color-31:hsl(146, 38.5%, 69.0%);--color-32:hsl(151, 40.2%, 54.1%);--color-33:hsl(151, 55.0%, 41.5%);--color-34:hsl(152, 57.5%, 37.6%);--color-35:hsl(153, 67.0%, 28.5%);--color-36:hsl(155, 40.0%, 14.0%);--color-37:hsl(24, 70.0%, 99.0%);--color-38:hsl(24, 83.3%, 97.6%);--color-39:hsl(24, 100%, 95.3%);--color-40:hsl(25, 100%, 92.2%);--color-41:hsl(25, 100%, 88.2%);--color-42:hsl(25, 100%, 82.8%);--color-43:hsl(24, 100%, 75.3%);--color-44:hsl(24, 94.5%, 64.3%);--color-45:hsl(24, 94.0%, 50.0%);--color-46:hsl(24, 100%, 46.5%);--color-47:hsl(24, 100%, 37.0%);--color-48:hsl(15, 60.0%, 17.0%);--color-49:hsl(322, 100%, 99.4%);--color-50:hsl(323, 100%, 98.4%);--color-51:hsl(323, 86.3%, 96.5%);--color-52:hsl(323, 78.7%, 94.2%);--color-53:hsl(323, 72.2%, 91.1%);--color-54:hsl(323, 66.3%, 86.6%);--color-55:hsl(323, 62.0%, 80.1%);--color-56:hsl(323, 60.3%, 72.4%);--color-57:hsl(322, 65.0%, 54.5%);--color-58:hsl(322, 63.9%, 50.7%);--color-59:hsl(322, 75.0%, 46.0%);--color-60:hsl(320, 70.0%, 13.5%);--color-61:hsl(280, 65.0%, 99.4%);--color-62:hsl(276, 100%, 99.0%);--color-63:hsl(276, 83.1%, 97.0%);--color-64:hsl(275, 76.4%, 94.7%);--color-65:hsl(275, 70.8%, 91.8%);--color-66:hsl(274, 65.4%, 87.8%);--color-67:hsl(273, 61.0%, 81.7%);--color-68:hsl(272, 60.0%, 73.5%);--color-69:hsl(272, 51.0%, 54.0%);--color-70:hsl(272, 46.8%, 50.3%);--color-71:hsl(272, 50.0%, 45.8%);--color-72:hsl(272, 66.0%, 16.0%);--color-73:hsl(359, 100%, 99.4%);--color-74:hsl(359, 100%, 98.6%);--color-75:hsl(360, 100%, 96.8%);--color-76:hsl(360, 97.9%, 94.8%);--color-77:hsl(360, 90.2%, 91.9%);--color-78:hsl(360, 81.7%, 87.8%);--color-79:hsl(359, 74.2%, 81.7%);--color-80:hsl(359, 69.5%, 74.3%);--color-81:hsl(358, 75.0%, 59.0%);--color-82:hsl(358, 69.4%, 55.2%);--color-83:hsl(358, 65.0%, 48.7%);--color-84:hsl(354, 50.0%, 14.6%);--color-85:hsl(60, 54.0%, 98.5%);--color-86:hsl(52, 100%, 95.5%);--color-87:hsl(55, 100%, 90.9%);--color-88:hsl(54, 100%, 86.6%);--color-89:hsl(52, 97.9%, 82.0%);--color-90:hsl(50, 89.4%, 76.1%);--color-91:hsl(47, 80.4%, 68.0%);--color-92:hsl(48, 100%, 46.1%);--color-93:hsl(53, 92.0%, 50.0%);--color-94:hsl(50, 100%, 48.5%);--color-95:hsl(42, 100%, 29.0%);--color-96:hsl(40, 55.0%, 13.5%);--color-97:hsl(50, 20.0%, 99.1%);--color-98:hsl(47, 52.9%, 96.7%);--color-99:hsl(46, 38.2%, 93.7%);--color-100:hsl(44, 32.7%, 90.1%);--color-101:hsl(43, 29.9%, 85.7%);--color-102:hsl(41, 28.3%, 79.8%);--color-103:hsl(39, 27.6%, 71.9%);--color-104:hsl(36, 27.2%, 61.8%);--color-105:hsl(36, 20.0%, 49.5%);--color-106:hsl(36, 19.8%, 45.7%);--color-107:hsl(36, 20.0%, 39.0%);--color-108:hsl(36, 16.0%, 20.0%);--color-109:hsla(125, 96%, 40%, 0.5);--color-110:hsla(125, 96%, 40%, 0.75);--color-111:hsla(125, 96%, 40%, 1);--color-112:hsla(125, 96%, 42%, 1);--color-113:hsla(125, 96%, 45%, 1);--color-114:hsla(125, 96%, 47%, 1);--color-115:hsla(125, 96%, 50%, 1);--color-116:hsla(125, 96%, 52%, 1);--color-117:hsla(125, 96%, 55%, 1);--color-118:hsla(125, 96%, 57%, 1);--color-119:hsla(125, 96%, 59%, 1);--color-120:hsla(125, 96%, 62%, 1);--color-121:hsl(212, 35.0%, 9.2%);--color-122:hsl(216, 50.0%, 11.8%);--color-123:hsl(214, 59.4%, 15.3%);--color-124:hsl(214, 65.8%, 17.9%);--color-125:hsl(213, 71.2%, 20.2%);--color-126:hsl(212, 77.4%, 23.1%);--color-127:hsl(211, 85.1%, 27.4%);--color-128:hsl(211, 89.7%, 34.1%);--color-129:hsl(206, 100%, 50.0%);--color-130:hsl(209, 100%, 60.6%);--color-131:hsl(210, 100%, 66.1%);--color-132:hsl(206, 98.0%, 95.8%);--color-133:hsl(0, 0%, 8.5%);--color-134:hsl(0, 0%, 11.0%);--color-135:hsl(0, 0%, 13.6%);--color-136:hsl(0, 0%, 15.8%);--color-137:hsl(0, 0%, 17.9%);--color-138:hsl(0, 0%, 20.5%);--color-139:hsl(0, 0%, 24.3%);--color-140:hsl(0, 0%, 31.2%);--color-141:hsl(0, 0%, 43.9%);--color-142:hsl(0, 0%, 49.4%);--color-143:hsl(0, 0%, 62.8%);--color-144:hsl(0, 0%, 93.0%);--color-145:hsl(146, 30.0%, 7.4%);--color-146:hsl(155, 44.2%, 8.4%);--color-147:hsl(155, 46.7%, 10.9%);--color-148:hsl(154, 48.4%, 12.9%);--color-149:hsl(154, 49.7%, 14.9%);--color-150:hsl(154, 50.9%, 17.6%);--color-151:hsl(153, 51.8%, 21.8%);--color-152:hsl(151, 51.7%, 28.4%);--color-153:hsl(151, 55.0%, 41.5%);--color-154:hsl(151, 49.3%, 46.5%);--color-155:hsl(151, 50.0%, 53.2%);--color-156:hsl(137, 72.0%, 94.0%);--color-157:hsl(30, 70.0%, 7.2%);--color-158:hsl(28, 100%, 8.4%);--color-159:hsl(26, 91.1%, 11.6%);--color-160:hsl(25, 88.3%, 14.1%);--color-161:hsl(24, 87.6%, 16.6%);--color-162:hsl(24, 88.6%, 19.8%);--color-163:hsl(24, 92.4%, 24.0%);--color-164:hsl(25, 100%, 29.0%);--color-165:hsl(24, 94.0%, 50.0%);--color-166:hsl(24, 100%, 58.5%);--color-167:hsl(24, 100%, 62.2%);--color-168:hsl(24, 97.0%, 93.2%);--color-169:hsl(318, 25.0%, 9.6%);--color-170:hsl(319, 32.2%, 11.6%);--color-171:hsl(319, 41.0%, 16.0%);--color-172:hsl(320, 45.4%, 18.7%);--color-173:hsl(320, 49.0%, 21.1%);--color-174:hsl(321, 53.6%, 24.4%);--color-175:hsl(321, 61.1%, 29.7%);--color-176:hsl(322, 74.9%, 37.5%);--color-177:hsl(322, 65.0%, 54.5%);--color-178:hsl(323, 72.8%, 59.2%);--color-179:hsl(325, 90.0%, 66.4%);--color-180:hsl(322, 90.0%, 95.8%);--color-181:hsl(284, 20.0%, 9.6%);--color-182:hsl(283, 30.0%, 11.8%);--color-183:hsl(281, 37.5%, 16.5%);--color-184:hsl(280, 41.2%, 20.0%);--color-185:hsl(279, 43.8%, 23.3%);--color-186:hsl(277, 46.4%, 27.5%);--color-187:hsl(275, 49.3%, 34.6%);--color-188:hsl(272, 52.1%, 45.9%);--color-189:hsl(272, 51.0%, 54.0%);--color-190:hsl(273, 57.3%, 59.1%);--color-191:hsl(275, 80.0%, 71.0%);--color-192:hsl(279, 75.0%, 95.7%);--color-193:hsl(353, 23.0%, 9.8%);--color-194:hsl(357, 34.4%, 12.0%);--color-195:hsl(356, 43.4%, 16.4%);--color-196:hsl(356, 47.6%, 19.2%);--color-197:hsl(356, 51.1%, 21.9%);--color-198:hsl(356, 55.2%, 25.9%);--color-199:hsl(357, 60.2%, 31.8%);--color-200:hsl(358, 65.0%, 40.4%);--color-201:hsl(358, 75.0%, 59.0%);--color-202:hsl(358, 85.3%, 64.0%);--color-203:hsl(358, 100%, 69.5%);--color-204:hsl(351, 89.0%, 96.0%);--color-205:hsl(45, 100%, 5.5%);--color-206:hsl(46, 100%, 6.7%);--color-207:hsl(45, 100%, 8.7%);--color-208:hsl(45, 100%, 10.4%);--color-209:hsl(47, 100%, 12.1%);--color-210:hsl(49, 100%, 14.3%);--color-211:hsl(49, 90.3%, 18.4%);--color-212:hsl(50, 100%, 22.0%);--color-213:hsl(53, 92.0%, 50.0%);--color-214:hsl(54, 100%, 68.0%);--color-215:hsl(48, 100%, 47.0%);--color-216:hsl(53, 100%, 91.0%);--color-217:hsl(44, 9.0%, 8.3%);--color-218:hsl(43, 14.3%, 9.6%);--color-219:hsl(42, 15.5%, 13.0%);--color-220:hsl(41, 16.4%, 15.6%);--color-221:hsl(41, 16.9%, 17.8%);--color-222:hsl(40, 17.6%, 20.8%);--color-223:hsl(38, 18.5%, 26.4%);--color-224:hsl(36, 19.6%, 35.1%);--color-225:hsl(36, 20.0%, 49.5%);--color-226:hsl(36, 22.3%, 54.5%);--color-227:hsl(35, 30.0%, 64.0%);--color-228:hsl(49, 52.0%, 93.8%);--color-229:hsla(125, 96%, 40%, 0.5);--color-230:hsla(125, 96%, 40%, 0.75);--color-231:hsla(125, 96%, 40%, 1);--color-232:hsla(125, 96%, 42%, 1);--color-233:hsla(125, 96%, 45%, 1);--color-234:hsla(125, 96%, 47%, 1);--color-235:hsla(125, 96%, 50%, 1);--color-236:hsla(125, 96%, 52%, 1);--color-237:hsla(125, 96%, 55%, 1);--color-238:hsla(125, 96%, 57%, 1);--color-239:hsla(125, 96%, 59%, 1);--color-240:hsla(125, 96%, 62%, 1);--color-241:#40FB50;--color-242:#FFFFFF;--color-243:#122023;--color-244:#F5F6FC;--color-245:#E8ECFB;--color-246:#D2D9EE;--color-247:#B8C0DC;--color-248:#A6AFCA;--color-249:#98A1C0;--color-250:#888FAB;--color-251:#7780A0;--color-252:#6B7594;--color-253:#5D6785;--color-254:#505A78;--color-255:#404A67;--color-256:#333D59;--color-257:#293249;--color-258:#1B2236;--color-259:#131A2A;--color-260:#0E1524;--color-261:#0D111C;--color-262:#FFF2F7;--color-263:#FFD9E4;--color-264:#FBA4C0;--color-265:#FF6FA3;--color-266:#FB118E;--color-267:#C41A69;--color-268:#8C0F49;--color-269:#55072A;--color-270:#39061B;--color-271:#2B000B;--color-272:#F51A70;--color-273:#FEF0EE;--color-274:#FED5CF;--color-275:#FEA79B;--color-276:#FD766B;--color-277:#FA2B39;--color-278:#C4292F;--color-279:#891E20;--color-280:#530F0F;--color-281:#380A03;--color-282:#240800;--color-283:#F14544;--color-284:#FEF8C4;--color-285:#F0E49A;--color-286:#DBBC19;--color-287:#BB9F13;--color-288:#A08116;--color-289:#866311;--color-290:#5D4204;--color-291:#3E2B04;--color-292:#231902;--color-293:#180F02;--color-294:#FAF40A;--color-295:#FFF5E8;--color-296:#F8DEB6;--color-297:#EEB317;--color-298:#DB900B;--color-299:#B17900;--color-300:#905C10;--color-301:#643F07;--color-302:#3F2208;--color-303:#29160F;--color-304:#161007;--color-305:#FEB239;--color-306:#EDFDF0;--color-307:#BFEECA;--color-308:#76D191;--color-309:#40B66B;--color-310:#209853;--color-311:#0B783E;--color-312:#0C522A;--color-313:#053117;--color-314:#091F10;--color-315:#09130B;--color-316:#5CFE9D;--color-317:#F3F5FE;--color-318:#DEE1FF;--color-319:#ADBCFF;--color-320:#869EFF;--color-321:#4C82FB;--color-322:#1267D6;--color-323:#1D4294;--color-324:#09265E;--color-325:#0B193F;--color-326:#040E34;--color-327:#587BFF;--color-328:#F2FEDB;--color-329:#D3EBA3;--color-330:#9BCD46;--color-331:#7BB10C;--color-332:#649205;--color-333:#527318;--color-334:#344F00;--color-335:#233401;--color-336:#171D00;--color-337:#0E1300;--color-338:#B1F13C;--color-339:#FEEDE5;--color-340:#FCD9C8;--color-341:#FBAA7F;--color-342:#F67E3E;--color-343:#DC5B14;--color-344:#AF460A;--color-345:#76330F;--color-346:#4D220B;--color-347:#2A1505;--color-348:#1C0E03;--color-349:#FF6F1E;--color-350:#FFF1FE;--color-351:#FAD8F8;--color-352:#F5A1F5;--color-353:#F06DF3;--color-354:#DC39E3;--color-355:#AF2EB4;--color-356:#7A1C7D;--color-357:#550D56;--color-358:#330733;--color-359:#250225;--color-360:#FC72FF;--color-361:#F1EFFE;--color-362:#E2DEFD;--color-363:#BDB8FA;--color-364:#9D99F5;--color-365:#7A7BEB;--color-366:#515EDC;--color-367:#343F9E;--color-368:#232969;--color-369:#121643;--color-370:#0E0D30;--color-371:#5065FD;--color-372:#D6F5FE;--color-373:#B0EDFE;--color-374:#63CDE8;--color-375:#2FB0CC;--color-376:#2092AB;--color-377:#117489;--color-378:#014F5F;--color-379:#003540;--color-380:#011E26;--color-381:#011418;--color-382:#36DBFF;--color-383:#F1FCEF;--color-384:#DAE6D8;--color-385:#B8C3B7;--color-386:#9AA498;--color-387:#7E887D;--color-388:#646B62;--color-389:#434942;--color-390:#2C302C;--color-391:#181B18;--color-392:#0F120E;--color-393:#7E887D;--color-394:#393939;--color-395:#e6e6e6;--color-396:#FA2B39;--color-397:#a26af3;--color-398:#28A0F0;--color-399:#2151F5;--color-400:#F0B90B;--color-401:#FB36D0;--color-402:#9f7750;--color-403:#C3B29E;--color-404:#1D1D20;--color-405:#86AE80;--color-406:#3E4A3C;--color-407:#081619;--radius-1:0px;--radius-2:3px;--radius-3:5px;--radius-4:7px;--radius-5:9px;--radius-6:10px;--radius-7:16px;--radius-8:19px;--radius-9:22px;--radius-10:26px;--radius-11:34px;--radius-12:42px;--radius-13:50px;--radius-14:16px;--zIndex-1:0;--zIndex-2:100;--zIndex-3:200;--zIndex-4:300;--zIndex-5:400;--zIndex-6:500;--space-1:0px;--space-6:2px;--space-8:7px;--space-10:13px;--space-12:18px;--space-15:24px;--space-16:32px;--space-17:39px;--space-18:46px;--space-19:53px;--space-20:60px;--space-21:74px;--space-22:88px;--space-23:102px;--space-24:116px;--space-25:130px;--space-26:144px;--space-27:144px;--space-28:158px;--space-29:172px;--space-30:186px;--space-31:249px;--space-32:284px;--space-2:0.5px;--space-3:1px;--space-4:1.5px;--space-5:5px;--space-7:4px;--space-9:10px;--space-11:16px;--space-13:18px;--space-14:21px;--space-33:-0.5px;--space-34:-1px;--space-35:-1.5px;--space-36:-5px;--space-37:-2px;--space-38:-4px;--space-39:-7px;--space-40:-10px;--space-41:-13px;--space-42:-16px;--space-43:-18px;--space-44:-18px;--space-45:-21px;--space-46:-24px;--space-47:-32px;--space-48:-39px;--space-49:-46px;--space-50:-53px;--space-51:-60px;--space-52:-74px;--space-53:-88px;--space-54:-102px;--space-55:-116px;--space-56:-130px;--space-57:-144px;--space-58:-144px;--space-59:-158px;--space-60:-172px;--space-61:-186px;--space-62:-249px;--space-63:-284px;--size-1:0px;--size-6:20px;--size-8:28px;--size-10:36px;--size-12:44px;--size-15:52px;--size-16:64px;--size-17:74px;--size-18:84px;--size-19:94px;--size-20:104px;--size-21:124px;--size-22:144px;--size-23:164px;--size-24:184px;--size-25:204px;--size-26:224px;--size-27:224px;--size-28:244px;--size-29:264px;--size-30:284px;--size-31:374px;--size-32:424px;--size-2:2px;--size-3:4px;--size-4:8px;--size-5:16px;--size-7:24px;--size-9:32px;--size-11:40px;--size-13:44px;--size-14:48px} -:root .font_heading, :root .t_lang-heading-default .font_heading {--f-fa:DM Sans, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif ;--f-si-1:11px;--f-si-2:12px;--f-si-3:13px;--f-si-4:14px;--f-si-5:16px;--f-si-6:18px;--f-si-7:20px;--f-si-8:23px;--f-si-9:30px;--f-si-10:40px;--f-si-11:14px} -:root .font_body, :root .t_lang-body-default .font_body {--f-fa:DM Sans, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;--f-si-1:11px;--f-si-2:12px;--f-si-3:13px;--f-si-4:14px;--f-si-5:16px;--f-si-6:18px;--f-si-7:20px;--f-si-8:23px;--f-si-9:30px;--f-si-10:46px;--f-si-11:55px;--f-si-12:62px;--f-si-13:72px;--f-si-14:92px;--f-si-15:114px;--f-si-16:134px;--f-si-17:14px} -:root .font_mono, :root .t_lang-mono-default .font_mono {--f-fa:DM Mono, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, monospace;--f-si-1:11px;--f-si-2:12px;--f-si-3:13px;--f-si-4:14px;--f-si-5:16px;--f-si-6:18px;--f-si-7:20px;--f-si-8:23px;--f-si-9:30px;--f-si-10:46px;--f-si-11:55px;--f-si-12:62px;--f-si-13:72px;--f-si-14:92px;--f-si-15:114px;--f-si-16:134px;--f-si-17:14px;--f-li-1:11px;--f-li-2:12px;--f-li-3:13px;--f-li-4:14px;--f-li-5:16px;--f-li-6:18px;--f-li-7:20px;--f-li-8:23px;--f-li-9:30px;--f-li-10:46px;--f-li-11:55px;--f-li-12:62px;--f-li-13:72px;--f-li-14:92px;--f-li-15:114px;--f-li-16:134px;--f-li-17:14px;--f-we-1:300;--f-we-2:300;--f-we-3:300;--f-we-4:400;--f-we-5:500;--f-we-6:500;--f-we-7:500;--f-we-8:500;--f-we-9:500;--f-we-10:500;--f-we-11:500;--f-we-12:500;--f-we-13:500;--f-we-14:500;--f-we-15:500;--f-we-16:500;--f-we-17:500} +:root {--color-1:hsl(206, 100%, 99.2%);--color-2:hsl(210, 100%, 98.0%);--color-3:hsl(209, 100%, 96.5%);--color-4:hsl(210, 98.8%, 94.0%);--color-5:hsl(209, 95.0%, 90.1%);--color-6:hsl(209, 81.2%, 84.5%);--color-7:hsl(208, 77.5%, 76.9%);--color-8:hsl(206, 81.9%, 65.3%);--color-9:hsl(206, 100%, 50.0%);--color-10:hsl(208, 100%, 47.3%);--color-11:hsl(211, 100%, 43.2%);--color-12:hsl(211, 100%, 15.0%);--color-13:hsl(0, 0%, 99.0%);--color-14:hsl(0, 0%, 97.3%);--color-15:hsl(0, 0%, 95.1%);--color-16:hsl(0, 0%, 93.0%);--color-17:hsl(0, 0%, 90.9%);--color-18:hsl(0, 0%, 88.7%);--color-19:hsl(0, 0%, 85.8%);--color-20:hsl(0, 0%, 78.0%);--color-21:hsl(0, 0%, 56.1%);--color-22:hsl(0, 0%, 52.3%);--color-23:hsl(0, 0%, 43.5%);--color-24:hsl(0, 0%, 9.0%);--color-25:hsl(136, 50.0%, 98.9%);--color-26:hsl(138, 62.5%, 96.9%);--color-27:hsl(139, 55.2%, 94.5%);--color-28:hsl(140, 48.7%, 91.0%);--color-29:hsl(141, 43.7%, 86.0%);--color-30:hsl(143, 40.3%, 79.0%);--color-31:hsl(146, 38.5%, 69.0%);--color-32:hsl(151, 40.2%, 54.1%);--color-33:hsl(151, 55.0%, 41.5%);--color-34:hsl(152, 57.5%, 37.6%);--color-35:hsl(153, 67.0%, 28.5%);--color-36:hsl(155, 40.0%, 14.0%);--color-37:hsl(24, 70.0%, 99.0%);--color-38:hsl(24, 83.3%, 97.6%);--color-39:hsl(24, 100%, 95.3%);--color-40:hsl(25, 100%, 92.2%);--color-41:hsl(25, 100%, 88.2%);--color-42:hsl(25, 100%, 82.8%);--color-43:hsl(24, 100%, 75.3%);--color-44:hsl(24, 94.5%, 64.3%);--color-45:hsl(24, 94.0%, 50.0%);--color-46:hsl(24, 100%, 46.5%);--color-47:hsl(24, 100%, 37.0%);--color-48:hsl(15, 60.0%, 17.0%);--color-49:hsl(322, 100%, 99.4%);--color-50:hsl(323, 100%, 98.4%);--color-51:hsl(323, 86.3%, 96.5%);--color-52:hsl(323, 78.7%, 94.2%);--color-53:hsl(323, 72.2%, 91.1%);--color-54:hsl(323, 66.3%, 86.6%);--color-55:hsl(323, 62.0%, 80.1%);--color-56:hsl(323, 60.3%, 72.4%);--color-57:hsl(322, 65.0%, 54.5%);--color-58:hsl(322, 63.9%, 50.7%);--color-59:hsl(322, 75.0%, 46.0%);--color-60:hsl(320, 70.0%, 13.5%);--color-61:hsl(280, 65.0%, 99.4%);--color-62:hsl(276, 100%, 99.0%);--color-63:hsl(276, 83.1%, 97.0%);--color-64:hsl(275, 76.4%, 94.7%);--color-65:hsl(275, 70.8%, 91.8%);--color-66:hsl(274, 65.4%, 87.8%);--color-67:hsl(273, 61.0%, 81.7%);--color-68:hsl(272, 60.0%, 73.5%);--color-69:hsl(272, 51.0%, 54.0%);--color-70:hsl(272, 46.8%, 50.3%);--color-71:hsl(272, 50.0%, 45.8%);--color-72:hsl(272, 66.0%, 16.0%);--color-73:hsl(359, 100%, 99.4%);--color-74:hsl(359, 100%, 98.6%);--color-75:hsl(360, 100%, 96.8%);--color-76:hsl(360, 97.9%, 94.8%);--color-77:hsl(360, 90.2%, 91.9%);--color-78:hsl(360, 81.7%, 87.8%);--color-79:hsl(359, 74.2%, 81.7%);--color-80:hsl(359, 69.5%, 74.3%);--color-81:hsl(358, 75.0%, 59.0%);--color-82:hsl(358, 69.4%, 55.2%);--color-83:hsl(358, 65.0%, 48.7%);--color-84:hsl(354, 50.0%, 14.6%);--color-85:hsl(60, 54.0%, 98.5%);--color-86:hsl(52, 100%, 95.5%);--color-87:hsl(55, 100%, 90.9%);--color-88:hsl(54, 100%, 86.6%);--color-89:hsl(52, 97.9%, 82.0%);--color-90:hsl(50, 89.4%, 76.1%);--color-91:hsl(47, 80.4%, 68.0%);--color-92:hsl(48, 100%, 46.1%);--color-93:hsl(53, 92.0%, 50.0%);--color-94:hsl(50, 100%, 48.5%);--color-95:hsl(42, 100%, 29.0%);--color-96:hsl(40, 55.0%, 13.5%);--color-97:hsl(50, 20.0%, 99.1%);--color-98:hsl(47, 52.9%, 96.7%);--color-99:hsl(46, 38.2%, 93.7%);--color-100:hsl(44, 32.7%, 90.1%);--color-101:hsl(43, 29.9%, 85.7%);--color-102:hsl(41, 28.3%, 79.8%);--color-103:hsl(39, 27.6%, 71.9%);--color-104:hsl(36, 27.2%, 61.8%);--color-105:hsl(36, 20.0%, 49.5%);--color-106:hsl(36, 19.8%, 45.7%);--color-107:hsl(36, 20.0%, 39.0%);--color-108:hsl(36, 16.0%, 20.0%);--color-109:hsla(125, 96%, 40%, 0.5);--color-110:hsla(125, 96%, 40%, 0.75);--color-111:hsla(125, 96%, 40%, 1);--color-112:hsla(125, 96%, 42%, 1);--color-113:hsla(125, 96%, 45%, 1);--color-114:hsla(125, 96%, 47%, 1);--color-115:hsla(125, 96%, 50%, 1);--color-116:hsla(125, 96%, 52%, 1);--color-117:hsla(125, 96%, 55%, 1);--color-118:hsla(125, 96%, 57%, 1);--color-119:hsla(125, 96%, 59%, 1);--color-120:hsla(125, 96%, 62%, 1);--color-121:hsl(212, 35.0%, 9.2%);--color-122:hsl(216, 50.0%, 11.8%);--color-123:hsl(214, 59.4%, 15.3%);--color-124:hsl(214, 65.8%, 17.9%);--color-125:hsl(213, 71.2%, 20.2%);--color-126:hsl(212, 77.4%, 23.1%);--color-127:hsl(211, 85.1%, 27.4%);--color-128:hsl(211, 89.7%, 34.1%);--color-129:hsl(206, 100%, 50.0%);--color-130:hsl(209, 100%, 60.6%);--color-131:hsl(210, 100%, 66.1%);--color-132:hsl(206, 98.0%, 95.8%);--color-133:hsl(0, 0%, 8.5%);--color-134:hsl(0, 0%, 11.0%);--color-135:hsl(0, 0%, 13.6%);--color-136:hsl(0, 0%, 15.8%);--color-137:hsl(0, 0%, 17.9%);--color-138:hsl(0, 0%, 20.5%);--color-139:hsl(0, 0%, 24.3%);--color-140:hsl(0, 0%, 31.2%);--color-141:hsl(0, 0%, 43.9%);--color-142:hsl(0, 0%, 49.4%);--color-143:hsl(0, 0%, 62.8%);--color-144:hsl(0, 0%, 93.0%);--color-145:hsl(146, 30.0%, 7.4%);--color-146:hsl(155, 44.2%, 8.4%);--color-147:hsl(155, 46.7%, 10.9%);--color-148:hsl(154, 48.4%, 12.9%);--color-149:hsl(154, 49.7%, 14.9%);--color-150:hsl(154, 50.9%, 17.6%);--color-151:hsl(153, 51.8%, 21.8%);--color-152:hsl(151, 51.7%, 28.4%);--color-153:hsl(151, 55.0%, 41.5%);--color-154:hsl(151, 49.3%, 46.5%);--color-155:hsl(151, 50.0%, 53.2%);--color-156:hsl(137, 72.0%, 94.0%);--color-157:hsl(30, 70.0%, 7.2%);--color-158:hsl(28, 100%, 8.4%);--color-159:hsl(26, 91.1%, 11.6%);--color-160:hsl(25, 88.3%, 14.1%);--color-161:hsl(24, 87.6%, 16.6%);--color-162:hsl(24, 88.6%, 19.8%);--color-163:hsl(24, 92.4%, 24.0%);--color-164:hsl(25, 100%, 29.0%);--color-165:hsl(24, 94.0%, 50.0%);--color-166:hsl(24, 100%, 58.5%);--color-167:hsl(24, 100%, 62.2%);--color-168:hsl(24, 97.0%, 93.2%);--color-169:hsl(318, 25.0%, 9.6%);--color-170:hsl(319, 32.2%, 11.6%);--color-171:hsl(319, 41.0%, 16.0%);--color-172:hsl(320, 45.4%, 18.7%);--color-173:hsl(320, 49.0%, 21.1%);--color-174:hsl(321, 53.6%, 24.4%);--color-175:hsl(321, 61.1%, 29.7%);--color-176:hsl(322, 74.9%, 37.5%);--color-177:hsl(322, 65.0%, 54.5%);--color-178:hsl(323, 72.8%, 59.2%);--color-179:hsl(325, 90.0%, 66.4%);--color-180:hsl(322, 90.0%, 95.8%);--color-181:hsl(284, 20.0%, 9.6%);--color-182:hsl(283, 30.0%, 11.8%);--color-183:hsl(281, 37.5%, 16.5%);--color-184:hsl(280, 41.2%, 20.0%);--color-185:hsl(279, 43.8%, 23.3%);--color-186:hsl(277, 46.4%, 27.5%);--color-187:hsl(275, 49.3%, 34.6%);--color-188:hsl(272, 52.1%, 45.9%);--color-189:hsl(272, 51.0%, 54.0%);--color-190:hsl(273, 57.3%, 59.1%);--color-191:hsl(275, 80.0%, 71.0%);--color-192:hsl(279, 75.0%, 95.7%);--color-193:hsl(353, 23.0%, 9.8%);--color-194:hsl(357, 34.4%, 12.0%);--color-195:hsl(356, 43.4%, 16.4%);--color-196:hsl(356, 47.6%, 19.2%);--color-197:hsl(356, 51.1%, 21.9%);--color-198:hsl(356, 55.2%, 25.9%);--color-199:hsl(357, 60.2%, 31.8%);--color-200:hsl(358, 65.0%, 40.4%);--color-201:hsl(358, 75.0%, 59.0%);--color-202:hsl(358, 85.3%, 64.0%);--color-203:hsl(358, 100%, 69.5%);--color-204:hsl(351, 89.0%, 96.0%);--color-205:hsl(45, 100%, 5.5%);--color-206:hsl(46, 100%, 6.7%);--color-207:hsl(45, 100%, 8.7%);--color-208:hsl(45, 100%, 10.4%);--color-209:hsl(47, 100%, 12.1%);--color-210:hsl(49, 100%, 14.3%);--color-211:hsl(49, 90.3%, 18.4%);--color-212:hsl(50, 100%, 22.0%);--color-213:hsl(53, 92.0%, 50.0%);--color-214:hsl(54, 100%, 68.0%);--color-215:hsl(48, 100%, 47.0%);--color-216:hsl(53, 100%, 91.0%);--color-217:hsl(44, 9.0%, 8.3%);--color-218:hsl(43, 14.3%, 9.6%);--color-219:hsl(42, 15.5%, 13.0%);--color-220:hsl(41, 16.4%, 15.6%);--color-221:hsl(41, 16.9%, 17.8%);--color-222:hsl(40, 17.6%, 20.8%);--color-223:hsl(38, 18.5%, 26.4%);--color-224:hsl(36, 19.6%, 35.1%);--color-225:hsl(36, 20.0%, 49.5%);--color-226:hsl(36, 22.3%, 54.5%);--color-227:hsl(35, 30.0%, 64.0%);--color-228:hsl(49, 52.0%, 93.8%);--color-229:hsla(125, 96%, 40%, 0.5);--color-230:hsla(125, 96%, 40%, 0.75);--color-231:hsla(125, 96%, 40%, 1);--color-232:hsla(125, 96%, 42%, 1);--color-233:hsla(125, 96%, 45%, 1);--color-234:hsla(125, 96%, 47%, 1);--color-235:hsla(125, 96%, 50%, 1);--color-236:hsla(125, 96%, 52%, 1);--color-237:hsla(125, 96%, 55%, 1);--color-238:hsla(125, 96%, 57%, 1);--color-239:hsla(125, 96%, 59%, 1);--color-240:hsla(125, 96%, 62%, 1);--color-241:#40FB50;--color-242:#081619;--color-243:#FFFFFF;--color-244:#122023;--color-245:#F5F6FC;--color-246:#E8ECFB;--color-247:#D2D9EE;--color-248:#B8C0DC;--color-249:#A6AFCA;--color-250:#98A1C0;--color-251:#888FAB;--color-252:#7780A0;--color-253:#6B7594;--color-254:#5D6785;--color-255:#505A78;--color-256:#404A67;--color-257:#333D59;--color-258:#293249;--color-259:#1B2236;--color-260:#131A2A;--color-261:#0E1524;--color-262:#0D111C;--color-263:#FFF2F7;--color-264:#FFD9E4;--color-265:#FBA4C0;--color-266:#FF6FA3;--color-267:#FB118E;--color-268:#C41A69;--color-269:#8C0F49;--color-270:#55072A;--color-271:#39061B;--color-272:#2B000B;--color-273:#F51A70;--color-274:#FEF0EE;--color-275:#FED5CF;--color-276:#FEA79B;--color-277:#FD766B;--color-278:#FA2B39;--color-279:#C4292F;--color-280:#891E20;--color-281:#530F0F;--color-282:#380A03;--color-283:#240800;--color-284:#F14544;--color-285:#FEF8C4;--color-286:#F0E49A;--color-287:#DBBC19;--color-288:#BB9F13;--color-289:#A08116;--color-290:#866311;--color-291:#5D4204;--color-292:#3E2B04;--color-293:#231902;--color-294:#180F02;--color-295:#FAF40A;--color-296:#FFF5E8;--color-297:#F8DEB6;--color-298:#EEB317;--color-299:#DB900B;--color-300:#B17900;--color-301:#905C10;--color-302:#643F07;--color-303:#3F2208;--color-304:#29160F;--color-305:#161007;--color-306:#FEB239;--color-307:#EDFDF0;--color-308:#BFEECA;--color-309:#76D191;--color-310:#40B66B;--color-311:#209853;--color-312:#0B783E;--color-313:#0C522A;--color-314:#053117;--color-315:#091F10;--color-316:#09130B;--color-317:#5CFE9D;--color-318:#F3F5FE;--color-319:#DEE1FF;--color-320:#ADBCFF;--color-321:#869EFF;--color-322:#4C82FB;--color-323:#1267D6;--color-324:#1D4294;--color-325:#09265E;--color-326:#0B193F;--color-327:#040E34;--color-328:#587BFF;--color-329:#F2FEDB;--color-330:#D3EBA3;--color-331:#9BCD46;--color-332:#7BB10C;--color-333:#649205;--color-334:#527318;--color-335:#344F00;--color-336:#233401;--color-337:#171D00;--color-338:#0E1300;--color-339:#B1F13C;--color-340:#FEEDE5;--color-341:#FCD9C8;--color-342:#FBAA7F;--color-343:#F67E3E;--color-344:#DC5B14;--color-345:#AF460A;--color-346:#76330F;--color-347:#4D220B;--color-348:#2A1505;--color-349:#1C0E03;--color-350:#FF6F1E;--color-351:#FFF1FE;--color-352:#FAD8F8;--color-353:#F5A1F5;--color-354:#F06DF3;--color-355:#DC39E3;--color-356:#AF2EB4;--color-357:#7A1C7D;--color-358:#550D56;--color-359:#330733;--color-360:#250225;--color-361:#FC72FF;--color-362:#F1EFFE;--color-363:#E2DEFD;--color-364:#BDB8FA;--color-365:#9D99F5;--color-366:#7A7BEB;--color-367:#515EDC;--color-368:#343F9E;--color-369:#232969;--color-370:#121643;--color-371:#0E0D30;--color-372:#5065FD;--color-373:#D6F5FE;--color-374:#B0EDFE;--color-375:#63CDE8;--color-376:#2FB0CC;--color-377:#2092AB;--color-378:#117489;--color-379:#014F5F;--color-380:#003540;--color-381:#011E26;--color-382:#011418;--color-383:#36DBFF;--color-384:#F1FCEF;--color-385:#DAE6D8;--color-386:#B8C3B7;--color-387:#9AA498;--color-388:#7E887D;--color-389:#646B62;--color-390:#434942;--color-391:#2C302C;--color-392:#181B18;--color-393:#0F120E;--color-394:#7E887D;--color-395:#393939;--color-396:#e6e6e6;--color-397:#FA2B39;--color-398:#a26af3;--color-399:#28A0F0;--color-400:#2151F5;--color-401:#F0B90B;--color-402:#FB36D0;--color-403:#9f7750;--color-404:#C3B29E;--color-405:#1D1D20;--color-406:#86AE80;--color-407:#3E4A3C;--color-408:#081619;--radius-1:0px;--radius-2:3px;--radius-3:5px;--radius-4:7px;--radius-5:9px;--radius-6:10px;--radius-7:16px;--radius-8:19px;--radius-9:22px;--radius-10:26px;--radius-11:34px;--radius-12:42px;--radius-13:50px;--radius-14:16px;--zIndex-1:0;--zIndex-2:100;--zIndex-3:200;--zIndex-4:300;--zIndex-5:400;--zIndex-6:500;--space-1:0px;--space-6:2px;--space-8:7px;--space-10:13px;--space-12:18px;--space-15:24px;--space-16:32px;--space-17:39px;--space-18:46px;--space-19:53px;--space-20:60px;--space-21:74px;--space-22:88px;--space-23:102px;--space-24:116px;--space-25:130px;--space-26:144px;--space-27:144px;--space-28:158px;--space-29:172px;--space-30:186px;--space-31:249px;--space-32:284px;--space-2:0.5px;--space-3:1px;--space-4:1.5px;--space-5:5px;--space-7:4px;--space-9:10px;--space-11:16px;--space-13:18px;--space-14:21px;--space-33:-0.5px;--space-34:-1px;--space-35:-1.5px;--space-36:-5px;--space-37:-2px;--space-38:-4px;--space-39:-7px;--space-40:-10px;--space-41:-13px;--space-42:-16px;--space-43:-18px;--space-44:-18px;--space-45:-21px;--space-46:-24px;--space-47:-32px;--space-48:-39px;--space-49:-46px;--space-50:-53px;--space-51:-60px;--space-52:-74px;--space-53:-88px;--space-54:-102px;--space-55:-116px;--space-56:-130px;--space-57:-144px;--space-58:-144px;--space-59:-158px;--space-60:-172px;--space-61:-186px;--space-62:-249px;--space-63:-284px;--size-1:0px;--size-6:20px;--size-8:28px;--size-10:36px;--size-12:44px;--size-15:52px;--size-16:64px;--size-17:74px;--size-18:84px;--size-19:94px;--size-20:104px;--size-21:124px;--size-22:144px;--size-23:164px;--size-24:184px;--size-25:204px;--size-26:224px;--size-27:224px;--size-28:244px;--size-29:264px;--size-30:284px;--size-31:374px;--size-32:424px;--size-2:2px;--size-3:4px;--size-4:8px;--size-5:16px;--size-7:24px;--size-9:32px;--size-11:40px;--size-13:44px;--size-14:48px} +:root .font_heading, :root .t_lang-heading-default .font_heading {--f-fa:DM Sans, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif ;--f-si-1:11px;--f-si-2:12px;--f-si-3:13px;--f-si-4:14px;--f-si-5:16px;--f-si-6:18px;--f-si-7:20px;--f-si-8:23px;--f-si-9:30px;--f-si-10:40px;--f-si-11:55px;--f-si-12:62px;--f-si-13:72px;--f-si-14:92px;--f-si-15:114px;--f-si-16:134px;--f-si-17:14px;--f-li-1:21px;--f-li-2:22px;--f-li-3:23px;--f-li-4:24px;--f-li-5:26px;--f-li-6:28px;--f-li-7:30px;--f-li-8:33px;--f-li-9:40px;--f-li-10:50px;--f-li-11:56px;--f-li-12:65px;--f-li-13:72px;--f-li-14:82px;--f-li-15:102px;--f-li-16:124px;--f-li-17:24px} +:root .font_body, :root .t_lang-body-default .font_body {--f-fa:DM Sans, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;--f-si-1:11px;--f-si-2:12px;--f-si-3:13px;--f-si-4:14px;--f-si-5:16px;--f-si-6:18px;--f-si-7:20px;--f-si-8:23px;--f-si-9:30px;--f-si-10:40px;--f-si-11:46px;--f-si-12:55px;--f-si-13:62px;--f-si-14:72px;--f-si-15:92px;--f-si-16:114px;--f-si-17:14px;--f-li-1:21px;--f-li-2:22px;--f-li-3:23px;--f-li-4:24px;--f-li-5:26px;--f-li-6:28px;--f-li-7:30px;--f-li-8:33px;--f-li-9:40px;--f-li-10:50px;--f-li-11:56px;--f-li-12:65px;--f-li-13:72px;--f-li-14:82px;--f-li-15:102px;--f-li-16:124px;--f-li-17:24px} +:root .font_mono, :root .t_lang-mono-default .font_mono {--f-fa:DM Mono, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, monospace;--f-si-1:11px;--f-si-2:12px;--f-si-3:13px;--f-si-4:14px;--f-si-5:16px;--f-si-6:18px;--f-si-7:20px;--f-si-8:23px;--f-si-9:30px;--f-si-10:40px;--f-si-11:46px;--f-si-12:55px;--f-si-13:62px;--f-si-14:72px;--f-si-15:92px;--f-si-16:114px;--f-si-17:14px;--f-li-1:21px;--f-li-2:22px;--f-li-3:23px;--f-li-4:24px;--f-li-5:26px;--f-li-6:28px;--f-li-7:30px;--f-li-8:33px;--f-li-9:40px;--f-li-10:50px;--f-li-11:56px;--f-li-12:65px;--f-li-13:72px;--f-li-14:82px;--f-li-15:102px;--f-li-16:124px;--f-li-17:24px;--f-we-1:300;--f-we-2:300;--f-we-3:300;--f-we-4:400;--f-we-5:500;--f-we-6:500;--f-we-7:500;--f-we-8:500;--f-we-9:500;--f-we-10:500;--f-we-11:500;--f-we-12:500;--f-we-13:500;--f-we-14:500;--f-we-15:500;--f-we-16:500;--f-we-17:500} :root.t_dark, :root.t_dark .t_light .t_dark, :root.t_light .t_dark, :root.t_light .t_dark .t_light .t_dark {--accentBackground:var(--color-231);--accentColor:hsla(191, 32%, 10%, 1);--background0:hsla(191, 33%, 10%, 0.25);--background025:hsla(191, 33%, 10%, 0.5);--background05:hsla(191, 33%, 10%, 0.75);--background075:hsla(191, 32%, 10%, 1);--color0:hsla(112, 22%, 100%, 1);--color025:hsla(0, 0%, 100%, 0.75);--color05:hsla(0, 0%, 100%, 0.5);--color075:hsla(0, 0%, 100%, 0.25);--background:hsla(191, 32%, 10%, 1);--backgroundHover:hsla(191, 32%, 15%, 1);--backgroundPress:hsla(191, 32%, 19%, 1);--backgroundFocus:hsla(191, 32%, 24%, 1);--color:hsla(112, 22%, 59%, 1);--colorHover:hsla(191, 32%, 50%, 1);--colorPress:hsla(112, 22%, 59%, 1);--colorFocus:hsla(191, 32%, 50%, 1);--placeholderColor:hsla(191, 32%, 50%, 1);--borderColor:hsla(191, 32%, 24%, 1);--borderColorHover:hsla(191, 32%, 28%, 1);--borderColorFocus:hsla(191, 32%, 32%, 1);--borderColorPress:hsla(191, 32%, 28%, 1);--color1:hsla(191, 32%, 10%, 1);--color2:hsla(191, 32%, 15%, 1);--color3:hsla(191, 32%, 19%, 1);--color4:hsla(191, 32%, 24%, 1);--color5:hsla(191, 32%, 28%, 1);--color6:hsla(191, 32%, 32%, 1);--color7:hsla(191, 32%, 37%, 1);--color8:hsla(191, 32%, 41%, 1);--color9:hsla(191, 32%, 46%, 1);--color10:hsla(191, 32%, 50%, 1);--color11:hsla(112, 22%, 59%, 1);--color12:hsla(112, 22%, 100%, 1);} @media(prefers-color-scheme:dark){ body{background:var(--background);color:var(--color)} diff --git a/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap b/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap index b4ec52ae5..8341a2ac4 100644 --- a/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap +++ b/packages/app/features/auth/onboarding/__snapshots__/screen.test.tsx.snap @@ -454,7 +454,7 @@ exports[`OnboardingScreen 1`] = ` "borderTopLeftRadius": 0, "borderTopRightRadius": 0, "borderTopWidth": 0, - "color": "hsla(112, 22%, 59%, 1)", + "color": "hsla(112, 22%, 100%, 1)", "fontFamily": "$mono", "fontSize": 20, "fontWeight": "400", @@ -587,7 +587,7 @@ exports[`OnboardingScreen 1`] = ` { "alignItems": "center", "alignSelf": "auto", - "backgroundColor": "hsla(125, 96%, 47%, 1)", + "backgroundColor": "#40FB50", "borderBottomColor": "transparent", "borderBottomLeftRadius": 9, "borderBottomRightRadius": 9, @@ -601,6 +601,7 @@ exports[`OnboardingScreen 1`] = ` "borderTopLeftRadius": 9, "borderTopRightRadius": 9, "borderTopWidth": 1, + "color": "hsla(125, 96%, 47%, 1)", "flexDirection": "row", "flexWrap": "nowrap", "height": 44, @@ -621,20 +622,39 @@ exports[`OnboardingScreen 1`] = ` numberOfLines={1} style={ { - "color": "black", + "color": "hsla(125, 96%, 47%, 1)", "flexGrow": 0, "flexShrink": 1, "fontFamily": "System", - "fontSize": 13.2, - "fontWeight": "300", - "lineHeight": 16, - "textAlign": "center", + "fontSize": 16.8, + "fontWeight": "400", + "lineHeight": 19, } } suppressHighlighting={true} userSelect="none" > - CREATE PASSKEY + + CREATE PASSKEY + diff --git a/packages/app/features/profile/__snapshots__/SendDialog.test.tsx.snap b/packages/app/features/profile/__snapshots__/SendDialog.test.tsx.snap index 42cfa963c..3aa7b760b 100644 --- a/packages/app/features/profile/__snapshots__/SendDialog.test.tsx.snap +++ b/packages/app/features/profile/__snapshots__/SendDialog.test.tsx.snap @@ -481,9 +481,10 @@ exports[`SendDialog it can send: SendForm 1`] = ` "color": "hsla(112, 22%, 59%, 1)", "display": "flex", "fontFamily": "System", - "fontSize": 15.6, - "fontWeight": "300", - "lineHeight": 36, + "fontSize": 19.2, + "fontWeight": "400", + "lineHeight": 21, + "textTransform": "uppercase", } } suppressHighlighting={true} @@ -670,21 +671,21 @@ exports[`SendDialog it can send: SendForm 1`] = ` readOnly={false} style={ { - "backgroundColor": "hsla(191, 32%, 10%, 1)", + "backgroundColor": "#081619", "borderBottomColor": "hsla(191, 32%, 32%, 1)", "borderBottomLeftRadius": 16, "borderBottomRightRadius": 16, - "borderBottomWidth": 1, + "borderBottomWidth": 0, "borderLeftColor": "hsla(191, 32%, 32%, 1)", - "borderLeftWidth": 1, + "borderLeftWidth": 0, "borderRightColor": "hsla(191, 32%, 32%, 1)", - "borderRightWidth": 1, + "borderRightWidth": 0, "borderStyle": "solid", "borderTopColor": "hsla(191, 32%, 32%, 1)", "borderTopLeftRadius": 16, "borderTopRightRadius": 16, - "borderTopWidth": 1, - "color": "hsla(112, 22%, 59%, 1)", + "borderTopWidth": 0, + "color": "hsla(112, 22%, 100%, 1)", "fontFamily": "System", "fontSize": 16.8, "fontWeight": "400", @@ -966,7 +967,7 @@ exports[`SendDialog it can send: SendForm 1`] = ` style={ { "alignItems": "center", - "backgroundColor": "hsla(125, 96%, 47%, 1)", + "backgroundColor": "#40FB50", "borderBottomColor": "transparent", "borderBottomLeftRadius": 16, "borderBottomRightRadius": 16, @@ -980,6 +981,7 @@ exports[`SendDialog it can send: SendForm 1`] = ` "borderTopLeftRadius": 16, "borderTopRightRadius": 16, "borderTopWidth": 1, + "color": "hsla(125, 96%, 47%, 1)", "flexDirection": "row", "flexWrap": "nowrap", "height": 44, @@ -996,7 +998,7 @@ exports[`SendDialog it can send: SendForm 1`] = ` numberOfLines={1} style={ { - "color": "hsla(191, 32%, 10%, 1)", + "color": "hsla(125, 96%, 47%, 1)", "flexGrow": 0, "flexShrink": 1, "fontFamily": "System", @@ -1008,7 +1010,26 @@ exports[`SendDialog it can send: SendForm 1`] = ` suppressHighlighting={true} userSelect="none" > - Send + + Send + - Send + + Send + { }) test('can update profile', async ({ page, supabase }) => { - const editProfileButton = page.getByRole('button', { name: 'Edit Profile' }) + const editProfileButton = page.getByRole('link', { name: 'Settings' }) await editProfileButton.click() - await page.waitForURL('/account/profile') - await expect(page).toHaveTitle('Account') + await page.waitForURL('/account/settings/edit-profile') + await expect(page).toHaveTitle('Edit Profile') - await page.getByLabel('Name').fill('LeO') - await page.getByLabel('About').fill('Sender') - await page.getByLabel('IsPublic').setChecked(true) + await page.getByLabel('User Name').fill('LeO') + await page.getByLabel('Bio').fill('Sender') + await page.getByLabel('Is Public').setChecked(true) - await page.getByRole('button', { name: 'Update Profile' }).click() + await page.getByRole('button', { name: 'Save' }).click() await expect(page.getByText('Notification Successfully updated')).toBeVisible() - const { data, error } = await supabase.auth.getSession() + const { data: user, error } = await supabase.from('profiles').select('*').maybeSingle() expect(error).toBeFalsy() - - if (data.session) { - const { data: user, error } = await supabase - .from('profiles') - .select('*') - .eq('id', data.session?.user.id) - .maybeSingle() - expect(error).toBeFalsy() - expect(user).toBeTruthy() - expect(user?.name === 'LeO' && user.about === 'Sender' && user.is_public === true).toBeTruthy() - } + expect(user).toBeTruthy() + expect(user?.name === 'LeO' && user.about === 'Sender' && user.is_public === true).toBeTruthy() }) diff --git a/packages/shovel/etc/config.json b/packages/shovel/etc/config.json index 86a01d51b..1c7c249c4 100644 --- a/packages/shovel/etc/config.json +++ b/packages/shovel/etc/config.json @@ -68,8 +68,7 @@ "column": "factory", "filter_op": "contains", "filter_arg": [ - "0x3ABa34EA7AB643DE0BEd2e15D7Cb97BeedB09bDC", - "0x92F9acDa58877431FF3d091D71A9e20Fe1BFf4dd" + "0x3ABa34EA7AB643DE0BEd2e15D7Cb97BeedB09bDC" ] }, { diff --git a/packages/shovel/package.json b/packages/shovel/package.json index 69bb992b5..f3e1a772e 100644 --- a/packages/shovel/package.json +++ b/packages/shovel/package.json @@ -3,7 +3,7 @@ "module": "index.ts", "type": "module", "scripts": { - "generate": "bun test && bun run src/generate.ts --path='./etc/config.json'", + "generate": "bun run src/generate.ts --path='./etc/config.json'", "test": "bun test" }, "devDependencies": { diff --git a/packages/shovel/test/__snapshots__/index.test.ts.snap b/packages/shovel/test/__snapshots__/index.test.ts.snap index e61af69b7..f9a84f39c 100644 --- a/packages/shovel/test/__snapshots__/index.test.ts.snap +++ b/packages/shovel/test/__snapshots__/index.test.ts.snap @@ -49,7 +49,6 @@ exports[`shovel config 1`] = ` "column": "factory", "filter_arg": [ "0x3ABa34EA7AB643DE0BEd2e15D7Cb97BeedB09bDC", - "0x92F9acDa58877431FF3d091D71A9e20Fe1BFf4dd", ], "filter_op": "contains", "indexed": false, diff --git a/packages/ui/src/components/FormFields/TextField.tsx b/packages/ui/src/components/FormFields/TextField.tsx index e4effb3dd..83496ccad 100644 --- a/packages/ui/src/components/FormFields/TextField.tsx +++ b/packages/ui/src/components/FormFields/TextField.tsx @@ -21,8 +21,8 @@ export const TextField = (props: InputProps) => { {!!label && (