Repository: tryabby/abby Branch: main Commit: e763d1a9a46f Files: 722 Total size: 8.5 MB Directory structure: gitextract_322ztv_j/ ├── .changeset/ │ ├── README.md │ └── config.json ├── .dockerignore ├── .github/ │ └── workflows/ │ ├── publish.yaml │ ├── pull_request.yaml │ └── tests.yaml ├── .gitignore ├── .nvmrc ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── TRACKING.md ├── apps/ │ ├── cdn/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── lib/ │ │ │ ├── cache.ts │ │ │ └── config.ts │ │ └── tsconfig.json │ ├── docs/ │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── next.config.js │ │ ├── package.json │ │ ├── pages/ │ │ │ ├── _app.mdx │ │ │ ├── _meta.json │ │ │ ├── a-b-testing.mdx │ │ │ ├── config.mdx │ │ │ ├── devtools.mdx │ │ │ ├── environments.mdx │ │ │ ├── feature-flags.mdx │ │ │ ├── index.mdx │ │ │ ├── integrations/ │ │ │ │ ├── _meta.json │ │ │ │ ├── angular.mdx │ │ │ │ ├── express.mdx │ │ │ │ ├── koa.mdx │ │ │ │ ├── nextjs.mdx │ │ │ │ ├── node.mdx │ │ │ │ ├── react.mdx │ │ │ │ ├── remix.mdx │ │ │ │ └── svelte.mdx │ │ │ ├── nextjs.mdx │ │ │ ├── reference/ │ │ │ │ ├── _meta.json │ │ │ │ ├── angular.mdx │ │ │ │ ├── cli.mdx │ │ │ │ ├── http.mdx │ │ │ │ ├── nextjs.mdx │ │ │ │ ├── operators.mdx │ │ │ │ ├── react.mdx │ │ │ │ ├── remix.mdx │ │ │ │ └── svelte.mdx │ │ │ ├── remote-config.mdx │ │ │ └── user-segments.mdx │ │ ├── snippets/ │ │ │ └── ReactApi.mdx │ │ ├── theme.config.jsx │ │ └── tsconfig.json │ └── web/ │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── README.md │ ├── abby.config.ts │ ├── components.json │ ├── docker-compose.mailhog.yaml │ ├── emails/ │ │ ├── ContactFormularEmail.tsx │ │ ├── index.tsx │ │ └── invite.tsx │ ├── next-sitemap.config.js │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.cjs │ ├── prisma/ │ │ ├── generateCoupons.ts │ │ ├── migrations/ │ │ │ ├── 20221205112748_init_db/ │ │ │ │ └── migration.sql │ │ │ ├── 20221205131914_bruh/ │ │ │ │ └── migration.sql │ │ │ ├── 20221205132203_/ │ │ │ │ └── migration.sql │ │ │ ├── 20221205133208_/ │ │ │ │ └── migration.sql │ │ │ ├── 20221205162949_make_name_and_project_id_unique_identifier_for_test/ │ │ │ │ └── migration.sql │ │ │ ├── 20221207080237_add_event_table/ │ │ │ │ └── migration.sql │ │ │ ├── 20221208123701_add_project_invites/ │ │ │ │ └── migration.sql │ │ │ ├── 20221208134716_use_decimal_for_weights/ │ │ │ │ └── migration.sql │ │ │ ├── 20221208152910_add_project_user/ │ │ │ │ └── migration.sql │ │ │ ├── 20221208172715_/ │ │ │ │ └── migration.sql │ │ │ ├── 20221210195541_add_stripe_info_to_projects/ │ │ │ │ └── migration.sql │ │ │ ├── 20221212063242_add_plan_to_project/ │ │ │ │ └── migration.sql │ │ │ ├── 20230101140121_use_role_enum_for_project_users/ │ │ │ │ └── migration.sql │ │ │ ├── 20230104071050_add_feature_flags/ │ │ │ │ └── migration.sql │ │ │ ├── 20230104080059_make_featureflag_name_unique_per_project/ │ │ │ │ └── migration.sql │ │ │ ├── 20230104081514_fix/ │ │ │ │ └── migration.sql │ │ │ ├── 20230115171608_remove/ │ │ │ │ └── migration.sql │ │ │ ├── 20230210162012_add_history/ │ │ │ │ └── migration.sql │ │ │ ├── 20230222182342_add_sort_index_for_env/ │ │ │ │ └── migration.sql │ │ │ ├── 20230302165144_add_description_to_feature_flag/ │ │ │ │ └── migration.sql │ │ │ ├── 20230303082044_use_text_for_description_for_longer_texts/ │ │ │ │ └── migration.sql │ │ │ ├── 20230303121237_add_flag_value_table/ │ │ │ │ └── migration.sql │ │ │ ├── 20230303130553_/ │ │ │ │ └── migration.sql │ │ │ ├── 20230303181212_update_history/ │ │ │ │ └── migration.sql │ │ │ ├── 20230303181813_remove_env_flag_relation/ │ │ │ │ └── migration.sql │ │ │ ├── 20230303182053_make_id_for_flag_values_unique/ │ │ │ │ └── migration.sql │ │ │ ├── 20230305160755_rename_flag_value_and_add_index_for_faster_access/ │ │ │ │ └── migration.sql │ │ │ ├── 20230326163301_make_payment_interval_required/ │ │ │ │ └── migration.sql │ │ │ ├── 20230511063052_add_coupon_codes_table/ │ │ │ │ └── migration.sql │ │ │ ├── 20230511064125_renmae_price_id_field_for_code/ │ │ │ │ └── migration.sql │ │ │ ├── 20230601155320_add_multivariate_flags/ │ │ │ │ └── migration.sql │ │ │ ├── 20230601161058_update_flag_history/ │ │ │ │ └── migration.sql │ │ │ ├── 20230602080502_remove_json_field_from_flagtype_enum/ │ │ │ │ └── migration.sql │ │ │ ├── 20230611180244_move_flag_type_to_flag_instead_of_value/ │ │ │ │ └── migration.sql │ │ │ ├── 20230628081242_add_api_key_table/ │ │ │ │ └── migration.sql │ │ │ ├── 20230630140739_add_json_type/ │ │ │ │ └── migration.sql │ │ │ ├── 20230731133223_rename_apikey/ │ │ │ │ └── migration.sql │ │ │ ├── 20230803094512_change_api_key_validity_logic/ │ │ │ │ └── migration.sql │ │ │ ├── 20230901064929_add_requests/ │ │ │ │ └── migration.sql │ │ │ ├── 20230901065851_remove_hashed_ip_field/ │ │ │ │ └── migration.sql │ │ │ ├── 20230903075910_add_user_onboarding_information/ │ │ │ │ └── migration.sql │ │ │ ├── 20231207205533_add_api_version_to_request/ │ │ │ │ └── migration.sql │ │ │ ├── 20231207205701_add_apiversion_enum/ │ │ │ │ └── migration.sql │ │ │ ├── 20240620195120_add_apirequest_type/ │ │ │ │ └── migration.sql │ │ │ ├── 20240621084922_add_indices_for_apirequest/ │ │ │ │ └── migration.sql │ │ │ ├── 20240826064116_add_integrations/ │ │ │ │ └── migration.sql │ │ │ ├── 20240903210250_add_anonymous_id_to_event/ │ │ │ │ └── migration.sql │ │ │ ├── 20250131071445_add_flag_rulesets/ │ │ │ │ └── migration.sql │ │ │ └── migration_lock.toml │ │ ├── schema.prisma │ │ ├── seedEvents.ts │ │ └── sql/ │ │ ├── getEventsByTestIdForAllTime.sql │ │ ├── getEventsByTestIdForDay.sql │ │ └── getEventsByTestIdForLast30Days.sql │ ├── sentry.client.config.ts │ ├── sentry.edge.config.ts │ ├── sentry.server.config.ts │ ├── src/ │ │ ├── api/ │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ └── routes/ │ │ │ ├── health.test.ts │ │ │ ├── health.ts │ │ │ ├── integrations.ts │ │ │ ├── legacy_project_data.test.ts │ │ │ ├── legacy_project_data.ts │ │ │ ├── v1_config.test.ts │ │ │ ├── v1_config.ts │ │ │ ├── v1_event.test.ts │ │ │ ├── v1_event.ts │ │ │ ├── v1_project_data.test.ts │ │ │ ├── v1_project_data.ts │ │ │ └── v2_project_data.ts │ │ ├── components/ │ │ │ ├── AddABTestModal.tsx │ │ │ ├── AddFeatureFlagModal.tsx │ │ │ ├── AsyncCodeExample.tsx │ │ │ ├── Avatar.tsx │ │ │ ├── BlogLayout.tsx │ │ │ ├── Button.tsx │ │ │ ├── CodeSnippet.tsx │ │ │ ├── CodeSnippetModalButton.tsx │ │ │ ├── CreateAPIKeyModal.tsx │ │ │ ├── CreateEnvironmentModal.tsx │ │ │ ├── CreateProjectModal.tsx │ │ │ ├── DashboardButton.tsx │ │ │ ├── DashboardHeader.tsx │ │ │ ├── DashboardSection.tsx │ │ │ ├── DeleteProjectModal.tsx │ │ │ ├── DevtoolsArrow.tsx │ │ │ ├── Divider.tsx │ │ │ ├── Dropdown.tsx │ │ │ ├── DropdownMenu.tsx │ │ │ ├── Editor.tsx │ │ │ ├── EventCounter.tsx │ │ │ ├── Feature.tsx │ │ │ ├── FeatureFlag.tsx │ │ │ ├── FlagIcon.tsx │ │ │ ├── FlagPage.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Input.tsx │ │ │ ├── Integrations.tsx │ │ │ ├── JSONEditor.tsx │ │ │ ├── Layout.tsx │ │ │ ├── LoadingSpinner.tsx │ │ │ ├── Logo.tsx │ │ │ ├── MarketingLayout.tsx │ │ │ ├── Modal.tsx │ │ │ ├── Navbar/ │ │ │ │ └── index.tsx │ │ │ ├── Pricing.tsx │ │ │ ├── Progress.tsx │ │ │ ├── ProjectSwitcher.tsx │ │ │ ├── RadioGroup.tsx │ │ │ ├── RadioSelect.tsx │ │ │ ├── RemoveUserModal.tsx │ │ │ ├── Select.tsx │ │ │ ├── SignupButton.tsx │ │ │ ├── Test/ │ │ │ │ ├── CreateTestSection.tsx │ │ │ │ ├── Metrics.tsx │ │ │ │ ├── Section.tsx │ │ │ │ ├── Serves.tsx │ │ │ │ └── Weights.tsx │ │ │ ├── TitleEdit.tsx │ │ │ ├── Toggle.tsx │ │ │ ├── Tooltip.tsx │ │ │ ├── UsedBy.tsx │ │ │ ├── UserAuthForm.tsx │ │ │ ├── UserInfo.tsx │ │ │ ├── analytics/ │ │ │ │ └── EventGraph.tsx │ │ │ ├── app/ │ │ │ │ ├── AppNav.tsx │ │ │ │ └── UserNav.tsx │ │ │ ├── charts/ │ │ │ │ └── Donut.tsx │ │ │ ├── flags/ │ │ │ │ ├── FlagRuleEditor.tsx │ │ │ │ └── RuleSetEditor.tsx │ │ │ ├── settings/ │ │ │ │ ├── Integrations.tsx │ │ │ │ └── Segments.tsx │ │ │ └── ui/ │ │ │ ├── avatar.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── chart.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── environment-badge.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── popover.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── select.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ └── tooltip.tsx │ │ ├── env/ │ │ │ ├── client.mjs │ │ │ ├── schema.mjs │ │ │ └── server.mjs │ │ ├── instrumentation.ts │ │ ├── lib/ │ │ │ ├── abby.tsx │ │ │ ├── environment-styles.ts │ │ │ ├── events.ts │ │ │ ├── flags.ts │ │ │ ├── graphs.ts │ │ │ ├── helper.ts │ │ │ ├── hooks/ │ │ │ │ ├── useProjectId.ts │ │ │ │ └── useQueryParam.ts │ │ │ ├── logsnag.ts │ │ │ ├── shiki/ │ │ │ │ ├── languages/ │ │ │ │ │ ├── abap.tmLanguage.json │ │ │ │ │ ├── actionscript-3.tmLanguage.json │ │ │ │ │ ├── ada.tmLanguage.json │ │ │ │ │ ├── apache.tmLanguage.json │ │ │ │ │ ├── apex.tmLanguage.json │ │ │ │ │ ├── apl.tmLanguage.json │ │ │ │ │ ├── applescript.tmLanguage.json │ │ │ │ │ ├── asm.tmLanguage.json │ │ │ │ │ ├── astro.tmLanguage.json │ │ │ │ │ ├── awk.tmLanguage.json │ │ │ │ │ ├── ballerina.tmLanguage.json │ │ │ │ │ ├── bat.tmLanguage.json │ │ │ │ │ ├── berry.tmLanguage.json │ │ │ │ │ ├── bibtex.tmLanguage.json │ │ │ │ │ ├── bicep.tmLanguage.json │ │ │ │ │ ├── blade.tmLanguage.json │ │ │ │ │ ├── c.tmLanguage.json │ │ │ │ │ ├── cadence.tmLanguage.json │ │ │ │ │ ├── clarity.tmLanguage.json │ │ │ │ │ ├── clojure.tmLanguage.json │ │ │ │ │ ├── cmake.tmLanguage.json │ │ │ │ │ ├── cobol.tmLanguage.json │ │ │ │ │ ├── codeql.tmLanguage.json │ │ │ │ │ ├── coffee.tmLanguage.json │ │ │ │ │ ├── cpp-macro.tmLanguage.json │ │ │ │ │ ├── cpp.tmLanguage.json │ │ │ │ │ ├── crystal.tmLanguage.json │ │ │ │ │ ├── csharp.tmLanguage.json │ │ │ │ │ ├── css.tmLanguage.json │ │ │ │ │ ├── cue.tmLanguage.json │ │ │ │ │ ├── d.tmLanguage.json │ │ │ │ │ ├── dart.tmLanguage.json │ │ │ │ │ ├── diff.tmLanguage.json │ │ │ │ │ ├── docker.tmLanguage.json │ │ │ │ │ ├── dream-maker.tmLanguage.json │ │ │ │ │ ├── elixir.tmLanguage.json │ │ │ │ │ ├── elm.tmLanguage.json │ │ │ │ │ ├── erb.tmLanguage.json │ │ │ │ │ ├── erlang.tmLanguage.json │ │ │ │ │ ├── fish.tmLanguage.json │ │ │ │ │ ├── fsharp.tmLanguage.json │ │ │ │ │ ├── gherkin.tmLanguage.json │ │ │ │ │ ├── git-commit.tmLanguage.json │ │ │ │ │ ├── git-rebase.tmLanguage.json │ │ │ │ │ ├── glsl.tmLanguage.json │ │ │ │ │ ├── gnuplot.tmLanguage.json │ │ │ │ │ ├── go.tmLanguage.json │ │ │ │ │ ├── graphql.tmLanguage.json │ │ │ │ │ ├── groovy.tmLanguage.json │ │ │ │ │ ├── hack.tmLanguage.json │ │ │ │ │ ├── haml.tmLanguage.json │ │ │ │ │ ├── handlebars.tmLanguage.json │ │ │ │ │ ├── haskell.tmLanguage.json │ │ │ │ │ ├── hcl.tmLanguage.json │ │ │ │ │ ├── hlsl.tmLanguage.json │ │ │ │ │ ├── html.tmLanguage.json │ │ │ │ │ ├── ini.tmLanguage.json │ │ │ │ │ ├── java.tmLanguage.json │ │ │ │ │ ├── javascript.tmLanguage.json │ │ │ │ │ ├── jinja-html.tmLanguage.json │ │ │ │ │ ├── jinja.tmLanguage.json │ │ │ │ │ ├── json.tmLanguage.json │ │ │ │ │ ├── jsonc.tmLanguage.json │ │ │ │ │ ├── jsonnet.tmLanguage.json │ │ │ │ │ ├── jssm.tmLanguage.json │ │ │ │ │ ├── jsx.tmLanguage.json │ │ │ │ │ ├── julia.tmLanguage.json │ │ │ │ │ ├── kotlin.tmLanguage.json │ │ │ │ │ ├── latex.tmLanguage.json │ │ │ │ │ ├── less.tmLanguage.json │ │ │ │ │ ├── liquid.tmLanguage.json │ │ │ │ │ ├── lisp.tmLanguage.json │ │ │ │ │ ├── logo.tmLanguage.json │ │ │ │ │ ├── lua.tmLanguage.json │ │ │ │ │ ├── make.tmLanguage.json │ │ │ │ │ ├── markdown.tmLanguage.json │ │ │ │ │ ├── marko.tmLanguage.json │ │ │ │ │ ├── matlab.tmLanguage.json │ │ │ │ │ ├── mdx.tmLanguage.json │ │ │ │ │ ├── mermaid.tmLanguage.json │ │ │ │ │ ├── nginx.tmLanguage.json │ │ │ │ │ ├── nim.tmLanguage.json │ │ │ │ │ ├── nix.tmLanguage.json │ │ │ │ │ ├── objective-c.tmLanguage.json │ │ │ │ │ ├── objective-cpp.tmLanguage.json │ │ │ │ │ ├── ocaml.tmLanguage.json │ │ │ │ │ ├── pascal.tmLanguage.json │ │ │ │ │ ├── perl.tmLanguage.json │ │ │ │ │ ├── php-html.tmLanguage.json │ │ │ │ │ ├── php.tmLanguage.json │ │ │ │ │ ├── plsql.tmLanguage.json │ │ │ │ │ ├── postcss.tmLanguage.json │ │ │ │ │ ├── powershell.tmLanguage.json │ │ │ │ │ ├── prisma.tmLanguage.json │ │ │ │ │ ├── prolog.tmLanguage.json │ │ │ │ │ ├── pug.tmLanguage.json │ │ │ │ │ ├── puppet.tmLanguage.json │ │ │ │ │ ├── purescript.tmLanguage.json │ │ │ │ │ ├── python.tmLanguage.json │ │ │ │ │ ├── r.tmLanguage.json │ │ │ │ │ ├── raku.tmLanguage.json │ │ │ │ │ ├── razor.tmLanguage.json │ │ │ │ │ ├── rel.tmLanguage.json │ │ │ │ │ ├── riscv.tmLanguage.json │ │ │ │ │ ├── rst.tmLanguage.json │ │ │ │ │ ├── ruby.tmLanguage.json │ │ │ │ │ ├── rust.tmLanguage.json │ │ │ │ │ ├── sas.tmLanguage.json │ │ │ │ │ ├── sass.tmLanguage.json │ │ │ │ │ ├── scala.tmLanguage.json │ │ │ │ │ ├── scheme.tmLanguage.json │ │ │ │ │ ├── scss.tmLanguage.json │ │ │ │ │ ├── shaderlab.tmLanguage.json │ │ │ │ │ ├── shellscript.tmLanguage.json │ │ │ │ │ ├── smalltalk.tmLanguage.json │ │ │ │ │ ├── solidity.tmLanguage.json │ │ │ │ │ ├── sparql.tmLanguage.json │ │ │ │ │ ├── sql.tmLanguage.json │ │ │ │ │ ├── ssh-config.tmLanguage.json │ │ │ │ │ ├── stata.tmLanguage.json │ │ │ │ │ ├── stylus.tmLanguage.json │ │ │ │ │ ├── svelte.tmLanguage.json │ │ │ │ │ ├── swift.tmLanguage.json │ │ │ │ │ ├── system-verilog.tmLanguage.json │ │ │ │ │ ├── tasl.tmLanguage.json │ │ │ │ │ ├── tcl.tmLanguage.json │ │ │ │ │ ├── tex.tmLanguage.json │ │ │ │ │ ├── toml.tmLanguage.json │ │ │ │ │ ├── tsx.tmLanguage.json │ │ │ │ │ ├── turtle.tmLanguage.json │ │ │ │ │ ├── twig.tmLanguage.json │ │ │ │ │ ├── typescript.tmLanguage.json │ │ │ │ │ ├── vb.tmLanguage.json │ │ │ │ │ ├── verilog.tmLanguage.json │ │ │ │ │ ├── vhdl.tmLanguage.json │ │ │ │ │ ├── viml.tmLanguage.json │ │ │ │ │ ├── vue-html.tmLanguage.json │ │ │ │ │ ├── vue.tmLanguage.json │ │ │ │ │ ├── wasm.tmLanguage.json │ │ │ │ │ ├── wenyan.tmLanguage.json │ │ │ │ │ ├── xml.tmLanguage.json │ │ │ │ │ ├── xsl.tmLanguage.json │ │ │ │ │ ├── yaml.tmLanguage.json │ │ │ │ │ └── zenscript.tmLanguage.json │ │ │ │ └── themes/ │ │ │ │ ├── css-variables.json │ │ │ │ ├── dark-plus.json │ │ │ │ ├── dracula-soft.json │ │ │ │ ├── dracula.json │ │ │ │ ├── github-dark-dimmed.json │ │ │ │ ├── github-dark.json │ │ │ │ ├── github-light.json │ │ │ │ ├── hc_light.json │ │ │ │ ├── light-plus.json │ │ │ │ ├── material-darker.json │ │ │ │ ├── material-default.json │ │ │ │ ├── material-lighter.json │ │ │ │ ├── material-ocean.json │ │ │ │ ├── material-palenight.json │ │ │ │ ├── min-dark.json │ │ │ │ ├── min-light.json │ │ │ │ ├── monokai.json │ │ │ │ ├── nord.json │ │ │ │ ├── one-dark-pro.json │ │ │ │ ├── poimandres.json │ │ │ │ ├── rose-pine-dawn.json │ │ │ │ ├── rose-pine-moon.json │ │ │ │ ├── rose-pine.json │ │ │ │ ├── slack-dark.json │ │ │ │ ├── slack-ochin.json │ │ │ │ ├── solarized-dark.json │ │ │ │ ├── solarized-light.json │ │ │ │ ├── vitesse-dark.json │ │ │ │ └── vitesse-light.json │ │ │ ├── stripe.ts │ │ │ ├── tracking.ts │ │ │ └── utils.ts │ │ ├── middleware.ts │ │ ├── pages/ │ │ │ ├── _app.tsx │ │ │ ├── _document.tsx │ │ │ ├── _error.jsx │ │ │ ├── api/ │ │ │ │ ├── [[...route]].ts │ │ │ │ ├── auth/ │ │ │ │ │ └── [...nextauth].ts │ │ │ │ ├── checkout/ │ │ │ │ │ └── index.ts │ │ │ │ ├── invalidate-limits.ts │ │ │ │ ├── stripe.ts │ │ │ │ └── trpc/ │ │ │ │ └── [trpc].ts │ │ │ ├── checkout/ │ │ │ │ └── index.tsx │ │ │ ├── contact.tsx │ │ │ ├── devtools.tsx │ │ │ ├── imprint.mdx │ │ │ ├── index.tsx │ │ │ ├── integrations/ │ │ │ │ ├── [integration]/ │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── invites/ │ │ │ │ ├── [inviteId].tsx │ │ │ │ └── index.tsx │ │ │ ├── login.tsx │ │ │ ├── nextjs.mdx │ │ │ ├── privacy.mdx │ │ │ ├── profile/ │ │ │ │ ├── generate-token.tsx │ │ │ │ └── index.tsx │ │ │ ├── projects/ │ │ │ │ └── [projectId]/ │ │ │ │ ├── environments.tsx │ │ │ │ ├── events.tsx │ │ │ │ ├── flags/ │ │ │ │ │ ├── [flagId].tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── redeem.tsx │ │ │ │ ├── remote-config.tsx │ │ │ │ ├── settings.tsx │ │ │ │ └── tests/ │ │ │ │ └── [testId].tsx │ │ │ ├── redeem.tsx │ │ │ ├── signup.tsx │ │ │ ├── terms.mdx │ │ │ ├── tips-and-insights/ │ │ │ │ ├── a-b-nextjs.mdx │ │ │ │ ├── a-b-react.mdx │ │ │ │ ├── feature-flagging-in-modern-development-teams.mdx │ │ │ │ ├── feature-flags-for-project-managers.mdx │ │ │ │ ├── feature-flags-next.mdx │ │ │ │ ├── honest-marketing.mdx │ │ │ │ └── index.tsx │ │ │ └── welcome.tsx │ │ ├── seo/ │ │ │ └── SeoDescriptions.ts │ │ ├── server/ │ │ │ ├── common/ │ │ │ │ ├── auth.ts │ │ │ │ ├── config-cache.ts │ │ │ │ ├── get-server-auth-session.ts │ │ │ │ ├── getRequestOrigin.ts │ │ │ │ ├── github-app.ts │ │ │ │ ├── integrations.ts │ │ │ │ ├── memory-cache.ts │ │ │ │ ├── plans.ts │ │ │ │ ├── ratelimit.ts │ │ │ │ ├── stripe.ts │ │ │ │ └── tracking.ts │ │ │ ├── db/ │ │ │ │ ├── client.ts │ │ │ │ └── redis.ts │ │ │ ├── queue/ │ │ │ │ ├── AfterDataRequest.ts │ │ │ │ ├── event.ts │ │ │ │ └── queues.ts │ │ │ ├── services/ │ │ │ │ ├── AiFlagRemovalService.ts │ │ │ │ ├── ConfigService.ts │ │ │ │ ├── EventService.ts │ │ │ │ ├── FlagService.ts │ │ │ │ ├── IntegrationService.ts │ │ │ │ ├── InviteService.ts │ │ │ │ ├── PlausibleService.ts │ │ │ │ ├── ProjectService.ts │ │ │ │ ├── RequestCache.ts │ │ │ │ ├── RequestService.ts │ │ │ │ └── TestService.ts │ │ │ └── trpc/ │ │ │ ├── context.ts │ │ │ ├── helpers.ts │ │ │ ├── router/ │ │ │ │ ├── _app.ts │ │ │ │ ├── apikey.ts │ │ │ │ ├── auth.ts │ │ │ │ ├── coupons.ts │ │ │ │ ├── environments.ts │ │ │ │ ├── events.ts │ │ │ │ ├── example.ts │ │ │ │ ├── flags.ts │ │ │ │ ├── invite.ts │ │ │ │ ├── misc.ts │ │ │ │ ├── project-user.ts │ │ │ │ ├── project.ts │ │ │ │ ├── tests.ts │ │ │ │ └── user.ts │ │ │ └── trpc.ts │ │ ├── styles/ │ │ │ ├── shadcn.css │ │ │ └── theme.json │ │ ├── types/ │ │ │ ├── flags.ts │ │ │ ├── next-auth.d.ts │ │ │ └── plausible-events.ts │ │ └── utils/ │ │ ├── apiKey.ts │ │ ├── checkSession.ts │ │ ├── snippets.ts │ │ ├── trpc.ts │ │ ├── updateSession.ts │ │ └── validateFlags.ts │ ├── tailwind.config.cjs │ ├── tsconfig.json │ ├── vercel.json │ └── vitest.config.ts ├── biome.json ├── docker-compose.prod.yaml ├── docker-compose.yaml ├── docs/ │ └── integrations.md ├── package.json ├── packages/ │ ├── angular/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── angular.json │ │ ├── karma.conf.js │ │ ├── ng-package.json │ │ ├── package.json │ │ ├── src/ │ │ │ ├── lib/ │ │ │ │ ├── StorageService.ts │ │ │ │ ├── abby-logger.service.ts │ │ │ │ ├── abby.module.ts │ │ │ │ ├── abby.service.spec.ts │ │ │ │ ├── abby.service.ts │ │ │ │ ├── devtools.component.ts │ │ │ │ ├── flag.directive.ts │ │ │ │ ├── get-remote-config.pipe.spec.ts │ │ │ │ ├── get-remote-config.pipe.ts │ │ │ │ ├── get-variant.pipe.spec.ts │ │ │ │ ├── get-variant.pipe.ts │ │ │ │ └── test.directive.ts │ │ │ └── public-api.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.lib.prod.json │ │ └── tsconfig.spec.json │ ├── cli/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── add-flag.ts │ │ │ ├── add-remote-config.ts │ │ │ ├── ai.ts │ │ │ ├── auth.ts │ │ │ ├── check.ts │ │ │ ├── consts.ts │ │ │ ├── http.ts │ │ │ ├── index.ts │ │ │ ├── init.ts │ │ │ ├── pull.ts │ │ │ ├── push.ts │ │ │ ├── schemas.ts │ │ │ ├── sharedOptions.ts │ │ │ ├── update-config-file.ts │ │ │ └── util.ts │ │ ├── tests/ │ │ │ ├── abby.config.stub.ts │ │ │ ├── base.test.ts │ │ │ ├── mocks/ │ │ │ │ ├── handlers.ts │ │ │ │ └── server.ts │ │ │ └── setup.ts │ │ ├── tsconfig.json │ │ ├── tsup.config.ts │ │ └── vite.config.ts │ ├── core/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── defineConfig.ts │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ ├── mathHelpers.ts │ │ │ ├── shared/ │ │ │ │ ├── constants.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── http.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interfaces.ts │ │ │ │ ├── schemas.ts │ │ │ │ └── types.ts │ │ │ └── validation/ │ │ │ └── index.ts │ │ ├── tests/ │ │ │ ├── base.test.ts │ │ │ ├── defineConfig.test.ts │ │ │ ├── math.test.ts │ │ │ ├── mocks/ │ │ │ │ ├── handlers.ts │ │ │ │ └── server.ts │ │ │ ├── setup.ts │ │ │ ├── types.test.ts │ │ │ └── validation.test.ts │ │ ├── tsconfig.json │ │ ├── tsup.config.ts │ │ └── vite.config.ts │ ├── devtools/ │ │ ├── .gitignore │ │ ├── .storybook/ │ │ │ ├── main.ts │ │ │ └── preview.ts │ │ ├── .vscode/ │ │ │ └── extensions.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── Devtools.stories.ts │ │ │ ├── Devtools.svelte │ │ │ ├── components/ │ │ │ │ ├── ChevronIcon.svelte │ │ │ │ ├── CloseIcon.svelte │ │ │ │ ├── Input.svelte │ │ │ │ ├── JsonEditor.svelte │ │ │ │ ├── Modal.svelte │ │ │ │ ├── Select.svelte │ │ │ │ └── Switch.svelte │ │ │ ├── index.ts │ │ │ ├── lib/ │ │ │ │ ├── storage.ts │ │ │ │ └── types.ts │ │ │ └── vite-env.d.ts │ │ ├── svelte.config.js │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── next/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── cache.ts │ │ │ ├── helpers.ts │ │ │ ├── index.tsx │ │ │ └── withAbby.tsx │ │ ├── tests/ │ │ │ ├── cache.test.ts │ │ │ ├── mocks/ │ │ │ │ ├── handlers.ts │ │ │ │ └── server.ts │ │ │ ├── setup.ts │ │ │ ├── types.test.tsx │ │ │ ├── useAbby.test.tsx │ │ │ └── withAbby.test.tsx │ │ ├── tsconfig.json │ │ ├── tsup.config.ts │ │ └── vite.config.ts │ ├── node/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── fix-exports.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── express/ │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── koa/ │ │ │ │ └── index.ts │ │ │ └── utils/ │ │ │ └── MemoryStorage.ts │ │ ├── tests/ │ │ │ ├── express.test.ts │ │ │ ├── koa.test.ts │ │ │ ├── mocks/ │ │ │ │ ├── handlers.ts │ │ │ │ └── server.ts │ │ │ ├── node.test.ts │ │ │ └── setup.ts │ │ ├── tsconfig.json │ │ ├── tsup.config.ts │ │ └── vite.config.ts │ ├── react/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── StorageService.ts │ │ │ ├── context.tsx │ │ │ ├── helpers.ts │ │ │ └── index.ts │ │ ├── tests/ │ │ │ ├── helpers.test.ts │ │ │ ├── mocks/ │ │ │ │ ├── handlers.ts │ │ │ │ └── server.ts │ │ │ ├── setup.ts │ │ │ ├── ssr.test.tsx │ │ │ ├── types.test.tsx │ │ │ └── useAbby.test.tsx │ │ ├── tsconfig.json │ │ ├── tsup.config.ts │ │ └── vite.config.ts │ ├── remix/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── cache.ts │ │ │ └── index.tsx │ │ ├── tests/ │ │ │ ├── cache.test.ts │ │ │ ├── mocks/ │ │ │ │ ├── handlers.ts │ │ │ │ └── server.ts │ │ │ ├── setup.ts │ │ │ ├── ssr.test.tsx │ │ │ ├── types.test.tsx │ │ │ └── useAbby.test.tsx │ │ ├── tsconfig.json │ │ ├── tsup.config.ts │ │ └── vite.config.ts │ ├── svelte/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── index.ts │ │ │ ├── lib/ │ │ │ │ ├── AbbyDevtools.svelte │ │ │ │ ├── AbbyProvider.svelte │ │ │ │ ├── StorageService.ts │ │ │ │ └── createAbby.ts │ │ │ └── tests/ │ │ │ ├── abby.ts │ │ │ ├── featureFlags.test.ts │ │ │ ├── mocks/ │ │ │ │ ├── handlers.ts │ │ │ │ └── server.ts │ │ │ ├── pages/ │ │ │ │ └── +test.svelte │ │ │ ├── remoteConfig.test.ts │ │ │ ├── setupTest.ts │ │ │ ├── useAbby.test.ts │ │ │ └── withAbby.test.ts │ │ ├── svelte.config.js │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ └── tsconfig/ │ ├── README.md │ ├── angular-library.json │ ├── base.json │ ├── nextjs.json │ ├── package.json │ └── react-library.json ├── pnpm-workspace.yaml └── turbo.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: .changeset/README.md ================================================ # Changesets Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works with multi-package repos, or single-package repos to help you version and publish your code. You can find the full documentation for it [in our repository](https://github.com/changesets/changesets) We have a quick list of common questions to get you started engaging with this project in [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) ================================================ FILE: .changeset/config.json ================================================ { "$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json", "changelog": "@changesets/cli/changelog", "commit": false, "fixed": [], "linked": [], "access": "restricted", "baseBranch": "main", "updateInternalDependencies": "patch", "ignore": [] } ================================================ FILE: .dockerignore ================================================ .git apps/angular-example apps/docs node_modules/ **/node_modules/ ================================================ FILE: .github/workflows/publish.yaml ================================================ name: Changesets on: push: branches: - main env: CI: true PNPM_CACHE_FOLDER: .pnpm-store jobs: version: timeout-minutes: 15 runs-on: ubuntu-latest steps: - name: checkout code repository uses: actions/checkout@v3 with: fetch-depth: 0 - name: setup node.js uses: actions/setup-node@v3 with: node-version: "22.8.0" - uses: pnpm/action-setup@v2 name: Install pnpm id: pnpm-install with: version: 9.9.0 run_install: false - name: Setup npmrc run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc - name: setup pnpm config run: pnpm config set store-dir $PNPM_CACHE_FOLDER - name: install dependencies run: pnpm install --frozen-lockfile - name: build run: pnpm run build:packages - name: create and publish versions uses: changesets/action@v1 with: commit: "chore: update versions" title: "chore: update versions" publish: pnpm ci:publish --no-git-checks env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ================================================ FILE: .github/workflows/pull_request.yaml ================================================ name: Lint and Format on: push: pull_request: jobs: quality: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Setup Biome uses: biomejs/setup-biome@v2 with: version: latest - name: Run Biome run: biome ci . ================================================ FILE: .github/workflows/tests.yaml ================================================ name: Package Tests on: push: paths: - "packages/**" pull_request: paths: - "packages/**" jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Use Node.js uses: actions/setup-node@v3 with: node-version: "22.8.0" - uses: pnpm/action-setup@v2 name: Install pnpm id: pnpm-install with: version: 9.9.0 run_install: false - name: Get pnpm store directory id: pnpm-cache shell: bash run: | echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - uses: actions/cache@v3 name: Setup pnpm cache with: path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-pnpm-store- - name: Install dependencies run: pnpm install - run: pnpm i - run: pnpm build:packages - run: pnpm test:packages ================================================ FILE: .gitignore ================================================ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies node_modules .pnp .pnp.js # testing coverage # next.js .next/ out/ build # misc .env .idea .DS_Store *.pem # debug npm-debug.log* yarn-debug.log* yarn-error.log* .pnpm-debug.log* # local env files .env.local .env.development.local .env.test.local .env.production.local # turbo .turbo ================================================ FILE: .nvmrc ================================================ 22.8.0 ================================================ FILE: .vscode/extensions.json ================================================ { "recommendations": ["svelte.svelte-vscode"] } ================================================ FILE: .vscode/settings.json ================================================ { "editor.formatOnSave": true, "[svelte]": { "editor.defaultFormatter": "svelte.svelte-vscode" }, "[typescript][typescriptreact][typescriptangular][json]": { "editor.defaultFormatter": "biomejs.biome" }, "editor.codeActionsOnSave": { "quickfix.biome": "explicit" } } ================================================ FILE: Dockerfile ================================================ FROM node:20-alpine AS base ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH" RUN corepack enable FROM base AS builder RUN apk update && apk add --no-cache libc6-compat # Set working directory WORKDIR /app COPY . . RUN pnpm add -g turbo RUN turbo prune web --docker # Add lockfile and package.json's of isolated subworkspace FROM base AS installer RUN apk add --no-cache libc6-compat RUN apk update WORKDIR /app # First install the dependencies (as they change less often) COPY .gitignore .gitignore COPY --from=builder /app/out/json/ . COPY --from=builder /app/out/pnpm-lock.yaml ./pnpm-lock.yaml # COPY --from=builder /app/tsconfig.json ./tsconfig.json RUN pnpm install # Build the project COPY --from=builder /app/out/full/ . RUN pnpm turbo run build --filter=web... FROM base AS runner WORKDIR /app # Don't run production as root RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 nextjs USER nextjs COPY --from=installer /app/apps/web/next.config.mjs . COPY --from=installer /app/apps/web/package.json . # Automatically leverage output traces to reduce image size # https://nextjs.org/docs/advanced-features/output-file-tracing COPY --from=installer --chown=nextjs:nodejs /app/apps/web/.next/standalone ./ COPY --from=installer --chown=nextjs:nodejs /app/apps/web/.next/static ./apps/web/.next/static COPY --from=installer --chown=nextjs:nodejs /app/apps/web/public ./apps/web/public COPY --from=installer --chown=nextjs:nodejs /app/apps/web/prisma ./apps/web/prisma # Set your entrypoint script as the entrypoint WORKDIR /app/apps/web CMD ["npm", "run", "start:docker"] ================================================ FILE: LICENSE ================================================ GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software. A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public. The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version. An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU Affero General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Remote Network Interaction; Use with the GNU General Public License. Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the work with which it is combined will remain governed by version 3 of the GNU General Public License. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU Affero General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU Affero General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU Affero General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU Affero General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements. You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see . ================================================ FILE: README.md ================================================ ![Abby Banner](./apps/web/public/og.png) # About Abby Abby is a open source feature management and A/B testing platform. It is designed to be easy to use and easy to integrate into your existing applications. It aims to improve the developer experience by providing a simple and statically typed API for feature management and A/B testing. Besides its official SDKS it also offers a friendly and easy to understand Dashboard for the non-developers in your team. Abby focuses on privacy. This means it won't track any personalized user data and uses no marketing cookies. You can self host it or use the hosted version available at [tryabby.com](https://www.tryabby.com). ## Getting Started _TL;DR:_ ``` git clone git@github.com:tryabby/abby.git pnpm i pnpm build:packages pnpm db:start cp apps/web/.env.example apps/web/.env pnpm db:migrate pnpm dev ``` 1. **Open the Application**: - Go to `http://localhost:3000` in your browser. 2. **Sign Up**: - Select "Continue with Email" and enter your email. 3. **Email Verification**: - Open `http://localhost:8025` in a new tab for MailHog. - Find and open the email from your application. 4. **Complete Registration**: - Click the one-time link in the email to verify and finish account setup. To create an account, you should choose the "Continue with Email" option. The docker-compose.yml includes a [MailHog](https://github.com/mailhog/MailHog) instance at `localhost:8025`, which intercepts the email, so you can get the one-time link from there. ## What's inside? This turborepo uses [pnpm](https://pnpm.io) as a package manager. It includes the following packages/apps: ### Apps and Packages - `docs`: a [Next.js](https://nextjs.org/) with [Nextra](https://nextra.site/) - `web`: another [Next.js](https://nextjs.org/) app using the [T3 Stack](https://create.t3.gg/) - `core`: The Abby core JavaScript SDK which all other JS SDKs are based on - `react`: The Abby React SDK - `next`: The Abby Next.js SDK - `angular`: The Abby Angular SDK - `svelte`: The Abby Svelte SDK Each package/app is 100% [TypeScript](https://www.typescriptlang.org/). ### Utilities This turborepo has some additional tools already setup for you: - [TypeScript](https://www.typescriptlang.org/) for static type checking - [ESLint](https://eslint.org/) for code linting - [Prettier](https://prettier.io) for code formatting ## Useful Links Learn more about the power of Turborepo: - [Pipelines](https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks) - [Caching](https://turbo.build/repo/docs/core-concepts/caching) - [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching) - [Filtering](https://turbo.build/repo/docs/core-concepts/monorepos/filtering) - [Configuration Options](https://turbo.build/repo/docs/reference/configuration) - [CLI Usage](https://turbo.build/repo/docs/reference/command-line-reference) ================================================ FILE: TRACKING.md ================================================ # Tracking The following table shows what we are tracking on our landing page and through our API. | Event Name | Triggered when | Additional properties | | -------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | | Sign Up Clicked | a user clicks the Signup Button on the landing page | None | | Plan Selected | a user tries to register for a plan on the landing page | Plan: The plan the user has chosen | | Plan Upgrade Clicked | a user tries to upgrade their plan on the dashboard | Plan: The plan the user is trying to upgrade to | | Project Created | a user creates a new project on the dashboard | None | | AB-Test Created | a user creates a new AB-Test on the dashboard | Amount Of Variants: The amount of variants associated with the new AB-Test | | Environment Created | a user creates a new environment on the dashboard | None | | Feature Flag Created | a user creates a new feature flag on the dashboard | Feature Flag Type: The type of feature flag created (Boolean, String, Number, Json) | | Devtools Opened | a user tries the devtools for the first time | None | | API Project Data Retrieved | an API call to the endpoint for retrieving the Abby settings for a project, has been sent (We do not track the User-Agent, in this case) | | ================================================ FILE: apps/cdn/.gitignore ================================================ node_modules dist .wrangler .dev.vars # Change them to your taste: wrangler.toml package-lock.json yarn.lock pnpm-lock.yaml ================================================ FILE: apps/cdn/README.md ================================================ ``` npm install npm run dev ``` ``` npm run deploy ``` ================================================ FILE: apps/cdn/package.json ================================================ { "name": "@tryabby/cdn", "private": true, "scripts": { "dev": "wrangler dev src/index.ts", "deploy": "wrangler deploy --minify src/index.ts" }, "dependencies": { "hono": "^4.5.8" }, "devDependencies": { "@tryabby/core": "workspace:*", "@cloudflare/workers-types": "^4.20231218.0", "wrangler": "^3.22.0" } } ================================================ FILE: apps/cdn/src/index.ts ================================================ import { ABBY_WINDOW_KEY, type AbbyDataResponse } from "@tryabby/core"; import { Hono } from "hono"; import { ZoneCache } from "./lib/cache"; import { cors } from "hono/cors"; import { logger } from "hono/logger"; import { timing } from "hono/timing"; import { ConfigService } from "./lib/config"; const cache = new ZoneCache<{ config: AbbyDataResponse; }>({ cloudflareApiKey: "", domain: "cache.tryabby.com", fresh: 60 * 1000, stale: 60 * 1000, zoneId: "", }); const configCache = new ConfigService(cache); const app = new Hono() .use( "*", cors({ origin: "*", maxAge: 60 * 60 * 24 * 30, }) ) .use("*", timing()) .use("*", logger()) .get("/:projectId/:environment", async (c) => { const environment = c.req.param("environment"); const projectId = c.req.param("projectId"); const [data, , reason] = await configCache.retrieveConfig({ c, environment, projectId, }); c.header("x-abby-cache", reason); return c.json(data); }) .get("/:projectId/:environment/script.js", async (c) => { const environment = c.req.param("environment"); const projectId = c.req.param("projectId"); const [data, , reason] = await configCache.retrieveConfig({ c, environment, projectId, }); c.header("x-abby-cache", reason); const script = `window.${ABBY_WINDOW_KEY} = ${JSON.stringify(data)};`; return c.text(script, { headers: { "Content-Type": "application/javascript", }, }); }); export default app; ================================================ FILE: apps/cdn/src/lib/cache.ts ================================================ import type { Context } from "hono"; export type CacheConfig = { /** * How long an entry should be fresh in milliseconds */ fresh: number; /** * How long an entry should be stale in milliseconds * * Stale entries are still valid but should be refreshed in the background */ stale: number; }; export type Entry = { value: TValue; }; export type ZoneCacheConfig = CacheConfig & { domain: string; zoneId: string; /** * This token must have at least */ cloudflareApiKey: string; }; export class ZoneCache> { private readonly config: ZoneCacheConfig; constructor(config: ZoneCacheConfig) { this.config = config; } private createCacheKey( namespace: TName, key: string, cacheBuster = "v1" ): URL { return new URL( `https://${this.config.domain}/cache/${cacheBuster}/${String(namespace)}/${key}` ); } public async get( _c: Context, namespace: TName, key: string ): Promise< [TNamespaces[TName] | undefined, "stale" | "hit" | "miss" | "error"] > { try { const res = await caches.default.match( new Request(this.createCacheKey(namespace, key)) ); if (!res) { return [undefined, "miss"]; } const entry = (await res.json()) as Entry; return [entry.value, "hit"]; } catch (e) { console.error("zone cache error:", e); return [undefined, "error"]; } } public async set( _c: Context, namespace: TName, key: string, value: TNamespaces[TName] | null ): Promise { const entry: Entry = { value: value, }; const req = new Request(this.createCacheKey(namespace, key)); const res = new Response(JSON.stringify(entry), { headers: { "Content-Type": "application/json", "Cache-Control": "public, s-maxage=60", }, }); await caches.default.put(req, res); } } ================================================ FILE: apps/cdn/src/lib/config.ts ================================================ import { type AbbyDataResponse, HttpService } from "@tryabby/core"; import type { Context } from "hono"; import { endTime, startTime } from "hono/timing"; import type { ZoneCache } from "./cache"; export class ConfigService { constructor( private readonly cache: ZoneCache<{ config: AbbyDataResponse; }> ) {} async retrieveConfig({ environment, projectId, c, }: { projectId: string; environment: string; c: Context; }) { const cacheKey = [projectId, environment].join(","); startTime(c, "cacheRead"); const [cachedData, reason] = await this.cache.get(c, "config", cacheKey); endTime(c, "cacheRead"); if (cachedData) { return [cachedData, true, reason] as const; } startTime(c, "remoteRead"); const data = await HttpService.getProjectData({ projectId, environment, }); if (!data) { throw new Error("Failed to fetch data"); } endTime(c, "remoteRead"); c.executionCtx.waitUntil(this.cache.set(c, "config", cacheKey, data)); return [data, false, reason] as const; } } ================================================ FILE: apps/cdn/tsconfig.json ================================================ { "compilerOptions": { "target": "ESNext", "module": "ESNext", "moduleResolution": "node", "esModuleInterop": true, "strict": true, "lib": [ "esnext" ], "types": [ "@cloudflare/workers-types" ], "jsx": "react-jsx", "jsxImportSource": "hono/jsx" }, } ================================================ FILE: apps/docs/.eslintrc.json ================================================ { "root": true, "extends": ["custom"] } ================================================ FILE: apps/docs/.gitignore ================================================ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies /node_modules /.pnp .pnp.js # testing /coverage # next.js /.next/ /out/ # production /build # misc .DS_Store *.pem # debug npm-debug.log* yarn-debug.log* yarn-error.log* .pnpm-debug.log* # local env files .env*.local # vercel .vercel # typescript *.tsbuildinfo next-env.d.ts ================================================ FILE: apps/docs/CHANGELOG.md ================================================ # docs ## 0.2.0 ### Minor Changes - add edge/api function helpers and non-react a/b test function ================================================ FILE: apps/docs/README.md ================================================ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). ## Getting Started First, run the development server: ```bash npm run dev # or yarn dev ``` Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file. [API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`. The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. ## Learn More To learn more about Next.js, take a look at the following resources: - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! ## Deploy on Vercel The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. ================================================ FILE: apps/docs/next.config.js ================================================ const withNextra = require("nextra")({ theme: "nextra-theme-docs", themeConfig: "./theme.config.jsx", defaultShowCopyCode: true, }); const { withPlausibleProxy } = require("next-plausible"); /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, swcMinify: true, // use this to add to all pages i18n: { locales: ["en"], defaultLocale: "en", }, }; module.exports = withPlausibleProxy()(withNextra(nextConfig)); ================================================ FILE: apps/docs/package.json ================================================ { "name": "docs", "version": "0.2.0", "private": true, "scripts": { "dev": "next dev", "build": "next build", "start": "next start" }, "dependencies": { "@types/node": "^18.0.0", "@types/react": "18.0.26", "@types/react-dom": "^18.0.5", "next": "14.1.1", "next-plausible": "^3.11.3", "nextra": "2.13.2", "nextra-theme-docs": "2.13.2", "react": "18.2.0", "react-dom": "18.2.0", "typescript": "5.5.4" }, "devDependencies": { "tsconfig": "workspace:^0.0.0" } } ================================================ FILE: apps/docs/pages/_app.mdx ================================================ import PlausibleProvider from "next-plausible"; export default function MyApp({ Component, pageProps }) { return ( ); } ================================================ FILE: apps/docs/pages/_meta.json ================================================ { "index": "Getting Started", "integrations": "Integrations", "reference": "Reference", "-- Guides --": { "type": "separator", "title": "Guides" }, "nextjs": "Next.js", "devtools": "Devtools", "-- Concepts --": { "type": "separator", "title": "Concepts" }, "feature-flags": "Feature Flags", "remote-config": "Remote Configuration", "environments": "Environments", "config": "Configuration as Code", "user-segments": "User Segments", "a-b-testing": "A/B Tests", "-- More --": { "type": "separator", "title": "More" }, "abby_link": { "title": "Abby ↗", "href": "https://www.tryabby.com", "newWindow": true } } ================================================ FILE: apps/docs/pages/a-b-testing.mdx ================================================ # A/B Tests Abby allows you to define different tests for your application. A test is uniquely identified by a name. After creating a test you can define weights for each variant of the test. By default all variants have the same chance. When implementing a test in you application you can show different things depending on the selected variant. The variants will be assigned to users randomly, but the same user will always get the same variant. The assignment of variants uses the defined weights. ================================================ FILE: apps/docs/pages/config.mdx ================================================ import { Callout } from "nextra-theme-docs"; # Configuration as Code ## Introduction Abby aims to have the best Developer Experience possible. This is why Abby is fully configurable via Code. No need to click some buttons in a GUI. You `abby.config.ts` (or `abby.config.js`) file is the **single source of truth** for your Abby project. Your configuration should be written in a file called `abby.config.ts` (or `abby.config.js`) which should be located in the root of your project. Every integration offers a `defineConfig` helper function which offers a typesafe way to define your configuration. ```ts import { defineConfig } from "@tryabby/core"; // or import { defineConfig } from "@tryabby/"; ``` The config needs to be the default export of the file so that the CLI can find it. ```ts import { defineConfig } from "@tryabby/core"; // or import { defineConfig } from "@tryabby/"; export default defineConfig( { // your projectId and other sensitive data here }, { // your flags, tests, etc. here } ); ``` The first parameter includes all data that might be configured via environment variables. You should not use environment variables in the second parameter, because the type inference might suffer and the CLI could potentially resolve those environment variables! ## Philosophy This configuration has two purposes: #### 1. Integrations Abby has many integrations to other tools and frameworks. Those can import the config and use it to configure themselves. For example the `@tryabby/nextjs` integration uses the config to configure the Next.js framework. Reading the config makes the integrations fully typesafe #### 2. CLI The [Abby CLI](/reference/cli) uses the config to know what to do. It reads from the config and can then be used to create tests or feature flags on the Abby platform without any further configuration. ## Example ```ts // abby.config.ts import { defineConfig } from "@tryabby/core"; // or import { defineConfig } from "@tryabby/"; export default defineConfig( { projectId: "my-project-id", currentEnvironment: "development", }, { environments: ["development", "production"], tests: { SignupButton: { variants: ["A", "B"], }, }, flags: ["showFooter"], remoteConfig: { customButtonText: "String", maxUserCount: "Number", AdvancedTestStats: "JSON", }, settings: { flags: { defaultValue: false, devOverrides: { showFooter: true, }, }, remoteConfig: { defaultValues: { JSON: {}, Number: 0, String: "", }, devOverrides: { maxUserCount: 40, AdvancedTestStats: {}, customButtonText: "My cool button", }, }, }, } ); ``` ## Config Reference The `defineConfig` function takes two objects as a parameter, that will be merged together when read. The merged object can contain the following properties: | Name | Type | Required | Description | details | | ------------------ | --------- | :------: | ----------------------------------------------------------------------- | --------------------- | | projectId | `string` | ✅ | The ID of your project in Abby | - | | apiUrl | `string` | | The URL of the Abby API. Defaults to the hosted version | - | | currentEnvironment | `string` | ✅ | The current environment of your application | [link](/environments) | | tests | `object` | | An object containing your defined A/B Tests | - | | flags | `array` | | An array containing your defined Feature Flag names | - | | remoteConfig | `object` | | An object containing your Remote Configuration variables | - | | settings | `object` | | An object with additional settings for Abby | - | | debug | `boolean` | | A boolean to show additional debug information | - | | fetch | `fetch` | | You can pass in a custom fetch function. Defaults to `globalThis.fetch` | - | #### tests The tests property is an object containing your defined A/B Tests. You probably want to use the Copy Button in your dashboard to copy the tests object. They keys of the object represent the names of your predefined A/B tests. The values are objects containing the following properties: | Name | Type | Required | Description | | -------- | --------------- | :------: | ------------------------------------------------------- | | variants | `Array` | ✅ | An array of strings containing the variants of the test | ##### Example ```ts const abby = createAbby({ // ... your config tests: { "test-abtest": { variants: ["control", "variant-a", "variant-b"], }, }, }); ``` #### flags The flags property is an array containing your defined Feature Flags. You probably want to use the Copy Button in your dashboard to copy the flags array. ##### Example ```ts const abby = createAbby({ // ... your config flags: ["test-flag"], }); ``` #### remoteConfig The remoteConfig property is an object containing your Remote Configuration variables and their respective types. ##### Example ```ts const abby = createAbby({ // ... your config remoteConfig: { myStringVariable: "String", myNumberVariable: "Number", myJSONVariable: "JSON", }, }); ``` #### settings The settings property is an object containing additional settings for Abby. The following properties are available: - `flags.defaultValue`: Allows you to set a fallback boolean value for your Feature Flags, in case you forgot to add them in your dashboard or when they could not be fetched correctly. ```json flags: { defaultValue: true, }, ``` - `flags.devOverrides`: An object containing the values of feature flags in development mode. The keys of the object represent the names of the flags. ```json flags: { devOverrides: { showHeader: true, showFooter: false, }, }, ``` - `remoteConfig.defaultValues`: An object containing default values for each Remote Configuration type. ```json remoteConfig: { defaultValues: { String: "Default string value", Number: 100, JSON: { default: true }, }, }, ``` - `remoteConfig.devOverrides`: An object containing the values of Remote Configuration variables in development mode. The keys of the object represent the names of the flags. The values need to be of the type of the variable. The value must be of the same type as the variable. ```json remoteConfig: { devOverrides: { myStringVariable: "dev mode string value", myNumberVariable: 100, JSON: { devMode: true }, }, }, ``` #### debug A boolean that you can toggle on to get debug information logged to the console. Mostly useful in development to see where something potentially goes wrong. #### fetch You can pass a custom fetch function in here. This defaults to the global fetch function. This is mostly needed for older versions of Node.js which don't have a global fetch function. ================================================ FILE: apps/docs/pages/devtools.mdx ================================================ import { Tab, Tabs, Callout } from "nextra-theme-docs"; # Devtools Abby comes with a Devtools that allows you to see the different variants of your A/B Tests and Feature Flags. To use them simply add the `` component to your app. ## Installation Install the `@tryabby/devtools` package using your favorite package manager: ```bash npm i @tryabby/devtools ``` ```bash yarn add @tryabby/devtools ``` ```bash pnpm i @tryabby/devtools ``` ## Configuration In order to use the Devtools you will need to wrap them for your specific integration. The Devtools will be omited in the production build! ````tsx // lib/abby.ts import { createAbby } from "@tryabby/next"; import abbyDevtools from "@tryabby/devtools"; export const { AbbyProvider, withAbby, withDevtools } = createAbby({ // ...your Config }); // Wrap the Devtools for Next.js export const AbbyDevtools = withDevtools(abbyDevtools, { defaultShow: true }); ````` ````tsx // lib/abby.ts import { createAbby } from "@tryabby/react"; import abbyDevtools from "@tryabby/devtools"; export const { AbbyProvider, withDevtools } = createAbby({ // ...your Config }); // Wrap the Devtools for React export const AbbyDevtools = withDevtools(abbyDevtools, { defaultShow: true }); ````` You then need to simply place the Devtools inside of your `AbbyProvider` ```tsx import { AbbyProvider, AbbyDevTools } from "lib/abby"; // ... your application export function App() { return ( ); } ``` ### Usage The devtools will appear on every page if you set `defaultShow: true`. Otherwise you can toggle them with CMD/CTRL + . (or the shortcut you set in the config) You will only be able to update feature flags that are consumed via hooks in the current page! If you need to update a feature flag that is consumed via `getFeatureFlagValue` set in the `createAbby` config. ================================================ FILE: apps/docs/pages/environments.mdx ================================================ # Environments Environments in Abby allow you to reflect the different environments that your application may be deployed to. For example, you may have a `development` environment, a `staging` environment, and a `production` environment. When using [Feature Flags](/feature-flags) it is often useful to have different values for the same flag in different environments. [Remote Configuration variables](/remote-config) can also be controlled per environment. When you create a new Environment all Flags will get a default value of `false` for that environment. ================================================ FILE: apps/docs/pages/feature-flags.mdx ================================================ # Feature Flags A feature flag in Abby is basically just a boolean that can be toggled via the Dashboard in Abby. This is useful for testing new features, or for hiding features that are not yet ready for production. A feature flag is always toggled for a certain [Environment](/environments) which allows you to test features in different environments. For example, you can have a feature flag that is enabled in the `development` environment, but disabled in the `production` environment. ## Basic Usage When a feature flag is toggled for an environment, every user will see the same value for that feature flag. If you want to test a feature for a specific user, you can use [A/B Tests](/a-b-testing). ## User Segments & Conditional Rules Feature flags can be made more powerful with user segments and conditional rules. This allows you to dynamically control flag values based on user properties. ### User Properties First, define the properties you want to use for targeting in your user segment schema. Common properties include: - User role/type (string) - Subscription status (boolean) - Usage metrics (number) - Location (string) - Custom attributes specific to your app ### Conditional Rules Once you have user properties defined, you can create conditional rules for your feature flags: - **Single Rules**: Simple conditions like "role equals admin" or "subscriptionActive equals true" - **Rule Groups**: Complex logic combining multiple conditions with AND/OR operators - **Operators**: Support for various comparisons: - Strings: equals, not equals, contains, not contains, starts with, ends with, regex - Numbers: equals, not equals, greater than, less than, greater/less than or equal - Booleans: equals ### Example Usage Here's how it works: 1. Define your user properties in the Abby dashboard 2. Create rules for your feature flags using these properties 3. Update user properties in your application code: ```typescript // Update user properties abby.updateUserProperties({ role: "admin", subscriptionActive: true, usageCount: 100, }); ``` When evaluating feature flags, Abby will: 1. Check the environment value first 2. Evaluate any conditional rules based on user properties 3. Return the appropriate flag value This allows for powerful targeting scenarios like: - Enable features only for admin users - Show premium features to paid subscribers - Roll out features gradually based on usage metrics - Target specific user segments with custom rules ================================================ FILE: apps/docs/pages/index.mdx ================================================ # Introduction Abby is an open-source, fully-typed Feature Flagging & Remote Config service made for developers. It aims to be the simpliest way to do Feature Flags and Remote Configuration variables on your website. We tried to make Abby as simple as possible and create the **best** user experience. Therefore we decided to focus on `React` and `Next.js` for now. ## Getting Started Before you're able to use Abby, you need to create a free account first. After you created your account you're able to use Abby. Make sure to read the [React Docs](/integrations/react) to get started. ## Philosophy Here are some of the things that we believe in: - **Simplicity** - We believe that A/B testing should be as simple as possible. That's why we created Abby. - **Security** - All data is hosted in Europe and the code is open source. - **Transparency** - We don't store any user related data, everything is saved anonymously. ================================================ FILE: apps/docs/pages/integrations/_meta.json ================================================ { "nextjs": "Next.js", "react": "React", "remix": "Remix", "svelte": "Svelte", "angular": "Angular", "node": "Node", "express": "Express", "koa": "Koa" } ================================================ FILE: apps/docs/pages/integrations/angular.mdx ================================================ import { Tab, Tabs, Callout } from "nextra-theme-docs"; # Angular Our Angular integration works with Angular 15 or later. ## Installation To get started make sure to install the packages using your favorite package manager. ```bash npm i @tryabby/core npm i @tryabby/angular ``` ```bash yarn add @tryabby/core yarn add @tryabby/angular ``` ```bash pnpm i @tryabby/core pnpm i @tryabby/angular ``` ## Usage Make sure, that you have set skipLibCheck to true in your tsconfig ### Create your config To use Abby you need to create your config first. You can do this by creating a file called `abby.config.ts` in your `root` folder. This file will be used to configure your project. ```ts // abby.config.ts import { defineConfig } from "@tryabby/angular"; export default defineConfig({ projectId: "", currentEnvironment: environment.production ? "production" : "development", environments: ["production", "development"], tests: { test: { variants: ["A", "B"] }, footer: { variants: ["dark", "orange", "green"] }, // ... your tests }, flags: ["darkMode", "newFeature"], remoteConfig: { customButtonText: "String", }, }); ``` ### Create your Module To use Abby in your code you will need to import the AbbyModule in your app module first. You will need to call AbbyModule.forRoot() method with the configuration object. Please copy the id of your project from the dashboard to get started. ```ts import { AbbyModule } from "@tryabby/angular"; import abbyConfig from "../abby.config"; @NgModule({ declarations: [AppComponent], imports: [BrowserModule, AbbyModule.forRoot(abbyConfig)], providers: [], bootstrap: [AppComponent], }) export class AppModule {} ``` ### Using Abby in your Component You can now use Abby in your components. You will have access to the `AbbyService` which can be used to get one of your variants, a feature flag, a remote config variable or act on any test. ```tsx import { AbbyService } from '@tryabby/angular'; @Component({...}) export class MyComponent { footerVariant$ = this.abbyService.getVariant('footer'); constructor(private abbyService: AbbyService) { } onAct() { this.abbyService.onAct('footer'); } } ``` ### Using Abby Directives You can also use Abby's directives to conditionally render elements based on the variant or feature flag. ```html

Here is the new feature

Here is Variant A

``` Feature Flags can be inverted by putting a `!` in front of the flagname. ```html ``` For using variants inside an `ngStyle`-Directive, we advice you to move the logic into the component rather than the template: ```ts import { AbbyService } from '@tryabby/angular'; @Component({...}) export class MyComponent { footerVariant$ = this.abbyService.getVariant('footer'); footerColor$ = this.footerVariant$.pipe( map((footerVariant) => { switch(footerVariant) { case 'dark': return 'black'; case 'orange': return 'orange'; case 'green': return 'green'; default: return 'transparent' } }) ); constructor(private abbyService: AbbyService) { } } ``` You can then consume the footer color in your template using the `async`-Pipe: ```html ``` ### Using Abby Pipes #### getAbbyVariant You can use the `getAbbyVariant` Pipe in your template to get the active variant of an AB Test. ```html

{ "MyTestName" | getAbbyVariant | async }

``` Optionally, you can pass in a lookup object, to map your variants to a custom type: ```html

{ "MyTestName" | getAbbyVariant: { A: 123, B: 456, C: 789 } | async }

``` #### getRemoteConfig You can use the `getRemoteConfig` Pipe in your template to get the value for a Remote Configuration variable. ```html ``` ================================================ FILE: apps/docs/pages/integrations/express.mdx ================================================ import { Tab, Tabs, Callout } from "nextra-theme-docs"; # Express Our Express package allows you to use Abby within all server-side applications. If you're using Node < 18 you will need to also install any fetch polyfill. ## Installation To get started make sure to install the packages using your favorite package manager. ```bash npm i @tryabby/express ``` ```bash yarn add @tryabby/express ``` ```bash pnpm i @tryabby/express ``` ## Usage ### Create your config To use Abby you need to create your config first. You can do this by creating a file called `abby.config.ts` in your root folder. This file will be used to configure your project. ```ts // abby.config.ts import { defineConfig } from "@tryabby/node"; export default defineConfig({ projectId: "", currentEnvironment: environment.production ? "production" : "development", environments: ["production", "development"], tests: { test: { variants: ["A", "B"] }, footer: { variants: ["dark", "orange", "green"] }, // ... your tests }, flags: ["darkMode", "newFeature"], remoteConfig: { customButtonText: "String", maxSessionCount: "Number", }, }); ``` ### Create your Abby instance To use Abby in your code you need to call the `createAbby` function ```ts import { createAbby } from "@tryabby/express"; import abbyConfig from "../abby.config"; const { abby, middleware } = createAbby(abbyConfig); ``` ### Using Abby in your code You can now use Abby in your code. Before you can use Abby inside of your route handlers you will need to add the middleware to your Express app. #### Middleware ```ts import express from "express"; import { createAbby } from "@tryabby/express"; import abbyConfig from "../abby.config"; const { abby, middleware } = createAbby(abbyConfig); const app = express(); app.use(middleware); app.get("/", (req, res) => { const testVariant = abby.getTestVariant("test"); if (testVariant === "A") { // show variant A } else { // show variant B } }); app.listen(3000, () => { console.log("Server listening on port 3000"); }); ``` #### Feature Flags You can call the `getFeatureFlag` function to get the value of a feature flag. Since you loaded all the information from our API this is a synchronous function. ```ts if (abby.getFeatureFlag("newFeature")) { // use new algorithm } else { // use old algorithm } ``` #### Remote Configs You can call the `getRemoteConfig` function to get the value of a remote config. ```ts const maxSessionCount = abby.getRemoteConfig("maxSessionCount"); if (sessionCount < maxSessionCount) { // show session } else { // show error } ``` #### A/B Tests You can call the `getTestVariant` function to get the variant of a test. ```ts const testVariant = abby.getTestVariant("test"); if (testVariant === "A") { // show variant A } else { // show variant B } ``` ================================================ FILE: apps/docs/pages/integrations/koa.mdx ================================================ import { Tab, Tabs, Callout } from "nextra-theme-docs"; # Koa Our Koa package allows you to use Abby within all server-side applications. If you're using Node < 18 you will need to also install any fetch polyfill. ## Installation To get started make sure to install the packages using your favorite package manager. ```bash npm i @tryabby/koa ``` ```bash yarn add @tryabby/koa ``` ```bash pnpm i @tryabby/koa ``` ## Usage ### Create your config To use Abby you need to create your config first. You can do this by creating a file called `abby.config.ts` in your root folder. This file will be used to configure your project. ```ts // abby.config.ts import { defineConfig } from "@tryabby/node"; export default defineConfig({ projectId: "", currentEnvironment: environment.production ? "production" : "development", environments: ["production", "development"], tests: { test: { variants: ["A", "B"] }, footer: { variants: ["dark", "orange", "green"] }, // ... your tests }, flags: ["darkMode", "newFeature"], remoteConfig: { customButtonText: "String", maxSessionCount: "Number", }, }); ``` ### Create your Abby instance To use Abby in your code you need to call the `createAbby` function ```ts import { createAbby } from "@tryabby/koa"; import abbyConfig from "../abby.config"; const { abby, middleware } = createAbby(abbyConfig); ``` ### Using Abby in your code You can now use Abby in your code. Before you can use Abby inside of your route handlers you will need to add the middleware to your Koa app. #### Middleware ```ts import Koa from "Koa"; import { createAbby } from "@tryabby/koa"; import abbyConfig from "../abby.config"; const { abby, middleware } = createAbby(abbyConfig); const app = new Koa(); app.use(middleware); // ... your routes app.listen(3000, () => { console.log("Server listening on port 3000"); }); ``` #### Feature Flags You can call the `getFeatureFlag` function to get the value of a feature flag. Since you loaded all the information from our API this is a synchronous function. ```ts if (abby.getFeatureFlag("newFeature")) { // use new algorithm } else { // use old algorithm } ``` #### Remote Configs You can call the `getRemoteConfig` function to get the value of a remote config. ```ts const maxSessionCount = abby.getRemoteConfig("maxSessionCount"); if (sessionCount < maxSessionCount) { // show session } else { // show error } ``` #### A/B Tests You can call the `getTestVariant` function to get the variant of a test. ```ts const testVariant = abby.getTestVariant("test"); if (testVariant === "A") { // show variant A } else { // show variant B } ``` ================================================ FILE: apps/docs/pages/integrations/nextjs.mdx ================================================ import { Tab, Tabs, Callout } from "nextra-theme-docs"; # Next.js Our Next.js integration works with Next.js 12 or later. It uses the React SDK under the hood and just has some additional features for Next.js. ## Installation To get started make sure to install the package using your favorite package manager. ```bash npm i @tryabby/next ``` ```bash yarn add @tryabby/next ``` ```bash pnpm i @tryabby/next ``` ### Create your config To use Abby you need to create your config first. You can do this by creating a file called `abby.config.ts` in your `root` folder. This file will be used to configure your project. ```ts // abby.config.ts import { defineConfig } from "@tryabby/next"; export default defineConfig({ projectId: "", currentEnvironment: process.env.NODE_ENV, environments: ["production", "development"], tests: { test: { variants: ["A", "B"] }, footer: { variants: ["dark", "orange", "green"] }, // ... your tests }, flags: ["darkMode", "newFeature"], remoteConfig: { customButtonText: "String", }, }); ``` ### Create your Instance To use Abby in your code you will need to create a typed Hook and Provider first. You can do this by using the `createAbby` function. Please copy the id of your project from the dashboard to get started. ```tsx import { createAbby } from "@tryabby/next"; import abbyConfig from "../abby.config"; const { AbbyProvider, useAbby, withAbby } = createAbby(abbyConfig); ``` ### Wrap your Application You will need to wrap your application with the `AbbyProvider` to make sure the hook works. This is done in the `_app.tsx` / `_app.js` file in your Next.js project. ```tsx import { AbbyProvider } from "../lib/abby"; function MyApp({ Component, pageProps }) { return ( ); } export default MyApp; ``` If you want to improve the experience read the following section. By default the `AbbyProvider` will fetch the data from the server on the first render (client side). This can be improved by using the `initialData` prop. This will make sure the data is already available on the first render This works really well with Static Site Generation (SSG) and Server Side Rendering (SSR). ```tsx /withAbby(MyApp)/ import { AbbyProvider, withAbby } from "../lib/abby"; function MyApp({ Component, pageProps: { __ABBY_PROJECT_DATA__, ...pageProps } }) { return ( ); } export default withAbby(MyApp); ``` ## Usage For the hook usage please read the [React SDK](/integrations/react#usage) documentation. ================================================ FILE: apps/docs/pages/integrations/node.mdx ================================================ import { Tab, Tabs, Callout } from "nextra-theme-docs"; # Node.js Our Node.js package allows you to use Abby within all server-side applications. If you're using Node < 18 you will need to also install any fetch polyfill. ## Installation To get started make sure to install the packages using your favorite package manager. ```bash npm i @tryabby/node ``` ```bash yarn add @tryabby/node ``` ```bash pnpm i @tryabby/node ``` ## Usage ### Create your config To use Abby you need to create your config first. You can do this by creating a file called `abby.config.ts` in your root folder. This file will be used to configure your project. ```ts // abby.config.ts import { defineConfig } from "@tryabby/node"; export default defineConfig({ projectId: "", currentEnvironment: environment.production ? "production" : "development", environments: ["production", "development"], tests: { test: { variants: ["A", "B"] }, footer: { variants: ["dark", "orange", "green"] }, // ... your tests }, flags: ["darkMode", "newFeature"], remoteConfig: { customButtonText: "String", maxSessionCount: "Number", }, }); ``` ### Create your Abby instance To use Abby in your code you need to call the `createAbby` function ```ts import { createAbby } from "@tryabby/node"; import abbyConfig from "../abby.config"; export const abby = createAbby(abbyConfig); ``` ### Using Abby in your code You can now use Abby in your code. Before you're trying to read Feature Flags, Remote Configs or A/B Test you should call the `.loadProjectData()` function. This retrieves all the needed information from our API. If you don't call it fallbacks will be used. #### Feature Flags You can call the `getFeatureFlag` function to get the value of a feature flag. Since you loaded all the information from our API this is a synchronous function. ```ts if (abby.getFeatureFlag("newFeature")) { // use new algorithm } else { // use old algorithm } ``` #### Remote Configs You can call the `getRemoteConfig` function to get the value of a remote config. ```ts const maxSessionCount = abby.getRemoteConfig("maxSessionCount"); if (sessionCount < maxSessionCount) { // show session } else { // show error } ``` #### A/B Tests You can call the `getTestVariant` function to get the variant of a test. ```ts const testVariant = abby.getTestVariant("test"); if (testVariant === "A") { // show variant A } else { // show variant B } ``` ================================================ FILE: apps/docs/pages/integrations/react.mdx ================================================ import { Tab, Tabs, Callout } from "nextra-theme-docs"; # React Our React integration works with React 16.8.0 or later. It works with SPAs as well as server side rendered apps. If you're using Next.js please check out our [Next integration](/integrations/nextjs) ## Installation To get started make sure to install the package using your favorite package manager. ```bash npm i @tryabby/react ``` ```bash yarn add @tryabby/react ``` ```bash pnpm i @tryabby/react ``` ### Create your config To use Abby you need to create your config first. You can do this by creating a file called `abby.config.ts` in your `root` folder. This file will be used to configure your project. ```ts // abby.config.ts import { defineConfig } from "@tryabby/react"; export default defineConfig({ projectId: "", currentEnvironment: process.env.NODE_ENV, environments: ["production", "development"], tests: { test: { variants: ["A", "B"] }, footer: { variants: ["dark", "orange", "green"] }, // ... your tests }, flags: ["darkMode", "newFeature"], remoteConfig: { customButtonText: "String", }, }); ``` ### Create your Instance To use Abby in your code you will need to create a typed Hook and Provider first. You can do this by using the `createAbby` function. Please copy the id of your project from the dashboard to get started. ```jsx import { createAbby } from "@tryabby/react"; import abbyConfig from "../abby.config"; export const { AbbyProvider, useAbby, useFeatureFlag, useRemoteConfig } = createAbby(abbyConfig); ``` ### Wrap your Application You will need to wrap your application with the `AbbyProvider` to make sure the hook works. If you're using Next.js you should do this in the `_app.js` file. You can now import the hooks created by `createAbby` and use it in your components. ## Usage ### useAbby The `useAbby` hook returns an object with the following values: - `variant` - The variant that is currently active - `onAct` - A function that you can call to trigger any kind of interaction with the tested component (will be used to track conversions) ```tsx import { useAbby } from "./abby"; function MyButton() { const { variant, onAct } = useAbby("footer"); return (

Abby Test Page:

); } ``` Optionally, you can pass a lookup object to automatically map the selected variant to a custom value. ```tsx import { useAbby } from "./abby"; function MyButton() { const { variant, onAct } = useAbby("footer", { dark: "bg-gray-900", orange: "bg-orange-500", green: "bg-green-500", }); return (

Abby Test Page:

); } ``` ### useFeatureFlag The `useFeatureFlag` hook returns a boolean value that indicates if the flag is active or not. ```tsx import { useFeatureFlag } from "./abby"; function HomePage() { const hasNewFeature = useFeatureFlag("newFeature"); return (

Welcome back, User

{hasNewFeature &&

Here is the new feature

}

This is our super boring page

); } ``` ### useRemoteConfig The `useRemoteConfig` hook returns a value as specified in your `abby.config.ts`. The type of the returned value will automatically be inferred from your config. ```tsx import { useRemoteConfig } from "./abby"; function HomePage() { const customButtonText = useRemoteConfig("customButtonText"); return (

Welcome back, User

); } ``` ================================================ FILE: apps/docs/pages/integrations/remix.mdx ================================================ import { Tab, Tabs, Callout } from "nextra-theme-docs"; # Remix Our Remix integration works with Remix v2 or later. It uses the React SDK under the hood and just has some additional features for Remix. ## Installation To get started make sure to install the package using your favorite package manager. ```bash npm i @tryabby/remix ``` ```bash yarn add @tryabby/remix ``` ```bash pnpm i @tryabby/remix ``` ### Create your config To use Abby you need to create your config first. You can do this by creating a file called `abby.config.ts` in your `root` folder. This file will be used to configure your project. ```ts // abby.config.ts import { defineConfig } from "@tryabby/remix"; export default defineConfig({ projectId: "", currentEnvironment: process.env.NODE_ENV, environments: ["production", "development"], tests: { test: { variants: ["A", "B"] }, footer: { variants: ["dark", "orange", "green"] }, // ... your tests }, flags: ["darkMode", "newFeature"], remoteConfig: { customButtonText: "String", }, }); ``` ### Create your Instance To use Abby in your code you will need to create a typed Hook and Provider first. You can do this by using the `createAbby` function. Please copy the id of your project from the dashboard to get started. ```tsx import { createAbby } from "@tryabby/remix"; import abbyConfig from "../abby.config"; const { AbbyProvider, useAbby } = createAbby(abbyConfig); ``` ### Wrap your Application You will need to wrap your application with the `AbbyProvider` to make sure the hook works. This is done in the `root.tsx` / `root.js` file in your Next.js project. ```tsx import { AbbyProvider } from "../lib/abby"; export function Layout({ children }: { children: React.ReactNode }) { return ( {children} ); } ``` If you want to improve the experience read the following section. By default the `AbbyProvider` will fetch the data from the server on the first render (client side). This can be improved by using a `loader`. This will make sure the data is already available on the first render This allows you to use Server Side Reendering (SSR) with Abby. Doing this will prevent Flash of Original Content (FOOC) and improve the user experience. ```tsx /await getAbbyData(ctx)/ import { AbbyProvider, getAbbyData } from "../lib/abby"; export const loader = async (ctx) => { return json({ ...(await getAbbyData(ctx)), }); }; export function Layout({ children }: { children: React.ReactNode }) { return ( {children} ); } export default withAbby(MyApp); ``` ## Usage For the hook usage please read the [React SDK](/integrations/react#usage) documentation. ================================================ FILE: apps/docs/pages/integrations/svelte.mdx ================================================ import { Tab, Tabs, Callout } from "nextra-theme-docs"; # Svelte Our Svelte integration works with Svelte version??? It works with SPAs as well as server side rendered apps. ## Installation To get started make sure to install the package using your favorite package manager. ```bash npm i @tryabby/svelte ``` ```bash yarn add @tryabby/svelte ``` ```bash pnpm i @tryabby/svelte ``` ## Usage ### Create your config To use Abby you need to create your config first. You can do this by creating a file called `abby.config.ts` in your `root` folder. This file will be used to configure your project. ```ts // abby.config.ts import { defineConfig } from "@tryabby/svelte"; export default defineConfig({ projectId: "", currentEnvironment: process.env.NODE_ENV, environments: ["production", "development"], tests: { test: { variants: ["A", "B"] }, footer: { variants: ["dark", "orange", "green"] }, // ... your tests }, flags: ["darkMode", "newFeature"], remoteConfig: { customButtonText: "String", }, }); ``` ### Create your Instance To use Abby in your code you will need to create a typed Hook and Provider first. You can do this by using the `createAbby` function. Please copy the id of your project from the dashboard to get started. ```jsx import { createAbby } from "@tryabby/svelte"; import abbyConfig from "../abby.config"; const { AbbyProvider, useAbby } = createAbby(abbyConfig); ``` ### Wrap your Application You will need to wrap your application in a layout containing the `AbbyProvider` to make sure the hook works. ```svelte //+layout.svelte ``` If you want to use SSR you also need to provide a +layout.server.ts ```tsx import { abby } from "$lib/abby"; export const load = abby.withAbby(); ``` You can now import the functions created by `createAbby` and use it in your components. ## useAbby The `useAbby` function returns an object with the following values: - `variant` - A store providing the variant which is currently active - `onAct` - A function that you can call to trigger any kind of interaction with the tested component (will be used to track conversions) ```svelte

Abby Test Page:

{#if $variant === "A"} {:else} {/if} ``` Optionally, you can provide a lookup object to map the active to a custom value. ```svelte

Abby Test Page:

{ variant } World!

``` ## useFeatureFlag The `useFeatureFlag` function returns a store providing a boolean value that indicates if the flag is active or not. ```svelte {#if $newFeature} my super secret feature {/if} ``` ## useRemoteConfig The `useRemoteConfig` function returns a store providing a custom value as specified in your `abby.config.ts`. The return type will automatically be inferred from your config. ```svelte ``` ================================================ FILE: apps/docs/pages/nextjs.mdx ================================================ import { Tab, Tabs } from "nextra-theme-docs"; # Using Abby with Next.js Abby was built to be the best solution for Feature Flags, A/B Testing and Remote Configuration variables in Next.js. It deeply integrates with Next.js and provides a seamless developer experience. ## Installation Install the `@tryabby/next` package using your favorite package manager: ```bash npm i @tryabby/next ``` ```bash yarn add @tryabby/next ``` ```bash pnpm i @tryabby/next ``` ## Configuration In order to use Abby you need to create a **free** account at [tryabby.com](https://www.tryabby.com) first. You can then use the button in the top right corner of the dashboard to easily copy your Abby config. Create a file called `abby.config.ts` in the root folder of your project. That's it! You're ready to go! For this example my `abby.config.ts` file looks like this: ```ts // abby.config.ts import { defineConfig } from "@tryabby/next"; export default defineConfig({ projectId: "YOUR_PROJECT", // For testing purposes we only want to use the production environment currentEnvironment: "production", environments: ["production"], tests: { theme: { variants: ["light", "dark"], }, }, flags: ["useDarkMode"], remoteConfig: { customButtonText: "String", }, }); ``` After that you need to create a file called `lib/abby.ts` in your project. This file will contain all the code (e.g. the Abby hooks) that is needed to integrate Abby into your app. ````ts // lib/abby.ts import { createAbby } from "@tryabby/next"; import config from "../abby.config"; export const { withAbby, AbbyProvider, useFeatureFlag, useAbby, withAbbyApiHandler, withAbbyEdge, useRemoteConfig } = createAbby(config); ``` Now you will need to wrap your app with the `AbbyProvider` component. This is done in the `_app.tsx` file. If you also wrap your app with `withAbby`, you will have access to the Feature Flags for Server Side Rendering or Static Generation as well. This is highly recommended so that there is no flicker on the inital load of your app. It also allows for proper crawling of your app by search engines. ```tsx // _app.tsx import { AbbyProvider } from "lib/abby"; function MyApp({ Component, pageProps: { __ABBY_PROJECT_DATA__, ...pageProps } }) { return ( ); } export default withAbby(MyApp); ```` If you only want client side rendering, you can skip the `withAbby` part and just wrap your app with the `AbbyProvider` (and omit `initialData`). ## Usage ### Hooks #### Feature Flags ```tsx // index.tsx import { useFeatureFlag } from "lib/abby"; export function HomePage() { const useDarkmode = useFeatureFlag("useDarkmode"); return ( <>

My Homepage

{useDarkmode &&

Darkmode is enabled

} ); } ``` You can now go to the Abby dashboard and enable the `useDarkmode` flag for your project. You will see the text "Darkmode is enabled" on your homepage. #### Remote Configuration ```tsx // index.tsx import { useRemoteConfig } from "lib/abby"; export function HomePage() { const customButtonText = useRemoteConfig("customButtonText"); return ( <>

My Homepage

); } ``` You can now control the text, which the button is displaying, on the Abby dashboard. #### A/B Tests ```tsx // index.tsx export function HomePage() { const { variant, onAct } = useAbby("theme"); return ( <>

My Homepage

); } ``` This is a simple example of an A/B Test. Once you loaded the page you will get either the "light" or the "dark" variant of the button. ### Non-React Context You might want to use Abby outside of React. For example in your app's middleware or in a Next.js API route. #### Edge Functions [Edge Functions](https://vercel.com/docs/concepts/functions/edge-functions) are Vercel's globally distributed serverless functions. They are a great way to run code on the edge of the Vercel network and use a leaner runtime with less functionality. Abby works perfectly with Edge Functions. The best usecase with Edge Functions and Abby is to use them in your middleware, for example to redirect users to a beta version of your app. ```ts // middleware.ts import { withAbbyEdge } from "lib/abby"; import { NextResponse } from "next/server"; export default withAbbyEdge((req) => { const myFlag = getFeatureFlagValue("test-flag"); // make sure to use the req object here const [currentVariant, setCookie] = getABTestValue("test-abtest", req); if (myFlag && currentVariant === "beta-user") { const res = NextResponse.redirect("/beta"); // update the user's cookie setCookie(res); return res; } return NextResponse.next(); }); ``` #### API Routes You can access feature flags and A/B tests in your API routes as well. ```ts // /api/test.ts import { withAbbyApiHandler } from "lib/abby"; export default withAbbyApiHandler((req, res) => { const myFlag = getFeatureFlagValue("test-flag"); // make sure to use the req object here const [currentVariant, setCookie] = getABTestValue("test-abtest", req); if (myFlag && currentVariant === "beta-user") { // update the user's cookie setCookie(res); return res.status(200).end(); } res.status(404).end(); }); ``` ================================================ FILE: apps/docs/pages/reference/_meta.json ================================================ { "nextjs": "Next.js", "react": "React", "remix": "Remix", "svelte": "Svelte", "angular": "Angular", "http": "HTTP API", "cli": "CLI", "operators": "Operators" } ================================================ FILE: apps/docs/pages/reference/angular.mdx ================================================ # @tryabby/angular ## AbbyModule The AbbyModule is an Angular module that provides a service and some directives to work with Abby. You can then use the AbbyService in your components or services to interact with the Abby platform. The AbbyFlag, AbbyTest and DevtoolsComponent directives can be used in your templates to show/hide content based on feature flags or AB tests. ### Parameters The `AbbyModule.forRoot()` method takes an object as a parameter. The object can contain the following properties: | Name | Type | Required | Description | details | | ------------------ | -------- | :------: | ------------------------------------------------------------------ | --------------------- | | projectId | `string` | ✅ | The ID of your project in Abby | - | | apiUrl | `string` | | The URL of the Abby API. Defaults to the hosted version | - | | currentEnvironment | `string` | ✅ | The current environment of your application | [link](/environments) | | tests | `object` | | An object containing your defined A/B Tests | - | | flags | `array` | | An array containing your defined Feature Flags | - | | remoteConfig | `object` | | An object containing the name of your remote config and their type | - | | settings | `object` | | An object with additional settings for Abby | - | #### properties ##### tests The tests property is an object containing your defined A/B Tests. You probably want to use the Copy Button in your dashboard to copy the tests object. They keys of the object represent the names of your predefined A/B tests. The values are objects containing the following properties: | Name | Type | Required | Description | | -------- | --------------- | :------: | ------------------------------------------------------- | | variants | `Array` | ✅ | An array of strings containing the variants of the test | ##### flags The flags property is an array containing your defined Feature Flags. You probably want to use the Copy Button in your dashboard to copy the flags array. ##### Example ###### abby.config.ts ```ts export const abby = { // ..your config tests: { test: { variants: ["control", "variant-a", "variant-b"], }, }, flags: ["test-flag"], remoteConfig: { remoteConfig1: "String", remoteConfig2: "Number", remoteConfig3: "JSON", }, }; @Injectable({ providedIn: "root", useExisting: AbbyService, }) export class Abby extends AbbyService< InferFlagNames, InferTestNames, InferTests, InferRemoteConfig, InferRemoteConfigName > {} ``` ###### app.module.ts ```ts import { AbbyModule } from "abby"; import { Abby, abby } from "./abby"; @NgModule({ // your config imports: [ // your imports AbbyModule.forRoot(abby), ], providers: [ { provide: APP_INITIALIZER, useFactory: (abby: Abby) => () => abby.init(), deps: [Abby], multi: true, }, ], }) export class AppModule {} ``` #### settings The settings property is an object containing additional settings for Abby. The following properties are available: - `flags.defaultValue`: Allows you to set a general default boolean value for each Feature Flag type. ```json flags: { defaultValue: false, }, ``` - `flags.devOverrides`: An object containing the values of feature flags in development mode. The keys of the object represent the names of the flags. - `remoteConfig.defaultValue`: Allows you to set default values for the possible Remote Config types. ```json remoteConfig: { defaultValues: { String: "", Number: 0, JSON: {}, }, }, ``` - `remoteConfig.devOverrides`: An object containing the values of Remote Configuration variables in development mode. The keys of the object represent the names of the flags. The value must be assignable to the type of the variable. ## AbbyService - `AbbyService` is a angular service, which provides methods for getting ### getVariant(testName: string, lookupObject?) Resolves the selected variant for a given test name. Automatically maps the active variant to a custom value if `lookupObject` is provided. #### Parameters - `testName`: The name of the test, needs to be one of the defined tests. - `lookupObject`: An optional lookup object to automatically map the active variant to a custom value. #### Return Value The variant of the test _Type: `string`_ Or the custom value from the `lookupObject` when provided ### getFeatureFlagValue(flagName: string) Resolves the value of a feature flag by the flagname. #### Parameters The name of the flag, needs to be one of the defined flags. #### Return Value The value of the flag _Type: `boolean`_ ### getRemoteConfig `getRemoteConfig` is a function to access the value of a Remote Configuration variable. This can be called in a non-react scope (Regular Typescript, Edge Functions and API Routes) #### Parameters The name of the Remote Configuration variable, which needs to be one of the keys in your `remoteConfig` object in your `abby.config.ts`. #### Return Value The current value of the Remote Configuration variable. The type will be according to the specified type in the `abby.config.ts` ### onAct A function to call when the user performs an action associated with the test _Type: `function`_ ## Directives ### Test Directive The `AbbyTest` is an Angular directive provided by @tryabby/angular package that enables conditional rendering of components based on the selected variant of an A/B test. It works in conjunction with the AbbyService and is used to wrap the HTML code to be conditionally rendered. #### Parameters - `testName`: The name of the test, needs to be one of the defined tests. - `variant`: The name of the variant to compare with the selected variant of the test. #### Example ```html AAAAAA BBBBBB ``` ### Flag Directive The AbbyFlag is an Angular directive provided by @tryabby/core package that enables conditional rendering of components based on the value of a feature flag. It works in conjunction with the AbbyService and is used to wrap the HTML code to be conditionally rendered. #### Parameters The name of the feature flag. The name can be prefixed with ! to invert the flag value. #### Example ```html
``` ## Pipes ### getAbbyVariant Pipe Returns the active variant for an AB-Test. Automatically maps the active variant to a custom value if `lookupObject` is provided. #### Parameters - `testName`: The name of the test, needs to be one of the defined tests. - `lookupObject`: An optional lookup object to automatically map the active variant to a custom value. #### Example ```html

Variants Pipe

``` ### getAbbyRemoteConfig Pipe Returns the current value for a Remote Configuration variable. #### Parameters The name of the Remote Configuration variable, which needs to be one of the keys in your `remoteConfig` object in your ABBY config. #### Example ```html

angularRemoteConfig: {{ "angularRemoteConfig" | getAbbyRemoteConfig | async }}

``` ## Devtool Component The DevtoolsComponent is an Angular component provided by @tryabby/angular package that renders the Abby Devtools in your application. The component is used to wrap the HTML code that renders the Abby Devtools. The DevtoolsComponent won't work with Server Side Rendering using Angular Universal. ### Example ```html ``` ================================================ FILE: apps/docs/pages/reference/cli.mdx ================================================ import { Tab, Tabs, Callout } from "nextra-theme-docs"; # Command Line Interface (CLI) The Abby CLI works with Node 10.x or higher. ## Installation To get started make sure to install the packages using your favorite package manager. ```bash npm i -g @tryabby/cli ``` ```bash yarn add -g @tryabby/cli ``` ```bash pnpm i -g @tryabby/cli ``` ## Usage To get started with the CLI, you need to authenticate yourself. You can do this by running the `login` command. You will need to obtain an API key from the [Abby Dashboard](https://www.tryabby.com/profile) first. After you have obtained your API key, run the following command: ```bash abby login -t [YOUR_TOKEN] ``` When you have successfully authenticated yourself, you can start using the CLI. ## Commands ### `login` Authenticate yourself with the Abby API. #### Options | Flag | Description | Default | Required | | --------------- | ------------- | ----------- | -------- | | `-t`, `--token` | Your API key. | `undefined` | ✅ | ### `init` Create a new config file in the current directory. The config file will be named `abby.config.ts`. #### Options | Flag | Description | Default | Required | | ---------------- | ---------------------------- | ---------------------- | -------- | | `-c`, `--config` | The path to the config file. | Your current directory | ❌ | ### `push` Push the changes from your local config to the Abby API. The updates in the cloud will happen follwing those rules - If a new test is added, it will be created in the cloud - If a new environment is added, it will be created in the cloud - If a new flag is added, it will be created in the cloud **Caveats:** You will need to delete flags, tests and environments in the dashboard if you want to fully delete it. You will then need to delete it manually from your local config. **We are working on a better solution for this.** #### Options | Flag | Description | Default | Required | | ---------------- | ---------------------------------- | ---------------------------------------------- | -------- | | `-h`, `--host` | The API URL for the Abby instance. | `https://www.tryabby.com` | ❌ | | `-c`, `--config` | The path to the config file. | The nearest `abby.config.(ts,js,mjs,cjs)` file | ❌ | ### `add flag` Creates a flag, puts it into your `abby.config.ts` (or specified config file) and pushes the changes to the cloud. If a flag with the name, which you have entered, already exists, this command will fail. #### Options | Flag | Description | Default | Required | | ---------------- | ---------------------------------- | ---------------------------------------------- | -------- | | `-h`, `--host` | The API URL for the Abby instance. | `https://www.tryabby.com` | ❌ | | `-c`, `--config` | The path to the config file. | The nearest `abby.config.(ts,js,mjs,cjs)` file | ❌ | ### `add config` Creates a remote config value, puts it into your `abby.config.ts` (or specified config file) and pushes the changes to the cloud. If a remote config with the name, which you have entered, already exists, this command will fail. #### Options | Flag | Description | Default | Required | | ---------------- | ---------------------------------- | ---------------------------------------------- | -------- | | `-h`, `--host` | The API URL for the Abby instance. | `https://www.tryabby.com` | ❌ | | `-c`, `--config` | The path to the config file. | The nearest `abby.config.(ts,js,mjs,cjs)` file | ❌ | ### `pull` Pull the changes from the Abby API to your local config. It will merge the changes from the cloud with your local config. #### Options | Flag | Description | Default | Required | | ---------------- | ---------------------------------- | ---------------------------------------------- | -------- | | `-h`, `--host` | The API URL for the Abby instance. | `https://www.tryabby.com` | ❌ | | `-c`, `--config` | The path to the config file. | The nearest `abby.config.(ts,js,mjs,cjs)` file | ❌ | ### `check` Check if your local config is in sync with the Abby API. It will return a list of changes that need to be pushed or pulled. #### Options | Flag | Description | Default | Required | | ---------------- | ---------------------------------- | ---------------------------------------------- | -------- | | `-h`, `--host` | The API URL for the Abby instance. | `https://www.tryabby.com` | ❌ | | `-c`, `--config` | The path to the config file. | The nearest `abby.config.(ts,js,mjs,cjs)` file | ❌ | ================================================ FILE: apps/docs/pages/reference/http.mdx ================================================ # API Reference (HTTP API) ## Endpoints - [GET `/api/v1/data/:projectId`](#get-apiv1dataprojectid) - [GET `/api/v1/data/:projectId.js`](#get-apiv1dataprojectidjs) - [POST `/api/v1/track`](#post-apiv1track) ### GET `/api/v1/data/:projectId` Returns the data for the given project. #### Query Parameters - `environment`: The environment to filter by #### Path Parameters - `projectId`: The project ID. #### Response ```json { "tests": [ { "name": "Test 1", "weights": [0.5, 0.5] } ], "flags": [ { "name": "Flag 1", "value": true } ], "remoteConfig": [ { "name": "Remote Config 1", "value": "Foobar" } ] } ``` ### GET `/api/v1/data/:projectId/script.js` Gives the same response as `/api/v1/data/:projectId`, but in JavaScript format. You can use this endpoint to load the data in the browser using a `)", "beginCaptures": { "1": { "name": "punctuation.definition.tag.begin.html" }, "2": { "name": "entity.name.tag.script.html" } }, "end": "()", "endCaptures": { "1": { "name": "punctuation.definition.tag.begin.html" }, "2": { "name": "entity.name.tag.script.html" }, "3": { "name": "punctuation.definition.tag.end.html" } }, "patterns": [ { "include": "#tag-stuff" }, { "begin": "(>)", "beginCaptures": { "1": { "name": "punctuation.definition.tag.end.html" } }, "end": "(?=)" } ] }, { "begin": "(<)(script)\\b(?=[^>]*lang=('ts'|\"ts\"))(?![^/>]*/>\\s*$)", "beginCaptures": { "1": { "name": "punctuation.definition.tag.begin.html" }, "2": { "name": "entity.name.tag.script.html" } }, "end": "()", "endCaptures": { "1": { "name": "punctuation.definition.tag.begin.html" }, "2": { "name": "entity.name.tag.script.html" }, "3": { "name": "punctuation.definition.tag.end.html" } }, "patterns": [ { "include": "#tag-stuff" }, { "contentName": "source.ts", "begin": "(>)", "beginCaptures": { "1": { "name": "punctuation.definition.tag.end.html" } }, "end": "(?=)", "patterns": [ { "include": "source.ts" } ] } ] }, { "begin": "(<)(script)\\b(?=[^>]*lang=('coffee'|\"coffee\"))(?![^/>]*/>\\s*$)", "beginCaptures": { "1": { "name": "punctuation.definition.tag.begin.html" }, "2": { "name": "entity.name.tag.script.html" } }, "end": "()", "endCaptures": { "1": { "name": "punctuation.definition.tag.begin.html" }, "2": { "name": "entity.name.tag.script.html" }, "3": { "name": "punctuation.definition.tag.end.html" } }, "patterns": [ { "include": "#tag-stuff" }, { "contentName": "source.coffee", "begin": "(>)", "beginCaptures": { "1": { "name": "punctuation.definition.tag.end.html" } }, "end": "(?=)", "patterns": [ { "include": "source.coffee" } ] } ] }, { "begin": "(<)(script)(?![^/>]*/>\\s*$)", "beginCaptures": { "1": { "name": "punctuation.definition.tag.begin.html" }, "2": { "name": "entity.name.tag.script.html" } }, "end": "()", "endCaptures": { "1": { "name": "punctuation.definition.tag.begin.html" }, "2": { "name": "entity.name.tag.script.html" }, "3": { "name": "punctuation.definition.tag.end.html" } }, "patterns": [ { "include": "#tag-stuff" }, { "contentName": "source.js", "begin": "(>)", "beginCaptures": { "1": { "name": "punctuation.definition.tag.end.html" } }, "end": "(?=)", "patterns": [ { "include": "source.js" } ] } ] } ], "repository": { "entities": { "patterns": [ { "name": "constant.character.entity.html", "match": "(&)([a-zA-Z0-9]+|#[0-9]+|#x[0-9a-fA-F]+)(;)", "captures": { "1": { "name": "punctuation.definition.entity.html" }, "3": { "name": "punctuation.definition.entity.html" } } }, { "name": "invalid.illegal.bad-ampersand.html", "match": "&" } ] }, "string-double-quoted": { "name": "string.quoted.double.html", "begin": "\"", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.html" } }, "end": "\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.html" } }, "patterns": [ { "include": "#vue-interpolations" }, { "include": "#entities" } ] }, "string-single-quoted": { "name": "string.quoted.single.html", "begin": "'", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.html" } }, "end": "'", "endCaptures": { "0": { "name": "punctuation.definition.string.end.html" } }, "patterns": [ { "include": "#vue-interpolations" }, { "include": "#entities" } ] }, "tag-generic-attribute": { "name": "entity.other.attribute-name.html", "match": "\\b([a-zA-Z\\-:_]+)" }, "tag-id-attribute": { "name": "meta.attribute-with-value.id.html", "begin": "\\b(id)\\b\\s*(=)", "end": "(?<='|\")", "captures": { "1": { "name": "entity.other.attribute-name.id.html" }, "2": { "name": "punctuation.separator.key-value.html" } }, "patterns": [ { "name": "string.quoted.double.html", "contentName": "meta.toc-list.id.html", "begin": "\"", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.html" } }, "end": "\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.html" } }, "patterns": [ { "include": "#vue-interpolations" }, { "include": "#entities" } ] }, { "name": "string.quoted.single.html", "contentName": "meta.toc-list.id.html", "begin": "'", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.html" } }, "end": "'", "endCaptures": { "0": { "name": "punctuation.definition.string.end.html" } }, "patterns": [ { "include": "#vue-interpolations" }, { "include": "#entities" } ] } ] }, "tag-stuff": { "patterns": [ { "include": "#vue-directives" }, { "include": "#tag-id-attribute" }, { "include": "#tag-generic-attribute" }, { "include": "#string-double-quoted" }, { "include": "#string-single-quoted" } ] }, "vue-directives": { "name": "meta.directive.vue", "begin": "(?:\\b(v-)|(:|@|#))([a-zA-Z0-9\\-_]+)(?:\\:([a-zA-Z\\-_]+))?(?:\\.([a-zA-Z\\-_]+))*\\s*(=)", "end": "(?<='|\")|(?=[\\s<>`])", "captures": { "1": { "name": "entity.other.attribute-name.html" }, "2": { "name": "punctuation.separator.key-value.html" }, "3": { "name": "entity.other.attribute-name.html" }, "4": { "name": "entity.other.attribute-name.html" }, "5": { "name": "entity.other.attribute-name.html" }, "6": { "name": "punctuation.separator.key-value.html" } }, "patterns": [ { "name": "source.directive.vue", "begin": "`", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.html" } }, "end": "`", "endCaptures": { "0": { "name": "punctuation.definition.string.end.html" } }, "patterns": [ { "include": "source.js#expression" } ] }, { "name": "source.directive.vue", "begin": "\"", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.html" } }, "end": "\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.html" } }, "patterns": [ { "include": "source.js#expression" } ] }, { "name": "source.directive.vue", "begin": "'", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.html" } }, "end": "'", "endCaptures": { "0": { "name": "punctuation.definition.string.end.html" } }, "patterns": [ { "include": "source.js#expression" } ] } ] }, "vue-interpolations": { "patterns": [ { "name": "expression.embedded.vue", "begin": "\\{\\{\\{?", "beginCaptures": { "0": { "name": "punctuation.definition.generic.begin.html" } }, "end": "\\}\\}\\}?", "endCaptures": { "0": { "name": "punctuation.definition.generic.end.html" } }, "patterns": [ { "include": "source.js#expression" } ] } ] } } } ================================================ FILE: apps/web/src/lib/shiki/languages/wasm.tmLanguage.json ================================================ { "name": "wasm", "scopeName": "source.wat", "patterns": [ { "include": "#comments" }, { "include": "#strings" }, { "include": "#instructions" }, { "include": "#types" }, { "include": "#modules" }, { "include": "#constants" }, { "include": "#invalid" } ], "repository": { "comments": { "patterns": [ { "comment": "Line comment", "name": "comment.line.wat", "match": "(;;).*$", "captures": { "1": { "name": "punctuation.definition.comment.wat" } } }, { "comment": "Block comment", "name": "comment.block.wat", "begin": "\\(;", "beginCaptures": { "0": { "name": "punctuation.definition.comment.wat" } }, "end": ";\\)", "endCaptures": { "0": { "name": "punctuation.definition.comment.wat" } } } ] }, "strings": { "comment": "String literal", "name": "string.quoted.double.wat", "begin": "\"", "end": "\"", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin" } }, "endCaptures": { "0": { "name": "punctuation.definition.string.end" } }, "patterns": [ { "name": "constant.character.escape.wat", "match": "\\\\(n|t|\\\\|'|\"|[0-9a-fA-F]{2})" } ] }, "instructions": { "patterns": [ { "comment": "Non-trapping float-to-int conversions", "patterns": [ { "comment": "Conversion instruction [nontrapping-float-to-int-conversions]", "name": "keyword.operator.word.wat", "match": "\\b(i32|i64)\\.trunc_sat_f(?:32|64)_[su]\\b", "captures": { "1": { "name": "support.class.wat" } } } ] }, { "comment": "Sign-extension operators", "patterns": [ { "comment": "Numeric instruction (i32) [sign-extension-ops]", "name": "keyword.operator.word.wat", "match": "\\b(i32)\\.(?:extend(?:8|16)_s)\\b", "captures": { "1": { "name": "support.class.wat" } } }, { "comment": "Numeric instruction (i64) [sign-extension-ops]", "name": "keyword.operator.word.wat", "match": "\\b(i64)\\.(?:extend(?:8|16|32)_s)\\b", "captures": { "1": { "name": "support.class.wat" } } } ] }, { "comment": "Bulk memory operations", "patterns": [ { "comment": "Memory instruction [bulk-memory-operations]", "name": "keyword.operator.word.wat", "match": "\\b(memory)\\.(?:copy|fill|init|drop)\\b", "captures": { "1": { "name": "support.class.wat" } } } ] }, { "comment": "Fixed-width SIMD", "patterns": [ { "comment": "Vector instruction (v128) [simd]", "name": "keyword.operator.word.wat", "match": "\\b(v128)\\.(?:const|and|or|xor|not|andnot|bitselect|load|store)\\b", "captures": { "1": { "name": "support.class.wat" } } }, { "comment": "Vector instruction (i8x16) [simd]", "name": "keyword.operator.word.wat", "match": "\\b(i8x16)\\.(?:splat|replace_lane|add|sub|mul|neg|shl|shr_[su]|eq|ne|lt_[su]|le_[su]|gt_[su]|ge_[su]|min_[su]|max_[su]|any_true|all_true|extract_lane_[su]|add_saturate_[su]|sub_saturate_[su]|avgr_u|narrow_i16x8_[su])\\b", "captures": { "1": { "name": "support.class.wat" } } }, { "comment": "Vector instruction (i16x8) [simd]", "name": "keyword.operator.word.wat", "match": "\\b(i16x8)\\.(?:splat|replace_lane|add|sub|mul|neg|shl|shr_[su]|eq|ne|lt_[su]|le_[su]|gt_[su]|ge_[su]|min_[su]|max_[su]|any_true|all_true|extract_lane_[su]|add_saturate_[su]|sub_saturate_[su]|avgr_u|load8x8_[su]|narrow_i32x4_[su]|widen_(low|high)_i8x16_[su])\\b", "captures": { "1": { "name": "support.class.wat" } } }, { "comment": "Vector instruction (i32x4) [simd]", "name": "keyword.operator.word.wat", "match": "\\b(i32x4)\\.(?:splat|replace_lane|add|sub|mul|neg|shl|shr_[su]|eq|ne|lt_[su]|le_[su]|gt_[su]|ge_[su]|min_[su]|max_[su]|any_true|all_true|extract_lane|load16x4_[su]|trunc_sat_f32x4_[su]|widen_(low|high)_i16x8_[su])\\b", "captures": { "1": { "name": "support.class.wat" } } }, { "comment": "Vector instruction (i64x2) [simd]", "name": "keyword.operator.word.wat", "match": "\\b(i64x2)\\.(?:splat|replace_lane|add|sub|mul|neg|shl|shr_[su]|extract_lane|load32x2_[su])\\b", "captures": { "1": { "name": "support.class.wat" } } }, { "comment": "Vector instruction (f32x4) [simd]", "name": "keyword.operator.word.wat", "match": "\\b(f32x4)\\.(?:splat|replace_lane|add|sub|mul|neg|extract_lane|eq|ne|lt|le|gt|ge|abs|min|max|div|sqrt|convert_i32x4_[su])\\b", "captures": { "1": { "name": "support.class.wat" } } }, { "comment": "Vector instruction (f64x2) [simd]", "name": "keyword.operator.word.wat", "match": "\\b(f64x2)\\.(?:splat|replace_lane|add|sub|mul|neg|extract_lane|eq|ne|lt|le|gt|ge|abs|min|max|div|sqrt)\\b", "captures": { "1": { "name": "support.class.wat" } } }, { "comment": "Vector instruction (v8x16) [simd]", "name": "keyword.operator.word.wat", "match": "\\b(v8x16)\\.(?:load_splat|shuffle|swizzle)\\b", "captures": { "1": { "name": "support.class.wat" } } }, { "comment": "Vector instruction (v16x8) [simd]", "name": "keyword.operator.word.wat", "match": "\\b(v16x8)\\.load_splat\\b", "captures": { "1": { "name": "support.class.wat" } } }, { "comment": "Vector instruction (v32x4) [simd]", "name": "keyword.operator.word.wat", "match": "\\b(v32x4)\\.load_splat\\b", "captures": { "1": { "name": "support.class.wat" } } }, { "comment": "Vector instruction (v64x2) [simd]", "name": "keyword.operator.word.wat", "match": "\\b(v64x2)\\.load_splat\\b", "captures": { "1": { "name": "support.class.wat" } } } ] }, { "comment": "Threads", "patterns": [ { "comment": "Atomic instruction (i32) [threads]", "name": "keyword.operator.word.wat", "match": "\\b(i32)\\.(atomic)\\.(?:load(?:8_u|16_u)?|store(?:8|16)?|wait|(rmw)\\.(?:add|sub|and|or|xor|xchg|cmpxchg)|(rmw8|rmw16)\\.(?:add_u|sub_u|and_u|or_u|xor_u|xchg_u|cmpxchg_u))\\b", "captures": { "1": { "name": "support.class.wat" }, "2": { "name": "support.class.wat" }, "3": { "name": "support.class.wat" }, "4": { "name": "support.class.wat" } } }, { "comment": "Atomic instruction (i64) [threads]", "name": "keyword.operator.word.wat", "match": "\\b(i64)\\.(atomic)\\.(?:load(?:8_u|16_u|32_u)?|store(?:8|16|32)?|wait|(rmw)\\.(?:add|sub|and|or|xor|xchg|cmpxchg)|(rmw8|rmw16|rmw32)\\.(?:add_u|sub_u|and_u|or_u|xor_u|xchg_u|cmpxchg_u))\\b", "captures": { "1": { "name": "support.class.wat" }, "2": { "name": "support.class.wat" }, "3": { "name": "support.class.wat" }, "4": { "name": "support.class.wat" } } }, { "comment": "Atomic instruction [threads]", "name": "keyword.operator.word.wat", "match": "\\b(atomic)\\.(?:notify|fence)\\b", "captures": { "1": { "name": "support.class.wat" } } }, { "comment": "Shared modifier [threads]", "name": "storage.modifier.wat", "match": "\\bshared\\b" } ] }, { "comment": "Reference types", "patterns": [ { "comment": "Reference instruction [reference-types]", "name": "keyword.operator.word.wat", "match": "\\b(ref)\\.(?:null|is_null|func|extern)\\b", "captures": { "1": { "name": "support.class.wat" } } }, { "comment": "Table instruction [reference-types]", "name": "keyword.operator.word.wat", "match": "\\b(table)\\.(?:get|size|grow|fill|init|copy)\\b", "captures": { "1": { "name": "support.class.wat" } } }, { "comment": "Type name [reference-types]", "name": "entity.name.type.wat", "match": "\\b(?:externref|funcref|nullref)\\b" } ] }, { "comment": "Tail Call", "patterns": [ { "comment": "Control instruction [tail-call]", "name": "keyword.control.wat", "match": "\\breturn_call(?:_indirect)?\\b" } ] }, { "comment": "Exception handling", "patterns": [ { "comment": "Control instruction [exception-handling]", "name": "keyword.control.wat", "match": "\\b(?:try|catch|throw|rethrow|br_on_exn)\\b" }, { "comment": "Module element [exception-handling]", "name": "storage.type.wat", "match": "(?<=\\()event\\b" } ] }, { "comment": "Binaryen extensions", "patterns": [ { "comment": "Pseudo stack instruction [binaryen]", "name": "keyword.operator.word.wat", "match": "\\b(i32|i64|f32|f64|externref|funcref|nullref|exnref)\\.(?:push|pop)\\b", "captures": { "1": { "name": "support.class.wat" } } } ] }, { "comment": "MVP", "patterns": [ { "comment": "Memory instruction (i32) [mvp]", "name": "keyword.operator.word.wat", "match": "\\b(i32)\\.(?:load|load(?:8|16)(?:_[su])?|store(?:8|16)?)\\b", "captures": { "1": { "name": "support.class.type.wat" } } }, { "comment": "Memory instruction (i64) [mvp]", "name": "keyword.operator.word.wat", "match": "\\b(i64)\\.(?:load|load(?:8|16|32)(?:_[su])?|store(?:8|16|32)?)\\b", "captures": { "1": { "name": "support.class.type.wat" } } }, { "comment": "Memory instruction (f32/f64) [mvp]", "name": "keyword.operator.word.wat", "match": "\\b(f32|f64)\\.(?:load|store)\\b", "captures": { "1": { "name": "support.class.type.wat" } } }, { "comment": "Memory instruction [mvp]", "name": "keyword.operator.word.wat", "match": "\\b(memory)\\.(?:size|grow)\\b", "captures": { "1": { "name": "support.class.memory.wat" } } }, { "comment": "Memory instruction attribute [mvp]", "match": "\\b(offset|align)=\\b", "captures": { "1": { "name": "entity.other.attribute-name.wat" } } }, { "comment": "Variable instruction (local) [mvp]", "name": "keyword.operator.word.wat", "match": "\\b(local)\\.(?:get|set|tee)\\b", "captures": { "1": { "name": "support.class.local.wat" } } }, { "comment": "Variable instruction (global) [mvp]", "name": "keyword.operator.word.wat", "match": "\\b(global)\\.(?:get|set)\\b", "captures": { "1": { "name": "support.class.global.wat" } } }, { "comment": "Numeric instruction (i32/i64) [mvp]", "name": "keyword.operator.word.wat", "match": "\\b(i32|i64)\\.(const|eqz|eq|ne|lt_[su]|gt_[su]|le_[su]|ge_[su]|clz|ctz|popcnt|add|sub|mul|div_[su]|rem_[su]|and|or|xor|shl|shr_[su]|rotl|rotr)\\b", "captures": { "1": { "name": "support.class.type.wat" } } }, { "comment": "Numeric instruction (f32/f64) [mvp]", "name": "keyword.operator.word.wat", "match": "\\b(f32|f64)\\.(const|eq|ne|lt|gt|le|ge|abs|neg|ceil|floor|trunc|nearest|sqrt|add|sub|mul|div|min|max|copysign)\\b", "captures": { "1": { "name": "support.class.type.wat" } } }, { "comment": "Conversion instruction (i32) [mvp]", "name": "keyword.operator.word.wat", "match": "\\b(i32)\\.(wrap_i64|trunc_(f32|f64)_[su]|reinterpret_f32)\\b", "captures": { "1": { "name": "support.class.type.wat" } } }, { "comment": "Conversion instruction (i64) [mvp]", "name": "keyword.operator.word.wat", "match": "\\b(i64)\\.(extend_i32_[su]|trunc_f(32|64)_[su]|reinterpret_f64)\\b", "captures": { "1": { "name": "support.class.type.wat" } } }, { "comment": "Conversion instruction (f32) [mvp]", "name": "keyword.operator.word.wat", "match": "\\b(f32)\\.(convert_i(32|64)_[su]|demote_f64|reinterpret_i32)\\b", "captures": { "1": { "name": "support.class.type.wat" } } }, { "comment": "Conversion instruction (f64) [mvp]", "name": "keyword.operator.word.wat", "match": "\\b(f64)\\.(convert_i(32|64)_[su]|promote_f32|reinterpret_i64)\\b", "captures": { "1": { "name": "support.class.type.wat" } } }, { "comment": "Control instruction [mvp]", "name": "keyword.control.wat", "match": "\\b(?:unreachable|nop|block|loop|if|then|else|end|br|br_if|br_table|return|call|call_indirect)\\b" }, { "comment": "Parametric instruction [mvp]", "name": "keyword.operator.word.wat", "match": "\\b(?:drop|select)\\b" } ] } ] }, "types": { "patterns": [ { "comment": "Fixed-width SIMD", "patterns": [ { "comment": "Type name [simd]", "name": "entity.name.type.wat", "match": "\\bv128\\b(?!\\.)" } ] }, { "comment": "Reference types", "patterns": [ { "comment": "Type name [reference-types]", "name": "entity.name.type.wat", "match": "\\b(?:externref|funcref|nullref)\\b(?!\\.)" } ] }, { "comment": "Exception handling", "patterns": [ { "comment": "Type name [exception-handling]", "name": "entity.name.type.wat", "match": "\\bexnref\\b(?!\\.)" } ] }, { "comment": "MVP", "patterns": [ { "comment": "Type name [mvp]", "name": "entity.name.type.wat", "match": "\\b(?:i32|i64|f32|f64)\\b(?!\\.)" } ] } ] }, "modules": { "patterns": [ { "comment": "Bulk memory operations", "patterns": [ { "comment": "Passive modifier [bulk-memory-operations]", "match": "(?<=\\(data)\\s+(passive)\\b", "captures": { "1": { "name": "storage.modifier.wat" } } } ] }, { "comment": "MVP", "patterns": [ { "comment": "Module element [mvp]", "name": "storage.type.wat", "match": "(?<=\\()(?:module|import|export|memory|data|table|elem|start|func|type|param|result|global|local)\\b" }, { "comment": "Mutable global modifier [mvp]", "name": "storage.modifier.wat", "match": "(?<=\\()\\s*(mut)\\b", "captures": { "1": { "name": "storage.modifier.wat" } } }, { "comment": "Function name [mvp]", "match": "(?<=\\(func|\\(start|call|return_call|ref\\.func)\\s+(\\$[0-9A-Za-z!#$%&'*+\\-./:<=>?@\\\\^_`|~]*)", "captures": { "1": { "name": "entity.name.function.wat" } } }, { "comment": "Function name(s) (elem) [mvp]", "begin": "\\)\\s+(\\$[0-9A-Za-z!#$%&'*+\\-./:<=>?@\\\\^_`|~]*)", "beginCaptures": { "1": { "name": "entity.name.function.wat" } }, "end": "\\)", "patterns": [ { "name": "entity.name.function.wat", "match": "(?<=\\s)\\$[0-9A-Za-z!#$%&'*+\\-./:<=>?@\\\\^_`|~]*" } ] }, { "comment": "Function type [mvp]", "match": "(?<=\\(type)\\s+(\\$[0-9A-Za-z!#$%&'*+\\-./:<=>?@\\\\^_`|~]*)", "captures": { "1": { "name": "support.type.function.wat" } } }, { "comment": "Variable name or branch label [mvp]", "name": "variable.other.wat", "match": "\\$[0-9A-Za-z!#$%&'*+\\-./:<=>?@\\\\^_`|~]*\\b" } ] } ] }, "constants": { "patterns": [ { "comment": "Fixed-width SIMD", "patterns": [ { "comment": "Vector literal (i8x16) [simd]", "name": "constant.numeric.vector.wat", "match": "\\b(i8x16)(?:\\s+0x[0-9a-fA-F]{1,2}){16}\\b", "captures": { "1": { "name": "support.type.wat" } } }, { "comment": "Vector literal (i16x8) [simd]", "name": "constant.numeric.vector.wat", "match": "\\b(i16x8)(?:\\s+0x[0-9a-fA-F]{1,4}){8}\\b", "captures": { "1": { "name": "support.type.wat" } } }, { "comment": "Vector literal (i32x4) [simd]", "name": "constant.numeric.vector.wat", "match": "\\b(i32x4)(?:\\s+0x[0-9a-fA-F]{1,8}){4}\\b", "captures": { "1": { "name": "support.type.wat" } } }, { "comment": "Vector literal (i64x2) [simd]", "name": "constant.numeric.vector.wat", "match": "\\b(i64x2)(?:\\s+0x[0-9a-fA-F]{1,16}){2}\\b", "captures": { "1": { "name": "support.type.wat" } } } ] }, { "comment": "MVP", "patterns": [ { "comment": "Floating point literal", "name": "constant.numeric.float.wat", "match": "[+-]?\\b[0-9][0-9]*(?:\\.[0-9][0-9]*)?(?:[eE][+-]?[0-9]+)?\\b" }, { "comment": "Floating point hexadecimal literal", "name": "constant.numeric.float.wat", "match": "[+-]?\\b0x([0-9a-fA-F]*\\.[0-9a-fA-F]+|[0-9a-fA-F]+\\.?)[Pp][+-]?[0-9]+\\b" }, { "comment": "Floating point infinity", "name": "constant.numeric.float.wat", "match": "[+-]?\\binf\\b" }, { "comment": "Floating point literal (NaN)", "name": "constant.numeric.float.wat", "match": "[+-]?\\bnan:0x[0-9a-fA-F][0-9a-fA-F]*\\b" }, { "comment": "Integer literal", "name": "constant.numeric.integer.wat", "match": "[+-]?\\b(?:0x[0-9a-fA-F][0-9a-fA-F]*|\\d[\\d]*)\\b" } ] } ] }, "invalid": { "patterns": [ { "name": "invalid.wat", "match": "[^\\s()]+" } ] } } } ================================================ FILE: apps/web/src/lib/shiki/languages/wenyan.tmLanguage.json ================================================ { "$schema": "https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json", "scopeName": "source.wenyan", "name": "wenyan", "patterns": [ { "include": "#keywords" }, { "include": "#constants" }, { "include": "#operators" }, { "include": "#symbols" }, { "include": "#expression" }, { "include": "#comment-blocks" }, { "include": "#comment-lines" } ], "repository": { "expression": { "patterns": [ { "include": "#variables" } ] }, "keywords": { "patterns": [ { "name": "storage.type", "match": "數|列|言|術|爻|物|元" }, { "name": "keyword.control", "match": "乃行是術曰|若其不然者|乃歸空無|欲行是術|乃止是遍|若其然者|其物如是|乃得矣|之術也|必先得|是術曰|恆為是|之物也|乃得|是謂|云云|中之|為是|乃止|若非|或若|之長|其餘" }, { "name": "keyword.control", "match": "或云|蓋謂" }, { "name": "keyword.operator", "match": "中有陽乎|中無陰乎|所餘幾何|不等於|不大於|不小於|等於|大於|小於|加|減|乘|除|變|以|於" }, { "name": "keyword.other", "match": "不知何禍歟|不復存矣|姑妄行此|如事不諧|名之曰|吾嘗觀|之禍歟|乃作罷|吾有|今有|物之|書之|以施|昔之|是矣|之書|方悟|之義|嗚呼|之禍|有|施|曰|噫|取|今|夫|中|豈" }, { "name": "keyword.control", "match": "也|凡|遍|若|者|之|充|銜" } ] }, "comment-lines": { "name": "comment.line", "begin": "注曰|疏曰|批曰", "end": "$", "patterns": [ { "name": "constant.character", "match": "\\\\." } ] }, "comment-blocks": { "name": "comment.block", "begin": "(注曰|疏曰|批曰)。?(「「|『)", "end": "(」」|』)", "patterns": [ { "name": "constant.character", "match": "\\\\." } ] }, "constants": { "patterns": [ { "name": "constant.numeric", "match": "負|·|又|零|〇|一|二|三|四|五|六|七|八|九|十|百|千|萬|億|兆|京|垓|秭|穰|溝|澗|正|載|極|分|釐|毫|絲|忽|微|纖|沙|塵|埃|渺|漠" }, { "name": "constant.language", "match": "其|陰|陽" }, { "name": "string.quoted", "begin": "「「|『", "end": "」」|』", "patterns": [ { "name": "constant.character", "match": "\\\\." } ] } ] }, "symbols": { "patterns": [ { "name": "punctuation.separator", "match": "。|、" } ] }, "variables": { "name": "variable.other", "begin": "「", "end": "」", "patterns": [ { "name": "constant.character", "match": "\\\\." } ] } } } ================================================ FILE: apps/web/src/lib/shiki/languages/xml.tmLanguage.json ================================================ { "information_for_contributors": [ "This file has been converted from https://github.com/atom/language-xml/blob/master/grammars/xml.cson", "If you want to provide a fix or improvement, please create a pull request against the original repository.", "Once accepted there, we are happy to receive an update request." ], "version": "https://github.com/atom/language-xml/commit/7bc75dfe779ad5b35d9bf4013d9181864358cb49", "name": "xml", "scopeName": "text.xml", "patterns": [ { "begin": "(<\\?)\\s*([-_a-zA-Z0-9]+)", "captures": { "1": { "name": "punctuation.definition.tag.xml" }, "2": { "name": "entity.name.tag.xml" } }, "end": "(\\?>)", "name": "meta.tag.preprocessor.xml", "patterns": [ { "match": " ([a-zA-Z-]+)", "name": "entity.other.attribute-name.xml" }, { "include": "#doublequotedString" }, { "include": "#singlequotedString" } ] }, { "begin": "()", "name": "meta.tag.sgml.doctype.xml", "patterns": [ { "include": "#internalSubset" } ] }, { "include": "#comments" }, { "begin": "(<)((?:([-_a-zA-Z0-9]+)(:))?([-_a-zA-Z0-9:]+))(?=(\\s[^>]*)?>)", "beginCaptures": { "1": { "name": "punctuation.definition.tag.xml" }, "2": { "name": "entity.name.tag.xml" }, "3": { "name": "entity.name.tag.namespace.xml" }, "4": { "name": "punctuation.separator.namespace.xml" }, "5": { "name": "entity.name.tag.localname.xml" } }, "end": "(>)()", "endCaptures": { "1": { "name": "punctuation.definition.tag.xml" }, "2": { "name": "punctuation.definition.tag.xml" }, "3": { "name": "entity.name.tag.xml" }, "4": { "name": "entity.name.tag.namespace.xml" }, "5": { "name": "punctuation.separator.namespace.xml" }, "6": { "name": "entity.name.tag.localname.xml" }, "7": { "name": "punctuation.definition.tag.xml" } }, "name": "meta.tag.no-content.xml", "patterns": [ { "include": "#tagStuff" } ] }, { "begin": "()", "name": "meta.tag.xml", "patterns": [ { "include": "#tagStuff" } ] }, { "include": "#entity" }, { "include": "#bare-ampersand" }, { "begin": "<%@", "beginCaptures": { "0": { "name": "punctuation.section.embedded.begin.xml" } }, "end": "%>", "endCaptures": { "0": { "name": "punctuation.section.embedded.end.xml" } }, "name": "source.java-props.embedded.xml", "patterns": [ { "match": "page|include|taglib", "name": "keyword.other.page-props.xml" } ] }, { "begin": "<%[!=]?(?!--)", "beginCaptures": { "0": { "name": "punctuation.section.embedded.begin.xml" } }, "end": "(?!--)%>", "endCaptures": { "0": { "name": "punctuation.section.embedded.end.xml" } }, "name": "source.java.embedded.xml", "patterns": [ { "include": "source.java" } ] }, { "begin": "", "endCaptures": { "0": { "name": "punctuation.definition.string.end.xml" } }, "name": "string.unquoted.cdata.xml" } ], "repository": { "EntityDecl": { "begin": "()", "patterns": [ { "include": "#doublequotedString" }, { "include": "#singlequotedString" } ] }, "bare-ampersand": { "match": "&", "name": "invalid.illegal.bad-ampersand.xml" }, "doublequotedString": { "begin": "\"", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.xml" } }, "end": "\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.xml" } }, "name": "string.quoted.double.xml", "patterns": [ { "include": "#entity" }, { "include": "#bare-ampersand" } ] }, "entity": { "captures": { "1": { "name": "punctuation.definition.constant.xml" }, "3": { "name": "punctuation.definition.constant.xml" } }, "match": "(&)([:a-zA-Z_][:a-zA-Z0-9_.-]*|#[0-9]+|#x[0-9a-fA-F]+)(;)", "name": "constant.character.entity.xml" }, "internalSubset": { "begin": "(\\[)", "captures": { "1": { "name": "punctuation.definition.constant.xml" } }, "end": "(\\])", "name": "meta.internalsubset.xml", "patterns": [ { "include": "#EntityDecl" }, { "include": "#parameterEntity" }, { "include": "#comments" } ] }, "parameterEntity": { "captures": { "1": { "name": "punctuation.definition.constant.xml" }, "3": { "name": "punctuation.definition.constant.xml" } }, "match": "(%)([:a-zA-Z_][:a-zA-Z0-9_.-]*)(;)", "name": "constant.character.parameter-entity.xml" }, "singlequotedString": { "begin": "'", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.xml" } }, "end": "'", "endCaptures": { "0": { "name": "punctuation.definition.string.end.xml" } }, "name": "string.quoted.single.xml", "patterns": [ { "include": "#entity" }, { "include": "#bare-ampersand" } ] }, "tagStuff": { "patterns": [ { "captures": { "1": { "name": "entity.other.attribute-name.namespace.xml" }, "2": { "name": "entity.other.attribute-name.xml" }, "3": { "name": "punctuation.separator.namespace.xml" }, "4": { "name": "entity.other.attribute-name.localname.xml" } }, "match": "(?:^|\\s+)(?:([-\\w.]+)((:)))?([-\\w.:]+)\\s*=" }, { "include": "#doublequotedString" }, { "include": "#singlequotedString" } ] }, "comments": { "patterns": [ { "begin": "<%--", "captures": { "0": { "name": "punctuation.definition.comment.xml" }, "end": "--%>", "name": "comment.block.xml" } }, { "begin": "", "name": "comment.block.xml", "patterns": [ { "begin": "--(?!>)", "captures": { "0": { "name": "invalid.illegal.bad-comments-or-CDATA.xml" } } } ] } ] } } } ================================================ FILE: apps/web/src/lib/shiki/languages/xsl.tmLanguage.json ================================================ { "information_for_contributors": [ "This file has been converted from https://github.com/atom/language-xml/blob/master/grammars/xsl.cson", "If you want to provide a fix or improvement, please create a pull request against the original repository.", "Once accepted there, we are happy to receive an update request." ], "version": "https://github.com/atom/language-xml/commit/507de2ee7daca60cf02e9e21fbeb92bbae73e280", "name": "xsl", "scopeName": "text.xml.xsl", "patterns": [ { "begin": "(<)(xsl)((:))(template)", "captures": { "1": { "name": "punctuation.definition.tag.xml" }, "2": { "name": "entity.name.tag.namespace.xml" }, "3": { "name": "entity.name.tag.xml" }, "4": { "name": "punctuation.separator.namespace.xml" }, "5": { "name": "entity.name.tag.localname.xml" } }, "end": "(>)", "name": "meta.tag.xml.template", "patterns": [ { "captures": { "1": { "name": "entity.other.attribute-name.namespace.xml" }, "2": { "name": "entity.other.attribute-name.xml" }, "3": { "name": "punctuation.separator.namespace.xml" }, "4": { "name": "entity.other.attribute-name.localname.xml" } }, "match": " (?:([-_a-zA-Z0-9]+)((:)))?([a-zA-Z-]+)" }, { "include": "#doublequotedString" }, { "include": "#singlequotedString" } ] }, { "include": "text.xml" } ], "repository": { "doublequotedString": { "begin": "\"", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.xml" } }, "end": "\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.xml" } }, "name": "string.quoted.double.xml" }, "singlequotedString": { "begin": "'", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.xml" } }, "end": "'", "endCaptures": { "0": { "name": "punctuation.definition.string.end.xml" } }, "name": "string.quoted.single.xml" } } } ================================================ FILE: apps/web/src/lib/shiki/languages/yaml.tmLanguage.json ================================================ { "information_for_contributors": [ "This file has been converted from https://github.com/textmate/yaml.tmbundle/blob/master/Syntaxes/YAML.tmLanguage", "If you want to provide a fix or improvement, please create a pull request against the original repository.", "Once accepted there, we are happy to receive an update request." ], "version": "https://github.com/textmate/yaml.tmbundle/commit/e54ceae3b719506dba7e481a77cea4a8b576ae46", "name": "yaml", "scopeName": "source.yaml", "patterns": [ { "include": "#comment" }, { "include": "#property" }, { "include": "#directive" }, { "match": "^---", "name": "entity.other.document.begin.yaml" }, { "match": "^\\.{3}", "name": "entity.other.document.end.yaml" }, { "include": "#node" } ], "repository": { "block-collection": { "patterns": [ { "include": "#block-sequence" }, { "include": "#block-mapping" } ] }, "block-mapping": { "patterns": [ { "include": "#block-pair" } ] }, "block-node": { "patterns": [ { "include": "#prototype" }, { "include": "#block-scalar" }, { "include": "#block-collection" }, { "include": "#flow-scalar-plain-out" }, { "include": "#flow-node" } ] }, "block-pair": { "patterns": [ { "begin": "\\?", "beginCaptures": { "1": { "name": "punctuation.definition.key-value.begin.yaml" } }, "end": "(?=\\?)|^ *(:)|(:)", "endCaptures": { "1": { "name": "punctuation.separator.key-value.mapping.yaml" }, "2": { "name": "invalid.illegal.expected-newline.yaml" } }, "name": "meta.block-mapping.yaml", "patterns": [ { "include": "#block-node" } ] }, { "begin": "(?x)\n (?=\n (?x:\n [^\\s[-?:,\\[\\]{}#&*!|>'\"%@`]]\n | [?:-] \\S\n )\n (\n [^\\s:]\n | : \\S\n | \\s+ (?![#\\s])\n )*\n \\s*\n :\n\t\t\t\t\t\t\t(\\s|$)\n )\n ", "end": "(?x)\n (?=\n \\s* $\n | \\s+ \\#\n | \\s* : (\\s|$)\n )\n ", "patterns": [ { "include": "#flow-scalar-plain-out-implicit-type" }, { "begin": "(?x)\n [^\\s[-?:,\\[\\]{}#&*!|>'\"%@`]]\n | [?:-] \\S\n ", "beginCaptures": { "0": { "name": "entity.name.tag.yaml" } }, "contentName": "entity.name.tag.yaml", "end": "(?x)\n (?=\n \\s* $\n | \\s+ \\#\n | \\s* : (\\s|$)\n )\n ", "name": "string.unquoted.plain.out.yaml" } ] }, { "match": ":(?=\\s|$)", "name": "punctuation.separator.key-value.mapping.yaml" } ] }, "block-scalar": { "begin": "(?:(\\|)|(>))([1-9])?([-+])?(.*\\n?)", "beginCaptures": { "1": { "name": "keyword.control.flow.block-scalar.literal.yaml" }, "2": { "name": "keyword.control.flow.block-scalar.folded.yaml" }, "3": { "name": "constant.numeric.indentation-indicator.yaml" }, "4": { "name": "storage.modifier.chomping-indicator.yaml" }, "5": { "patterns": [ { "include": "#comment" }, { "match": ".+", "name": "invalid.illegal.expected-comment-or-newline.yaml" } ] } }, "end": "^(?=\\S)|(?!\\G)", "patterns": [ { "begin": "^([ ]+)(?! )", "end": "^(?!\\1|\\s*$)", "name": "string.unquoted.block.yaml" } ] }, "block-sequence": { "match": "(-)(?!\\S)", "name": "punctuation.definition.block.sequence.item.yaml" }, "comment": { "begin": "(?:(^[ \\t]*)|[ \\t]+)(?=#\\p{Print}*$)", "beginCaptures": { "1": { "name": "punctuation.whitespace.comment.leading.yaml" } }, "end": "(?!\\G)", "patterns": [ { "begin": "#", "beginCaptures": { "0": { "name": "punctuation.definition.comment.yaml" } }, "end": "\\n", "name": "comment.line.number-sign.yaml" } ] }, "directive": { "begin": "^%", "beginCaptures": { "0": { "name": "punctuation.definition.directive.begin.yaml" } }, "end": "(?=$|[ \\t]+($|#))", "name": "meta.directive.yaml", "patterns": [ { "captures": { "1": { "name": "keyword.other.directive.yaml.yaml" }, "2": { "name": "constant.numeric.yaml-version.yaml" } }, "match": "\\G(YAML)[ \\t]+(\\d+\\.\\d+)" }, { "captures": { "1": { "name": "keyword.other.directive.tag.yaml" }, "2": { "name": "storage.type.tag-handle.yaml" }, "3": { "name": "support.type.tag-prefix.yaml" } }, "match": "(?x)\n \\G\n (TAG)\n (?:[ \\t]+\n ((?:!(?:[0-9A-Za-z\\-]*!)?))\n (?:[ \\t]+ (\n ! (?x: %[0-9A-Fa-f]{2} | [0-9A-Za-z\\-#;/?:@&=+$,_.!~*'()\\[\\]] )*\n | (?![,!\\[\\]{}]) (?x: %[0-9A-Fa-f]{2} | [0-9A-Za-z\\-#;/?:@&=+$,_.!~*'()\\[\\]] )+\n )\n )?\n )?\n " }, { "captures": { "1": { "name": "support.other.directive.reserved.yaml" }, "2": { "name": "string.unquoted.directive-name.yaml" }, "3": { "name": "string.unquoted.directive-parameter.yaml" } }, "match": "(?x) \\G (\\w+) (?:[ \\t]+ (\\w+) (?:[ \\t]+ (\\w+))? )?" }, { "match": "\\S+", "name": "invalid.illegal.unrecognized.yaml" } ] }, "flow-alias": { "captures": { "1": { "name": "keyword.control.flow.alias.yaml" }, "2": { "name": "punctuation.definition.alias.yaml" }, "3": { "name": "variable.other.alias.yaml" }, "4": { "name": "invalid.illegal.character.anchor.yaml" } }, "match": "((\\*))([^\\s\\[\\]/{/},]+)([^\\s\\]},]\\S*)?" }, "flow-collection": { "patterns": [ { "include": "#flow-sequence" }, { "include": "#flow-mapping" } ] }, "flow-mapping": { "begin": "\\{", "beginCaptures": { "0": { "name": "punctuation.definition.mapping.begin.yaml" } }, "end": "\\}", "endCaptures": { "0": { "name": "punctuation.definition.mapping.end.yaml" } }, "name": "meta.flow-mapping.yaml", "patterns": [ { "include": "#prototype" }, { "match": ",", "name": "punctuation.separator.mapping.yaml" }, { "include": "#flow-pair" } ] }, "flow-node": { "patterns": [ { "include": "#prototype" }, { "include": "#flow-alias" }, { "include": "#flow-collection" }, { "include": "#flow-scalar" } ] }, "flow-pair": { "patterns": [ { "begin": "\\?", "beginCaptures": { "0": { "name": "punctuation.definition.key-value.begin.yaml" } }, "end": "(?=[},\\]])", "name": "meta.flow-pair.explicit.yaml", "patterns": [ { "include": "#prototype" }, { "include": "#flow-pair" }, { "include": "#flow-node" }, { "begin": ":(?=\\s|$|[\\[\\]{},])", "beginCaptures": { "0": { "name": "punctuation.separator.key-value.mapping.yaml" } }, "end": "(?=[},\\]])", "patterns": [ { "include": "#flow-value" } ] } ] }, { "begin": "(?x)\n (?=\n (?:\n [^\\s[-?:,\\[\\]{}#&*!|>'\"%@`]]\n | [?:-] [^\\s[\\[\\]{},]]\n )\n (\n [^\\s:[\\[\\]{},]]\n | : [^\\s[\\[\\]{},]]\n | \\s+ (?![#\\s])\n )*\n \\s*\n :\n\t\t\t\t\t\t\t(\\s|$)\n )\n ", "end": "(?x)\n (?=\n \\s* $\n | \\s+ \\#\n | \\s* : (\\s|$)\n | \\s* : [\\[\\]{},]\n | \\s* [\\[\\]{},]\n )\n ", "name": "meta.flow-pair.key.yaml", "patterns": [ { "include": "#flow-scalar-plain-in-implicit-type" }, { "begin": "(?x)\n [^\\s[-?:,\\[\\]{}#&*!|>'\"%@`]]\n | [?:-] [^\\s[\\[\\]{},]]\n ", "beginCaptures": { "0": { "name": "entity.name.tag.yaml" } }, "contentName": "entity.name.tag.yaml", "end": "(?x)\n (?=\n \\s* $\n | \\s+ \\#\n | \\s* : (\\s|$)\n | \\s* : [\\[\\]{},]\n | \\s* [\\[\\]{},]\n )\n ", "name": "string.unquoted.plain.in.yaml" } ] }, { "include": "#flow-node" }, { "begin": ":(?=\\s|$|[\\[\\]{},])", "captures": { "0": { "name": "punctuation.separator.key-value.mapping.yaml" } }, "end": "(?=[},\\]])", "name": "meta.flow-pair.yaml", "patterns": [ { "include": "#flow-value" } ] } ] }, "flow-scalar": { "patterns": [ { "include": "#flow-scalar-double-quoted" }, { "include": "#flow-scalar-single-quoted" }, { "include": "#flow-scalar-plain-in" } ] }, "flow-scalar-double-quoted": { "begin": "\"", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.yaml" } }, "end": "\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.yaml" } }, "name": "string.quoted.double.yaml", "patterns": [ { "match": "\\\\([0abtnvfre \"/\\\\N_Lp]|x\\d\\d|u\\d{4}|U\\d{8})", "name": "constant.character.escape.yaml" }, { "match": "\\\\\\n", "name": "constant.character.escape.double-quoted.newline.yaml" } ] }, "flow-scalar-plain-in": { "patterns": [ { "include": "#flow-scalar-plain-in-implicit-type" }, { "begin": "(?x)\n [^\\s[-?:,\\[\\]{}#&*!|>'\"%@`]]\n | [?:-] [^\\s[\\[\\]{},]]\n ", "end": "(?x)\n (?=\n \\s* $\n | \\s+ \\#\n | \\s* : (\\s|$)\n | \\s* : [\\[\\]{},]\n | \\s* [\\[\\]{},]\n )\n ", "name": "string.unquoted.plain.in.yaml" } ] }, "flow-scalar-plain-in-implicit-type": { "patterns": [ { "captures": { "1": { "name": "constant.language.null.yaml" }, "2": { "name": "constant.language.boolean.yaml" }, "3": { "name": "constant.numeric.integer.yaml" }, "4": { "name": "constant.numeric.float.yaml" }, "5": { "name": "constant.other.timestamp.yaml" }, "6": { "name": "constant.language.value.yaml" }, "7": { "name": "constant.language.merge.yaml" } }, "match": "(?x)\n (?x:\n (null|Null|NULL|~)\n | (y|Y|yes|Yes|YES|n|N|no|No|NO|true|True|TRUE|false|False|FALSE|on|On|ON|off|Off|OFF)\n | (\n (?:\n [-+]? 0b [0-1_]+ # (base 2)\n | [-+]? 0 [0-7_]+ # (base 8)\n | [-+]? (?: 0|[1-9][0-9_]*) # (base 10)\n | [-+]? 0x [0-9a-fA-F_]+ # (base 16)\n | [-+]? [1-9] [0-9_]* (?: :[0-5]?[0-9])+ # (base 60)\n )\n )\n | (\n (?x:\n [-+]? (?: [0-9] [0-9_]*)? \\. [0-9.]* (?: [eE] [-+] [0-9]+)? # (base 10)\n | [-+]? [0-9] [0-9_]* (?: :[0-5]?[0-9])+ \\. [0-9_]* # (base 60)\n | [-+]? \\. (?: inf|Inf|INF) # (infinity)\n | \\. (?: nan|NaN|NAN) # (not a number)\n )\n )\n | (\n (?x:\n \\d{4} - \\d{2} - \\d{2} # (y-m-d)\n | \\d{4} # (year)\n - \\d{1,2} # (month)\n - \\d{1,2} # (day)\n (?: [Tt] | [ \\t]+) \\d{1,2} # (hour)\n : \\d{2} # (minute)\n : \\d{2} # (second)\n (?: \\.\\d*)? # (fraction)\n (?:\n (?:[ \\t]*) Z\n | [-+] \\d{1,2} (?: :\\d{1,2})?\n )? # (time zone)\n )\n )\n | (=)\n | (<<)\n )\n (?:\n (?=\n \\s* $\n | \\s+ \\#\n | \\s* : (\\s|$)\n | \\s* : [\\[\\]{},]\n | \\s* [\\[\\]{},]\n )\n )\n " } ] }, "flow-scalar-plain-out": { "patterns": [ { "include": "#flow-scalar-plain-out-implicit-type" }, { "begin": "(?x)\n [^\\s[-?:,\\[\\]{}#&*!|>'\"%@`]]\n | [?:-] \\S\n ", "end": "(?x)\n (?=\n \\s* $\n | \\s+ \\#\n | \\s* : (\\s|$)\n )\n ", "name": "string.unquoted.plain.out.yaml" } ] }, "flow-scalar-plain-out-implicit-type": { "patterns": [ { "captures": { "1": { "name": "constant.language.null.yaml" }, "2": { "name": "constant.language.boolean.yaml" }, "3": { "name": "constant.numeric.integer.yaml" }, "4": { "name": "constant.numeric.float.yaml" }, "5": { "name": "constant.other.timestamp.yaml" }, "6": { "name": "constant.language.value.yaml" }, "7": { "name": "constant.language.merge.yaml" } }, "match": "(?x)\n (?x:\n (null|Null|NULL|~)\n | (y|Y|yes|Yes|YES|n|N|no|No|NO|true|True|TRUE|false|False|FALSE|on|On|ON|off|Off|OFF)\n | (\n (?:\n [-+]? 0b [0-1_]+ # (base 2)\n | [-+]? 0 [0-7_]+ # (base 8)\n | [-+]? (?: 0|[1-9][0-9_]*) # (base 10)\n | [-+]? 0x [0-9a-fA-F_]+ # (base 16)\n | [-+]? [1-9] [0-9_]* (?: :[0-5]?[0-9])+ # (base 60)\n )\n )\n | (\n (?x:\n [-+]? (?: [0-9] [0-9_]*)? \\. [0-9.]* (?: [eE] [-+] [0-9]+)? # (base 10)\n | [-+]? [0-9] [0-9_]* (?: :[0-5]?[0-9])+ \\. [0-9_]* # (base 60)\n | [-+]? \\. (?: inf|Inf|INF) # (infinity)\n | \\. (?: nan|NaN|NAN) # (not a number)\n )\n )\n | (\n (?x:\n \\d{4} - \\d{2} - \\d{2} # (y-m-d)\n | \\d{4} # (year)\n - \\d{1,2} # (month)\n - \\d{1,2} # (day)\n (?: [Tt] | [ \\t]+) \\d{1,2} # (hour)\n : \\d{2} # (minute)\n : \\d{2} # (second)\n (?: \\.\\d*)? # (fraction)\n (?:\n (?:[ \\t]*) Z\n | [-+] \\d{1,2} (?: :\\d{1,2})?\n )? # (time zone)\n )\n )\n | (=)\n | (<<)\n )\n (?x:\n (?=\n \\s* $\n | \\s+ \\#\n | \\s* : (\\s|$)\n )\n )\n " } ] }, "flow-scalar-single-quoted": { "begin": "'", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.yaml" } }, "end": "'(?!')", "endCaptures": { "0": { "name": "punctuation.definition.string.end.yaml" } }, "name": "string.quoted.single.yaml", "patterns": [ { "match": "''", "name": "constant.character.escape.single-quoted.yaml" } ] }, "flow-sequence": { "begin": "\\[", "beginCaptures": { "0": { "name": "punctuation.definition.sequence.begin.yaml" } }, "end": "\\]", "endCaptures": { "0": { "name": "punctuation.definition.sequence.end.yaml" } }, "name": "meta.flow-sequence.yaml", "patterns": [ { "include": "#prototype" }, { "match": ",", "name": "punctuation.separator.sequence.yaml" }, { "include": "#flow-pair" }, { "include": "#flow-node" } ] }, "flow-value": { "patterns": [ { "begin": "\\G(?![},\\]])", "end": "(?=[},\\]])", "name": "meta.flow-pair.value.yaml", "patterns": [ { "include": "#flow-node" } ] } ] }, "node": { "patterns": [ { "include": "#block-node" } ] }, "property": { "begin": "(?=!|&)", "end": "(?!\\G)", "name": "meta.property.yaml", "patterns": [ { "captures": { "1": { "name": "keyword.control.property.anchor.yaml" }, "2": { "name": "punctuation.definition.anchor.yaml" }, "3": { "name": "entity.name.type.anchor.yaml" }, "4": { "name": "invalid.illegal.character.anchor.yaml" } }, "match": "\\G((&))([^\\s\\[\\]/{/},]+)(\\S+)?" }, { "match": "(?x)\n \\G\n (?:\n ! < (?: %[0-9A-Fa-f]{2} | [0-9A-Za-z\\-#;/?:@&=+$,_.!~*'()\\[\\]] )+ >\n | (?:!(?:[0-9A-Za-z\\-]*!)?) (?: %[0-9A-Fa-f]{2} | [0-9A-Za-z\\-#;/?:@&=+$_.~*'()] )+\n | !\n )\n (?=\\ |\\t|$)\n ", "name": "storage.type.tag-handle.yaml" }, { "match": "\\S+", "name": "invalid.illegal.tag-handle.yaml" } ] }, "prototype": { "patterns": [ { "include": "#comment" }, { "include": "#property" } ] } } } ================================================ FILE: apps/web/src/lib/shiki/languages/zenscript.tmLanguage.json ================================================ { "fileTypes": ["zs"], "name": "zenscript", "patterns": [ { "comment": "numbers", "name": "constant.numeric.zenscript", "match": "\\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\\.?[0-9]*)|(\\.[0-9]+))((e|E)(\\+|-)?[0-9]+)?)([LlFfUuDd]|UL|ul)?\\b" }, { "comment": "prefixedNumbers", "name": "constant.numeric.zenscript", "match": "\\b\\-?(0b|0x|0o|0B|0X|0O)(0|[1-9a-fA-F][0-9a-fA-F_]*)[a-zA-Z_]*\\b" }, { "include": "#code" }, { "comment": "arrays", "name": "storage.type.object.array.zenscript", "match": "\\b((?:[a-z]\\w*\\.)*[A-Z]+\\w*)(?=\\[)" } ], "repository": { "code": { "patterns": [ { "include": "#class" }, { "include": "#functions" }, { "include": "#dots" }, { "include": "#quotes" }, { "include": "#brackets" }, { "include": "#comments" }, { "include": "#var" }, { "include": "#keywords" }, { "include": "#constants" }, { "include": "#operators" } ] }, "class": { "comment": "class", "name": "meta.class.zenscript", "match": "(zenClass)\\s+(\\w+)", "captures": { "1": { "name": "storage.type.zenscript" }, "2": { "name": "entity.name.type.class.zenscript" } } }, "functions": { "comment": "functions", "name": "meta.function.zenscript", "match": "function\\s+([A-Za-z_$][\\w$]*)\\s*(?=\\()", "captures": { "0": { "name": "storage.type.function.zenscript" }, "1": { "name": "entity.name.function.zenscript" } } }, "dots": { "comment": "dots", "name": "plain.text.zenscript", "match": "\\b(\\w+)(\\.)(\\w+)((\\.)(\\w+))*", "captures": { "1": { "name": "storage.type.zenscript" }, "2": { "name": "keyword.control.zenscript" }, "5": { "name": "keyword.control.zenscript" } } }, "quotes": { "patterns": [ { "begin": "\"", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.zenscript" } }, "end": "\"", "endCaptures": { "0": { "name": "punctuation.definition.string.end.zenscript" } }, "name": "string.quoted.double.zenscript", "patterns": [ { "match": "\\\\.", "name": "constant.character.escape.zenscript" } ] }, { "begin": "'", "beginCaptures": { "0": { "name": "punctuation.definition.string.begin.zenscript" } }, "end": "'", "endCaptures": { "0": { "name": "punctuation.definition.string.end.zenscript" } }, "name": "string.quoted.single.zenscript", "patterns": [ { "match": "\\\\.", "name": "constant.character.escape.zenscript" } ] } ] }, "brackets": { "patterns": [ { "comment": "items and blocks", "name": "keyword.other.zenscript", "match": "(<)\\b(.*?)(:(.*?(:(\\*|\\d+)?)?)?)(>)", "captures": { "1": { "name": "keyword.control.zenscript" }, "2": { "name": "keyword.other.zenscript" }, "3": { "name": "keyword.control.zenscript" }, "4": { "name": "variable.other.zenscript" }, "5": { "name": "keyword.control.zenscript" }, "6": { "name": "constant.numeric.zenscript" }, "7": { "name": "keyword.control.zenscript" } } } ] }, "comments": { "patterns": [ { "comment": "inline comments", "name": "comment.line.double=slash", "match": "//[^\n]*" }, { "comment": "block comments", "name": "comment.block", "begin": "\\/\\*", "beginCaptures": { "0": { "name": "comment.block" } }, "end": "\\*\\/", "endCaptures": { "0": { "name": "comment.block" } } } ] }, "var": { "comment": "var", "match": "\\b(val|var)\\b", "name": "storage.type" }, "keywords": { "patterns": [ { "comment": "statement keywords", "name": "keyword.control.zenscript", "match": "\\b(instanceof|get|implements|set|import|function|override|const|if|else|do|while|for|throw|panic|lock|try|catch|finally|return|break|continue|switch|case|default|in|is|as|match|throws|super|new)\\b" }, { "comment": "storage keywords", "name": "storage.type.zenscript", "match": "\\b(zenClass|zenConstructor|alias|class|interface|enum|struct|expand|variant|set|void|bool|byte|sbyte|short|ushort|int|uint|long|ulong|usize|float|double|char|string)\\b" }, { "comment": "modifier keywords", "name": "storage.modifier.zenscript", "match": "\\b(variant|abstract|final|private|public|export|internal|static|protected|implicit|virtual|extern|immutable)\\b" }, { "comment": "annotation keywords", "name": "entity.other.attribute-name", "match": "\\b(Native|Precondition)\\b" }, { "comment": "language keywords", "name": "constant.language", "match": "\\b(null|true|false)\\b" } ] }, "operators": { "patterns": [ { "comment": "math operators", "name": "keyword.control", "match": "\\b(\\.|\\.\\.|\\.\\.\\.|,|\\+|\\+=|\\+\\+|-|-=|--|~|~=|\\*|\\*=|/|/=|%|%=|\\||\\|=|\\|\\||&|&=|&&|\\^|\\^=|\\?|\\?\\.|\\?\\?|<|<=|<<|<<=|>|>=|>>|>>=|>>>|>>>=|=>|=|==|===|!|!=|!==|\\$|`)\\b" }, { "comment": "colons", "name": "keyword.control", "match": "\\b(;|:)\\b" } ] } }, "scopeName": "source.zenscript" } ================================================ FILE: apps/web/src/lib/shiki/themes/css-variables.json ================================================ { "name": "css-variables", "type": "css", "colors": { "editor.foreground": "#000001", "editor.background": "#000002" }, "tokenColors": [ { "settings": { "foreground": "#000001" } }, { "scope": [ "keyword.operator.accessor", "meta.group.braces.round.function.arguments", "meta.template.expression", "markup.fenced_code meta.embedded.block" ], "settings": { "foreground": "#000001" } }, { "scope": "emphasis", "settings": { "fontStyle": "italic" } }, { "scope": ["strong", "markup.heading.markdown", "markup.bold.markdown"], "settings": { "fontStyle": "bold" } }, { "scope": ["markup.italic.markdown"], "settings": { "fontStyle": "italic" } }, { "scope": "meta.link.inline.markdown", "settings": { "fontStyle": "underline", "foreground": "#000004" } }, { "scope": ["string", "markup.fenced_code", "markup.inline"], "settings": { "foreground": "#000005" } }, { "scope": ["comment", "string.quoted.docstring.multi"], "settings": { "foreground": "#000006" } }, { "scope": [ "constant.numeric", "constant.language", "constant.other.placeholder", "constant.character.format.placeholder", "variable.language.this", "variable.other.object", "variable.other.class", "variable.other.constant", "meta.property-name", "meta.property-value", "support" ], "settings": { "foreground": "#000004" } }, { "scope": [ "keyword", "storage.modifier", "storage.type", "storage.control.clojure", "entity.name.function.clojure", "entity.name.tag.yaml", "support.function.node", "support.type.property-name.json", "punctuation.separator.key-value", "punctuation.definition.template-expression" ], "settings": { "foreground": "#000007" } }, { "scope": "variable.parameter.function", "settings": { "foreground": "#000008" } }, { "scope": [ "support.function", "entity.name.type", "entity.other.inherited-class", "meta.function-call", "meta.instance.constructor", "entity.other.attribute-name", "entity.name.function", "constant.keyword.clojure" ], "settings": { "foreground": "#000009" } }, { "scope": [ "entity.name.tag", "string.quoted", "string.regexp", "string.interpolated", "string.template", "string.unquoted.plain.out.yaml", "keyword.other.template" ], "settings": { "foreground": "#000010" } }, { "scope": [ "punctuation.definition.arguments", "punctuation.definition.dict", "punctuation.separator", "meta.function-call.arguments" ], "settings": { "foreground": "#000011" } }, { "name": "[Custom] Markdown links", "scope": [ "markup.underline.link", "punctuation.definition.metadata.markdown" ], "settings": { "foreground": "#000012" } }, { "name": "[Custom] Markdown list", "scope": ["beginning.punctuation.definition.list.markdown"], "settings": { "foreground": "#000005" } }, { "name": "[Custom] Markdown punctuation definition brackets", "scope": [ "punctuation.definition.string.begin.markdown", "punctuation.definition.string.end.markdown", "string.other.link.title.markdown", "string.other.link.description.markdown" ], "settings": { "foreground": "#000007" } } ] } ================================================ FILE: apps/web/src/lib/shiki/themes/dark-plus.json ================================================ { "$schema": "vscode://schemas/color-theme", "name": "dark-plus", "tokenColors": [ { "settings": { "foreground": "#D4D4D4" } }, { "scope": [ "meta.embedded", "source.groovy.embedded", "string meta.image.inline.markdown" ], "settings": { "foreground": "#D4D4D4" } }, { "scope": "emphasis", "settings": { "fontStyle": "italic" } }, { "scope": "strong", "settings": { "fontStyle": "bold" } }, { "scope": "header", "settings": { "foreground": "#000080" } }, { "scope": "comment", "settings": { "foreground": "#6A9955" } }, { "scope": "constant.language", "settings": { "foreground": "#569cd6" } }, { "scope": [ "constant.numeric", "variable.other.enummember", "keyword.operator.plus.exponent", "keyword.operator.minus.exponent" ], "settings": { "foreground": "#b5cea8" } }, { "scope": "constant.regexp", "settings": { "foreground": "#646695" } }, { "scope": "entity.name.tag", "settings": { "foreground": "#569cd6" } }, { "scope": "entity.name.tag.css", "settings": { "foreground": "#d7ba7d" } }, { "scope": "entity.other.attribute-name", "settings": { "foreground": "#9cdcfe" } }, { "scope": [ "entity.other.attribute-name.class.css", "entity.other.attribute-name.class.mixin.css", "entity.other.attribute-name.id.css", "entity.other.attribute-name.parent-selector.css", "entity.other.attribute-name.pseudo-class.css", "entity.other.attribute-name.pseudo-element.css", "source.css.less entity.other.attribute-name.id", "entity.other.attribute-name.scss" ], "settings": { "foreground": "#d7ba7d" } }, { "scope": "invalid", "settings": { "foreground": "#f44747" } }, { "scope": "markup.underline", "settings": { "fontStyle": "underline" } }, { "scope": "markup.bold", "settings": { "fontStyle": "bold", "foreground": "#569cd6" } }, { "scope": "markup.heading", "settings": { "fontStyle": "bold", "foreground": "#569cd6" } }, { "scope": "markup.italic", "settings": { "fontStyle": "italic" } }, { "scope": "markup.strikethrough", "settings": { "fontStyle": "strikethrough" } }, { "scope": "markup.inserted", "settings": { "foreground": "#b5cea8" } }, { "scope": "markup.deleted", "settings": { "foreground": "#ce9178" } }, { "scope": "markup.changed", "settings": { "foreground": "#569cd6" } }, { "scope": "punctuation.definition.quote.begin.markdown", "settings": { "foreground": "#6A9955" } }, { "scope": "punctuation.definition.list.begin.markdown", "settings": { "foreground": "#6796e6" } }, { "scope": "markup.inline.raw", "settings": { "foreground": "#ce9178" } }, { "name": "brackets of XML/HTML tags", "scope": "punctuation.definition.tag", "settings": { "foreground": "#808080" } }, { "scope": ["meta.preprocessor", "entity.name.function.preprocessor"], "settings": { "foreground": "#569cd6" } }, { "scope": "meta.preprocessor.string", "settings": { "foreground": "#ce9178" } }, { "scope": "meta.preprocessor.numeric", "settings": { "foreground": "#b5cea8" } }, { "scope": "meta.structure.dictionary.key.python", "settings": { "foreground": "#9cdcfe" } }, { "scope": "meta.diff.header", "settings": { "foreground": "#569cd6" } }, { "scope": "storage", "settings": { "foreground": "#569cd6" } }, { "scope": "storage.type", "settings": { "foreground": "#569cd6" } }, { "scope": ["storage.modifier", "keyword.operator.noexcept"], "settings": { "foreground": "#569cd6" } }, { "scope": ["string", "meta.embedded.assembly"], "settings": { "foreground": "#ce9178" } }, { "scope": "string.tag", "settings": { "foreground": "#ce9178" } }, { "scope": "string.value", "settings": { "foreground": "#ce9178" } }, { "scope": "string.regexp", "settings": { "foreground": "#d16969" } }, { "name": "String interpolation", "scope": [ "punctuation.definition.template-expression.begin", "punctuation.definition.template-expression.end", "punctuation.section.embedded" ], "settings": { "foreground": "#569cd6" } }, { "name": "Reset JavaScript string interpolation expression", "scope": ["meta.template.expression"], "settings": { "foreground": "#d4d4d4" } }, { "scope": [ "support.type.vendored.property-name", "support.type.property-name", "variable.css", "variable.scss", "variable.other.less", "source.coffee.embedded" ], "settings": { "foreground": "#9cdcfe" } }, { "scope": "keyword", "settings": { "foreground": "#569cd6" } }, { "scope": "keyword.control", "settings": { "foreground": "#569cd6" } }, { "scope": "keyword.operator", "settings": { "foreground": "#d4d4d4" } }, { "scope": [ "keyword.operator.new", "keyword.operator.expression", "keyword.operator.cast", "keyword.operator.sizeof", "keyword.operator.alignof", "keyword.operator.typeid", "keyword.operator.alignas", "keyword.operator.instanceof", "keyword.operator.logical.python", "keyword.operator.wordlike" ], "settings": { "foreground": "#569cd6" } }, { "scope": "keyword.other.unit", "settings": { "foreground": "#b5cea8" } }, { "scope": [ "punctuation.section.embedded.begin.php", "punctuation.section.embedded.end.php" ], "settings": { "foreground": "#569cd6" } }, { "scope": "support.function.git-rebase", "settings": { "foreground": "#9cdcfe" } }, { "scope": "constant.sha.git-rebase", "settings": { "foreground": "#b5cea8" } }, { "name": "coloring of the Java import and package identifiers", "scope": [ "storage.modifier.import.java", "variable.language.wildcard.java", "storage.modifier.package.java" ], "settings": { "foreground": "#d4d4d4" } }, { "name": "this.self", "scope": "variable.language", "settings": { "foreground": "#569cd6" } }, { "name": "Function declarations", "scope": [ "entity.name.function", "support.function", "support.constant.handlebars", "source.powershell variable.other.member", "entity.name.operator.custom-literal" ], "settings": { "foreground": "#DCDCAA" } }, { "name": "Types declaration and references", "scope": [ "support.class", "support.type", "entity.name.type", "entity.name.namespace", "entity.other.attribute", "entity.name.scope-resolution", "entity.name.class", "storage.type.numeric.go", "storage.type.byte.go", "storage.type.boolean.go", "storage.type.string.go", "storage.type.uintptr.go", "storage.type.error.go", "storage.type.rune.go", "storage.type.cs", "storage.type.generic.cs", "storage.type.modifier.cs", "storage.type.variable.cs", "storage.type.annotation.java", "storage.type.generic.java", "storage.type.java", "storage.type.object.array.java", "storage.type.primitive.array.java", "storage.type.primitive.java", "storage.type.token.java", "storage.type.groovy", "storage.type.annotation.groovy", "storage.type.parameters.groovy", "storage.type.generic.groovy", "storage.type.object.array.groovy", "storage.type.primitive.array.groovy", "storage.type.primitive.groovy" ], "settings": { "foreground": "#4EC9B0" } }, { "name": "Types declaration and references, TS grammar specific", "scope": [ "meta.type.cast.expr", "meta.type.new.expr", "support.constant.math", "support.constant.dom", "support.constant.json", "entity.other.inherited-class" ], "settings": { "foreground": "#4EC9B0" } }, { "name": "Control flow / Special keywords", "scope": [ "keyword.control", "source.cpp keyword.operator.new", "keyword.operator.delete", "keyword.other.using", "keyword.other.operator", "entity.name.operator" ], "settings": { "foreground": "#C586C0" } }, { "name": "Variable and parameter name", "scope": [ "variable", "meta.definition.variable.name", "support.variable", "entity.name.variable", "constant.other.placeholder" ], "settings": { "foreground": "#9CDCFE" } }, { "name": "Constants and enums", "scope": ["variable.other.constant", "variable.other.enummember"], "settings": { "foreground": "#4FC1FF" } }, { "name": "Object keys, TS grammar specific", "scope": ["meta.object-literal.key"], "settings": { "foreground": "#9CDCFE" } }, { "name": "CSS property value", "scope": [ "support.constant.property-value", "support.constant.font-name", "support.constant.media-type", "support.constant.media", "constant.other.color.rgb-value", "constant.other.rgb-value", "support.constant.color" ], "settings": { "foreground": "#CE9178" } }, { "name": "Regular expression groups", "scope": [ "punctuation.definition.group.regexp", "punctuation.definition.group.assertion.regexp", "punctuation.definition.character-class.regexp", "punctuation.character.set.begin.regexp", "punctuation.character.set.end.regexp", "keyword.operator.negation.regexp", "support.other.parenthesis.regexp" ], "settings": { "foreground": "#CE9178" } }, { "scope": [ "constant.character.character-class.regexp", "constant.other.character-class.set.regexp", "constant.other.character-class.regexp", "constant.character.set.regexp" ], "settings": { "foreground": "#d16969" } }, { "scope": ["keyword.operator.or.regexp", "keyword.control.anchor.regexp"], "settings": { "foreground": "#DCDCAA" } }, { "scope": "keyword.operator.quantifier.regexp", "settings": { "foreground": "#d7ba7d" } }, { "scope": "constant.character", "settings": { "foreground": "#569cd6" } }, { "scope": "constant.character.escape", "settings": { "foreground": "#d7ba7d" } }, { "scope": "entity.name.label", "settings": { "foreground": "#C8C8C8" } } ], "semanticTokenColors": { "newOperator": "#C586C0", "stringLiteral": "#ce9178", "customLiteral": "#DCDCAA", "numberLiteral": "#b5cea8" }, "colors": { "editor.background": "#1E1E1E", "editor.foreground": "#D4D4D4", "editor.inactiveSelectionBackground": "#3A3D41", "editorIndentGuide.background": "#404040", "editorIndentGuide.activeBackground": "#707070", "editor.selectionHighlightBackground": "#ADD6FF26", "list.dropBackground": "#383B3D", "activityBarBadge.background": "#007ACC", "sideBarTitle.foreground": "#BBBBBB", "input.placeholderForeground": "#A6A6A6", "menu.background": "#303031", "menu.foreground": "#CCCCCC", "statusBarItem.remoteForeground": "#FFF", "statusBarItem.remoteBackground": "#16825D", "ports.iconRunningProcessForeground": "#369432", "sideBarSectionHeader.background": "#0000", "sideBarSectionHeader.border": "#ccc3", "tab.lastPinnedBorder": "#ccc3", "list.activeSelectionIconForeground": "#FFF" } } ================================================ FILE: apps/web/src/lib/shiki/themes/dracula-soft.json ================================================ { "$schema": "vscode://schemas/color-theme", "name": "dracula-soft", "author": "Zeno Rocha", "maintainers": ["Derek P Sifford "], "semanticClass": "theme.dracula", "semanticHighlighting": true, "dracula": { "base": [ "#282A36", "#F8F8F2", "#44475A", "#6272A4", "#8BE9FD", "#50FA7B", "#FFB86C", "#FF79C6", "#BD93F9", "#FF5555", "#F1FA8C" ], "ansi": [ "#21222C", "#FF5555", "#50FA7B", "#F1FA8C", "#BD93F9", "#FF79C6", "#8BE9FD", "#F8F8F2", "#6272A4", "#FF6E6E", "#69FF94", "#FFFFA5", "#D6ACFF", "#FF92DF", "#A4FFFF", "#FFFFFF" ], "brightOther": ["#E9F284", "#8BE9FE"], "other": [ "#44475A75", "#FFFFFF1A", "#FFFFFF", "#44475A70", "#424450", "#343746", "#21222C", "#191A21" ] }, "colors": { "terminal.background": "#282A36", "terminal.foreground": "#f6f6f4", "terminal.ansiBrightBlack": "#7b7f8b", "terminal.ansiBrightRed": "#f07c7c", "terminal.ansiBrightGreen": "#78f09a", "terminal.ansiBrightYellow": "#f6f6ae", "terminal.ansiBrightBlue": "#d6b4f7", "terminal.ansiBrightMagenta": "#f49dda", "terminal.ansiBrightCyan": "#adf6f6", "terminal.ansiBrightWhite": "#ffffff", "terminal.ansiBlack": "#262626", "terminal.ansiRed": "#ee6666", "terminal.ansiGreen": "#62e884", "terminal.ansiYellow": "#e7ee98", "terminal.ansiBlue": "#bf9eee", "terminal.ansiMagenta": "#f286c4", "terminal.ansiCyan": "#97e1f1", "terminal.ansiWhite": "#f6f6f4", "focusBorder": "#7b7f8b", "foreground": "#f6f6f4", "selection.background": "#bf9eee", "errorForeground": "#ee6666", "button.background": "#44475A", "button.foreground": "#f6f6f4", "button.secondaryBackground": "#282A36", "button.secondaryForeground": "#f6f6f4", "button.secondaryHoverBackground": "#343746", "dropdown.background": "#343746", "dropdown.border": "#191A21", "dropdown.foreground": "#f6f6f4", "input.background": "#282A36", "input.foreground": "#f6f6f4", "input.border": "#191A21", "input.placeholderForeground": "#7b7f8b", "inputOption.activeBorder": "#bf9eee", "inputValidation.infoBorder": "#f286c4", "inputValidation.warningBorder": "#FFB86C", "inputValidation.errorBorder": "#ee6666", "badge.foreground": "#f6f6f4", "badge.background": "#44475A", "progressBar.background": "#f286c4", "list.activeSelectionBackground": "#44475A", "list.activeSelectionForeground": "#f6f6f4", "list.dropBackground": "#44475A", "list.focusBackground": "#44475A75", "list.highlightForeground": "#97e1f1", "list.hoverBackground": "#44475A75", "list.inactiveSelectionBackground": "#44475A75", "list.warningForeground": "#FFB86C", "list.errorForeground": "#ee6666", "activityBar.background": "#343746", "activityBar.inactiveForeground": "#7b7f8b", "activityBar.foreground": "#f6f6f4", "activityBar.activeBorder": "#FF79C680", "activityBar.activeBackground": "#BD93F910", "activityBarBadge.background": "#f286c4", "activityBarBadge.foreground": "#f6f6f4", "sideBar.background": "#262626", "sideBarTitle.foreground": "#f6f6f4", "sideBarSectionHeader.background": "#282A36", "sideBarSectionHeader.border": "#191A21", "editorGroup.border": "#bf9eee", "editorGroup.dropBackground": "#44475A70", "editorGroupHeader.tabsBackground": "#191A21", "tab.activeBackground": "#282A36", "tab.activeForeground": "#f6f6f4", "tab.border": "#191A21", "tab.activeBorderTop": "#FF79C680", "tab.inactiveBackground": "#262626", "tab.inactiveForeground": "#7b7f8b", "editor.foreground": "#f6f6f4", "editor.background": "#282A36", "editorLineNumber.foreground": "#7b7f8b", "editor.selectionBackground": "#44475A", "editor.selectionHighlightBackground": "#424450", "editor.foldBackground": "#21222C80", "editor.wordHighlightBackground": "#8BE9FD50", "editor.wordHighlightStrongBackground": "#50FA7B50", "editor.findMatchBackground": "#FFB86C80", "editor.findMatchHighlightBackground": "#FFFFFF40", "editor.findRangeHighlightBackground": "#44475A75", "editor.hoverHighlightBackground": "#8BE9FD50", "editor.lineHighlightBorder": "#44475A", "editorLink.activeForeground": "#97e1f1", "editor.rangeHighlightBackground": "#BD93F915", "editor.snippetTabstopHighlightBackground": "#282A36", "editor.snippetTabstopHighlightBorder": "#7b7f8b", "editor.snippetFinalTabstopHighlightBackground": "#282A36", "editor.snippetFinalTabstopHighlightBorder": "#62e884", "editorWhitespace.foreground": "#FFFFFF1A", "editorIndentGuide.background": "#FFFFFF1A", "editorIndentGuide.activeBackground": "#FFFFFF45", "editorRuler.foreground": "#FFFFFF1A", "editorCodeLens.foreground": "#7b7f8b", "editorBracketHighlight.foreground1": "#f6f6f4", "editorBracketHighlight.foreground2": "#f286c4", "editorBracketHighlight.foreground3": "#97e1f1", "editorBracketHighlight.foreground4": "#62e884", "editorBracketHighlight.foreground5": "#bf9eee", "editorBracketHighlight.foreground6": "#FFB86C", "editorBracketHighlight.unexpectedBracket.foreground": "#ee6666", "editorOverviewRuler.border": "#191A21", "editorOverviewRuler.selectionHighlightForeground": "#FFB86C", "editorOverviewRuler.wordHighlightForeground": "#97e1f1", "editorOverviewRuler.wordHighlightStrongForeground": "#62e884", "editorOverviewRuler.modifiedForeground": "#8BE9FD80", "editorOverviewRuler.addedForeground": "#50FA7B80", "editorOverviewRuler.deletedForeground": "#FF555580", "editorOverviewRuler.errorForeground": "#FF555580", "editorOverviewRuler.warningForeground": "#FFB86C80", "editorOverviewRuler.infoForeground": "#8BE9FD80", "editorError.foreground": "#ee6666", "editorWarning.foreground": "#97e1f1", "editorGutter.modifiedBackground": "#8BE9FD80", "editorGutter.addedBackground": "#50FA7B80", "editorGutter.deletedBackground": "#FF555580", "gitDecoration.modifiedResourceForeground": "#97e1f1", "gitDecoration.deletedResourceForeground": "#ee6666", "gitDecoration.untrackedResourceForeground": "#62e884", "gitDecoration.ignoredResourceForeground": "#7b7f8b", "gitDecoration.conflictingResourceForeground": "#FFB86C", "diffEditor.insertedTextBackground": "#50FA7B20", "diffEditor.removedTextBackground": "#FF555550", "editorWidget.background": "#262626", "editorSuggestWidget.background": "#262626", "editorSuggestWidget.foreground": "#f6f6f4", "editorSuggestWidget.selectedBackground": "#44475A", "editorHoverWidget.background": "#282A36", "editorHoverWidget.border": "#7b7f8b", "editorMarkerNavigation.background": "#262626", "peekView.border": "#44475A", "peekViewEditor.background": "#282A36", "peekViewEditor.matchHighlightBackground": "#F1FA8C80", "peekViewResult.background": "#262626", "peekViewResult.fileForeground": "#f6f6f4", "peekViewResult.lineForeground": "#f6f6f4", "peekViewResult.matchHighlightBackground": "#F1FA8C80", "peekViewResult.selectionBackground": "#44475A", "peekViewResult.selectionForeground": "#f6f6f4", "peekViewTitle.background": "#191A21", "peekViewTitleDescription.foreground": "#7b7f8b", "peekViewTitleLabel.foreground": "#f6f6f4", "merge.currentHeaderBackground": "#50FA7B90", "merge.incomingHeaderBackground": "#BD93F990", "editorOverviewRuler.currentContentForeground": "#62e884", "editorOverviewRuler.incomingContentForeground": "#bf9eee", "panel.background": "#282A36", "panel.border": "#bf9eee", "panelTitle.activeBorder": "#f286c4", "panelTitle.activeForeground": "#f6f6f4", "panelTitle.inactiveForeground": "#7b7f8b", "statusBar.background": "#191A21", "statusBar.foreground": "#f6f6f4", "statusBar.debuggingBackground": "#ee6666", "statusBar.debuggingForeground": "#191A21", "statusBar.noFolderBackground": "#191A21", "statusBar.noFolderForeground": "#f6f6f4", "statusBarItem.prominentBackground": "#ee6666", "statusBarItem.prominentHoverBackground": "#FFB86C", "statusBarItem.remoteForeground": "#282A36", "statusBarItem.remoteBackground": "#bf9eee", "titleBar.activeBackground": "#262626", "titleBar.activeForeground": "#f6f6f4", "titleBar.inactiveBackground": "#191A21", "titleBar.inactiveForeground": "#7b7f8b", "extensionButton.prominentForeground": "#f6f6f4", "extensionButton.prominentBackground": "#50FA7B90", "extensionButton.prominentHoverBackground": "#50FA7B60", "pickerGroup.border": "#bf9eee", "pickerGroup.foreground": "#97e1f1", "debugToolBar.background": "#262626", "walkThrough.embeddedEditorBackground": "#262626", "settings.headerForeground": "#f6f6f4", "settings.modifiedItemIndicator": "#FFB86C", "settings.dropdownBackground": "#262626", "settings.dropdownForeground": "#f6f6f4", "settings.dropdownBorder": "#191A21", "settings.checkboxBackground": "#262626", "settings.checkboxForeground": "#f6f6f4", "settings.checkboxBorder": "#191A21", "settings.textInputBackground": "#262626", "settings.textInputForeground": "#f6f6f4", "settings.textInputBorder": "#191A21", "settings.numberInputBackground": "#262626", "settings.numberInputForeground": "#f6f6f4", "settings.numberInputBorder": "#191A21", "breadcrumb.foreground": "#7b7f8b", "breadcrumb.background": "#282A36", "breadcrumb.focusForeground": "#f6f6f4", "breadcrumb.activeSelectionForeground": "#f6f6f4", "breadcrumbPicker.background": "#191A21", "listFilterWidget.background": "#343746", "listFilterWidget.outline": "#424450", "listFilterWidget.noMatchesOutline": "#ee6666" }, "tokenColors": [ { "scope": ["emphasis"], "settings": { "fontStyle": "italic" } }, { "scope": ["strong"], "settings": { "fontStyle": "bold" } }, { "scope": ["header"], "settings": { "foreground": "#bf9eee" } }, { "scope": ["meta.diff", "meta.diff.header"], "settings": { "foreground": "#7b7f8b" } }, { "scope": ["markup.inserted"], "settings": { "foreground": "#62e884" } }, { "scope": ["markup.deleted"], "settings": { "foreground": "#ee6666" } }, { "scope": ["markup.changed"], "settings": { "foreground": "#FFB86C" } }, { "scope": ["invalid"], "settings": { "foreground": "#ee6666", "fontStyle": "underline italic" } }, { "scope": ["invalid.deprecated"], "settings": { "foreground": "#f6f6f4", "fontStyle": "underline italic" } }, { "scope": ["entity.name.filename"], "settings": { "foreground": "#e7ee98" } }, { "scope": ["markup.error"], "settings": { "foreground": "#ee6666" } }, { "name": "Underlined markup", "scope": ["markup.underline"], "settings": { "fontStyle": "underline" } }, { "name": "Bold markup", "scope": ["markup.bold"], "settings": { "fontStyle": "bold", "foreground": "#FFB86C" } }, { "name": "Markup headings", "scope": ["markup.heading"], "settings": { "fontStyle": "bold", "foreground": "#bf9eee" } }, { "name": "Markup italic", "scope": ["markup.italic"], "settings": { "foreground": "#e7ee98", "fontStyle": "italic" } }, { "name": "Bullets, lists (prose)", "scope": [ "beginning.punctuation.definition.list.markdown", "beginning.punctuation.definition.quote.markdown", "punctuation.definition.link.restructuredtext" ], "settings": { "foreground": "#97e1f1" } }, { "name": "Inline code (prose)", "scope": ["markup.inline.raw", "markup.raw.restructuredtext"], "settings": { "foreground": "#62e884" } }, { "name": "Links (prose)", "scope": ["markup.underline.link", "markup.underline.link.image"], "settings": { "foreground": "#97e1f1" } }, { "name": "Link text, image alt text (prose)", "scope": [ "meta.link.reference.def.restructuredtext", "punctuation.definition.directive.restructuredtext", "string.other.link.description", "string.other.link.title" ], "settings": { "foreground": "#f286c4" } }, { "name": "Blockquotes (prose)", "scope": ["entity.name.directive.restructuredtext", "markup.quote"], "settings": { "foreground": "#e7ee98", "fontStyle": "italic" } }, { "name": "Horizontal rule (prose)", "scope": ["meta.separator.markdown"], "settings": { "foreground": "#7b7f8b" } }, { "name": "Code blocks", "scope": [ "fenced_code.block.language", "markup.raw.inner.restructuredtext", "markup.fenced_code.block.markdown punctuation.definition.markdown" ], "settings": { "foreground": "#62e884" } }, { "name": "Prose constants", "scope": ["punctuation.definition.constant.restructuredtext"], "settings": { "foreground": "#bf9eee" } }, { "name": "Braces in markdown headings", "scope": [ "markup.heading.markdown punctuation.definition.string.begin", "markup.heading.markdown punctuation.definition.string.end" ], "settings": { "foreground": "#bf9eee" } }, { "name": "Braces in markdown paragraphs", "scope": [ "meta.paragraph.markdown punctuation.definition.string.begin", "meta.paragraph.markdown punctuation.definition.string.end" ], "settings": { "foreground": "#f6f6f4" } }, { "name": "Braces in markdown blockquotes", "scope": [ "markup.quote.markdown meta.paragraph.markdown punctuation.definition.string.begin", "markup.quote.markdown meta.paragraph.markdown punctuation.definition.string.end" ], "settings": { "foreground": "#e7ee98" } }, { "name": "User-defined class names", "scope": ["entity.name.type.class", "entity.name.class"], "settings": { "foreground": "#97e1f1", "fontStyle": "normal" } }, { "name": "this, super, self, etc.", "scope": [ "keyword.expressions-and-types.swift", "keyword.other.this", "variable.language", "variable.language punctuation.definition.variable.php", "variable.other.readwrite.instance.ruby", "variable.parameter.function.language.special" ], "settings": { "foreground": "#bf9eee", "fontStyle": "italic" } }, { "name": "Inherited classes", "scope": ["entity.other.inherited-class"], "settings": { "fontStyle": "italic", "foreground": "#97e1f1" } }, { "name": "Comments", "scope": [ "comment", "punctuation.definition.comment", "unused.comment", "wildcard.comment" ], "settings": { "foreground": "#7b7f8b" } }, { "name": "JSDoc-style keywords", "scope": [ "comment keyword.codetag.notation", "comment.block.documentation keyword", "comment.block.documentation storage.type.class" ], "settings": { "foreground": "#f286c4" } }, { "name": "JSDoc-style types", "scope": ["comment.block.documentation entity.name.type"], "settings": { "foreground": "#97e1f1", "fontStyle": "italic" } }, { "name": "JSDoc-style type brackets", "scope": [ "comment.block.documentation entity.name.type punctuation.definition.bracket" ], "settings": { "foreground": "#97e1f1" } }, { "name": "JSDoc-style comment parameters", "scope": ["comment.block.documentation variable"], "settings": { "foreground": "#FFB86C", "fontStyle": "italic" } }, { "name": "Constants", "scope": ["constant", "variable.other.constant"], "settings": { "foreground": "#bf9eee" } }, { "name": "Constant escape sequences", "scope": [ "constant.character.escape", "constant.character.string.escape", "constant.regexp" ], "settings": { "foreground": "#f286c4" } }, { "name": "HTML tags", "scope": ["entity.name.tag"], "settings": { "foreground": "#f286c4" } }, { "name": "CSS attribute parent selectors ('&')", "scope": ["entity.other.attribute-name.parent-selector"], "settings": { "foreground": "#f286c4" } }, { "name": "HTML/CSS attribute names", "scope": ["entity.other.attribute-name"], "settings": { "foreground": "#62e884", "fontStyle": "italic" } }, { "name": "Function names", "scope": [ "entity.name.function", "meta.function-call.object", "meta.function-call.php", "meta.function-call.static", "meta.method-call.java meta.method", "meta.method.groovy", "support.function.any-method.lua", "keyword.operator.function.infix" ], "settings": { "foreground": "#62e884" } }, { "name": "Function parameters", "scope": [ "entity.name.variable.parameter", "meta.at-rule.function variable", "meta.at-rule.mixin variable", "meta.function.arguments variable.other.php", "meta.selectionset.graphql meta.arguments.graphql variable.arguments.graphql", "variable.parameter" ], "settings": { "fontStyle": "italic", "foreground": "#FFB86C" } }, { "name": "Decorators", "scope": [ "meta.decorator variable.other.readwrite", "meta.decorator variable.other.property" ], "settings": { "foreground": "#62e884", "fontStyle": "italic" } }, { "name": "Decorator Objects", "scope": ["meta.decorator variable.other.object"], "settings": { "foreground": "#62e884" } }, { "name": "Keywords", "scope": ["keyword", "punctuation.definition.keyword"], "settings": { "foreground": "#f286c4" } }, { "name": "Keyword \"new\"", "scope": ["keyword.control.new", "keyword.operator.new"], "settings": { "fontStyle": "bold" } }, { "name": "Generic selectors (CSS/SCSS/Less/Stylus)", "scope": ["meta.selector"], "settings": { "foreground": "#f286c4" } }, { "name": "Language Built-ins", "scope": ["support"], "settings": { "fontStyle": "italic", "foreground": "#97e1f1" } }, { "name": "Built-in magic functions and constants", "scope": [ "support.function.magic", "support.variable", "variable.other.predefined" ], "settings": { "fontStyle": "regular", "foreground": "#bf9eee" } }, { "name": "Built-in functions / properties", "scope": ["support.function", "support.type.property-name"], "settings": { "fontStyle": "regular" } }, { "name": "Separators (key/value, namespace, inheritance, pointer, hash, slice, etc)", "scope": [ "constant.other.symbol.hashkey punctuation.definition.constant.ruby", "entity.other.attribute-name.placeholder punctuation", "entity.other.attribute-name.pseudo-class punctuation", "entity.other.attribute-name.pseudo-element punctuation", "meta.group.double.toml", "meta.group.toml", "meta.object-binding-pattern-variable punctuation.destructuring", "punctuation.colon.graphql", "punctuation.definition.block.scalar.folded.yaml", "punctuation.definition.block.scalar.literal.yaml", "punctuation.definition.block.sequence.item.yaml", "punctuation.definition.entity.other.inherited-class", "punctuation.function.swift", "punctuation.separator.dictionary.key-value", "punctuation.separator.hash", "punctuation.separator.inheritance", "punctuation.separator.key-value", "punctuation.separator.key-value.mapping.yaml", "punctuation.separator.namespace", "punctuation.separator.pointer-access", "punctuation.separator.slice", "string.unquoted.heredoc punctuation.definition.string", "support.other.chomping-indicator.yaml", "punctuation.separator.annotation" ], "settings": { "foreground": "#f286c4" } }, { "name": "Brackets, braces, parens, etc.", "scope": [ "keyword.operator.other.powershell", "keyword.other.statement-separator.powershell", "meta.brace.round", "meta.function-call punctuation", "punctuation.definition.arguments.begin", "punctuation.definition.arguments.end", "punctuation.definition.entity.begin", "punctuation.definition.entity.end", "punctuation.definition.tag.cs", "punctuation.definition.type.begin", "punctuation.definition.type.end", "punctuation.section.scope.begin", "punctuation.section.scope.end", "punctuation.terminator.expression.php", "storage.type.generic.java", "string.template meta.brace", "string.template punctuation.accessor" ], "settings": { "foreground": "#f6f6f4" } }, { "name": "Variable interpolation operators", "scope": [ "meta.string-contents.quoted.double punctuation.definition.variable", "punctuation.definition.interpolation.begin", "punctuation.definition.interpolation.end", "punctuation.definition.template-expression.begin", "punctuation.definition.template-expression.end", "punctuation.section.embedded.begin", "punctuation.section.embedded.coffee", "punctuation.section.embedded.end", "punctuation.section.embedded.end source.php", "punctuation.section.embedded.end source.ruby", "punctuation.definition.variable.makefile" ], "settings": { "foreground": "#f286c4" } }, { "name": "Keys (serializable languages)", "scope": [ "entity.name.function.target.makefile", "entity.name.section.toml", "entity.name.tag.yaml", "variable.other.key.toml" ], "settings": { "foreground": "#97e1f1" } }, { "name": "Dates / timestamps (serializable languages)", "scope": ["constant.other.date", "constant.other.timestamp"], "settings": { "foreground": "#FFB86C" } }, { "name": "YAML aliases", "scope": ["variable.other.alias.yaml"], "settings": { "fontStyle": "italic underline", "foreground": "#62e884" } }, { "name": "Storage", "scope": [ "storage", "meta.implementation storage.type.objc", "meta.interface-or-protocol storage.type.objc", "source.groovy storage.type.def" ], "settings": { "fontStyle": "regular", "foreground": "#f286c4" } }, { "name": "Types", "scope": [ "entity.name.type", "keyword.primitive-datatypes.swift", "keyword.type.cs", "meta.protocol-list.objc", "meta.return-type.objc", "source.go storage.type", "source.groovy storage.type", "source.java storage.type", "source.powershell entity.other.attribute-name", "storage.class.std.rust", "storage.type.attribute.swift", "storage.type.c", "storage.type.core.rust", "storage.type.cs", "storage.type.groovy", "storage.type.objc", "storage.type.php", "storage.type.haskell", "storage.type.ocaml" ], "settings": { "fontStyle": "italic", "foreground": "#97e1f1" } }, { "name": "Generics, templates, and mapped type declarations", "scope": [ "entity.name.type.type-parameter", "meta.indexer.mappedtype.declaration entity.name.type", "meta.type.parameters entity.name.type" ], "settings": { "foreground": "#FFB86C" } }, { "name": "Modifiers", "scope": ["storage.modifier"], "settings": { "foreground": "#f286c4" } }, { "name": "RegExp string", "scope": [ "string.regexp", "constant.other.character-class.set.regexp", "constant.character.escape.backslash.regexp" ], "settings": { "foreground": "#e7ee98" } }, { "name": "Non-capture operators", "scope": ["punctuation.definition.group.capture.regexp"], "settings": { "foreground": "#f286c4" } }, { "name": "RegExp start and end characters", "scope": [ "string.regexp punctuation.definition.string.begin", "string.regexp punctuation.definition.string.end" ], "settings": { "foreground": "#ee6666" } }, { "name": "Character group", "scope": ["punctuation.definition.character-class.regexp"], "settings": { "foreground": "#97e1f1" } }, { "name": "Capture groups", "scope": ["punctuation.definition.group.regexp"], "settings": { "foreground": "#FFB86C" } }, { "name": "Assertion operators", "scope": [ "punctuation.definition.group.assertion.regexp", "keyword.operator.negation.regexp" ], "settings": { "foreground": "#ee6666" } }, { "name": "Positive lookaheads", "scope": ["meta.assertion.look-ahead.regexp"], "settings": { "foreground": "#62e884" } }, { "name": "Strings", "scope": ["string"], "settings": { "foreground": "#e7ee98" } }, { "name": "String quotes (temporary vscode fix)", "scope": [ "punctuation.definition.string.begin", "punctuation.definition.string.end" ], "settings": { "foreground": "#dee492" } }, { "name": "Property quotes (temporary vscode fix)", "scope": [ "punctuation.support.type.property-name.begin", "punctuation.support.type.property-name.end" ], "settings": { "foreground": "#97e2f2" } }, { "name": "Docstrings", "scope": [ "string.quoted.docstring.multi", "string.quoted.docstring.multi.python punctuation.definition.string.begin", "string.quoted.docstring.multi.python punctuation.definition.string.end", "string.quoted.docstring.multi.python constant.character.escape" ], "settings": { "foreground": "#7b7f8b" } }, { "name": "Variables and object properties", "scope": [ "variable", "constant.other.key.perl", "support.variable.property", "variable.other.constant.js", "variable.other.constant.ts", "variable.other.constant.tsx" ], "settings": { "foreground": "#f6f6f4" } }, { "name": "Destructuring / aliasing reference name (LHS)", "scope": [ "meta.import variable.other.readwrite", "meta.variable.assignment.destructured.object.coffee variable" ], "settings": { "fontStyle": "italic", "foreground": "#FFB86C" } }, { "name": "Destructuring / aliasing variable name (RHS)", "scope": [ "meta.import variable.other.readwrite.alias", "meta.export variable.other.readwrite.alias", "meta.variable.assignment.destructured.object.coffee variable variable" ], "settings": { "fontStyle": "normal", "foreground": "#f6f6f4" } }, { "name": "GraphQL keys", "scope": ["meta.selectionset.graphql variable"], "settings": { "foreground": "#e7ee98" } }, { "name": "GraphQL function arguments", "scope": ["meta.selectionset.graphql meta.arguments variable"], "settings": { "foreground": "#f6f6f4" } }, { "name": "GraphQL fragment name (definition)", "scope": ["entity.name.fragment.graphql", "variable.fragment.graphql"], "settings": { "foreground": "#97e1f1" } }, { "name": "Edge cases (foreground color resets)", "scope": [ "constant.other.symbol.hashkey.ruby", "keyword.operator.dereference.java", "keyword.operator.navigation.groovy", "meta.scope.for-loop.shell punctuation.definition.string.begin", "meta.scope.for-loop.shell punctuation.definition.string.end", "meta.scope.for-loop.shell string", "storage.modifier.import", "punctuation.section.embedded.begin.tsx", "punctuation.section.embedded.end.tsx", "punctuation.section.embedded.begin.jsx", "punctuation.section.embedded.end.jsx", "punctuation.separator.list.comma.css", "constant.language.empty-list.haskell" ], "settings": { "foreground": "#f6f6f4" } }, { "name": "Shell variables prefixed with \"$\" (edge case)", "scope": ["source.shell variable.other"], "settings": { "foreground": "#bf9eee" } }, { "name": "Powershell constants mistakenly scoped to `support`, rather than `constant` (edge)", "scope": ["support.constant"], "settings": { "fontStyle": "normal", "foreground": "#bf9eee" } }, { "name": "Makefile prerequisite names", "scope": ["meta.scope.prerequisites.makefile"], "settings": { "foreground": "#e7ee98" } }, { "name": "SCSS attibute selector strings", "scope": ["meta.attribute-selector.scss"], "settings": { "foreground": "#e7ee98" } }, { "name": "SCSS attribute selector brackets", "scope": [ "punctuation.definition.attribute-selector.end.bracket.square.scss", "punctuation.definition.attribute-selector.begin.bracket.square.scss" ], "settings": { "foreground": "#f6f6f4" } }, { "name": "Haskell Pragmas", "scope": ["meta.preprocessor.haskell"], "settings": { "foreground": "#7b7f8b" } }, { "name": "Log file error", "scope": ["log.error"], "settings": { "foreground": "#ee6666", "fontStyle": "bold" } }, { "name": "Log file warning", "scope": ["log.warning"], "settings": { "foreground": "#e7ee98", "fontStyle": "bold" } } ] } ================================================ FILE: apps/web/src/lib/shiki/themes/dracula.json ================================================ { "$schema": "vscode://schemas/color-theme", "name": "dracula", "author": "Zeno Rocha", "maintainers": ["Derek P Sifford "], "semanticClass": "theme.dracula", "semanticHighlighting": true, "dracula": { "base": [ "#282A36", "#F8F8F2", "#44475A", "#6272A4", "#8BE9FD", "#50FA7B", "#FFB86C", "#FF79C6", "#BD93F9", "#FF5555", "#F1FA8C" ], "ansi": [ "#21222C", "#FF5555", "#50FA7B", "#F1FA8C", "#BD93F9", "#FF79C6", "#8BE9FD", "#F8F8F2", "#6272A4", "#FF6E6E", "#69FF94", "#FFFFA5", "#D6ACFF", "#FF92DF", "#A4FFFF", "#FFFFFF" ], "brightOther": ["#E9F284", "#8BE9FE"], "other": [ "#44475A75", "#FFFFFF1A", "#FFFFFF", "#44475A70", "#424450", "#343746", "#21222C", "#191A21" ] }, "colors": { "terminal.background": "#282A36", "terminal.foreground": "#F8F8F2", "terminal.ansiBrightBlack": "#6272A4", "terminal.ansiBrightRed": "#FF6E6E", "terminal.ansiBrightGreen": "#69FF94", "terminal.ansiBrightYellow": "#FFFFA5", "terminal.ansiBrightBlue": "#D6ACFF", "terminal.ansiBrightMagenta": "#FF92DF", "terminal.ansiBrightCyan": "#A4FFFF", "terminal.ansiBrightWhite": "#FFFFFF", "terminal.ansiBlack": "#21222C", "terminal.ansiRed": "#FF5555", "terminal.ansiGreen": "#50FA7B", "terminal.ansiYellow": "#F1FA8C", "terminal.ansiBlue": "#BD93F9", "terminal.ansiMagenta": "#FF79C6", "terminal.ansiCyan": "#8BE9FD", "terminal.ansiWhite": "#F8F8F2", "focusBorder": "#6272A4", "foreground": "#F8F8F2", "selection.background": "#BD93F9", "errorForeground": "#FF5555", "button.background": "#44475A", "button.foreground": "#F8F8F2", "button.secondaryBackground": "#282A36", "button.secondaryForeground": "#F8F8F2", "button.secondaryHoverBackground": "#343746", "dropdown.background": "#343746", "dropdown.border": "#191A21", "dropdown.foreground": "#F8F8F2", "input.background": "#282A36", "input.foreground": "#F8F8F2", "input.border": "#191A21", "input.placeholderForeground": "#6272A4", "inputOption.activeBorder": "#BD93F9", "inputValidation.infoBorder": "#FF79C6", "inputValidation.warningBorder": "#FFB86C", "inputValidation.errorBorder": "#FF5555", "badge.foreground": "#F8F8F2", "badge.background": "#44475A", "progressBar.background": "#FF79C6", "list.activeSelectionBackground": "#44475A", "list.activeSelectionForeground": "#F8F8F2", "list.dropBackground": "#44475A", "list.focusBackground": "#44475A75", "list.highlightForeground": "#8BE9FD", "list.hoverBackground": "#44475A75", "list.inactiveSelectionBackground": "#44475A75", "list.warningForeground": "#FFB86C", "list.errorForeground": "#FF5555", "activityBar.background": "#343746", "activityBar.inactiveForeground": "#6272A4", "activityBar.foreground": "#F8F8F2", "activityBar.activeBorder": "#FF79C680", "activityBar.activeBackground": "#BD93F910", "activityBarBadge.background": "#FF79C6", "activityBarBadge.foreground": "#F8F8F2", "sideBar.background": "#21222C", "sideBarTitle.foreground": "#F8F8F2", "sideBarSectionHeader.background": "#282A36", "sideBarSectionHeader.border": "#191A21", "editorGroup.border": "#BD93F9", "editorGroup.dropBackground": "#44475A70", "editorGroupHeader.tabsBackground": "#191A21", "tab.activeBackground": "#282A36", "tab.activeForeground": "#F8F8F2", "tab.border": "#191A21", "tab.activeBorderTop": "#FF79C680", "tab.inactiveBackground": "#21222C", "tab.inactiveForeground": "#6272A4", "editor.foreground": "#F8F8F2", "editor.background": "#282A36", "editorLineNumber.foreground": "#6272A4", "editor.selectionBackground": "#44475A", "editor.selectionHighlightBackground": "#424450", "editor.foldBackground": "#21222C80", "editor.wordHighlightBackground": "#8BE9FD50", "editor.wordHighlightStrongBackground": "#50FA7B50", "editor.findMatchBackground": "#FFB86C80", "editor.findMatchHighlightBackground": "#FFFFFF40", "editor.findRangeHighlightBackground": "#44475A75", "editor.hoverHighlightBackground": "#8BE9FD50", "editor.lineHighlightBorder": "#44475A", "editorLink.activeForeground": "#8BE9FD", "editor.rangeHighlightBackground": "#BD93F915", "editor.snippetTabstopHighlightBackground": "#282A36", "editor.snippetTabstopHighlightBorder": "#6272A4", "editor.snippetFinalTabstopHighlightBackground": "#282A36", "editor.snippetFinalTabstopHighlightBorder": "#50FA7B", "editorWhitespace.foreground": "#FFFFFF1A", "editorIndentGuide.background": "#FFFFFF1A", "editorIndentGuide.activeBackground": "#FFFFFF45", "editorRuler.foreground": "#FFFFFF1A", "editorCodeLens.foreground": "#6272A4", "editorBracketHighlight.foreground1": "#F8F8F2", "editorBracketHighlight.foreground2": "#FF79C6", "editorBracketHighlight.foreground3": "#8BE9FD", "editorBracketHighlight.foreground4": "#50FA7B", "editorBracketHighlight.foreground5": "#BD93F9", "editorBracketHighlight.foreground6": "#FFB86C", "editorBracketHighlight.unexpectedBracket.foreground": "#FF5555", "editorOverviewRuler.border": "#191A21", "editorOverviewRuler.selectionHighlightForeground": "#FFB86C", "editorOverviewRuler.wordHighlightForeground": "#8BE9FD", "editorOverviewRuler.wordHighlightStrongForeground": "#50FA7B", "editorOverviewRuler.modifiedForeground": "#8BE9FD80", "editorOverviewRuler.addedForeground": "#50FA7B80", "editorOverviewRuler.deletedForeground": "#FF555580", "editorOverviewRuler.errorForeground": "#FF555580", "editorOverviewRuler.warningForeground": "#FFB86C80", "editorOverviewRuler.infoForeground": "#8BE9FD80", "editorError.foreground": "#FF5555", "editorWarning.foreground": "#8BE9FD", "editorGutter.modifiedBackground": "#8BE9FD80", "editorGutter.addedBackground": "#50FA7B80", "editorGutter.deletedBackground": "#FF555580", "gitDecoration.modifiedResourceForeground": "#8BE9FD", "gitDecoration.deletedResourceForeground": "#FF5555", "gitDecoration.untrackedResourceForeground": "#50FA7B", "gitDecoration.ignoredResourceForeground": "#6272A4", "gitDecoration.conflictingResourceForeground": "#FFB86C", "diffEditor.insertedTextBackground": "#50FA7B20", "diffEditor.removedTextBackground": "#FF555550", "editorWidget.background": "#21222C", "editorSuggestWidget.background": "#21222C", "editorSuggestWidget.foreground": "#F8F8F2", "editorSuggestWidget.selectedBackground": "#44475A", "editorHoverWidget.background": "#282A36", "editorHoverWidget.border": "#6272A4", "editorMarkerNavigation.background": "#21222C", "peekView.border": "#44475A", "peekViewEditor.background": "#282A36", "peekViewEditor.matchHighlightBackground": "#F1FA8C80", "peekViewResult.background": "#21222C", "peekViewResult.fileForeground": "#F8F8F2", "peekViewResult.lineForeground": "#F8F8F2", "peekViewResult.matchHighlightBackground": "#F1FA8C80", "peekViewResult.selectionBackground": "#44475A", "peekViewResult.selectionForeground": "#F8F8F2", "peekViewTitle.background": "#191A21", "peekViewTitleDescription.foreground": "#6272A4", "peekViewTitleLabel.foreground": "#F8F8F2", "merge.currentHeaderBackground": "#50FA7B90", "merge.incomingHeaderBackground": "#BD93F990", "editorOverviewRuler.currentContentForeground": "#50FA7B", "editorOverviewRuler.incomingContentForeground": "#BD93F9", "panel.background": "#282A36", "panel.border": "#BD93F9", "panelTitle.activeBorder": "#FF79C6", "panelTitle.activeForeground": "#F8F8F2", "panelTitle.inactiveForeground": "#6272A4", "statusBar.background": "#191A21", "statusBar.foreground": "#F8F8F2", "statusBar.debuggingBackground": "#FF5555", "statusBar.debuggingForeground": "#191A21", "statusBar.noFolderBackground": "#191A21", "statusBar.noFolderForeground": "#F8F8F2", "statusBarItem.prominentBackground": "#FF5555", "statusBarItem.prominentHoverBackground": "#FFB86C", "statusBarItem.remoteForeground": "#282A36", "statusBarItem.remoteBackground": "#BD93F9", "titleBar.activeBackground": "#21222C", "titleBar.activeForeground": "#F8F8F2", "titleBar.inactiveBackground": "#191A21", "titleBar.inactiveForeground": "#6272A4", "extensionButton.prominentForeground": "#F8F8F2", "extensionButton.prominentBackground": "#50FA7B90", "extensionButton.prominentHoverBackground": "#50FA7B60", "pickerGroup.border": "#BD93F9", "pickerGroup.foreground": "#8BE9FD", "debugToolBar.background": "#21222C", "walkThrough.embeddedEditorBackground": "#21222C", "settings.headerForeground": "#F8F8F2", "settings.modifiedItemIndicator": "#FFB86C", "settings.dropdownBackground": "#21222C", "settings.dropdownForeground": "#F8F8F2", "settings.dropdownBorder": "#191A21", "settings.checkboxBackground": "#21222C", "settings.checkboxForeground": "#F8F8F2", "settings.checkboxBorder": "#191A21", "settings.textInputBackground": "#21222C", "settings.textInputForeground": "#F8F8F2", "settings.textInputBorder": "#191A21", "settings.numberInputBackground": "#21222C", "settings.numberInputForeground": "#F8F8F2", "settings.numberInputBorder": "#191A21", "breadcrumb.foreground": "#6272A4", "breadcrumb.background": "#282A36", "breadcrumb.focusForeground": "#F8F8F2", "breadcrumb.activeSelectionForeground": "#F8F8F2", "breadcrumbPicker.background": "#191A21", "listFilterWidget.background": "#343746", "listFilterWidget.outline": "#424450", "listFilterWidget.noMatchesOutline": "#FF5555" }, "tokenColors": [ { "scope": ["emphasis"], "settings": { "fontStyle": "italic" } }, { "scope": ["strong"], "settings": { "fontStyle": "bold" } }, { "scope": ["header"], "settings": { "foreground": "#BD93F9" } }, { "scope": ["meta.diff", "meta.diff.header"], "settings": { "foreground": "#6272A4" } }, { "scope": ["markup.inserted"], "settings": { "foreground": "#50FA7B" } }, { "scope": ["markup.deleted"], "settings": { "foreground": "#FF5555" } }, { "scope": ["markup.changed"], "settings": { "foreground": "#FFB86C" } }, { "scope": ["invalid"], "settings": { "foreground": "#FF5555", "fontStyle": "underline italic" } }, { "scope": ["invalid.deprecated"], "settings": { "foreground": "#F8F8F2", "fontStyle": "underline italic" } }, { "scope": ["entity.name.filename"], "settings": { "foreground": "#F1FA8C" } }, { "scope": ["markup.error"], "settings": { "foreground": "#FF5555" } }, { "name": "Underlined markup", "scope": ["markup.underline"], "settings": { "fontStyle": "underline" } }, { "name": "Bold markup", "scope": ["markup.bold"], "settings": { "fontStyle": "bold", "foreground": "#FFB86C" } }, { "name": "Markup headings", "scope": ["markup.heading"], "settings": { "fontStyle": "bold", "foreground": "#BD93F9" } }, { "name": "Markup italic", "scope": ["markup.italic"], "settings": { "foreground": "#F1FA8C", "fontStyle": "italic" } }, { "name": "Bullets, lists (prose)", "scope": [ "beginning.punctuation.definition.list.markdown", "beginning.punctuation.definition.quote.markdown", "punctuation.definition.link.restructuredtext" ], "settings": { "foreground": "#8BE9FD" } }, { "name": "Inline code (prose)", "scope": ["markup.inline.raw", "markup.raw.restructuredtext"], "settings": { "foreground": "#50FA7B" } }, { "name": "Links (prose)", "scope": ["markup.underline.link", "markup.underline.link.image"], "settings": { "foreground": "#8BE9FD" } }, { "name": "Link text, image alt text (prose)", "scope": [ "meta.link.reference.def.restructuredtext", "punctuation.definition.directive.restructuredtext", "string.other.link.description", "string.other.link.title" ], "settings": { "foreground": "#FF79C6" } }, { "name": "Blockquotes (prose)", "scope": ["entity.name.directive.restructuredtext", "markup.quote"], "settings": { "foreground": "#F1FA8C", "fontStyle": "italic" } }, { "name": "Horizontal rule (prose)", "scope": ["meta.separator.markdown"], "settings": { "foreground": "#6272A4" } }, { "name": "Code blocks", "scope": [ "fenced_code.block.language", "markup.raw.inner.restructuredtext", "markup.fenced_code.block.markdown punctuation.definition.markdown" ], "settings": { "foreground": "#50FA7B" } }, { "name": "Prose constants", "scope": ["punctuation.definition.constant.restructuredtext"], "settings": { "foreground": "#BD93F9" } }, { "name": "Braces in markdown headings", "scope": [ "markup.heading.markdown punctuation.definition.string.begin", "markup.heading.markdown punctuation.definition.string.end" ], "settings": { "foreground": "#BD93F9" } }, { "name": "Braces in markdown paragraphs", "scope": [ "meta.paragraph.markdown punctuation.definition.string.begin", "meta.paragraph.markdown punctuation.definition.string.end" ], "settings": { "foreground": "#F8F8F2" } }, { "name": "Braces in markdown blockquotes", "scope": [ "markup.quote.markdown meta.paragraph.markdown punctuation.definition.string.begin", "markup.quote.markdown meta.paragraph.markdown punctuation.definition.string.end" ], "settings": { "foreground": "#F1FA8C" } }, { "name": "User-defined class names", "scope": ["entity.name.type.class", "entity.name.class"], "settings": { "foreground": "#8BE9FD", "fontStyle": "normal" } }, { "name": "this, super, self, etc.", "scope": [ "keyword.expressions-and-types.swift", "keyword.other.this", "variable.language", "variable.language punctuation.definition.variable.php", "variable.other.readwrite.instance.ruby", "variable.parameter.function.language.special" ], "settings": { "foreground": "#BD93F9", "fontStyle": "italic" } }, { "name": "Inherited classes", "scope": ["entity.other.inherited-class"], "settings": { "fontStyle": "italic", "foreground": "#8BE9FD" } }, { "name": "Comments", "scope": [ "comment", "punctuation.definition.comment", "unused.comment", "wildcard.comment" ], "settings": { "foreground": "#6272A4" } }, { "name": "JSDoc-style keywords", "scope": [ "comment keyword.codetag.notation", "comment.block.documentation keyword", "comment.block.documentation storage.type.class" ], "settings": { "foreground": "#FF79C6" } }, { "name": "JSDoc-style types", "scope": ["comment.block.documentation entity.name.type"], "settings": { "foreground": "#8BE9FD", "fontStyle": "italic" } }, { "name": "JSDoc-style type brackets", "scope": [ "comment.block.documentation entity.name.type punctuation.definition.bracket" ], "settings": { "foreground": "#8BE9FD" } }, { "name": "JSDoc-style comment parameters", "scope": ["comment.block.documentation variable"], "settings": { "foreground": "#FFB86C", "fontStyle": "italic" } }, { "name": "Constants", "scope": ["constant", "variable.other.constant"], "settings": { "foreground": "#BD93F9" } }, { "name": "Constant escape sequences", "scope": [ "constant.character.escape", "constant.character.string.escape", "constant.regexp" ], "settings": { "foreground": "#FF79C6" } }, { "name": "HTML tags", "scope": ["entity.name.tag"], "settings": { "foreground": "#FF79C6" } }, { "name": "CSS attribute parent selectors ('&')", "scope": ["entity.other.attribute-name.parent-selector"], "settings": { "foreground": "#FF79C6" } }, { "name": "HTML/CSS attribute names", "scope": ["entity.other.attribute-name"], "settings": { "foreground": "#50FA7B", "fontStyle": "italic" } }, { "name": "Function names", "scope": [ "entity.name.function", "meta.function-call.object", "meta.function-call.php", "meta.function-call.static", "meta.method-call.java meta.method", "meta.method.groovy", "support.function.any-method.lua", "keyword.operator.function.infix" ], "settings": { "foreground": "#50FA7B" } }, { "name": "Function parameters", "scope": [ "entity.name.variable.parameter", "meta.at-rule.function variable", "meta.at-rule.mixin variable", "meta.function.arguments variable.other.php", "meta.selectionset.graphql meta.arguments.graphql variable.arguments.graphql", "variable.parameter" ], "settings": { "fontStyle": "italic", "foreground": "#FFB86C" } }, { "name": "Decorators", "scope": [ "meta.decorator variable.other.readwrite", "meta.decorator variable.other.property" ], "settings": { "foreground": "#50FA7B", "fontStyle": "italic" } }, { "name": "Decorator Objects", "scope": ["meta.decorator variable.other.object"], "settings": { "foreground": "#50FA7B" } }, { "name": "Keywords", "scope": ["keyword", "punctuation.definition.keyword"], "settings": { "foreground": "#FF79C6" } }, { "name": "Keyword \"new\"", "scope": ["keyword.control.new", "keyword.operator.new"], "settings": { "fontStyle": "bold" } }, { "name": "Generic selectors (CSS/SCSS/Less/Stylus)", "scope": ["meta.selector"], "settings": { "foreground": "#FF79C6" } }, { "name": "Language Built-ins", "scope": ["support"], "settings": { "fontStyle": "italic", "foreground": "#8BE9FD" } }, { "name": "Built-in magic functions and constants", "scope": [ "support.function.magic", "support.variable", "variable.other.predefined" ], "settings": { "fontStyle": "regular", "foreground": "#BD93F9" } }, { "name": "Built-in functions / properties", "scope": ["support.function", "support.type.property-name"], "settings": { "fontStyle": "regular" } }, { "name": "Separators (key/value, namespace, inheritance, pointer, hash, slice, etc)", "scope": [ "constant.other.symbol.hashkey punctuation.definition.constant.ruby", "entity.other.attribute-name.placeholder punctuation", "entity.other.attribute-name.pseudo-class punctuation", "entity.other.attribute-name.pseudo-element punctuation", "meta.group.double.toml", "meta.group.toml", "meta.object-binding-pattern-variable punctuation.destructuring", "punctuation.colon.graphql", "punctuation.definition.block.scalar.folded.yaml", "punctuation.definition.block.scalar.literal.yaml", "punctuation.definition.block.sequence.item.yaml", "punctuation.definition.entity.other.inherited-class", "punctuation.function.swift", "punctuation.separator.dictionary.key-value", "punctuation.separator.hash", "punctuation.separator.inheritance", "punctuation.separator.key-value", "punctuation.separator.key-value.mapping.yaml", "punctuation.separator.namespace", "punctuation.separator.pointer-access", "punctuation.separator.slice", "string.unquoted.heredoc punctuation.definition.string", "support.other.chomping-indicator.yaml", "punctuation.separator.annotation" ], "settings": { "foreground": "#FF79C6" } }, { "name": "Brackets, braces, parens, etc.", "scope": [ "keyword.operator.other.powershell", "keyword.other.statement-separator.powershell", "meta.brace.round", "meta.function-call punctuation", "punctuation.definition.arguments.begin", "punctuation.definition.arguments.end", "punctuation.definition.entity.begin", "punctuation.definition.entity.end", "punctuation.definition.tag.cs", "punctuation.definition.type.begin", "punctuation.definition.type.end", "punctuation.section.scope.begin", "punctuation.section.scope.end", "punctuation.terminator.expression.php", "storage.type.generic.java", "string.template meta.brace", "string.template punctuation.accessor" ], "settings": { "foreground": "#F8F8F2" } }, { "name": "Variable interpolation operators", "scope": [ "meta.string-contents.quoted.double punctuation.definition.variable", "punctuation.definition.interpolation.begin", "punctuation.definition.interpolation.end", "punctuation.definition.template-expression.begin", "punctuation.definition.template-expression.end", "punctuation.section.embedded.begin", "punctuation.section.embedded.coffee", "punctuation.section.embedded.end", "punctuation.section.embedded.end source.php", "punctuation.section.embedded.end source.ruby", "punctuation.definition.variable.makefile" ], "settings": { "foreground": "#FF79C6" } }, { "name": "Keys (serializable languages)", "scope": [ "entity.name.function.target.makefile", "entity.name.section.toml", "entity.name.tag.yaml", "variable.other.key.toml" ], "settings": { "foreground": "#8BE9FD" } }, { "name": "Dates / timestamps (serializable languages)", "scope": ["constant.other.date", "constant.other.timestamp"], "settings": { "foreground": "#FFB86C" } }, { "name": "YAML aliases", "scope": ["variable.other.alias.yaml"], "settings": { "fontStyle": "italic underline", "foreground": "#50FA7B" } }, { "name": "Storage", "scope": [ "storage", "meta.implementation storage.type.objc", "meta.interface-or-protocol storage.type.objc", "source.groovy storage.type.def" ], "settings": { "fontStyle": "regular", "foreground": "#FF79C6" } }, { "name": "Types", "scope": [ "entity.name.type", "keyword.primitive-datatypes.swift", "keyword.type.cs", "meta.protocol-list.objc", "meta.return-type.objc", "source.go storage.type", "source.groovy storage.type", "source.java storage.type", "source.powershell entity.other.attribute-name", "storage.class.std.rust", "storage.type.attribute.swift", "storage.type.c", "storage.type.core.rust", "storage.type.cs", "storage.type.groovy", "storage.type.objc", "storage.type.php", "storage.type.haskell", "storage.type.ocaml" ], "settings": { "fontStyle": "italic", "foreground": "#8BE9FD" } }, { "name": "Generics, templates, and mapped type declarations", "scope": [ "entity.name.type.type-parameter", "meta.indexer.mappedtype.declaration entity.name.type", "meta.type.parameters entity.name.type" ], "settings": { "foreground": "#FFB86C" } }, { "name": "Modifiers", "scope": ["storage.modifier"], "settings": { "foreground": "#FF79C6" } }, { "name": "RegExp string", "scope": [ "string.regexp", "constant.other.character-class.set.regexp", "constant.character.escape.backslash.regexp" ], "settings": { "foreground": "#F1FA8C" } }, { "name": "Non-capture operators", "scope": ["punctuation.definition.group.capture.regexp"], "settings": { "foreground": "#FF79C6" } }, { "name": "RegExp start and end characters", "scope": [ "string.regexp punctuation.definition.string.begin", "string.regexp punctuation.definition.string.end" ], "settings": { "foreground": "#FF5555" } }, { "name": "Character group", "scope": ["punctuation.definition.character-class.regexp"], "settings": { "foreground": "#8BE9FD" } }, { "name": "Capture groups", "scope": ["punctuation.definition.group.regexp"], "settings": { "foreground": "#FFB86C" } }, { "name": "Assertion operators", "scope": [ "punctuation.definition.group.assertion.regexp", "keyword.operator.negation.regexp" ], "settings": { "foreground": "#FF5555" } }, { "name": "Positive lookaheads", "scope": ["meta.assertion.look-ahead.regexp"], "settings": { "foreground": "#50FA7B" } }, { "name": "Strings", "scope": ["string"], "settings": { "foreground": "#F1FA8C" } }, { "name": "String quotes (temporary vscode fix)", "scope": [ "punctuation.definition.string.begin", "punctuation.definition.string.end" ], "settings": { "foreground": "#E9F284" } }, { "name": "Property quotes (temporary vscode fix)", "scope": [ "punctuation.support.type.property-name.begin", "punctuation.support.type.property-name.end" ], "settings": { "foreground": "#8BE9FE" } }, { "name": "Docstrings", "scope": [ "string.quoted.docstring.multi", "string.quoted.docstring.multi.python punctuation.definition.string.begin", "string.quoted.docstring.multi.python punctuation.definition.string.end", "string.quoted.docstring.multi.python constant.character.escape" ], "settings": { "foreground": "#6272A4" } }, { "name": "Variables and object properties", "scope": [ "variable", "constant.other.key.perl", "support.variable.property", "variable.other.constant.js", "variable.other.constant.ts", "variable.other.constant.tsx" ], "settings": { "foreground": "#F8F8F2" } }, { "name": "Destructuring / aliasing reference name (LHS)", "scope": [ "meta.import variable.other.readwrite", "meta.variable.assignment.destructured.object.coffee variable" ], "settings": { "fontStyle": "italic", "foreground": "#FFB86C" } }, { "name": "Destructuring / aliasing variable name (RHS)", "scope": [ "meta.import variable.other.readwrite.alias", "meta.export variable.other.readwrite.alias", "meta.variable.assignment.destructured.object.coffee variable variable" ], "settings": { "fontStyle": "normal", "foreground": "#F8F8F2" } }, { "name": "GraphQL keys", "scope": ["meta.selectionset.graphql variable"], "settings": { "foreground": "#F1FA8C" } }, { "name": "GraphQL function arguments", "scope": ["meta.selectionset.graphql meta.arguments variable"], "settings": { "foreground": "#F8F8F2" } }, { "name": "GraphQL fragment name (definition)", "scope": ["entity.name.fragment.graphql", "variable.fragment.graphql"], "settings": { "foreground": "#8BE9FD" } }, { "name": "Edge cases (foreground color resets)", "scope": [ "constant.other.symbol.hashkey.ruby", "keyword.operator.dereference.java", "keyword.operator.navigation.groovy", "meta.scope.for-loop.shell punctuation.definition.string.begin", "meta.scope.for-loop.shell punctuation.definition.string.end", "meta.scope.for-loop.shell string", "storage.modifier.import", "punctuation.section.embedded.begin.tsx", "punctuation.section.embedded.end.tsx", "punctuation.section.embedded.begin.jsx", "punctuation.section.embedded.end.jsx", "punctuation.separator.list.comma.css", "constant.language.empty-list.haskell" ], "settings": { "foreground": "#F8F8F2" } }, { "name": "Shell variables prefixed with \"$\" (edge case)", "scope": ["source.shell variable.other"], "settings": { "foreground": "#BD93F9" } }, { "name": "Powershell constants mistakenly scoped to `support`, rather than `constant` (edge)", "scope": ["support.constant"], "settings": { "fontStyle": "normal", "foreground": "#BD93F9" } }, { "name": "Makefile prerequisite names", "scope": ["meta.scope.prerequisites.makefile"], "settings": { "foreground": "#F1FA8C" } }, { "name": "SCSS attibute selector strings", "scope": ["meta.attribute-selector.scss"], "settings": { "foreground": "#F1FA8C" } }, { "name": "SCSS attribute selector brackets", "scope": [ "punctuation.definition.attribute-selector.end.bracket.square.scss", "punctuation.definition.attribute-selector.begin.bracket.square.scss" ], "settings": { "foreground": "#F8F8F2" } }, { "name": "Haskell Pragmas", "scope": ["meta.preprocessor.haskell"], "settings": { "foreground": "#6272A4" } }, { "name": "Log file error", "scope": ["log.error"], "settings": { "foreground": "#FF5555", "fontStyle": "bold" } }, { "name": "Log file warning", "scope": ["log.warning"], "settings": { "foreground": "#F1FA8C", "fontStyle": "bold" } } ] } ================================================ FILE: apps/web/src/lib/shiki/themes/github-dark-dimmed.json ================================================ { "name": "github-dark-dimmed", "colors": { "focusBorder": "#316dca", "foreground": "#adbac7", "descriptionForeground": "#768390", "errorForeground": "#e5534b", "textLink.foreground": "#539bf5", "textLink.activeForeground": "#539bf5", "textBlockQuote.background": "#1c2128", "textBlockQuote.border": "#444c56", "textCodeBlock.background": "#636e7b66", "textPreformat.foreground": "#768390", "textSeparator.foreground": "#373e47", "icon.foreground": "#768390", "keybindingLabel.foreground": "#adbac7", "button.background": "#347d39", "button.foreground": "#ffffff", "button.hoverBackground": "#46954a", "button.secondaryBackground": "#3d444d", "button.secondaryForeground": "#adbac7", "button.secondaryHoverBackground": "#444c56", "checkbox.background": "#2d333b", "checkbox.border": "#444c56", "dropdown.background": "#2d333b", "dropdown.border": "#444c56", "dropdown.foreground": "#adbac7", "dropdown.listBackground": "#2d333b", "input.background": "#22272e", "input.border": "#444c56", "input.foreground": "#adbac7", "input.placeholderForeground": "#545d68", "badge.foreground": "#cdd9e5", "badge.background": "#316dca", "progressBar.background": "#316dca", "titleBar.activeForeground": "#768390", "titleBar.activeBackground": "#22272e", "titleBar.inactiveForeground": "#768390", "titleBar.inactiveBackground": "#1c2128", "titleBar.border": "#444c56", "activityBar.foreground": "#adbac7", "activityBar.inactiveForeground": "#768390", "activityBar.background": "#22272e", "activityBarBadge.foreground": "#cdd9e5", "activityBarBadge.background": "#316dca", "activityBar.activeBorder": "#ec775c", "activityBar.border": "#444c56", "sideBar.foreground": "#adbac7", "sideBar.background": "#1c2128", "sideBar.border": "#444c56", "sideBarTitle.foreground": "#adbac7", "sideBarSectionHeader.foreground": "#adbac7", "sideBarSectionHeader.background": "#1c2128", "sideBarSectionHeader.border": "#444c56", "list.hoverForeground": "#adbac7", "list.inactiveSelectionForeground": "#adbac7", "list.activeSelectionForeground": "#adbac7", "list.hoverBackground": "#636e7b1a", "list.inactiveSelectionBackground": "#636e7b66", "list.activeSelectionBackground": "#636e7b66", "list.focusForeground": "#adbac7", "list.focusBackground": "#4184e426", "list.inactiveFocusBackground": "#4184e426", "list.highlightForeground": "#539bf5", "tree.indentGuidesStroke": "#373e47", "notificationCenterHeader.foreground": "#768390", "notificationCenterHeader.background": "#2d333b", "notifications.foreground": "#adbac7", "notifications.background": "#2d333b", "notifications.border": "#444c56", "notificationsErrorIcon.foreground": "#e5534b", "notificationsWarningIcon.foreground": "#c69026", "notificationsInfoIcon.foreground": "#539bf5", "pickerGroup.border": "#444c56", "pickerGroup.foreground": "#768390", "quickInput.background": "#2d333b", "quickInput.foreground": "#adbac7", "statusBar.foreground": "#768390", "statusBar.background": "#22272e", "statusBar.border": "#444c56", "statusBar.focusBorder": "#316dca80", "statusBar.noFolderBackground": "#22272e", "statusBar.debuggingForeground": "#cdd9e5", "statusBar.debuggingBackground": "#c93c37", "statusBarItem.prominentBackground": "#636e7b66", "statusBarItem.remoteForeground": "#adbac7", "statusBarItem.remoteBackground": "#444c56", "statusBarItem.hoverBackground": "#adbac714", "statusBarItem.activeBackground": "#adbac71f", "statusBarItem.focusBorder": "#316dca", "editorGroupHeader.tabsBackground": "#1c2128", "editorGroupHeader.tabsBorder": "#444c56", "editorGroup.border": "#444c56", "tab.activeForeground": "#adbac7", "tab.inactiveForeground": "#768390", "tab.inactiveBackground": "#1c2128", "tab.activeBackground": "#22272e", "tab.hoverBackground": "#22272e", "tab.unfocusedHoverBackground": "#636e7b1a", "tab.border": "#444c56", "tab.unfocusedActiveBorderTop": "#444c56", "tab.activeBorder": "#22272e", "tab.unfocusedActiveBorder": "#22272e", "tab.activeBorderTop": "#ec775c", "breadcrumb.foreground": "#768390", "breadcrumb.focusForeground": "#adbac7", "breadcrumb.activeSelectionForeground": "#768390", "breadcrumbPicker.background": "#2d333b", "editor.foreground": "#adbac7", "editor.background": "#22272e", "editorWidget.background": "#2d333b", "editor.foldBackground": "#636e7b1a", "editor.lineHighlightBackground": "#636e7b1a", "editorLineNumber.foreground": "#636e7b", "editorLineNumber.activeForeground": "#adbac7", "editorIndentGuide.background": "#adbac71f", "editorIndentGuide.activeBackground": "#adbac73d", "editorWhitespace.foreground": "#545d68", "editorCursor.foreground": "#539bf5", "editor.findMatchBackground": "#966600", "editor.findMatchHighlightBackground": "#eac55f80", "editor.linkedEditingBackground": "#539bf512", "editor.selectionHighlightBackground": "#57ab5a40", "editor.wordHighlightBackground": "#636e7b80", "editor.wordHighlightBorder": "#636e7b99", "editor.wordHighlightStrongBackground": "#636e7b4d", "editor.wordHighlightStrongBorder": "#636e7b99", "editorBracketMatch.background": "#57ab5a40", "editorBracketMatch.border": "#57ab5a99", "editorInlayHint.background": "#76839033", "editorInlayHint.foreground": "#768390", "editorInlayHint.typeBackground": "#76839033", "editorInlayHint.typeForeground": "#768390", "editorInlayHint.paramBackground": "#76839033", "editorInlayHint.paramForeground": "#768390", "editorGutter.modifiedBackground": "#ae7c1466", "editorGutter.addedBackground": "#46954a66", "editorGutter.deletedBackground": "#e5534b66", "diffEditor.insertedLineBackground": "#347d3933", "diffEditor.insertedTextBackground": "#347d394d", "diffEditor.removedLineBackground": "#c93c3733", "diffEditor.removedTextBackground": "#c93c374d", "scrollbar.shadow": "#545d6833", "scrollbarSlider.background": "#636e7b33", "scrollbarSlider.hoverBackground": "#636e7b45", "scrollbarSlider.activeBackground": "#636e7b87", "editorOverviewRuler.border": "#1c2128", "panel.background": "#1c2128", "panel.border": "#444c56", "panelTitle.activeBorder": "#ec775c", "panelTitle.activeForeground": "#adbac7", "panelTitle.inactiveForeground": "#768390", "panelInput.border": "#444c56", "debugIcon.breakpointForeground": "#e5534b", "debugConsole.infoForeground": "#768390", "debugConsole.warningForeground": "#c69026", "debugConsole.errorForeground": "#ff938a", "debugConsole.sourceForeground": "#daaa3f", "debugConsoleInputIcon.foreground": "#b083f0", "debugTokenExpression.name": "#6cb6ff", "debugTokenExpression.value": "#96d0ff", "debugTokenExpression.string": "#96d0ff", "debugTokenExpression.boolean": "#6bc46d", "debugTokenExpression.number": "#6bc46d", "debugTokenExpression.error": "#ff938a", "symbolIcon.arrayForeground": "#e0823d", "symbolIcon.booleanForeground": "#539bf5", "symbolIcon.classForeground": "#e0823d", "symbolIcon.colorForeground": "#6cb6ff", "symbolIcon.constructorForeground": "#dcbdfb", "symbolIcon.enumeratorForeground": "#e0823d", "symbolIcon.enumeratorMemberForeground": "#539bf5", "symbolIcon.eventForeground": "#636e7b", "symbolIcon.fieldForeground": "#e0823d", "symbolIcon.fileForeground": "#c69026", "symbolIcon.folderForeground": "#c69026", "symbolIcon.functionForeground": "#b083f0", "symbolIcon.interfaceForeground": "#e0823d", "symbolIcon.keyForeground": "#539bf5", "symbolIcon.keywordForeground": "#f47067", "symbolIcon.methodForeground": "#b083f0", "symbolIcon.moduleForeground": "#f47067", "symbolIcon.namespaceForeground": "#f47067", "symbolIcon.nullForeground": "#539bf5", "symbolIcon.numberForeground": "#57ab5a", "symbolIcon.objectForeground": "#e0823d", "symbolIcon.operatorForeground": "#6cb6ff", "symbolIcon.packageForeground": "#e0823d", "symbolIcon.propertyForeground": "#e0823d", "symbolIcon.referenceForeground": "#539bf5", "symbolIcon.snippetForeground": "#539bf5", "symbolIcon.stringForeground": "#6cb6ff", "symbolIcon.structForeground": "#e0823d", "symbolIcon.textForeground": "#6cb6ff", "symbolIcon.typeParameterForeground": "#6cb6ff", "symbolIcon.unitForeground": "#539bf5", "symbolIcon.variableForeground": "#e0823d", "symbolIcon.constantForeground": [ "#b4f1b4", "#8ddb8c", "#6bc46d", "#57ab5a", "#46954a", "#347d39", "#2b6a30", "#245829", "#1b4721", "#113417" ], "terminal.foreground": "#adbac7", "terminal.ansiBlack": "#545d68", "terminal.ansiRed": "#f47067", "terminal.ansiGreen": "#57ab5a", "terminal.ansiYellow": "#c69026", "terminal.ansiBlue": "#539bf5", "terminal.ansiMagenta": "#b083f0", "terminal.ansiCyan": "#39c5cf", "terminal.ansiWhite": "#909dab", "terminal.ansiBrightBlack": "#636e7b", "terminal.ansiBrightRed": "#ff938a", "terminal.ansiBrightGreen": "#6bc46d", "terminal.ansiBrightYellow": "#daaa3f", "terminal.ansiBrightBlue": "#6cb6ff", "terminal.ansiBrightMagenta": "#dcbdfb", "terminal.ansiBrightCyan": "#56d4dd", "terminal.ansiBrightWhite": "#cdd9e5", "editorBracketHighlight.foreground1": "#6cb6ff", "editorBracketHighlight.foreground2": "#6bc46d", "editorBracketHighlight.foreground3": "#daaa3f", "editorBracketHighlight.foreground4": "#ff938a", "editorBracketHighlight.foreground5": "#fc8dc7", "editorBracketHighlight.foreground6": "#dcbdfb", "editorBracketHighlight.unexpectedBracket.foreground": "#768390", "gitDecoration.addedResourceForeground": "#57ab5a", "gitDecoration.modifiedResourceForeground": "#c69026", "gitDecoration.deletedResourceForeground": "#e5534b", "gitDecoration.untrackedResourceForeground": "#57ab5a", "gitDecoration.ignoredResourceForeground": "#545d68", "gitDecoration.conflictingResourceForeground": "#cc6b2c", "gitDecoration.submoduleResourceForeground": "#768390", "debugToolBar.background": "#2d333b", "editor.stackFrameHighlightBackground": "#ae7c1466", "editor.focusedStackFrameHighlightBackground": "#46954a66", "peekViewEditor.matchHighlightBackground": "#ae7c1466", "peekViewResult.matchHighlightBackground": "#ae7c1466", "peekViewEditor.background": "#636e7b1a", "peekViewResult.background": "#22272e", "settings.headerForeground": "#768390", "settings.modifiedItemIndicator": "#ae7c1466", "welcomePage.buttonBackground": "#373e47", "welcomePage.buttonHoverBackground": "#444c56" }, "semanticHighlighting": true, "tokenColors": [ { "scope": ["comment", "punctuation.definition.comment", "string.comment"], "settings": { "foreground": "#768390" } }, { "scope": [ "constant", "entity.name.constant", "variable.other.constant", "variable.other.enummember", "variable.language", "entity" ], "settings": { "foreground": "#6cb6ff" } }, { "scope": [ "entity.name", "meta.export.default", "meta.definition.variable" ], "settings": { "foreground": "#f69d50" } }, { "scope": [ "variable.parameter.function", "meta.jsx.children", "meta.block", "meta.tag.attributes", "entity.name.constant", "meta.object.member", "meta.embedded.expression" ], "settings": { "foreground": "#adbac7" } }, { "scope": "entity.name.function", "settings": { "foreground": "#dcbdfb" } }, { "scope": ["entity.name.tag", "support.class.component"], "settings": { "foreground": "#8ddb8c" } }, { "scope": "keyword", "settings": { "foreground": "#f47067" } }, { "scope": ["storage", "storage.type"], "settings": { "foreground": "#f47067" } }, { "scope": [ "storage.modifier.package", "storage.modifier.import", "storage.type.java" ], "settings": { "foreground": "#adbac7" } }, { "scope": ["string", "string punctuation.section.embedded source"], "settings": { "foreground": "#96d0ff" } }, { "scope": "support", "settings": { "foreground": "#6cb6ff" } }, { "scope": "meta.property-name", "settings": { "foreground": "#6cb6ff" } }, { "scope": "variable", "settings": { "foreground": "#f69d50" } }, { "scope": "variable.other", "settings": { "foreground": "#adbac7" } }, { "scope": "invalid.broken", "settings": { "fontStyle": "italic", "foreground": "#ff938a" } }, { "scope": "invalid.deprecated", "settings": { "fontStyle": "italic", "foreground": "#ff938a" } }, { "scope": "invalid.illegal", "settings": { "fontStyle": "italic", "foreground": "#ff938a" } }, { "scope": "invalid.unimplemented", "settings": { "fontStyle": "italic", "foreground": "#ff938a" } }, { "scope": "carriage-return", "settings": { "fontStyle": "italic underline", "background": "#f47067", "foreground": "#cdd9e5", "content": "^M" } }, { "scope": "message.error", "settings": { "foreground": "#ff938a" } }, { "scope": "string variable", "settings": { "foreground": "#6cb6ff" } }, { "scope": ["source.regexp", "string.regexp"], "settings": { "foreground": "#96d0ff" } }, { "scope": [ "string.regexp.character-class", "string.regexp constant.character.escape", "string.regexp source.ruby.embedded", "string.regexp string.regexp.arbitrary-repitition" ], "settings": { "foreground": "#96d0ff" } }, { "scope": "string.regexp constant.character.escape", "settings": { "fontStyle": "bold", "foreground": "#8ddb8c" } }, { "scope": "support.constant", "settings": { "foreground": "#6cb6ff" } }, { "scope": "support.variable", "settings": { "foreground": "#6cb6ff" } }, { "scope": "support.type.property-name.json", "settings": { "foreground": "#8ddb8c" } }, { "scope": "meta.module-reference", "settings": { "foreground": "#6cb6ff" } }, { "scope": "punctuation.definition.list.begin.markdown", "settings": { "foreground": "#f69d50" } }, { "scope": ["markup.heading", "markup.heading entity.name"], "settings": { "fontStyle": "bold", "foreground": "#6cb6ff" } }, { "scope": "markup.quote", "settings": { "foreground": "#8ddb8c" } }, { "scope": "markup.italic", "settings": { "fontStyle": "italic", "foreground": "#adbac7" } }, { "scope": "markup.bold", "settings": { "fontStyle": "bold", "foreground": "#adbac7" } }, { "scope": ["markup.underline"], "settings": { "fontStyle": "underline" } }, { "scope": ["markup.strikethrough"], "settings": { "fontStyle": "strikethrough" } }, { "scope": "markup.inline.raw", "settings": { "foreground": "#6cb6ff" } }, { "scope": [ "markup.deleted", "meta.diff.header.from-file", "punctuation.definition.deleted" ], "settings": { "background": "#5d0f12", "foreground": "#ff938a" } }, { "scope": ["punctuation.section.embedded"], "settings": { "foreground": "#f47067" } }, { "scope": [ "markup.inserted", "meta.diff.header.to-file", "punctuation.definition.inserted" ], "settings": { "background": "#113417", "foreground": "#8ddb8c" } }, { "scope": ["markup.changed", "punctuation.definition.changed"], "settings": { "background": "#682d0f", "foreground": "#f69d50" } }, { "scope": ["markup.ignored", "markup.untracked"], "settings": { "foreground": "#2d333b", "background": "#6cb6ff" } }, { "scope": "meta.diff.range", "settings": { "foreground": "#dcbdfb", "fontStyle": "bold" } }, { "scope": "meta.diff.header", "settings": { "foreground": "#6cb6ff" } }, { "scope": "meta.separator", "settings": { "fontStyle": "bold", "foreground": "#6cb6ff" } }, { "scope": "meta.output", "settings": { "foreground": "#6cb6ff" } }, { "scope": [ "brackethighlighter.tag", "brackethighlighter.curly", "brackethighlighter.round", "brackethighlighter.square", "brackethighlighter.angle", "brackethighlighter.quote" ], "settings": { "foreground": "#768390" } }, { "scope": "brackethighlighter.unmatched", "settings": { "foreground": "#ff938a" } }, { "scope": ["constant.other.reference.link", "string.other.link"], "settings": { "foreground": "#96d0ff", "fontStyle": "underline" } } ] } ================================================ FILE: apps/web/src/lib/shiki/themes/github-dark.json ================================================ { "name": "github-dark", "colors": { "focusBorder": "#1f6feb", "foreground": "#c9d1d9", "descriptionForeground": "#8b949e", "errorForeground": "#f85149", "textLink.foreground": "#58a6ff", "textLink.activeForeground": "#58a6ff", "textBlockQuote.background": "#010409", "textBlockQuote.border": "#30363d", "textCodeBlock.background": "#6e768166", "textPreformat.foreground": "#8b949e", "textSeparator.foreground": "#21262d", "icon.foreground": "#8b949e", "keybindingLabel.foreground": "#c9d1d9", "button.background": "#238636", "button.foreground": "#ffffff", "button.hoverBackground": "#2ea043", "button.secondaryBackground": "#282e33", "button.secondaryForeground": "#c9d1d9", "button.secondaryHoverBackground": "#30363d", "checkbox.background": "#161b22", "checkbox.border": "#30363d", "dropdown.background": "#161b22", "dropdown.border": "#30363d", "dropdown.foreground": "#c9d1d9", "dropdown.listBackground": "#161b22", "input.background": "#0d1117", "input.border": "#30363d", "input.foreground": "#c9d1d9", "input.placeholderForeground": "#484f58", "badge.foreground": "#f0f6fc", "badge.background": "#1f6feb", "progressBar.background": "#1f6feb", "titleBar.activeForeground": "#8b949e", "titleBar.activeBackground": "#0d1117", "titleBar.inactiveForeground": "#8b949e", "titleBar.inactiveBackground": "#010409", "titleBar.border": "#30363d", "activityBar.foreground": "#c9d1d9", "activityBar.inactiveForeground": "#8b949e", "activityBar.background": "#0d1117", "activityBarBadge.foreground": "#f0f6fc", "activityBarBadge.background": "#1f6feb", "activityBar.activeBorder": "#f78166", "activityBar.border": "#30363d", "sideBar.foreground": "#c9d1d9", "sideBar.background": "#010409", "sideBar.border": "#30363d", "sideBarTitle.foreground": "#c9d1d9", "sideBarSectionHeader.foreground": "#c9d1d9", "sideBarSectionHeader.background": "#010409", "sideBarSectionHeader.border": "#30363d", "list.hoverForeground": "#c9d1d9", "list.inactiveSelectionForeground": "#c9d1d9", "list.activeSelectionForeground": "#c9d1d9", "list.hoverBackground": "#6e76811a", "list.inactiveSelectionBackground": "#6e768166", "list.activeSelectionBackground": "#6e768166", "list.focusForeground": "#c9d1d9", "list.focusBackground": "#388bfd26", "list.inactiveFocusBackground": "#388bfd26", "list.highlightForeground": "#58a6ff", "tree.indentGuidesStroke": "#21262d", "notificationCenterHeader.foreground": "#8b949e", "notificationCenterHeader.background": "#161b22", "notifications.foreground": "#c9d1d9", "notifications.background": "#161b22", "notifications.border": "#30363d", "notificationsErrorIcon.foreground": "#f85149", "notificationsWarningIcon.foreground": "#d29922", "notificationsInfoIcon.foreground": "#58a6ff", "pickerGroup.border": "#30363d", "pickerGroup.foreground": "#8b949e", "quickInput.background": "#161b22", "quickInput.foreground": "#c9d1d9", "statusBar.foreground": "#8b949e", "statusBar.background": "#0d1117", "statusBar.border": "#30363d", "statusBar.focusBorder": "#1f6feb80", "statusBar.noFolderBackground": "#0d1117", "statusBar.debuggingForeground": "#f0f6fc", "statusBar.debuggingBackground": "#da3633", "statusBarItem.prominentBackground": "#6e768166", "statusBarItem.remoteForeground": "#c9d1d9", "statusBarItem.remoteBackground": "#30363d", "statusBarItem.hoverBackground": "#c9d1d914", "statusBarItem.activeBackground": "#c9d1d91f", "statusBarItem.focusBorder": "#1f6feb", "editorGroupHeader.tabsBackground": "#010409", "editorGroupHeader.tabsBorder": "#30363d", "editorGroup.border": "#30363d", "tab.activeForeground": "#c9d1d9", "tab.inactiveForeground": "#8b949e", "tab.inactiveBackground": "#010409", "tab.activeBackground": "#0d1117", "tab.hoverBackground": "#0d1117", "tab.unfocusedHoverBackground": "#6e76811a", "tab.border": "#30363d", "tab.unfocusedActiveBorderTop": "#30363d", "tab.activeBorder": "#0d1117", "tab.unfocusedActiveBorder": "#0d1117", "tab.activeBorderTop": "#f78166", "breadcrumb.foreground": "#8b949e", "breadcrumb.focusForeground": "#c9d1d9", "breadcrumb.activeSelectionForeground": "#8b949e", "breadcrumbPicker.background": "#161b22", "editor.foreground": "#c9d1d9", "editor.background": "#0d1117", "editorWidget.background": "#161b22", "editor.foldBackground": "#6e76811a", "editor.lineHighlightBackground": "#6e76811a", "editorLineNumber.foreground": "#6e7681", "editorLineNumber.activeForeground": "#c9d1d9", "editorIndentGuide.background": "#c9d1d91f", "editorIndentGuide.activeBackground": "#c9d1d93d", "editorWhitespace.foreground": "#484f58", "editorCursor.foreground": "#58a6ff", "editor.findMatchBackground": "#9e6a03", "editor.findMatchHighlightBackground": "#f2cc6080", "editor.linkedEditingBackground": "#58a6ff12", "editor.selectionHighlightBackground": "#3fb95040", "editor.wordHighlightBackground": "#6e768180", "editor.wordHighlightBorder": "#6e768199", "editor.wordHighlightStrongBackground": "#6e76814d", "editor.wordHighlightStrongBorder": "#6e768199", "editorBracketMatch.background": "#3fb95040", "editorBracketMatch.border": "#3fb95099", "editorInlayHint.background": "#8b949e33", "editorInlayHint.foreground": "#8b949e", "editorInlayHint.typeBackground": "#8b949e33", "editorInlayHint.typeForeground": "#8b949e", "editorInlayHint.paramBackground": "#8b949e33", "editorInlayHint.paramForeground": "#8b949e", "editorGutter.modifiedBackground": "#bb800966", "editorGutter.addedBackground": "#2ea04366", "editorGutter.deletedBackground": "#f8514966", "diffEditor.insertedLineBackground": "#23863633", "diffEditor.insertedTextBackground": "#2386364d", "diffEditor.removedLineBackground": "#da363333", "diffEditor.removedTextBackground": "#da36334d", "scrollbar.shadow": "#484f5833", "scrollbarSlider.background": "#6e768133", "scrollbarSlider.hoverBackground": "#6e768145", "scrollbarSlider.activeBackground": "#6e768187", "editorOverviewRuler.border": "#010409", "panel.background": "#010409", "panel.border": "#30363d", "panelTitle.activeBorder": "#f78166", "panelTitle.activeForeground": "#c9d1d9", "panelTitle.inactiveForeground": "#8b949e", "panelInput.border": "#30363d", "debugIcon.breakpointForeground": "#f85149", "debugConsole.infoForeground": "#8b949e", "debugConsole.warningForeground": "#d29922", "debugConsole.errorForeground": "#ffa198", "debugConsole.sourceForeground": "#e3b341", "debugConsoleInputIcon.foreground": "#bc8cff", "debugTokenExpression.name": "#79c0ff", "debugTokenExpression.value": "#a5d6ff", "debugTokenExpression.string": "#a5d6ff", "debugTokenExpression.boolean": "#56d364", "debugTokenExpression.number": "#56d364", "debugTokenExpression.error": "#ffa198", "symbolIcon.arrayForeground": "#f0883e", "symbolIcon.booleanForeground": "#58a6ff", "symbolIcon.classForeground": "#f0883e", "symbolIcon.colorForeground": "#79c0ff", "symbolIcon.constructorForeground": "#d2a8ff", "symbolIcon.enumeratorForeground": "#f0883e", "symbolIcon.enumeratorMemberForeground": "#58a6ff", "symbolIcon.eventForeground": "#6e7681", "symbolIcon.fieldForeground": "#f0883e", "symbolIcon.fileForeground": "#d29922", "symbolIcon.folderForeground": "#d29922", "symbolIcon.functionForeground": "#bc8cff", "symbolIcon.interfaceForeground": "#f0883e", "symbolIcon.keyForeground": "#58a6ff", "symbolIcon.keywordForeground": "#ff7b72", "symbolIcon.methodForeground": "#bc8cff", "symbolIcon.moduleForeground": "#ff7b72", "symbolIcon.namespaceForeground": "#ff7b72", "symbolIcon.nullForeground": "#58a6ff", "symbolIcon.numberForeground": "#3fb950", "symbolIcon.objectForeground": "#f0883e", "symbolIcon.operatorForeground": "#79c0ff", "symbolIcon.packageForeground": "#f0883e", "symbolIcon.propertyForeground": "#f0883e", "symbolIcon.referenceForeground": "#58a6ff", "symbolIcon.snippetForeground": "#58a6ff", "symbolIcon.stringForeground": "#79c0ff", "symbolIcon.structForeground": "#f0883e", "symbolIcon.textForeground": "#79c0ff", "symbolIcon.typeParameterForeground": "#79c0ff", "symbolIcon.unitForeground": "#58a6ff", "symbolIcon.variableForeground": "#f0883e", "symbolIcon.constantForeground": [ "#aff5b4", "#7ee787", "#56d364", "#3fb950", "#2ea043", "#238636", "#196c2e", "#0f5323", "#033a16", "#04260f" ], "terminal.foreground": "#c9d1d9", "terminal.ansiBlack": "#484f58", "terminal.ansiRed": "#ff7b72", "terminal.ansiGreen": "#3fb950", "terminal.ansiYellow": "#d29922", "terminal.ansiBlue": "#58a6ff", "terminal.ansiMagenta": "#bc8cff", "terminal.ansiCyan": "#39c5cf", "terminal.ansiWhite": "#b1bac4", "terminal.ansiBrightBlack": "#6e7681", "terminal.ansiBrightRed": "#ffa198", "terminal.ansiBrightGreen": "#56d364", "terminal.ansiBrightYellow": "#e3b341", "terminal.ansiBrightBlue": "#79c0ff", "terminal.ansiBrightMagenta": "#d2a8ff", "terminal.ansiBrightCyan": "#56d4dd", "terminal.ansiBrightWhite": "#f0f6fc", "editorBracketHighlight.foreground1": "#79c0ff", "editorBracketHighlight.foreground2": "#56d364", "editorBracketHighlight.foreground3": "#e3b341", "editorBracketHighlight.foreground4": "#ffa198", "editorBracketHighlight.foreground5": "#ff9bce", "editorBracketHighlight.foreground6": "#d2a8ff", "editorBracketHighlight.unexpectedBracket.foreground": "#8b949e", "gitDecoration.addedResourceForeground": "#3fb950", "gitDecoration.modifiedResourceForeground": "#d29922", "gitDecoration.deletedResourceForeground": "#f85149", "gitDecoration.untrackedResourceForeground": "#3fb950", "gitDecoration.ignoredResourceForeground": "#484f58", "gitDecoration.conflictingResourceForeground": "#db6d28", "gitDecoration.submoduleResourceForeground": "#8b949e", "debugToolBar.background": "#161b22", "editor.stackFrameHighlightBackground": "#bb800966", "editor.focusedStackFrameHighlightBackground": "#2ea04366", "peekViewEditor.matchHighlightBackground": "#bb800966", "peekViewResult.matchHighlightBackground": "#bb800966", "peekViewEditor.background": "#6e76811a", "peekViewResult.background": "#0d1117", "settings.headerForeground": "#8b949e", "settings.modifiedItemIndicator": "#bb800966", "welcomePage.buttonBackground": "#21262d", "welcomePage.buttonHoverBackground": "#30363d" }, "semanticHighlighting": true, "tokenColors": [ { "scope": ["comment", "punctuation.definition.comment", "string.comment"], "settings": { "foreground": "#8b949e" } }, { "scope": [ "constant", "entity.name.constant", "variable.other.constant", "variable.other.enummember", "variable.language", "entity" ], "settings": { "foreground": "#79c0ff" } }, { "scope": [ "entity.name", "meta.export.default", "meta.definition.variable" ], "settings": { "foreground": "#ffa657" } }, { "scope": [ "variable.parameter.function", "meta.jsx.children", "meta.block", "meta.tag.attributes", "entity.name.constant", "meta.object.member", "meta.embedded.expression" ], "settings": { "foreground": "#c9d1d9" } }, { "scope": "entity.name.function", "settings": { "foreground": "#d2a8ff" } }, { "scope": ["entity.name.tag", "support.class.component"], "settings": { "foreground": "#7ee787" } }, { "scope": "keyword", "settings": { "foreground": "#ff7b72" } }, { "scope": ["storage", "storage.type"], "settings": { "foreground": "#ff7b72" } }, { "scope": [ "storage.modifier.package", "storage.modifier.import", "storage.type.java" ], "settings": { "foreground": "#c9d1d9" } }, { "scope": ["string", "string punctuation.section.embedded source"], "settings": { "foreground": "#a5d6ff" } }, { "scope": "support", "settings": { "foreground": "#79c0ff" } }, { "scope": "meta.property-name", "settings": { "foreground": "#79c0ff" } }, { "scope": "variable", "settings": { "foreground": "#ffa657" } }, { "scope": "variable.other", "settings": { "foreground": "#c9d1d9" } }, { "scope": "invalid.broken", "settings": { "fontStyle": "italic", "foreground": "#ffa198" } }, { "scope": "invalid.deprecated", "settings": { "fontStyle": "italic", "foreground": "#ffa198" } }, { "scope": "invalid.illegal", "settings": { "fontStyle": "italic", "foreground": "#ffa198" } }, { "scope": "invalid.unimplemented", "settings": { "fontStyle": "italic", "foreground": "#ffa198" } }, { "scope": "carriage-return", "settings": { "fontStyle": "italic underline", "background": "#ff7b72", "foreground": "#f0f6fc", "content": "^M" } }, { "scope": "message.error", "settings": { "foreground": "#ffa198" } }, { "scope": "string variable", "settings": { "foreground": "#79c0ff" } }, { "scope": ["source.regexp", "string.regexp"], "settings": { "foreground": "#a5d6ff" } }, { "scope": [ "string.regexp.character-class", "string.regexp constant.character.escape", "string.regexp source.ruby.embedded", "string.regexp string.regexp.arbitrary-repitition" ], "settings": { "foreground": "#a5d6ff" } }, { "scope": "string.regexp constant.character.escape", "settings": { "fontStyle": "bold", "foreground": "#7ee787" } }, { "scope": "support.constant", "settings": { "foreground": "#79c0ff" } }, { "scope": "support.variable", "settings": { "foreground": "#79c0ff" } }, { "scope": "support.type.property-name.json", "settings": { "foreground": "#7ee787" } }, { "scope": "meta.module-reference", "settings": { "foreground": "#79c0ff" } }, { "scope": "punctuation.definition.list.begin.markdown", "settings": { "foreground": "#ffa657" } }, { "scope": ["markup.heading", "markup.heading entity.name"], "settings": { "fontStyle": "bold", "foreground": "#79c0ff" } }, { "scope": "markup.quote", "settings": { "foreground": "#7ee787" } }, { "scope": "markup.italic", "settings": { "fontStyle": "italic", "foreground": "#c9d1d9" } }, { "scope": "markup.bold", "settings": { "fontStyle": "bold", "foreground": "#c9d1d9" } }, { "scope": ["markup.underline"], "settings": { "fontStyle": "underline" } }, { "scope": ["markup.strikethrough"], "settings": { "fontStyle": "strikethrough" } }, { "scope": "markup.inline.raw", "settings": { "foreground": "#79c0ff" } }, { "scope": [ "markup.deleted", "meta.diff.header.from-file", "punctuation.definition.deleted" ], "settings": { "background": "#490202", "foreground": "#ffa198" } }, { "scope": ["punctuation.section.embedded"], "settings": { "foreground": "#ff7b72" } }, { "scope": [ "markup.inserted", "meta.diff.header.to-file", "punctuation.definition.inserted" ], "settings": { "background": "#04260f", "foreground": "#7ee787" } }, { "scope": ["markup.changed", "punctuation.definition.changed"], "settings": { "background": "#5a1e02", "foreground": "#ffa657" } }, { "scope": ["markup.ignored", "markup.untracked"], "settings": { "foreground": "#161b22", "background": "#79c0ff" } }, { "scope": "meta.diff.range", "settings": { "foreground": "#d2a8ff", "fontStyle": "bold" } }, { "scope": "meta.diff.header", "settings": { "foreground": "#79c0ff" } }, { "scope": "meta.separator", "settings": { "fontStyle": "bold", "foreground": "#79c0ff" } }, { "scope": "meta.output", "settings": { "foreground": "#79c0ff" } }, { "scope": [ "brackethighlighter.tag", "brackethighlighter.curly", "brackethighlighter.round", "brackethighlighter.square", "brackethighlighter.angle", "brackethighlighter.quote" ], "settings": { "foreground": "#8b949e" } }, { "scope": "brackethighlighter.unmatched", "settings": { "foreground": "#ffa198" } }, { "scope": ["constant.other.reference.link", "string.other.link"], "settings": { "foreground": "#a5d6ff", "fontStyle": "underline" } } ] } ================================================ FILE: apps/web/src/lib/shiki/themes/github-light.json ================================================ { "name": "github-light", "colors": { "focusBorder": "#0969da", "foreground": "#24292f", "descriptionForeground": "#57606a", "errorForeground": "#cf222e", "textLink.foreground": "#0969da", "textLink.activeForeground": "#0969da", "textBlockQuote.background": "#f6f8fa", "textBlockQuote.border": "#d0d7de", "textCodeBlock.background": "#afb8c133", "textPreformat.foreground": "#57606a", "textSeparator.foreground": "#d8dee4", "icon.foreground": "#57606a", "keybindingLabel.foreground": "#24292f", "button.background": "#2da44e", "button.foreground": "#ffffff", "button.hoverBackground": "#2c974b", "button.secondaryBackground": "#ebecf0", "button.secondaryForeground": "#24292f", "button.secondaryHoverBackground": "#f3f4f6", "checkbox.background": "#f6f8fa", "checkbox.border": "#d0d7de", "dropdown.background": "#ffffff", "dropdown.border": "#d0d7de", "dropdown.foreground": "#24292f", "dropdown.listBackground": "#ffffff", "input.background": "#ffffff", "input.border": "#d0d7de", "input.foreground": "#24292f", "input.placeholderForeground": "#6e7781", "badge.foreground": "#ffffff", "badge.background": "#0969da", "progressBar.background": "#0969da", "titleBar.activeForeground": "#57606a", "titleBar.activeBackground": "#ffffff", "titleBar.inactiveForeground": "#57606a", "titleBar.inactiveBackground": "#f6f8fa", "titleBar.border": "#d0d7de", "activityBar.foreground": "#24292f", "activityBar.inactiveForeground": "#57606a", "activityBar.background": "#ffffff", "activityBarBadge.foreground": "#ffffff", "activityBarBadge.background": "#0969da", "activityBar.activeBorder": "#fd8c73", "activityBar.border": "#d0d7de", "sideBar.foreground": "#24292f", "sideBar.background": "#f6f8fa", "sideBar.border": "#d0d7de", "sideBarTitle.foreground": "#24292f", "sideBarSectionHeader.foreground": "#24292f", "sideBarSectionHeader.background": "#f6f8fa", "sideBarSectionHeader.border": "#d0d7de", "list.hoverForeground": "#24292f", "list.inactiveSelectionForeground": "#24292f", "list.activeSelectionForeground": "#24292f", "list.hoverBackground": "#eaeef280", "list.inactiveSelectionBackground": "#afb8c133", "list.activeSelectionBackground": "#afb8c133", "list.focusForeground": "#24292f", "list.focusBackground": "#ddf4ff", "list.inactiveFocusBackground": "#ddf4ff", "list.highlightForeground": "#0969da", "tree.indentGuidesStroke": "#d8dee4", "notificationCenterHeader.foreground": "#57606a", "notificationCenterHeader.background": "#f6f8fa", "notifications.foreground": "#24292f", "notifications.background": "#ffffff", "notifications.border": "#d0d7de", "notificationsErrorIcon.foreground": "#cf222e", "notificationsWarningIcon.foreground": "#9a6700", "notificationsInfoIcon.foreground": "#0969da", "pickerGroup.border": "#d0d7de", "pickerGroup.foreground": "#57606a", "quickInput.background": "#ffffff", "quickInput.foreground": "#24292f", "statusBar.foreground": "#57606a", "statusBar.background": "#ffffff", "statusBar.border": "#d0d7de", "statusBar.focusBorder": "#0969da80", "statusBar.noFolderBackground": "#ffffff", "statusBar.debuggingForeground": "#ffffff", "statusBar.debuggingBackground": "#cf222e", "statusBarItem.prominentBackground": "#afb8c133", "statusBarItem.remoteForeground": "#24292f", "statusBarItem.remoteBackground": "#eaeef2", "statusBarItem.hoverBackground": "#24292f14", "statusBarItem.activeBackground": "#24292f1f", "statusBarItem.focusBorder": "#0969da", "editorGroupHeader.tabsBackground": "#f6f8fa", "editorGroupHeader.tabsBorder": "#d0d7de", "editorGroup.border": "#d0d7de", "tab.activeForeground": "#24292f", "tab.inactiveForeground": "#57606a", "tab.inactiveBackground": "#f6f8fa", "tab.activeBackground": "#ffffff", "tab.hoverBackground": "#ffffff", "tab.unfocusedHoverBackground": "#eaeef280", "tab.border": "#d0d7de", "tab.unfocusedActiveBorderTop": "#d0d7de", "tab.activeBorder": "#ffffff", "tab.unfocusedActiveBorder": "#ffffff", "tab.activeBorderTop": "#fd8c73", "breadcrumb.foreground": "#57606a", "breadcrumb.focusForeground": "#24292f", "breadcrumb.activeSelectionForeground": "#57606a", "breadcrumbPicker.background": "#ffffff", "editor.foreground": "#24292f", "editor.background": "#ffffff", "editorWidget.background": "#ffffff", "editor.foldBackground": "#6e77811a", "editor.lineHighlightBackground": "#eaeef280", "editorLineNumber.foreground": "#8c959f", "editorLineNumber.activeForeground": "#24292f", "editorIndentGuide.background": "#24292f1f", "editorIndentGuide.activeBackground": "#24292f3d", "editorWhitespace.foreground": "#afb8c1", "editorCursor.foreground": "#0969da", "editor.findMatchBackground": "#bf8700", "editor.findMatchHighlightBackground": "#fae17d80", "editor.linkedEditingBackground": "#0969da12", "editor.selectionHighlightBackground": "#4ac26b40", "editor.wordHighlightBackground": "#eaeef280", "editor.wordHighlightBorder": "#afb8c199", "editor.wordHighlightStrongBackground": "#afb8c14d", "editor.wordHighlightStrongBorder": "#afb8c199", "editorBracketMatch.background": "#4ac26b40", "editorBracketMatch.border": "#4ac26b99", "editorInlayHint.background": "#afb8c133", "editorInlayHint.foreground": "#57606a", "editorInlayHint.typeBackground": "#afb8c133", "editorInlayHint.typeForeground": "#57606a", "editorInlayHint.paramBackground": "#afb8c133", "editorInlayHint.paramForeground": "#57606a", "editorGutter.modifiedBackground": "#d4a72c66", "editorGutter.addedBackground": "#4ac26b66", "editorGutter.deletedBackground": "#ff818266", "diffEditor.insertedLineBackground": "#aceebb4d", "diffEditor.insertedTextBackground": "#6fdd8b66", "diffEditor.removedLineBackground": "#ffcecb4d", "diffEditor.removedTextBackground": "#ffaba866", "scrollbar.shadow": "#6e778133", "scrollbarSlider.background": "#8c959f33", "scrollbarSlider.hoverBackground": "#8c959f45", "scrollbarSlider.activeBackground": "#8c959f87", "editorOverviewRuler.border": "#ffffff", "panel.background": "#f6f8fa", "panel.border": "#d0d7de", "panelTitle.activeBorder": "#fd8c73", "panelTitle.activeForeground": "#24292f", "panelTitle.inactiveForeground": "#57606a", "panelInput.border": "#d0d7de", "debugIcon.breakpointForeground": "#cf222e", "debugConsole.infoForeground": "#57606a", "debugConsole.warningForeground": "#7d4e00", "debugConsole.errorForeground": "#cf222e", "debugConsole.sourceForeground": "#9a6700", "debugConsoleInputIcon.foreground": "#6639ba", "debugTokenExpression.name": "#0550ae", "debugTokenExpression.value": "#0a3069", "debugTokenExpression.string": "#0a3069", "debugTokenExpression.boolean": "#116329", "debugTokenExpression.number": "#116329", "debugTokenExpression.error": "#a40e26", "symbolIcon.arrayForeground": "#953800", "symbolIcon.booleanForeground": "#0550ae", "symbolIcon.classForeground": "#953800", "symbolIcon.colorForeground": "#0a3069", "symbolIcon.constructorForeground": "#3e1f79", "symbolIcon.enumeratorForeground": "#953800", "symbolIcon.enumeratorMemberForeground": "#0550ae", "symbolIcon.eventForeground": "#57606a", "symbolIcon.fieldForeground": "#953800", "symbolIcon.fileForeground": "#7d4e00", "symbolIcon.folderForeground": "#7d4e00", "symbolIcon.functionForeground": "#6639ba", "symbolIcon.interfaceForeground": "#953800", "symbolIcon.keyForeground": "#0550ae", "symbolIcon.keywordForeground": "#a40e26", "symbolIcon.methodForeground": "#6639ba", "symbolIcon.moduleForeground": "#a40e26", "symbolIcon.namespaceForeground": "#a40e26", "symbolIcon.nullForeground": "#0550ae", "symbolIcon.numberForeground": "#116329", "symbolIcon.objectForeground": "#953800", "symbolIcon.operatorForeground": "#0a3069", "symbolIcon.packageForeground": "#953800", "symbolIcon.propertyForeground": "#953800", "symbolIcon.referenceForeground": "#0550ae", "symbolIcon.snippetForeground": "#0550ae", "symbolIcon.stringForeground": "#0a3069", "symbolIcon.structForeground": "#953800", "symbolIcon.textForeground": "#0a3069", "symbolIcon.typeParameterForeground": "#0a3069", "symbolIcon.unitForeground": "#0550ae", "symbolIcon.variableForeground": "#953800", "symbolIcon.constantForeground": "#116329", "terminal.foreground": "#24292f", "terminal.ansiBlack": "#24292f", "terminal.ansiRed": "#cf222e", "terminal.ansiGreen": "#116329", "terminal.ansiYellow": "#4d2d00", "terminal.ansiBlue": "#0969da", "terminal.ansiMagenta": "#8250df", "terminal.ansiCyan": "#1b7c83", "terminal.ansiWhite": "#6e7781", "terminal.ansiBrightBlack": "#57606a", "terminal.ansiBrightRed": "#a40e26", "terminal.ansiBrightGreen": "#1a7f37", "terminal.ansiBrightYellow": "#633c01", "terminal.ansiBrightBlue": "#218bff", "terminal.ansiBrightMagenta": "#a475f9", "terminal.ansiBrightCyan": "#3192aa", "terminal.ansiBrightWhite": "#8c959f", "editorBracketHighlight.foreground1": "#0969da", "editorBracketHighlight.foreground2": "#1a7f37", "editorBracketHighlight.foreground3": "#9a6700", "editorBracketHighlight.foreground4": "#cf222e", "editorBracketHighlight.foreground5": "#bf3989", "editorBracketHighlight.foreground6": "#8250df", "editorBracketHighlight.unexpectedBracket.foreground": "#57606a", "gitDecoration.addedResourceForeground": "#1a7f37", "gitDecoration.modifiedResourceForeground": "#9a6700", "gitDecoration.deletedResourceForeground": "#cf222e", "gitDecoration.untrackedResourceForeground": "#1a7f37", "gitDecoration.ignoredResourceForeground": "#6e7781", "gitDecoration.conflictingResourceForeground": "#bc4c00", "gitDecoration.submoduleResourceForeground": "#57606a", "debugToolBar.background": "#ffffff", "editor.stackFrameHighlightBackground": "#d4a72c66", "editor.focusedStackFrameHighlightBackground": "#4ac26b66", "settings.headerForeground": "#57606a", "settings.modifiedItemIndicator": "#d4a72c66", "welcomePage.buttonBackground": "#f6f8fa", "welcomePage.buttonHoverBackground": "#f3f4f6" }, "semanticHighlighting": true, "tokenColors": [ { "scope": ["comment", "punctuation.definition.comment", "string.comment"], "settings": { "foreground": "#6e7781" } }, { "scope": [ "constant", "entity.name.constant", "variable.other.constant", "variable.other.enummember", "variable.language", "entity" ], "settings": { "foreground": "#0550ae" } }, { "scope": [ "entity.name", "meta.export.default", "meta.definition.variable" ], "settings": { "foreground": "#953800" } }, { "scope": [ "variable.parameter.function", "meta.jsx.children", "meta.block", "meta.tag.attributes", "entity.name.constant", "meta.object.member", "meta.embedded.expression" ], "settings": { "foreground": "#24292f" } }, { "scope": "entity.name.function", "settings": { "foreground": "#8250df" } }, { "scope": ["entity.name.tag", "support.class.component"], "settings": { "foreground": "#116329" } }, { "scope": "keyword", "settings": { "foreground": "#cf222e" } }, { "scope": ["storage", "storage.type"], "settings": { "foreground": "#cf222e" } }, { "scope": [ "storage.modifier.package", "storage.modifier.import", "storage.type.java" ], "settings": { "foreground": "#24292f" } }, { "scope": ["string", "string punctuation.section.embedded source"], "settings": { "foreground": "#0a3069" } }, { "scope": "support", "settings": { "foreground": "#0550ae" } }, { "scope": "meta.property-name", "settings": { "foreground": "#0550ae" } }, { "scope": "variable", "settings": { "foreground": "#953800" } }, { "scope": "variable.other", "settings": { "foreground": "#24292f" } }, { "scope": "invalid.broken", "settings": { "fontStyle": "italic", "foreground": "#82071e" } }, { "scope": "invalid.deprecated", "settings": { "fontStyle": "italic", "foreground": "#82071e" } }, { "scope": "invalid.illegal", "settings": { "fontStyle": "italic", "foreground": "#82071e" } }, { "scope": "invalid.unimplemented", "settings": { "fontStyle": "italic", "foreground": "#82071e" } }, { "scope": "carriage-return", "settings": { "fontStyle": "italic underline", "background": "#cf222e", "foreground": "#f6f8fa", "content": "^M" } }, { "scope": "message.error", "settings": { "foreground": "#82071e" } }, { "scope": "string variable", "settings": { "foreground": "#0550ae" } }, { "scope": ["source.regexp", "string.regexp"], "settings": { "foreground": "#0a3069" } }, { "scope": [ "string.regexp.character-class", "string.regexp constant.character.escape", "string.regexp source.ruby.embedded", "string.regexp string.regexp.arbitrary-repitition" ], "settings": { "foreground": "#0a3069" } }, { "scope": "string.regexp constant.character.escape", "settings": { "fontStyle": "bold", "foreground": "#116329" } }, { "scope": "support.constant", "settings": { "foreground": "#0550ae" } }, { "scope": "support.variable", "settings": { "foreground": "#0550ae" } }, { "scope": "support.type.property-name.json", "settings": { "foreground": "#116329" } }, { "scope": "meta.module-reference", "settings": { "foreground": "#0550ae" } }, { "scope": "punctuation.definition.list.begin.markdown", "settings": { "foreground": "#953800" } }, { "scope": ["markup.heading", "markup.heading entity.name"], "settings": { "fontStyle": "bold", "foreground": "#0550ae" } }, { "scope": "markup.quote", "settings": { "foreground": "#116329" } }, { "scope": "markup.italic", "settings": { "fontStyle": "italic", "foreground": "#24292f" } }, { "scope": "markup.bold", "settings": { "fontStyle": "bold", "foreground": "#24292f" } }, { "scope": ["markup.underline"], "settings": { "fontStyle": "underline" } }, { "scope": ["markup.strikethrough"], "settings": { "fontStyle": "strikethrough" } }, { "scope": "markup.inline.raw", "settings": { "foreground": "#0550ae" } }, { "scope": [ "markup.deleted", "meta.diff.header.from-file", "punctuation.definition.deleted" ], "settings": { "background": "#ffebe9", "foreground": "#82071e" } }, { "scope": ["punctuation.section.embedded"], "settings": { "foreground": "#cf222e" } }, { "scope": [ "markup.inserted", "meta.diff.header.to-file", "punctuation.definition.inserted" ], "settings": { "background": "#dafbe1", "foreground": "#116329" } }, { "scope": ["markup.changed", "punctuation.definition.changed"], "settings": { "background": "#ffd8b5", "foreground": "#953800" } }, { "scope": ["markup.ignored", "markup.untracked"], "settings": { "foreground": "#eaeef2", "background": "#0550ae" } }, { "scope": "meta.diff.range", "settings": { "foreground": "#8250df", "fontStyle": "bold" } }, { "scope": "meta.diff.header", "settings": { "foreground": "#0550ae" } }, { "scope": "meta.separator", "settings": { "fontStyle": "bold", "foreground": "#0550ae" } }, { "scope": "meta.output", "settings": { "foreground": "#0550ae" } }, { "scope": [ "brackethighlighter.tag", "brackethighlighter.curly", "brackethighlighter.round", "brackethighlighter.square", "brackethighlighter.angle", "brackethighlighter.quote" ], "settings": { "foreground": "#57606a" } }, { "scope": "brackethighlighter.unmatched", "settings": { "foreground": "#82071e" } }, { "scope": ["constant.other.reference.link", "string.other.link"], "settings": { "foreground": "#0a3069", "fontStyle": "underline" } } ] } ================================================ FILE: apps/web/src/lib/shiki/themes/hc_light.json ================================================ { "$schema": "vscode://schemas/color-theme", "name": "hc_light", "tokenColors": [ { "scope": ["meta.embedded", "source.groovy.embedded"], "settings": { "foreground": "#292929" } }, { "scope": "emphasis", "settings": { "fontStyle": "italic" } }, { "scope": "strong", "settings": { "fontStyle": "bold" } }, { "scope": "meta.diff.header", "settings": { "foreground": "#062F4A" } }, { "scope": "comment", "settings": { "foreground": "#515151" } }, { "scope": "constant.language", "settings": { "foreground": "#0F4A85" } }, { "scope": [ "constant.numeric", "variable.other.enummember", "keyword.operator.plus.exponent", "keyword.operator.minus.exponent" ], "settings": { "foreground": "#096d48" } }, { "scope": "constant.regexp", "settings": { "foreground": "#811F3F" } }, { "scope": "entity.name.tag", "settings": { "foreground": "#0F4A85" } }, { "scope": "entity.name.selector", "settings": { "foreground": "#0F4A85" } }, { "scope": "entity.other.attribute-name", "settings": { "foreground": "#264F78" } }, { "scope": [ "entity.other.attribute-name.class.css", "entity.other.attribute-name.class.mixin.css", "entity.other.attribute-name.id.css", "entity.other.attribute-name.parent-selector.css", "entity.other.attribute-name.pseudo-class.css", "entity.other.attribute-name.pseudo-element.css", "source.css.less entity.other.attribute-name.id", "entity.other.attribute-name.scss" ], "settings": { "foreground": "#0F4A85" } }, { "scope": "invalid", "settings": { "foreground": "#B5200D" } }, { "scope": "markup.underline", "settings": { "fontStyle": "underline" } }, { "scope": "markup.bold", "settings": { "foreground": "#000080", "fontStyle": "bold" } }, { "scope": "markup.heading", "settings": { "foreground": "#0F4A85", "fontStyle": "bold" } }, { "scope": "markup.italic", "settings": { "fontStyle": "italic" } }, { "scope": "markup.strikethrough", "settings": { "fontStyle": "strikethrough" } }, { "scope": "markup.inserted", "settings": { "foreground": "#096d48" } }, { "scope": "markup.deleted", "settings": { "foreground": "#5A5A5A" } }, { "scope": "markup.changed", "settings": { "foreground": "#0451A5" } }, { "scope": [ "punctuation.definition.quote.begin.markdown", "punctuation.definition.list.begin.markdown" ], "settings": { "foreground": "#0451A5" } }, { "scope": "markup.inline.raw", "settings": { "foreground": "#0F4A85" } }, { "scope": "punctuation.definition.tag", "settings": { "foreground": "#0F4A85" } }, { "scope": ["meta.preprocessor", "entity.name.function.preprocessor"], "settings": { "foreground": "#0F4A85" } }, { "scope": "meta.preprocessor.string", "settings": { "foreground": "#b5200d" } }, { "scope": "meta.preprocessor.numeric", "settings": { "foreground": "#096d48" } }, { "scope": "meta.structure.dictionary.key.python", "settings": { "foreground": "#0451A5" } }, { "scope": "storage", "settings": { "foreground": "#0F4A85" } }, { "scope": "storage.type", "settings": { "foreground": "#0F4A85" } }, { "scope": ["storage.modifier", "keyword.operator.noexcept"], "settings": { "foreground": "#0F4A85" } }, { "scope": ["string", "meta.embedded.assembly"], "settings": { "foreground": "#0F4A85" } }, { "scope": [ "string.comment.buffered.block.pug", "string.quoted.pug", "string.interpolated.pug", "string.unquoted.plain.in.yaml", "string.unquoted.plain.out.yaml", "string.unquoted.block.yaml", "string.quoted.single.yaml", "string.quoted.double.xml", "string.quoted.single.xml", "string.unquoted.cdata.xml", "string.quoted.double.html", "string.quoted.single.html", "string.unquoted.html", "string.quoted.single.handlebars", "string.quoted.double.handlebars" ], "settings": { "foreground": "#0F4A85" } }, { "scope": "string.regexp", "settings": { "foreground": "#811F3F" } }, { "scope": [ "punctuation.definition.template-expression.begin", "punctuation.definition.template-expression.end", "punctuation.section.embedded" ], "settings": { "foreground": "#0F4A85" } }, { "scope": ["meta.template.expression"], "settings": { "foreground": "#000000" } }, { "scope": [ "support.constant.property-value", "support.constant.font-name", "support.constant.media-type", "support.constant.media", "constant.other.color.rgb-value", "constant.other.rgb-value", "support.constant.color" ], "settings": { "foreground": "#0451A5" } }, { "scope": [ "support.type.vendored.property-name", "support.type.property-name", "variable.css", "variable.scss", "variable.other.less", "source.coffee.embedded" ], "settings": { "foreground": "#264F78" } }, { "scope": ["support.type.property-name.json"], "settings": { "foreground": "#0451A5" } }, { "scope": "keyword", "settings": { "foreground": "#0F4A85" } }, { "scope": "keyword.control", "settings": { "foreground": "#0F4A85" } }, { "scope": "keyword.operator", "settings": { "foreground": "#000000" } }, { "scope": [ "keyword.operator.new", "keyword.operator.expression", "keyword.operator.cast", "keyword.operator.sizeof", "keyword.operator.alignof", "keyword.operator.typeid", "keyword.operator.alignas", "keyword.operator.instanceof", "keyword.operator.logical.python", "keyword.operator.wordlike" ], "settings": { "foreground": "#0F4A85" } }, { "scope": "keyword.other.unit", "settings": { "foreground": "#096d48" } }, { "scope": [ "punctuation.section.embedded.begin.php", "punctuation.section.embedded.end.php" ], "settings": { "foreground": "#0F4A85" } }, { "scope": "support.function.git-rebase", "settings": { "foreground": "#0451A5" } }, { "scope": "constant.sha.git-rebase", "settings": { "foreground": "#096d48" } }, { "scope": [ "storage.modifier.import.java", "variable.language.wildcard.java", "storage.modifier.package.java" ], "settings": { "foreground": "#000000" } }, { "scope": "variable.language", "settings": { "foreground": "#0F4A85" } }, { "scope": [ "entity.name.function", "support.function", "support.constant.handlebars", "source.powershell variable.other.member", "entity.name.operator.custom-literal" ], "settings": { "foreground": "#5e2cbc" } }, { "scope": [ "support.class", "support.type", "entity.name.type", "entity.name.namespace", "entity.other.attribute", "entity.name.scope-resolution", "entity.name.class", "storage.type.numeric.go", "storage.type.byte.go", "storage.type.boolean.go", "storage.type.string.go", "storage.type.uintptr.go", "storage.type.error.go", "storage.type.rune.go", "storage.type.cs", "storage.type.generic.cs", "storage.type.modifier.cs", "storage.type.variable.cs", "storage.type.annotation.java", "storage.type.generic.java", "storage.type.java", "storage.type.object.array.java", "storage.type.primitive.array.java", "storage.type.primitive.java", "storage.type.token.java", "storage.type.groovy", "storage.type.annotation.groovy", "storage.type.parameters.groovy", "storage.type.generic.groovy", "storage.type.object.array.groovy", "storage.type.primitive.array.groovy", "storage.type.primitive.groovy" ], "settings": { "foreground": "#185E73" } }, { "scope": [ "meta.type.cast.expr", "meta.type.new.expr", "support.constant.math", "support.constant.dom", "support.constant.json", "entity.other.inherited-class" ], "settings": { "foreground": "#185E73" } }, { "scope": [ "keyword.control", "source.cpp keyword.operator.new", "source.cpp keyword.operator.delete", "keyword.other.using", "keyword.other.operator", "entity.name.operator" ], "settings": { "foreground": "#b5200d" } }, { "scope": [ "variable", "meta.definition.variable.name", "support.variable", "entity.name.variable", "constant.other.placeholder" ], "settings": { "foreground": "#001080" } }, { "scope": ["variable.other.constant", "variable.other.enummember"], "settings": { "foreground": "#02715D" } }, { "scope": ["meta.object-literal.key"], "settings": { "foreground": "#001080" } }, { "scope": [ "support.constant.property-value", "support.constant.font-name", "support.constant.media-type", "support.constant.media", "constant.other.color.rgb-value", "constant.other.rgb-value", "support.constant.color" ], "settings": { "foreground": "#0451A5" } }, { "scope": [ "punctuation.definition.group.regexp", "punctuation.definition.group.assertion.regexp", "punctuation.definition.character-class.regexp", "punctuation.character.set.begin.regexp", "punctuation.character.set.end.regexp", "keyword.operator.negation.regexp", "support.other.parenthesis.regexp" ], "settings": { "foreground": "#D16969" } }, { "scope": [ "constant.character.character-class.regexp", "constant.other.character-class.set.regexp", "constant.other.character-class.regexp", "constant.character.set.regexp" ], "settings": { "foreground": "#811F3F" } }, { "scope": "keyword.operator.quantifier.regexp", "settings": { "foreground": "#000000" } }, { "scope": ["keyword.operator.or.regexp", "keyword.control.anchor.regexp"], "settings": { "foreground": "#EE0000" } }, { "scope": "constant.character", "settings": { "foreground": "#0F4A85" } }, { "scope": "constant.character.escape", "settings": { "foreground": "#EE0000" } }, { "scope": "entity.name.label", "settings": { "foreground": "#000000" } }, { "scope": "token.info-token", "settings": { "foreground": "#316BCD" } }, { "scope": "token.warn-token", "settings": { "foreground": "#CD9731" } }, { "scope": "token.error-token", "settings": { "foreground": "#CD3131" } }, { "scope": "token.debug-token", "settings": { "foreground": "#800080" } } ] } ================================================ FILE: apps/web/src/lib/shiki/themes/light-plus.json ================================================ { "$schema": "vscode://schemas/color-theme", "name": "light-plus", "tokenColors": [ { "settings": { "foreground": "#000000" } }, { "scope": [ "meta.embedded", "source.groovy.embedded", "string meta.image.inline.markdown" ], "settings": { "foreground": "#000000ff" } }, { "scope": "emphasis", "settings": { "fontStyle": "italic" } }, { "scope": "strong", "settings": { "fontStyle": "bold" } }, { "scope": "meta.diff.header", "settings": { "foreground": "#000080" } }, { "scope": "comment", "settings": { "foreground": "#008000" } }, { "scope": "constant.language", "settings": { "foreground": "#0000ff" } }, { "scope": [ "constant.numeric", "variable.other.enummember", "keyword.operator.plus.exponent", "keyword.operator.minus.exponent" ], "settings": { "foreground": "#098658" } }, { "scope": "constant.regexp", "settings": { "foreground": "#811f3f" } }, { "name": "css tags in selectors, xml tags", "scope": "entity.name.tag", "settings": { "foreground": "#800000" } }, { "scope": "entity.name.selector", "settings": { "foreground": "#800000" } }, { "scope": "entity.other.attribute-name", "settings": { "foreground": "#ff0000" } }, { "scope": [ "entity.other.attribute-name.class.css", "entity.other.attribute-name.class.mixin.css", "entity.other.attribute-name.id.css", "entity.other.attribute-name.parent-selector.css", "entity.other.attribute-name.pseudo-class.css", "entity.other.attribute-name.pseudo-element.css", "source.css.less entity.other.attribute-name.id", "entity.other.attribute-name.scss" ], "settings": { "foreground": "#800000" } }, { "scope": "invalid", "settings": { "foreground": "#cd3131" } }, { "scope": "markup.underline", "settings": { "fontStyle": "underline" } }, { "scope": "markup.bold", "settings": { "fontStyle": "bold", "foreground": "#000080" } }, { "scope": "markup.heading", "settings": { "fontStyle": "bold", "foreground": "#800000" } }, { "scope": "markup.italic", "settings": { "fontStyle": "italic" } }, { "scope": "markup.strikethrough", "settings": { "fontStyle": "strikethrough" } }, { "scope": "markup.inserted", "settings": { "foreground": "#098658" } }, { "scope": "markup.deleted", "settings": { "foreground": "#a31515" } }, { "scope": "markup.changed", "settings": { "foreground": "#0451a5" } }, { "scope": [ "punctuation.definition.quote.begin.markdown", "punctuation.definition.list.begin.markdown" ], "settings": { "foreground": "#0451a5" } }, { "scope": "markup.inline.raw", "settings": { "foreground": "#800000" } }, { "name": "brackets of XML/HTML tags", "scope": "punctuation.definition.tag", "settings": { "foreground": "#800000" } }, { "scope": ["meta.preprocessor", "entity.name.function.preprocessor"], "settings": { "foreground": "#0000ff" } }, { "scope": "meta.preprocessor.string", "settings": { "foreground": "#a31515" } }, { "scope": "meta.preprocessor.numeric", "settings": { "foreground": "#098658" } }, { "scope": "meta.structure.dictionary.key.python", "settings": { "foreground": "#0451a5" } }, { "scope": "storage", "settings": { "foreground": "#0000ff" } }, { "scope": "storage.type", "settings": { "foreground": "#0000ff" } }, { "scope": ["storage.modifier", "keyword.operator.noexcept"], "settings": { "foreground": "#0000ff" } }, { "scope": ["string", "meta.embedded.assembly"], "settings": { "foreground": "#a31515" } }, { "scope": [ "string.comment.buffered.block.pug", "string.quoted.pug", "string.interpolated.pug", "string.unquoted.plain.in.yaml", "string.unquoted.plain.out.yaml", "string.unquoted.block.yaml", "string.quoted.single.yaml", "string.quoted.double.xml", "string.quoted.single.xml", "string.unquoted.cdata.xml", "string.quoted.double.html", "string.quoted.single.html", "string.unquoted.html", "string.quoted.single.handlebars", "string.quoted.double.handlebars" ], "settings": { "foreground": "#0000ff" } }, { "scope": "string.regexp", "settings": { "foreground": "#811f3f" } }, { "name": "String interpolation", "scope": [ "punctuation.definition.template-expression.begin", "punctuation.definition.template-expression.end", "punctuation.section.embedded" ], "settings": { "foreground": "#0000ff" } }, { "name": "Reset JavaScript string interpolation expression", "scope": ["meta.template.expression"], "settings": { "foreground": "#000000" } }, { "scope": [ "support.constant.property-value", "support.constant.font-name", "support.constant.media-type", "support.constant.media", "constant.other.color.rgb-value", "constant.other.rgb-value", "support.constant.color" ], "settings": { "foreground": "#0451a5" } }, { "scope": [ "support.type.vendored.property-name", "support.type.property-name", "variable.css", "variable.scss", "variable.other.less", "source.coffee.embedded" ], "settings": { "foreground": "#ff0000" } }, { "scope": ["support.type.property-name.json"], "settings": { "foreground": "#0451a5" } }, { "scope": "keyword", "settings": { "foreground": "#0000ff" } }, { "scope": "keyword.control", "settings": { "foreground": "#0000ff" } }, { "scope": "keyword.operator", "settings": { "foreground": "#000000" } }, { "scope": [ "keyword.operator.new", "keyword.operator.expression", "keyword.operator.cast", "keyword.operator.sizeof", "keyword.operator.alignof", "keyword.operator.typeid", "keyword.operator.alignas", "keyword.operator.instanceof", "keyword.operator.logical.python", "keyword.operator.wordlike" ], "settings": { "foreground": "#0000ff" } }, { "scope": "keyword.other.unit", "settings": { "foreground": "#098658" } }, { "scope": [ "punctuation.section.embedded.begin.php", "punctuation.section.embedded.end.php" ], "settings": { "foreground": "#800000" } }, { "scope": "support.function.git-rebase", "settings": { "foreground": "#0451a5" } }, { "scope": "constant.sha.git-rebase", "settings": { "foreground": "#098658" } }, { "name": "coloring of the Java import and package identifiers", "scope": [ "storage.modifier.import.java", "variable.language.wildcard.java", "storage.modifier.package.java" ], "settings": { "foreground": "#000000" } }, { "name": "this.self", "scope": "variable.language", "settings": { "foreground": "#0000ff" } }, { "name": "Function declarations", "scope": [ "entity.name.function", "support.function", "support.constant.handlebars", "source.powershell variable.other.member", "entity.name.operator.custom-literal" ], "settings": { "foreground": "#795E26" } }, { "name": "Types declaration and references", "scope": [ "support.class", "support.type", "entity.name.type", "entity.name.namespace", "entity.other.attribute", "entity.name.scope-resolution", "entity.name.class", "storage.type.numeric.go", "storage.type.byte.go", "storage.type.boolean.go", "storage.type.string.go", "storage.type.uintptr.go", "storage.type.error.go", "storage.type.rune.go", "storage.type.cs", "storage.type.generic.cs", "storage.type.modifier.cs", "storage.type.variable.cs", "storage.type.annotation.java", "storage.type.generic.java", "storage.type.java", "storage.type.object.array.java", "storage.type.primitive.array.java", "storage.type.primitive.java", "storage.type.token.java", "storage.type.groovy", "storage.type.annotation.groovy", "storage.type.parameters.groovy", "storage.type.generic.groovy", "storage.type.object.array.groovy", "storage.type.primitive.array.groovy", "storage.type.primitive.groovy" ], "settings": { "foreground": "#267f99" } }, { "name": "Types declaration and references, TS grammar specific", "scope": [ "meta.type.cast.expr", "meta.type.new.expr", "support.constant.math", "support.constant.dom", "support.constant.json", "entity.other.inherited-class" ], "settings": { "foreground": "#267f99" } }, { "name": "Control flow / Special keywords", "scope": [ "keyword.control", "source.cpp keyword.operator.new", "source.cpp keyword.operator.delete", "keyword.other.using", "keyword.other.operator", "entity.name.operator" ], "settings": { "foreground": "#AF00DB" } }, { "name": "Variable and parameter name", "scope": [ "variable", "meta.definition.variable.name", "support.variable", "entity.name.variable", "constant.other.placeholder" ], "settings": { "foreground": "#001080" } }, { "name": "Constants and enums", "scope": ["variable.other.constant", "variable.other.enummember"], "settings": { "foreground": "#0070C1" } }, { "name": "Object keys, TS grammar specific", "scope": ["meta.object-literal.key"], "settings": { "foreground": "#001080" } }, { "name": "CSS property value", "scope": [ "support.constant.property-value", "support.constant.font-name", "support.constant.media-type", "support.constant.media", "constant.other.color.rgb-value", "constant.other.rgb-value", "support.constant.color" ], "settings": { "foreground": "#0451a5" } }, { "name": "Regular expression groups", "scope": [ "punctuation.definition.group.regexp", "punctuation.definition.group.assertion.regexp", "punctuation.definition.character-class.regexp", "punctuation.character.set.begin.regexp", "punctuation.character.set.end.regexp", "keyword.operator.negation.regexp", "support.other.parenthesis.regexp" ], "settings": { "foreground": "#d16969" } }, { "scope": [ "constant.character.character-class.regexp", "constant.other.character-class.set.regexp", "constant.other.character-class.regexp", "constant.character.set.regexp" ], "settings": { "foreground": "#811f3f" } }, { "scope": "keyword.operator.quantifier.regexp", "settings": { "foreground": "#000000" } }, { "scope": ["keyword.operator.or.regexp", "keyword.control.anchor.regexp"], "settings": { "foreground": "#EE0000" } }, { "scope": "constant.character", "settings": { "foreground": "#0000ff" } }, { "scope": "constant.character.escape", "settings": { "foreground": "#EE0000" } }, { "scope": "entity.name.label", "settings": { "foreground": "#000000" } } ], "semanticHighlighting": true, "semanticTokenColors": { "newOperator": "#AF00DB", "stringLiteral": "#a31515", "customLiteral": "#795E26", "numberLiteral": "#098658" }, "colors": { "editor.background": "#FFFFFF", "editor.foreground": "#000000", "editor.inactiveSelectionBackground": "#E5EBF1", "editorIndentGuide.background": "#D3D3D3", "editorIndentGuide.activeBackground": "#939393", "editor.selectionHighlightBackground": "#ADD6FF80", "editorSuggestWidget.background": "#F3F3F3", "activityBarBadge.background": "#007ACC", "sideBarTitle.foreground": "#6F6F6F", "list.hoverBackground": "#E8E8E8", "input.placeholderForeground": "#767676", "searchEditor.textInputBorder": "#CECECE", "settings.textInputBorder": "#CECECE", "settings.numberInputBorder": "#CECECE", "statusBarItem.remoteForeground": "#FFF", "statusBarItem.remoteBackground": "#16825D", "ports.iconRunningProcessForeground": "#369432", "sideBarSectionHeader.background": "#0000", "sideBarSectionHeader.border": "#61616130", "tab.lastPinnedBorder": "#61616130", "notebook.cellBorderColor": "#E8E8E8", "notebook.selectedCellBackground": "#c8ddf150", "statusBarItem.errorBackground": "#c72e0f", "list.activeSelectionIconForeground": "#FFF", "list.focusAndSelectionOutline": "#90C2F9" } } ================================================ FILE: apps/web/src/lib/shiki/themes/material-darker.json ================================================ { "name": "material-darker", "semanticHighlighting": true, "tokenColors": [ { "name": "Global settings", "settings": { "background": "#212121", "foreground": "#EEFFFF" } }, { "name": "String", "scope": "string", "settings": { "foreground": "#C3E88D" } }, { "name": "Punctuation", "scope": "punctuation, constant.other.symbol", "settings": { "foreground": "#89DDFF" } }, { "name": "String Escape", "scope": "constant.character.escape, text.html constant.character.entity.named", "settings": { "foreground": "#EEFFFF" } }, { "name": "Boolean", "scope": "constant.language.boolean", "settings": { "foreground": "#ff9cac" } }, { "name": "Number", "scope": "constant.numeric", "settings": { "foreground": "#F78C6C" } }, { "name": "Variable", "scope": "variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments", "settings": { "foreground": "#EEFFFF" } }, { "name": "Other Keyword", "scope": "keyword.other", "settings": { "foreground": "#F78C6C" } }, { "name": "Keyword", "scope": "keyword, modifier, variable.language.this, support.type.object, constant.language", "settings": { "foreground": "#89DDFF" } }, { "name": "Function call", "scope": "entity.name.function, support.function", "settings": { "foreground": "#82AAFF" } }, { "name": "Storage", "scope": "storage.type, storage.modifier, storage.control", "settings": { "foreground": "#C792EA" } }, { "name": "Modules", "scope": "support.module, support.node", "settings": { "foreground": "#f07178", "fontStyle": "italic" } }, { "name": "Type", "scope": "support.type, constant.other.key", "settings": { "foreground": "#FFCB6B" } }, { "name": "Type", "scope": "entity.name.type, entity.other.inherited-class, entity.other", "settings": { "foreground": "#FFCB6B" } }, { "name": "Comment", "scope": "comment", "settings": { "foreground": "#545454", "fontStyle": "italic" } }, { "name": "Comment", "scope": "comment punctuation.definition.comment, string.quoted.docstring", "settings": { "foreground": "#545454", "fontStyle": "italic" } }, { "name": "Punctuation", "scope": "punctuation", "settings": { "foreground": "#89DDFF" } }, { "name": "Class", "scope": "entity.name, entity.name.type.class, support.type, support.class, meta.use", "settings": { "foreground": "#FFCB6B" } }, { "name": "Class variable", "scope": "variable.object.property, meta.field.declaration entity.name.function", "settings": { "foreground": "#f07178" } }, { "name": "Class method", "scope": "meta.definition.method entity.name.function", "settings": { "foreground": "#f07178" } }, { "name": "Function definition", "scope": "meta.function entity.name.function", "settings": { "foreground": "#82AAFF" } }, { "name": "Template expression", "scope": "template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end", "settings": { "foreground": "#89DDFF" } }, { "name": "Reset embedded/template expression colors", "scope": "meta.embedded, source.groovy.embedded, meta.template.expression", "settings": { "foreground": "#EEFFFF" } }, { "name": "YAML key", "scope": "entity.name.tag.yaml", "settings": { "foreground": "#f07178" } }, { "name": "JSON key", "scope": "meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json", "settings": { "foreground": "#f07178" } }, { "name": "JSON constant", "scope": "constant.language.json", "settings": { "foreground": "#89DDFF" } }, { "name": "CSS class", "scope": "entity.other.attribute-name.class", "settings": { "foreground": "#FFCB6B" } }, { "name": "CSS ID", "scope": "entity.other.attribute-name.id", "settings": { "foreground": "#F78C6C" } }, { "name": "CSS tag", "scope": "source.css entity.name.tag", "settings": { "foreground": "#FFCB6B" } }, { "name": "CSS properties", "scope": "support.type.property-name.css", "settings": { "foreground": "#B2CCD6" } }, { "name": "HTML tag outer", "scope": "meta.tag, punctuation.definition.tag", "settings": { "foreground": "#89DDFF" } }, { "name": "HTML tag inner", "scope": "entity.name.tag", "settings": { "foreground": "#f07178" } }, { "name": "HTML tag attribute", "scope": "entity.other.attribute-name", "settings": { "foreground": "#C792EA" } }, { "name": "HTML entities", "scope": "punctuation.definition.entity.html", "settings": { "foreground": "#EEFFFF" } }, { "name": "Markdown heading", "scope": "markup.heading", "settings": { "foreground": "#89DDFF" } }, { "name": "Markdown link text", "scope": "text.html.markdown meta.link.inline, meta.link.reference", "settings": { "foreground": "#f07178" } }, { "name": "Markdown list item", "scope": "text.html.markdown beginning.punctuation.definition.list", "settings": { "foreground": "#89DDFF" } }, { "name": "Markdown italic", "scope": "markup.italic", "settings": { "foreground": "#f07178", "fontStyle": "italic" } }, { "name": "Markdown bold", "scope": "markup.bold", "settings": { "foreground": "#f07178", "fontStyle": "bold" } }, { "name": "Markdown bold italic", "scope": "markup.bold markup.italic, markup.italic markup.bold", "settings": { "foreground": "#f07178", "fontStyle": "italic bold" } }, { "name": "Markdown code block", "scope": "markup.fenced_code.block.markdown punctuation.definition.markdown", "settings": { "foreground": "#C3E88D" } }, { "name": "Markdown inline code", "scope": "markup.inline.raw.string.markdown", "settings": { "foreground": "#C3E88D" } }, { "name": "INI property name", "scope": "keyword.other.definition.ini", "settings": { "foreground": "#f07178" } }, { "name": "INI section title", "scope": "entity.name.section.group-title.ini", "settings": { "foreground": "#89DDFF" } }, { "name": "C# class", "scope": "source.cs meta.class.identifier storage.type", "settings": { "foreground": "#FFCB6B" } }, { "name": "C# class method", "scope": "source.cs meta.method.identifier entity.name.function", "settings": { "foreground": "#f07178" } }, { "name": "C# function call", "scope": "source.cs meta.method-call meta.method, source.cs entity.name.function", "settings": { "foreground": "#82AAFF" } }, { "name": "C# type", "scope": "source.cs storage.type", "settings": { "foreground": "#FFCB6B" } }, { "name": "C# return type", "scope": "source.cs meta.method.return-type", "settings": { "foreground": "#FFCB6B" } }, { "name": "C# preprocessor", "scope": "source.cs meta.preprocessor", "settings": { "foreground": "#545454" } }, { "name": "C# namespace", "scope": "source.cs entity.name.type.namespace", "settings": { "foreground": "#EEFFFF" } }, { "name": "JSX Text", "scope": "meta.jsx.children, SXNested", "settings": { "foreground": "#EEFFFF" } }, { "name": "JSX Components name", "scope": "support.class.component", "settings": { "foreground": "#FFCB6B" } }, { "name": "C-related Block Level Variables", "scope": "source.cpp meta.block variable.other", "settings": { "foreground": "#EEFFFF" } }, { "name": "Member Access Meta", "scope": "source.python meta.member.access.python", "settings": { "foreground": "#f07178" } }, { "name": "Function Call", "scope": "source.python meta.function-call.python, meta.function-call.arguments", "settings": { "foreground": "#82AAFF" } }, { "name": "Blocks", "scope": "meta.block", "settings": { "foreground": "#f07178" } }, { "name": "Function Call", "scope": "entity.name.function.call", "settings": { "foreground": "#82AAFF" } }, { "name": "Namespaces", "scope": "source.php support.other.namespace, source.php meta.use support.class", "settings": { "foreground": "#EEFFFF" } }, { "name": "Constant keywords", "scope": "constant.keyword", "settings": { "foreground": "#89DDFF", "fontStyle": "italic" } }, { "name": "Entity name", "scope": "entity.name.function", "settings": { "foreground": "#82AAFF" } }, { "name": "Global settings", "settings": { "background": "#212121", "foreground": "#EEFFFF" } }, { "name": "Markup Deleted", "scope": ["markup.deleted"], "settings": { "foreground": "#f07178" } }, { "name": "Markup Inserted", "scope": ["markup.inserted"], "settings": { "foreground": "#C3E88D" } }, { "name": "Markup Underline", "scope": ["markup.underline"], "settings": { "fontStyle": "underline" } }, { "name": "Keyword Control", "scope": ["keyword.control"], "settings": { "foreground": "#89DDFF", "fontStyle": "italic" } }, { "name": "Parameter", "scope": ["variable.parameter"], "settings": { "fontStyle": "italic" } }, { "name": "Python - Self Parameter", "scope": ["variable.parameter.function.language.special.self.python"], "settings": { "foreground": "#f07178", "fontStyle": "italic" } }, { "name": "Python - Format Placeholder", "scope": ["constant.character.format.placeholder.other.python"], "settings": { "foreground": "#F78C6C" } }, { "name": "Markdown - Blockquote", "scope": ["markup.quote"], "settings": { "fontStyle": "italic", "foreground": "#89DDFF" } }, { "name": "Markdown - Fenced Language", "scope": ["markup.fenced_code.block"], "settings": { "foreground": "#EEFFFF90" } }, { "name": "Markdown - Blockquote Punctuation", "scope": ["punctuation.definition.quote"], "settings": { "foreground": "#ff9cac" } }, { "name": "JSON Key - Level 0", "scope": [ "meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#C792EA" } }, { "name": "JSON Key - Level 1", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#FFCB6B" } }, { "name": "JSON Key - Level 2", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#F78C6C" } }, { "name": "JSON Key - Level 3", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#f07178" } }, { "name": "JSON Key - Level 4", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#916b53" } }, { "name": "JSON Key - Level 5", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#82AAFF" } }, { "name": "JSON Key - Level 6", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#ff9cac" } }, { "name": "JSON Key - Level 7", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#C792EA" } }, { "name": "JSON Key - Level 8", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#C3E88D" } } ], "colors": { "focusBorder": "#FFFFFF00", "foreground": "#EEFFFF", "button.background": "#61616150", "button.foreground": "#ffffff", "dropdown.background": "#212121", "input.background": "#2B2B2B", "inputOption.activeBorder": "#EEFFFF30", "list.activeSelectionBackground": "#212121", "list.activeSelectionForeground": "#80CBC4", "list.dropBackground": "#f0717880", "list.focusBackground": "#EEFFFF20", "list.focusForeground": "#EEFFFF", "list.highlightForeground": "#80CBC4", "list.hoverBackground": "#212121", "list.inactiveSelectionBackground": "#00000030", "activityBar.background": "#212121", "activityBar.dropBackground": "#f0717880", "activityBarBadge.background": "#80CBC4", "activityBarBadge.foreground": "#000000", "badge.background": "#00000030", "badge.foreground": "#545454", "sideBar.background": "#212121", "sideBarSectionHeader.background": "#212121", "editorGroup.dropBackground": "#f0717880", "editorGroup.focusedEmptyBorder": "#f07178", "editorGroupHeader.tabsBackground": "#212121", "tab.border": "#212121", "tab.activeBorder": "#80CBC4", "tab.inactiveBackground": "#212121", "tab.activeModifiedBorder": "#616161", "tab.inactiveModifiedBorder": "#904348", "tab.unfocusedActiveModifiedBorder": "#c05a60", "tab.unfocusedInactiveModifiedBorder": "#904348", "editor.background": "#212121", "editor.foreground": "#EEFFFF", "editorLineNumber.foreground": "#424242", "editorLineNumber.activeForeground": "#616161", "editorCursor.foreground": "#FFCC00", "editor.selectionBackground": "#61616150", "editor.selectionHighlightBackground": "#FFCC0020", "editor.wordHighlightBackground": "#ff9cac30", "editor.wordHighlightStrongBackground": "#C3E88D30", "editor.findMatchHighlight": "#EEFFFF", "editor.findRangeHighlightBackground": "#FFCB6B30", "editor.lineHighlightBorder": "#00000000", "editor.rangeHighlightBackground": "#FFFFFF0d", "editorWhitespace.foreground": "#EEFFFF40", "editorWidget.background": "#212121", "editorHoverWidget.background": "#212121", "editorMarkerNavigation.background": "#EEFFFF05", "peekView.border": "#00000030", "peekViewEditor.background": "#EEFFFF05", "peekViewResult.background": "#EEFFFF05", "peekViewTitle.background": "#EEFFFF05", "panel.background": "#212121", "panel.border": "#21212160", "panelTitle.activeBorder": "#80CBC4", "panelTitle.inactiveForeground": "#EEFFFF", "statusBar.background": "#212121", "statusBar.debuggingBackground": "#C792EA", "statusBar.debuggingForeground": "#ffffff", "statusBar.noFolderBackground": "#212121", "statusBarItem.activeBackground": "#f0717880", "statusBarItem.hoverBackground": "#54545420", "statusBarItem.remoteBackground": "#80CBC4", "statusBarItem.remoteForeground": "#000000", "titleBar.activeBackground": "#212121", "pickerGroup.border": "#FFFFFF1a", "terminal.ansiBlack": "#000000", "terminal.ansiBlue": "#82AAFF", "terminal.ansiBrightBlack": "#545454", "terminal.ansiBrightBlue": "#82AAFF", "terminal.ansiBrightCyan": "#89DDFF", "terminal.ansiBrightGreen": "#C3E88D", "terminal.ansiBrightMagenta": "#C792EA", "terminal.ansiBrightRed": "#f07178", "terminal.ansiBrightWhite": "#ffffff", "terminal.ansiBrightYellow": "#FFCB6B", "terminal.ansiCyan": "#89DDFF", "terminal.ansiGreen": "#C3E88D", "terminal.ansiMagenta": "#C792EA", "terminal.ansiRed": "#f07178", "terminal.ansiWhite": "#ffffff", "terminal.ansiYellow": "#FFCB6B", "debugToolBar.background": "#212121", "debugConsole.errorForeground": "#f07178", "debugConsole.infoForeground": "#89DDFF", "debugConsole.warningForeground": "#FFCB6B", "selection.background": "#00000080", "editorRuler.foreground": "#424242", "widget.shadow": "#00000030", "scrollbar.shadow": "#00000030", "editorLink.activeForeground": "#EEFFFF", "progressBar.background": "#80CBC4", "pickerGroup.foreground": "#80CBC4", "tree.indentGuidesStroke": "#424242", "terminalCursor.foreground": "#FFCB6B", "terminalCursor.background": "#000000", "inputOption.activeBackground": "#EEFFFF30", "textLink.foreground": "#80CBC4", "textLink.activeForeground": "#EEFFFF", "sideBar.foreground": "#616161", "sideBar.border": "#21212160", "sideBarTitle.foreground": "#EEFFFF", "sideBarSectionHeader.border": "#21212160", "panel.dropBackground": "#EEFFFF", "panelTitle.activeForeground": "#FFFFFF", "editor.lineHighlightBackground": "#00000050", "editor.findMatchBackground": "#000000", "editor.findMatchHighlightBackground": "#00000050", "editor.findMatchBorder": "#80CBC4", "editor.findMatchHighlightBorder": "#ffffff30", "editorIndentGuide.background": "#42424270", "editorIndentGuide.activeBackground": "#424242", "editorGroup.border": "#00000030", "editorGutter.modifiedBackground": "#82AAFF60", "editorGutter.addedBackground": "#C3E88D60", "editorGutter.deletedBackground": "#f0717860", "activityBar.border": "#21212160", "activityBar.foreground": "#EEFFFF", "activityBar.activeBorder": "#80CBC4", "extensionBadge.remoteForeground": "#EEFFFF", "scrollbarSlider.background": "#EEFFFF20", "scrollbarSlider.hoverBackground": "#EEFFFF10", "scrollbarSlider.activeBackground": "#80CBC4", "tab.unfocusedActiveBorder": "#545454", "tab.activeForeground": "#FFFFFF", "tab.inactiveForeground": "#616161", "tab.activeBackground": "#212121", "tab.unfocusedActiveForeground": "#EEFFFF", "editorWidget.resizeBorder": "#80CBC4", "editorWidget.border": "#80CBC4", "notebook.focusedCellBorder": "#80CBC4", "notebook.inactiveFocusedCellBorder": "#80CBC450", "statusBar.border": "#21212160", "statusBar.foreground": "#616161", "editorBracketMatch.border": "#FFCC0050", "editorBracketMatch.background": "#212121", "editorOverviewRuler.findMatchForeground": "#80CBC4", "editorOverviewRuler.border": "#212121", "editorOverviewRuler.errorForeground": "#f0717840", "editorOverviewRuler.infoForeground": "#82AAFF40", "editorOverviewRuler.warningForeground": "#FFCB6B40", "editorInfo.foreground": "#82AAFF70", "editorWarning.foreground": "#FFCB6B70", "editorError.foreground": "#f0717870", "editorHoverWidget.border": "#FFFFFF10", "titleBar.activeForeground": "#EEFFFF", "titleBar.inactiveBackground": "#212121", "titleBar.inactiveForeground": "#616161", "titleBar.border": "#21212160", "input.foreground": "#EEFFFF", "input.placeholderForeground": "#EEFFFF60", "input.border": "#FFFFFF10", "inputValidation.errorBorder": "#f07178", "inputValidation.infoBorder": "#82AAFF", "inputValidation.warningBorder": "#FFCB6B", "dropdown.border": "#FFFFFF10", "quickInput.background": "#212121", "quickInput.foreground": "#616161", "list.hoverForeground": "#FFFFFF", "list.inactiveSelectionForeground": "#80CBC4", "quickInput.list.focusBackground": "#EEFFFF20", "editorSuggestWidget.background": "#212121", "editorSuggestWidget.foreground": "#EEFFFF", "editorSuggestWidget.highlightForeground": "#80CBC4", "editorSuggestWidget.selectedBackground": "#00000050", "editorSuggestWidget.border": "#FFFFFF10", "diffEditor.insertedTextBackground": "#89DDFF20", "diffEditor.removedTextBackground": "#ff9cac20", "notifications.background": "#212121", "notifications.foreground": "#EEFFFF", "notificationLink.foreground": "#80CBC4", "extensionButton.prominentBackground": "#C3E88D90", "extensionButton.prominentHoverBackground": "#C3E88D", "extensionButton.prominentForeground": "#000000", "peekViewEditorGutter.background": "#EEFFFF05", "peekViewTitleDescription.foreground": "#EEFFFF60", "peekViewResult.matchHighlightBackground": "#61616150", "peekViewEditor.matchHighlightBackground": "#61616150", "peekViewResult.selectionBackground": "#61616170", "gitDecoration.deletedResourceForeground": "#f0717890", "gitDecoration.conflictingResourceForeground": "#FFCB6B90", "gitDecoration.modifiedResourceForeground": "#82AAFF90", "gitDecoration.untrackedResourceForeground": "#C3E88D90", "gitDecoration.ignoredResourceForeground": "#61616190", "breadcrumb.background": "#212121", "breadcrumb.foreground": "#616161", "breadcrumb.focusForeground": "#EEFFFF", "breadcrumb.activeSelectionForeground": "#80CBC4", "breadcrumbPicker.background": "#212121", "menu.background": "#212121", "menu.foreground": "#EEFFFF", "menu.selectionBackground": "#00000050", "menu.selectionForeground": "#80CBC4", "menu.selectionBorder": "#00000030", "menu.separatorBackground": "#EEFFFF", "menubar.selectionBackground": "#00000030", "menubar.selectionForeground": "#80CBC4", "menubar.selectionBorder": "#00000030", "settings.dropdownForeground": "#EEFFFF", "settings.dropdownBackground": "#212121", "settings.numberInputForeground": "#EEFFFF", "settings.numberInputBackground": "#212121", "settings.textInputForeground": "#EEFFFF", "settings.textInputBackground": "#212121", "settings.headerForeground": "#80CBC4", "settings.modifiedItemIndicator": "#80CBC4", "settings.checkboxBackground": "#212121", "settings.checkboxForeground": "#EEFFFF", "listFilterWidget.background": "#00000030", "listFilterWidget.outline": "#00000030", "listFilterWidget.noMatchesOutline": "#00000030" } } ================================================ FILE: apps/web/src/lib/shiki/themes/material-default.json ================================================ { "name": "material-default", "semanticHighlighting": true, "tokenColors": [ { "name": "Global settings", "settings": { "background": "#263238", "foreground": "#EEFFFF" } }, { "name": "String", "scope": "string", "settings": { "foreground": "#C3E88D" } }, { "name": "Punctuation", "scope": "punctuation, constant.other.symbol", "settings": { "foreground": "#89DDFF" } }, { "name": "String Escape", "scope": "constant.character.escape, text.html constant.character.entity.named", "settings": { "foreground": "#EEFFFF" } }, { "name": "Boolean", "scope": "constant.language.boolean", "settings": { "foreground": "#ff9cac" } }, { "name": "Number", "scope": "constant.numeric", "settings": { "foreground": "#F78C6C" } }, { "name": "Variable", "scope": "variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments", "settings": { "foreground": "#EEFFFF" } }, { "name": "Other Keyword", "scope": "keyword.other", "settings": { "foreground": "#F78C6C" } }, { "name": "Keyword", "scope": "keyword, modifier, variable.language.this, support.type.object, constant.language", "settings": { "foreground": "#89DDFF" } }, { "name": "Function call", "scope": "entity.name.function, support.function", "settings": { "foreground": "#82AAFF" } }, { "name": "Storage", "scope": "storage.type, storage.modifier, storage.control", "settings": { "foreground": "#C792EA" } }, { "name": "Modules", "scope": "support.module, support.node", "settings": { "foreground": "#f07178", "fontStyle": "italic" } }, { "name": "Type", "scope": "support.type, constant.other.key", "settings": { "foreground": "#FFCB6B" } }, { "name": "Type", "scope": "entity.name.type, entity.other.inherited-class, entity.other", "settings": { "foreground": "#FFCB6B" } }, { "name": "Comment", "scope": "comment", "settings": { "foreground": "#546E7A", "fontStyle": "italic" } }, { "name": "Comment", "scope": "comment punctuation.definition.comment, string.quoted.docstring", "settings": { "foreground": "#546E7A", "fontStyle": "italic" } }, { "name": "Punctuation", "scope": "punctuation", "settings": { "foreground": "#89DDFF" } }, { "name": "Class", "scope": "entity.name, entity.name.type.class, support.type, support.class, meta.use", "settings": { "foreground": "#FFCB6B" } }, { "name": "Class variable", "scope": "variable.object.property, meta.field.declaration entity.name.function", "settings": { "foreground": "#f07178" } }, { "name": "Class method", "scope": "meta.definition.method entity.name.function", "settings": { "foreground": "#f07178" } }, { "name": "Function definition", "scope": "meta.function entity.name.function", "settings": { "foreground": "#82AAFF" } }, { "name": "Template expression", "scope": "template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end", "settings": { "foreground": "#89DDFF" } }, { "name": "Reset embedded/template expression colors", "scope": "meta.embedded, source.groovy.embedded, meta.template.expression", "settings": { "foreground": "#EEFFFF" } }, { "name": "YAML key", "scope": "entity.name.tag.yaml", "settings": { "foreground": "#f07178" } }, { "name": "JSON key", "scope": "meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json", "settings": { "foreground": "#f07178" } }, { "name": "JSON constant", "scope": "constant.language.json", "settings": { "foreground": "#89DDFF" } }, { "name": "CSS class", "scope": "entity.other.attribute-name.class", "settings": { "foreground": "#FFCB6B" } }, { "name": "CSS ID", "scope": "entity.other.attribute-name.id", "settings": { "foreground": "#F78C6C" } }, { "name": "CSS tag", "scope": "source.css entity.name.tag", "settings": { "foreground": "#FFCB6B" } }, { "name": "CSS properties", "scope": "support.type.property-name.css", "settings": { "foreground": "#B2CCD6" } }, { "name": "HTML tag outer", "scope": "meta.tag, punctuation.definition.tag", "settings": { "foreground": "#89DDFF" } }, { "name": "HTML tag inner", "scope": "entity.name.tag", "settings": { "foreground": "#f07178" } }, { "name": "HTML tag attribute", "scope": "entity.other.attribute-name", "settings": { "foreground": "#C792EA" } }, { "name": "HTML entities", "scope": "punctuation.definition.entity.html", "settings": { "foreground": "#EEFFFF" } }, { "name": "Markdown heading", "scope": "markup.heading", "settings": { "foreground": "#89DDFF" } }, { "name": "Markdown link text", "scope": "text.html.markdown meta.link.inline, meta.link.reference", "settings": { "foreground": "#f07178" } }, { "name": "Markdown list item", "scope": "text.html.markdown beginning.punctuation.definition.list", "settings": { "foreground": "#89DDFF" } }, { "name": "Markdown italic", "scope": "markup.italic", "settings": { "foreground": "#f07178", "fontStyle": "italic" } }, { "name": "Markdown bold", "scope": "markup.bold", "settings": { "foreground": "#f07178", "fontStyle": "bold" } }, { "name": "Markdown bold italic", "scope": "markup.bold markup.italic, markup.italic markup.bold", "settings": { "foreground": "#f07178", "fontStyle": "italic bold" } }, { "name": "Markdown code block", "scope": "markup.fenced_code.block.markdown punctuation.definition.markdown", "settings": { "foreground": "#C3E88D" } }, { "name": "Markdown inline code", "scope": "markup.inline.raw.string.markdown", "settings": { "foreground": "#C3E88D" } }, { "name": "INI property name", "scope": "keyword.other.definition.ini", "settings": { "foreground": "#f07178" } }, { "name": "INI section title", "scope": "entity.name.section.group-title.ini", "settings": { "foreground": "#89DDFF" } }, { "name": "C# class", "scope": "source.cs meta.class.identifier storage.type", "settings": { "foreground": "#FFCB6B" } }, { "name": "C# class method", "scope": "source.cs meta.method.identifier entity.name.function", "settings": { "foreground": "#f07178" } }, { "name": "C# function call", "scope": "source.cs meta.method-call meta.method, source.cs entity.name.function", "settings": { "foreground": "#82AAFF" } }, { "name": "C# type", "scope": "source.cs storage.type", "settings": { "foreground": "#FFCB6B" } }, { "name": "C# return type", "scope": "source.cs meta.method.return-type", "settings": { "foreground": "#FFCB6B" } }, { "name": "C# preprocessor", "scope": "source.cs meta.preprocessor", "settings": { "foreground": "#546E7A" } }, { "name": "C# namespace", "scope": "source.cs entity.name.type.namespace", "settings": { "foreground": "#EEFFFF" } }, { "name": "JSX Text", "scope": "meta.jsx.children, SXNested", "settings": { "foreground": "#EEFFFF" } }, { "name": "JSX Components name", "scope": "support.class.component", "settings": { "foreground": "#FFCB6B" } }, { "name": "C-related Block Level Variables", "scope": "source.cpp meta.block variable.other", "settings": { "foreground": "#EEFFFF" } }, { "name": "Member Access Meta", "scope": "source.python meta.member.access.python", "settings": { "foreground": "#f07178" } }, { "name": "Function Call", "scope": "source.python meta.function-call.python, meta.function-call.arguments", "settings": { "foreground": "#82AAFF" } }, { "name": "Blocks", "scope": "meta.block", "settings": { "foreground": "#f07178" } }, { "name": "Function Call", "scope": "entity.name.function.call", "settings": { "foreground": "#82AAFF" } }, { "name": "Namespaces", "scope": "source.php support.other.namespace, source.php meta.use support.class", "settings": { "foreground": "#EEFFFF" } }, { "name": "Constant keywords", "scope": "constant.keyword", "settings": { "foreground": "#89DDFF", "fontStyle": "italic" } }, { "name": "Entity name", "scope": "entity.name.function", "settings": { "foreground": "#82AAFF" } }, { "name": "Global settings", "settings": { "background": "#263238", "foreground": "#EEFFFF" } }, { "name": "Markup Deleted", "scope": ["markup.deleted"], "settings": { "foreground": "#f07178" } }, { "name": "Markup Inserted", "scope": ["markup.inserted"], "settings": { "foreground": "#C3E88D" } }, { "name": "Markup Underline", "scope": ["markup.underline"], "settings": { "fontStyle": "underline" } }, { "name": "Keyword Control", "scope": ["keyword.control"], "settings": { "foreground": "#89DDFF", "fontStyle": "italic" } }, { "name": "Parameter", "scope": ["variable.parameter"], "settings": { "fontStyle": "italic" } }, { "name": "Python - Self Parameter", "scope": ["variable.parameter.function.language.special.self.python"], "settings": { "foreground": "#f07178", "fontStyle": "italic" } }, { "name": "Python - Format Placeholder", "scope": ["constant.character.format.placeholder.other.python"], "settings": { "foreground": "#F78C6C" } }, { "name": "Markdown - Blockquote", "scope": ["markup.quote"], "settings": { "fontStyle": "italic", "foreground": "#89DDFF" } }, { "name": "Markdown - Fenced Language", "scope": ["markup.fenced_code.block"], "settings": { "foreground": "#EEFFFF90" } }, { "name": "Markdown - Blockquote Punctuation", "scope": ["punctuation.definition.quote"], "settings": { "foreground": "#ff9cac" } }, { "name": "JSON Key - Level 0", "scope": [ "meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#C792EA" } }, { "name": "JSON Key - Level 1", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#FFCB6B" } }, { "name": "JSON Key - Level 2", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#F78C6C" } }, { "name": "JSON Key - Level 3", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#f07178" } }, { "name": "JSON Key - Level 4", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#916b53" } }, { "name": "JSON Key - Level 5", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#82AAFF" } }, { "name": "JSON Key - Level 6", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#ff9cac" } }, { "name": "JSON Key - Level 7", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#C792EA" } }, { "name": "JSON Key - Level 8", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#C3E88D" } } ], "colors": { "focusBorder": "#FFFFFF00", "foreground": "#EEFFFF", "button.background": "#80CBC420", "button.foreground": "#ffffff", "dropdown.background": "#263238", "input.background": "#303C41", "inputOption.activeBorder": "#EEFFFF30", "list.activeSelectionBackground": "#263238", "list.activeSelectionForeground": "#80CBC4", "list.dropBackground": "#f0717880", "list.focusBackground": "#EEFFFF20", "list.focusForeground": "#EEFFFF", "list.highlightForeground": "#80CBC4", "list.hoverBackground": "#263238", "list.inactiveSelectionBackground": "#00000030", "activityBar.background": "#263238", "activityBar.dropBackground": "#f0717880", "activityBarBadge.background": "#80CBC4", "activityBarBadge.foreground": "#000000", "badge.background": "#00000030", "badge.foreground": "#546E7A", "sideBar.background": "#263238", "sideBarSectionHeader.background": "#263238", "editorGroup.dropBackground": "#f0717880", "editorGroup.focusedEmptyBorder": "#f07178", "editorGroupHeader.tabsBackground": "#263238", "tab.border": "#263238", "tab.activeBorder": "#80CBC4", "tab.inactiveBackground": "#263238", "tab.activeModifiedBorder": "#607a86", "tab.inactiveModifiedBorder": "#904348", "tab.unfocusedActiveModifiedBorder": "#c05a60", "tab.unfocusedInactiveModifiedBorder": "#904348", "editor.background": "#263238", "editor.foreground": "#EEFFFF", "editorLineNumber.foreground": "#37474F", "editorLineNumber.activeForeground": "#607a86", "editorCursor.foreground": "#FFCC00", "editor.selectionBackground": "#80CBC420", "editor.selectionHighlightBackground": "#FFCC0020", "editor.wordHighlightBackground": "#ff9cac30", "editor.wordHighlightStrongBackground": "#C3E88D30", "editor.findMatchHighlight": "#EEFFFF", "editor.findRangeHighlightBackground": "#FFCB6B30", "editor.lineHighlightBorder": "#00000000", "editor.rangeHighlightBackground": "#FFFFFF0d", "editorWhitespace.foreground": "#EEFFFF40", "editorWidget.background": "#263238", "editorHoverWidget.background": "#263238", "editorMarkerNavigation.background": "#EEFFFF05", "peekView.border": "#00000030", "peekViewEditor.background": "#EEFFFF05", "peekViewResult.background": "#EEFFFF05", "peekViewTitle.background": "#EEFFFF05", "panel.background": "#263238", "panel.border": "#26323860", "panelTitle.activeBorder": "#80CBC4", "panelTitle.inactiveForeground": "#EEFFFF", "statusBar.background": "#263238", "statusBar.debuggingBackground": "#C792EA", "statusBar.debuggingForeground": "#ffffff", "statusBar.noFolderBackground": "#263238", "statusBarItem.activeBackground": "#f0717880", "statusBarItem.hoverBackground": "#546E7A20", "statusBarItem.remoteBackground": "#80CBC4", "statusBarItem.remoteForeground": "#000000", "titleBar.activeBackground": "#263238", "pickerGroup.border": "#FFFFFF1a", "terminal.ansiBlack": "#000000", "terminal.ansiBlue": "#82AAFF", "terminal.ansiBrightBlack": "#546E7A", "terminal.ansiBrightBlue": "#82AAFF", "terminal.ansiBrightCyan": "#89DDFF", "terminal.ansiBrightGreen": "#C3E88D", "terminal.ansiBrightMagenta": "#C792EA", "terminal.ansiBrightRed": "#f07178", "terminal.ansiBrightWhite": "#ffffff", "terminal.ansiBrightYellow": "#FFCB6B", "terminal.ansiCyan": "#89DDFF", "terminal.ansiGreen": "#C3E88D", "terminal.ansiMagenta": "#C792EA", "terminal.ansiRed": "#f07178", "terminal.ansiWhite": "#ffffff", "terminal.ansiYellow": "#FFCB6B", "debugToolBar.background": "#263238", "debugConsole.errorForeground": "#f07178", "debugConsole.infoForeground": "#89DDFF", "debugConsole.warningForeground": "#FFCB6B", "selection.background": "#00000080", "editorRuler.foreground": "#37474F", "widget.shadow": "#00000030", "scrollbar.shadow": "#00000030", "editorLink.activeForeground": "#EEFFFF", "progressBar.background": "#80CBC4", "pickerGroup.foreground": "#80CBC4", "tree.indentGuidesStroke": "#37474F", "terminalCursor.foreground": "#FFCB6B", "terminalCursor.background": "#000000", "inputOption.activeBackground": "#EEFFFF30", "textLink.foreground": "#80CBC4", "textLink.activeForeground": "#EEFFFF", "sideBar.foreground": "#607a86", "sideBar.border": "#26323860", "sideBarTitle.foreground": "#EEFFFF", "sideBarSectionHeader.border": "#26323860", "panel.dropBackground": "#EEFFFF", "panelTitle.activeForeground": "#FFFFFF", "editor.lineHighlightBackground": "#00000050", "editor.findMatchBackground": "#000000", "editor.findMatchHighlightBackground": "#00000050", "editor.findMatchBorder": "#80CBC4", "editor.findMatchHighlightBorder": "#ffffff30", "editorIndentGuide.background": "#37474F70", "editorIndentGuide.activeBackground": "#37474F", "editorGroup.border": "#00000030", "editorGutter.modifiedBackground": "#82AAFF60", "editorGutter.addedBackground": "#C3E88D60", "editorGutter.deletedBackground": "#f0717860", "activityBar.border": "#26323860", "activityBar.foreground": "#EEFFFF", "activityBar.activeBorder": "#80CBC4", "extensionBadge.remoteForeground": "#EEFFFF", "scrollbarSlider.background": "#EEFFFF20", "scrollbarSlider.hoverBackground": "#EEFFFF10", "scrollbarSlider.activeBackground": "#80CBC4", "tab.unfocusedActiveBorder": "#546E7A", "tab.activeForeground": "#FFFFFF", "tab.inactiveForeground": "#607a86", "tab.activeBackground": "#263238", "tab.unfocusedActiveForeground": "#EEFFFF", "editorWidget.resizeBorder": "#80CBC4", "editorWidget.border": "#80CBC4", "notebook.focusedCellBorder": "#80CBC4", "notebook.inactiveFocusedCellBorder": "#80CBC450", "statusBar.border": "#26323860", "statusBar.foreground": "#546E7A", "editorBracketMatch.border": "#FFCC0050", "editorBracketMatch.background": "#263238", "editorOverviewRuler.findMatchForeground": "#80CBC4", "editorOverviewRuler.border": "#263238", "editorOverviewRuler.errorForeground": "#f0717840", "editorOverviewRuler.infoForeground": "#82AAFF40", "editorOverviewRuler.warningForeground": "#FFCB6B40", "editorInfo.foreground": "#82AAFF70", "editorWarning.foreground": "#FFCB6B70", "editorError.foreground": "#f0717870", "editorHoverWidget.border": "#FFFFFF10", "titleBar.activeForeground": "#EEFFFF", "titleBar.inactiveBackground": "#263238", "titleBar.inactiveForeground": "#607a86", "titleBar.border": "#26323860", "input.foreground": "#EEFFFF", "input.placeholderForeground": "#EEFFFF60", "input.border": "#FFFFFF10", "inputValidation.errorBorder": "#f07178", "inputValidation.infoBorder": "#82AAFF", "inputValidation.warningBorder": "#FFCB6B", "dropdown.border": "#FFFFFF10", "quickInput.background": "#263238", "quickInput.foreground": "#607a86", "list.hoverForeground": "#FFFFFF", "list.inactiveSelectionForeground": "#80CBC4", "quickInput.list.focusBackground": "#EEFFFF20", "editorSuggestWidget.background": "#263238", "editorSuggestWidget.foreground": "#EEFFFF", "editorSuggestWidget.highlightForeground": "#80CBC4", "editorSuggestWidget.selectedBackground": "#00000050", "editorSuggestWidget.border": "#FFFFFF10", "diffEditor.insertedTextBackground": "#89DDFF20", "diffEditor.removedTextBackground": "#ff9cac20", "notifications.background": "#263238", "notifications.foreground": "#EEFFFF", "notificationLink.foreground": "#80CBC4", "extensionButton.prominentBackground": "#C3E88D90", "extensionButton.prominentHoverBackground": "#C3E88D", "extensionButton.prominentForeground": "#000000", "peekViewEditorGutter.background": "#EEFFFF05", "peekViewTitleDescription.foreground": "#EEFFFF60", "peekViewResult.matchHighlightBackground": "#80CBC420", "peekViewEditor.matchHighlightBackground": "#80CBC420", "peekViewResult.selectionBackground": "#607a8670", "gitDecoration.deletedResourceForeground": "#f0717890", "gitDecoration.conflictingResourceForeground": "#FFCB6B90", "gitDecoration.modifiedResourceForeground": "#82AAFF90", "gitDecoration.untrackedResourceForeground": "#C3E88D90", "gitDecoration.ignoredResourceForeground": "#607a8690", "breadcrumb.background": "#263238", "breadcrumb.foreground": "#607a86", "breadcrumb.focusForeground": "#EEFFFF", "breadcrumb.activeSelectionForeground": "#80CBC4", "breadcrumbPicker.background": "#263238", "menu.background": "#263238", "menu.foreground": "#EEFFFF", "menu.selectionBackground": "#00000050", "menu.selectionForeground": "#80CBC4", "menu.selectionBorder": "#00000030", "menu.separatorBackground": "#EEFFFF", "menubar.selectionBackground": "#00000030", "menubar.selectionForeground": "#80CBC4", "menubar.selectionBorder": "#00000030", "settings.dropdownForeground": "#EEFFFF", "settings.dropdownBackground": "#263238", "settings.numberInputForeground": "#EEFFFF", "settings.numberInputBackground": "#263238", "settings.textInputForeground": "#EEFFFF", "settings.textInputBackground": "#263238", "settings.headerForeground": "#80CBC4", "settings.modifiedItemIndicator": "#80CBC4", "settings.checkboxBackground": "#263238", "settings.checkboxForeground": "#EEFFFF", "listFilterWidget.background": "#00000030", "listFilterWidget.outline": "#00000030", "listFilterWidget.noMatchesOutline": "#00000030" } } ================================================ FILE: apps/web/src/lib/shiki/themes/material-lighter.json ================================================ { "name": "material-lighter", "semanticHighlighting": true, "tokenColors": [ { "name": "Global settings", "settings": { "background": "#FAFAFA", "foreground": "#90A4AE" } }, { "name": "String", "scope": "string", "settings": { "foreground": "#91B859" } }, { "name": "Punctuation", "scope": "punctuation, constant.other.symbol", "settings": { "foreground": "#39ADB5" } }, { "name": "String Escape", "scope": "constant.character.escape, text.html constant.character.entity.named", "settings": { "foreground": "#90A4AE" } }, { "name": "Boolean", "scope": "constant.language.boolean", "settings": { "foreground": "#FF5370" } }, { "name": "Number", "scope": "constant.numeric", "settings": { "foreground": "#F76D47" } }, { "name": "Variable", "scope": "variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments", "settings": { "foreground": "#90A4AE" } }, { "name": "Other Keyword", "scope": "keyword.other", "settings": { "foreground": "#F76D47" } }, { "name": "Keyword", "scope": "keyword, modifier, variable.language.this, support.type.object, constant.language", "settings": { "foreground": "#39ADB5" } }, { "name": "Function call", "scope": "entity.name.function, support.function", "settings": { "foreground": "#6182B8" } }, { "name": "Storage", "scope": "storage.type, storage.modifier, storage.control", "settings": { "foreground": "#9C3EDA" } }, { "name": "Modules", "scope": "support.module, support.node", "settings": { "foreground": "#E53935", "fontStyle": "italic" } }, { "name": "Type", "scope": "support.type, constant.other.key", "settings": { "foreground": "#E2931D" } }, { "name": "Type", "scope": "entity.name.type, entity.other.inherited-class, entity.other", "settings": { "foreground": "#E2931D" } }, { "name": "Comment", "scope": "comment", "settings": { "foreground": "#90A4AE", "fontStyle": "italic" } }, { "name": "Comment", "scope": "comment punctuation.definition.comment, string.quoted.docstring", "settings": { "foreground": "#90A4AE", "fontStyle": "italic" } }, { "name": "Punctuation", "scope": "punctuation", "settings": { "foreground": "#39ADB5" } }, { "name": "Class", "scope": "entity.name, entity.name.type.class, support.type, support.class, meta.use", "settings": { "foreground": "#E2931D" } }, { "name": "Class variable", "scope": "variable.object.property, meta.field.declaration entity.name.function", "settings": { "foreground": "#E53935" } }, { "name": "Class method", "scope": "meta.definition.method entity.name.function", "settings": { "foreground": "#E53935" } }, { "name": "Function definition", "scope": "meta.function entity.name.function", "settings": { "foreground": "#6182B8" } }, { "name": "Template expression", "scope": "template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end", "settings": { "foreground": "#39ADB5" } }, { "name": "Reset embedded/template expression colors", "scope": "meta.embedded, source.groovy.embedded, meta.template.expression", "settings": { "foreground": "#90A4AE" } }, { "name": "YAML key", "scope": "entity.name.tag.yaml", "settings": { "foreground": "#E53935" } }, { "name": "JSON key", "scope": "meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json", "settings": { "foreground": "#E53935" } }, { "name": "JSON constant", "scope": "constant.language.json", "settings": { "foreground": "#39ADB5" } }, { "name": "CSS class", "scope": "entity.other.attribute-name.class", "settings": { "foreground": "#E2931D" } }, { "name": "CSS ID", "scope": "entity.other.attribute-name.id", "settings": { "foreground": "#F76D47" } }, { "name": "CSS tag", "scope": "source.css entity.name.tag", "settings": { "foreground": "#E2931D" } }, { "name": "CSS properties", "scope": "support.type.property-name.css", "settings": { "foreground": "#8796B0" } }, { "name": "HTML tag outer", "scope": "meta.tag, punctuation.definition.tag", "settings": { "foreground": "#39ADB5" } }, { "name": "HTML tag inner", "scope": "entity.name.tag", "settings": { "foreground": "#E53935" } }, { "name": "HTML tag attribute", "scope": "entity.other.attribute-name", "settings": { "foreground": "#9C3EDA" } }, { "name": "HTML entities", "scope": "punctuation.definition.entity.html", "settings": { "foreground": "#90A4AE" } }, { "name": "Markdown heading", "scope": "markup.heading", "settings": { "foreground": "#39ADB5" } }, { "name": "Markdown link text", "scope": "text.html.markdown meta.link.inline, meta.link.reference", "settings": { "foreground": "#E53935" } }, { "name": "Markdown list item", "scope": "text.html.markdown beginning.punctuation.definition.list", "settings": { "foreground": "#39ADB5" } }, { "name": "Markdown italic", "scope": "markup.italic", "settings": { "foreground": "#E53935", "fontStyle": "italic" } }, { "name": "Markdown bold", "scope": "markup.bold", "settings": { "foreground": "#E53935", "fontStyle": "bold" } }, { "name": "Markdown bold italic", "scope": "markup.bold markup.italic, markup.italic markup.bold", "settings": { "foreground": "#E53935", "fontStyle": "italic bold" } }, { "name": "Markdown code block", "scope": "markup.fenced_code.block.markdown punctuation.definition.markdown", "settings": { "foreground": "#91B859" } }, { "name": "Markdown inline code", "scope": "markup.inline.raw.string.markdown", "settings": { "foreground": "#91B859" } }, { "name": "INI property name", "scope": "keyword.other.definition.ini", "settings": { "foreground": "#E53935" } }, { "name": "INI section title", "scope": "entity.name.section.group-title.ini", "settings": { "foreground": "#39ADB5" } }, { "name": "C# class", "scope": "source.cs meta.class.identifier storage.type", "settings": { "foreground": "#E2931D" } }, { "name": "C# class method", "scope": "source.cs meta.method.identifier entity.name.function", "settings": { "foreground": "#E53935" } }, { "name": "C# function call", "scope": "source.cs meta.method-call meta.method, source.cs entity.name.function", "settings": { "foreground": "#6182B8" } }, { "name": "C# type", "scope": "source.cs storage.type", "settings": { "foreground": "#E2931D" } }, { "name": "C# return type", "scope": "source.cs meta.method.return-type", "settings": { "foreground": "#E2931D" } }, { "name": "C# preprocessor", "scope": "source.cs meta.preprocessor", "settings": { "foreground": "#90A4AE" } }, { "name": "C# namespace", "scope": "source.cs entity.name.type.namespace", "settings": { "foreground": "#90A4AE" } }, { "name": "JSX Text", "scope": "meta.jsx.children, SXNested", "settings": { "foreground": "#90A4AE" } }, { "name": "JSX Components name", "scope": "support.class.component", "settings": { "foreground": "#E2931D" } }, { "name": "C-related Block Level Variables", "scope": "source.cpp meta.block variable.other", "settings": { "foreground": "#90A4AE" } }, { "name": "Member Access Meta", "scope": "source.python meta.member.access.python", "settings": { "foreground": "#E53935" } }, { "name": "Function Call", "scope": "source.python meta.function-call.python, meta.function-call.arguments", "settings": { "foreground": "#6182B8" } }, { "name": "Blocks", "scope": "meta.block", "settings": { "foreground": "#E53935" } }, { "name": "Function Call", "scope": "entity.name.function.call", "settings": { "foreground": "#6182B8" } }, { "name": "Namespaces", "scope": "source.php support.other.namespace, source.php meta.use support.class", "settings": { "foreground": "#90A4AE" } }, { "name": "Constant keywords", "scope": "constant.keyword", "settings": { "foreground": "#39ADB5", "fontStyle": "italic" } }, { "name": "Entity name", "scope": "entity.name.function", "settings": { "foreground": "#6182B8" } }, { "name": "Global settings", "settings": { "background": "#FAFAFA", "foreground": "#90A4AE" } }, { "name": "Markup Deleted", "scope": ["markup.deleted"], "settings": { "foreground": "#E53935" } }, { "name": "Markup Inserted", "scope": ["markup.inserted"], "settings": { "foreground": "#91B859" } }, { "name": "Markup Underline", "scope": ["markup.underline"], "settings": { "fontStyle": "underline" } }, { "name": "Keyword Control", "scope": ["keyword.control"], "settings": { "foreground": "#39ADB5", "fontStyle": "italic" } }, { "name": "Parameter", "scope": ["variable.parameter"], "settings": { "fontStyle": "italic" } }, { "name": "Python - Self Parameter", "scope": ["variable.parameter.function.language.special.self.python"], "settings": { "foreground": "#E53935", "fontStyle": "italic" } }, { "name": "Python - Format Placeholder", "scope": ["constant.character.format.placeholder.other.python"], "settings": { "foreground": "#F76D47" } }, { "name": "Markdown - Blockquote", "scope": ["markup.quote"], "settings": { "fontStyle": "italic", "foreground": "#39ADB5" } }, { "name": "Markdown - Fenced Language", "scope": ["markup.fenced_code.block"], "settings": { "foreground": "#90A4AE90" } }, { "name": "Markdown - Blockquote Punctuation", "scope": ["punctuation.definition.quote"], "settings": { "foreground": "#FF5370" } }, { "name": "JSON Key - Level 0", "scope": [ "meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#9C3EDA" } }, { "name": "JSON Key - Level 1", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#E2931D" } }, { "name": "JSON Key - Level 2", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#F76D47" } }, { "name": "JSON Key - Level 3", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#E53935" } }, { "name": "JSON Key - Level 4", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#916b53" } }, { "name": "JSON Key - Level 5", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#6182B8" } }, { "name": "JSON Key - Level 6", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#FF5370" } }, { "name": "JSON Key - Level 7", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#9C3EDA" } }, { "name": "JSON Key - Level 8", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#91B859" } } ], "colors": { "focusBorder": "#FFFFFF00", "foreground": "#90A4AE", "button.background": "#80CBC440", "button.foreground": "#ffffff", "dropdown.background": "#FAFAFA", "input.background": "#EEEEEE", "inputOption.activeBorder": "#90A4AE30", "list.activeSelectionBackground": "#FAFAFA", "list.activeSelectionForeground": "#80CBC4", "list.dropBackground": "#E5393580", "list.focusBackground": "#90A4AE20", "list.focusForeground": "#90A4AE", "list.highlightForeground": "#80CBC4", "list.hoverBackground": "#FAFAFA", "list.inactiveSelectionBackground": "#CCD7DA50", "activityBar.background": "#FAFAFA", "activityBar.dropBackground": "#E5393580", "activityBarBadge.background": "#80CBC4", "activityBarBadge.foreground": "#000000", "badge.background": "#CCD7DA30", "badge.foreground": "#90A4AE", "sideBar.background": "#FAFAFA", "sideBarSectionHeader.background": "#FAFAFA", "editorGroup.dropBackground": "#E5393580", "editorGroup.focusedEmptyBorder": "#E53935", "editorGroupHeader.tabsBackground": "#FAFAFA", "tab.border": "#FAFAFA", "tab.activeBorder": "#80CBC4", "tab.inactiveBackground": "#FAFAFA", "tab.activeModifiedBorder": "#7E939E", "tab.inactiveModifiedBorder": "#89221f", "tab.unfocusedActiveModifiedBorder": "#b72d2a", "tab.unfocusedInactiveModifiedBorder": "#89221f", "editor.background": "#FAFAFA", "editor.foreground": "#90A4AE", "editorLineNumber.foreground": "#CFD8DC", "editorLineNumber.activeForeground": "#7E939E", "editorCursor.foreground": "#272727", "editor.selectionBackground": "#80CBC440", "editor.selectionHighlightBackground": "#27272720", "editor.wordHighlightBackground": "#FF537030", "editor.wordHighlightStrongBackground": "#91B85930", "editor.findMatchHighlight": "#90A4AE", "editor.findRangeHighlightBackground": "#E2931D30", "editor.lineHighlightBorder": "#CCD7DA00", "editor.rangeHighlightBackground": "#FFFFFF0d", "editorWhitespace.foreground": "#90A4AE40", "editorWidget.background": "#FAFAFA", "editorHoverWidget.background": "#FAFAFA", "editorMarkerNavigation.background": "#90A4AE05", "peekView.border": "#00000020", "peekViewEditor.background": "#90A4AE05", "peekViewResult.background": "#90A4AE05", "peekViewTitle.background": "#90A4AE05", "panel.background": "#FAFAFA", "panel.border": "#FAFAFA60", "panelTitle.activeBorder": "#80CBC4", "panelTitle.inactiveForeground": "#90A4AE", "statusBar.background": "#FAFAFA", "statusBar.debuggingBackground": "#9C3EDA", "statusBar.debuggingForeground": "#FFFFFF", "statusBar.noFolderBackground": "#FAFAFA", "statusBarItem.activeBackground": "#E5393580", "statusBarItem.hoverBackground": "#90A4AE20", "statusBarItem.remoteBackground": "#80CBC4", "statusBarItem.remoteForeground": "#000000", "titleBar.activeBackground": "#FAFAFA", "pickerGroup.border": "#FFFFFF1a", "terminal.ansiBlack": "#000000", "terminal.ansiBlue": "#6182B8", "terminal.ansiBrightBlack": "#90A4AE", "terminal.ansiBrightBlue": "#6182B8", "terminal.ansiBrightCyan": "#39ADB5", "terminal.ansiBrightGreen": "#91B859", "terminal.ansiBrightMagenta": "#9C3EDA", "terminal.ansiBrightRed": "#E53935", "terminal.ansiBrightWhite": "#FFFFFF", "terminal.ansiBrightYellow": "#E2931D", "terminal.ansiCyan": "#39ADB5", "terminal.ansiGreen": "#91B859", "terminal.ansiMagenta": "#9C3EDA", "terminal.ansiRed": "#E53935", "terminal.ansiWhite": "#FFFFFF", "terminal.ansiYellow": "#E2931D", "debugToolBar.background": "#FAFAFA", "debugConsole.errorForeground": "#E53935", "debugConsole.infoForeground": "#39ADB5", "debugConsole.warningForeground": "#E2931D", "selection.background": "#CCD7DA80", "editorRuler.foreground": "#B0BEC5", "widget.shadow": "#00000020", "scrollbar.shadow": "#00000020", "editorLink.activeForeground": "#90A4AE", "progressBar.background": "#80CBC4", "pickerGroup.foreground": "#80CBC4", "tree.indentGuidesStroke": "#B0BEC5", "terminalCursor.foreground": "#E2931D", "terminalCursor.background": "#000000", "inputOption.activeBackground": "#90A4AE30", "textLink.foreground": "#80CBC4", "textLink.activeForeground": "#90A4AE", "sideBar.foreground": "#7E939E", "sideBar.border": "#FAFAFA60", "sideBarTitle.foreground": "#90A4AE", "sideBarSectionHeader.border": "#FAFAFA60", "panel.dropBackground": "#90A4AE", "panelTitle.activeForeground": "#000000", "editor.lineHighlightBackground": "#CCD7DA50", "editor.findMatchBackground": "#00000020", "editor.findMatchHighlightBackground": "#00000010", "editor.findMatchBorder": "#80CBC4", "editor.findMatchHighlightBorder": "#00000030", "editorIndentGuide.background": "#B0BEC570", "editorIndentGuide.activeBackground": "#B0BEC5", "editorGroup.border": "#00000020", "editorGutter.modifiedBackground": "#6182B860", "editorGutter.addedBackground": "#91B85960", "editorGutter.deletedBackground": "#E5393560", "activityBar.border": "#FAFAFA60", "activityBar.foreground": "#90A4AE", "activityBar.activeBorder": "#80CBC4", "extensionBadge.remoteForeground": "#90A4AE", "scrollbarSlider.background": "#90A4AE20", "scrollbarSlider.hoverBackground": "#90A4AE10", "scrollbarSlider.activeBackground": "#80CBC4", "tab.unfocusedActiveBorder": "#90A4AE", "tab.activeForeground": "#000000", "tab.inactiveForeground": "#7E939E", "tab.activeBackground": "#FAFAFA", "tab.unfocusedActiveForeground": "#90A4AE", "editorWidget.resizeBorder": "#80CBC4", "editorWidget.border": "#80CBC4", "notebook.focusedCellBorder": "#80CBC4", "notebook.inactiveFocusedCellBorder": "#80CBC450", "statusBar.border": "#FAFAFA60", "statusBar.foreground": "#7E939E", "editorBracketMatch.border": "#27272750", "editorBracketMatch.background": "#FAFAFA", "editorOverviewRuler.findMatchForeground": "#80CBC4", "editorOverviewRuler.border": "#FAFAFA", "editorOverviewRuler.errorForeground": "#E5393540", "editorOverviewRuler.infoForeground": "#6182B840", "editorOverviewRuler.warningForeground": "#E2931D40", "editorInfo.foreground": "#6182B870", "editorWarning.foreground": "#E2931D70", "editorError.foreground": "#E5393570", "editorHoverWidget.border": "#00000010", "titleBar.activeForeground": "#90A4AE", "titleBar.inactiveBackground": "#FAFAFA", "titleBar.inactiveForeground": "#7E939E", "titleBar.border": "#FAFAFA60", "input.foreground": "#90A4AE", "input.placeholderForeground": "#90A4AE60", "input.border": "#00000010", "inputValidation.errorBorder": "#E53935", "inputValidation.infoBorder": "#6182B8", "inputValidation.warningBorder": "#E2931D", "dropdown.border": "#00000010", "quickInput.background": "#FAFAFA", "quickInput.foreground": "#7E939E", "list.hoverForeground": "#B1C7D3", "list.inactiveSelectionForeground": "#80CBC4", "quickInput.list.focusBackground": "#90A4AE20", "editorSuggestWidget.background": "#FAFAFA", "editorSuggestWidget.foreground": "#90A4AE", "editorSuggestWidget.highlightForeground": "#80CBC4", "editorSuggestWidget.selectedBackground": "#CCD7DA50", "editorSuggestWidget.border": "#00000010", "diffEditor.insertedTextBackground": "#39ADB520", "diffEditor.removedTextBackground": "#FF537020", "notifications.background": "#FAFAFA", "notifications.foreground": "#90A4AE", "notificationLink.foreground": "#80CBC4", "extensionButton.prominentBackground": "#91B85990", "extensionButton.prominentHoverBackground": "#91B859", "extensionButton.prominentForeground": "#000000", "peekViewEditorGutter.background": "#90A4AE05", "peekViewTitleDescription.foreground": "#90A4AE60", "peekViewResult.matchHighlightBackground": "#80CBC440", "peekViewEditor.matchHighlightBackground": "#80CBC440", "peekViewResult.selectionBackground": "#7E939E70", "gitDecoration.deletedResourceForeground": "#E5393590", "gitDecoration.conflictingResourceForeground": "#E2931D90", "gitDecoration.modifiedResourceForeground": "#6182B890", "gitDecoration.untrackedResourceForeground": "#91B85990", "gitDecoration.ignoredResourceForeground": "#7E939E90", "breadcrumb.background": "#FAFAFA", "breadcrumb.foreground": "#7E939E", "breadcrumb.focusForeground": "#90A4AE", "breadcrumb.activeSelectionForeground": "#80CBC4", "breadcrumbPicker.background": "#FAFAFA", "menu.background": "#FAFAFA", "menu.foreground": "#90A4AE", "menu.selectionBackground": "#CCD7DA50", "menu.selectionForeground": "#80CBC4", "menu.selectionBorder": "#CCD7DA50", "menu.separatorBackground": "#90A4AE", "menubar.selectionBackground": "#CCD7DA50", "menubar.selectionForeground": "#80CBC4", "menubar.selectionBorder": "#CCD7DA50", "settings.dropdownForeground": "#90A4AE", "settings.dropdownBackground": "#FAFAFA", "settings.numberInputForeground": "#90A4AE", "settings.numberInputBackground": "#FAFAFA", "settings.textInputForeground": "#90A4AE", "settings.textInputBackground": "#FAFAFA", "settings.headerForeground": "#80CBC4", "settings.modifiedItemIndicator": "#80CBC4", "settings.checkboxBackground": "#FAFAFA", "settings.checkboxForeground": "#90A4AE", "listFilterWidget.background": "#CCD7DA50", "listFilterWidget.outline": "#CCD7DA50", "listFilterWidget.noMatchesOutline": "#CCD7DA50" } } ================================================ FILE: apps/web/src/lib/shiki/themes/material-ocean.json ================================================ { "name": "material-ocean", "semanticHighlighting": true, "tokenColors": [ { "name": "Global settings", "settings": { "background": "#0F111A", "foreground": "#A6ACCD" } }, { "name": "String", "scope": "string", "settings": { "foreground": "#C3E88D" } }, { "name": "Punctuation", "scope": "punctuation, constant.other.symbol", "settings": { "foreground": "#89DDFF" } }, { "name": "String Escape", "scope": "constant.character.escape, text.html constant.character.entity.named", "settings": { "foreground": "#A6ACCD" } }, { "name": "Boolean", "scope": "constant.language.boolean", "settings": { "foreground": "#ff9cac" } }, { "name": "Number", "scope": "constant.numeric", "settings": { "foreground": "#F78C6C" } }, { "name": "Variable", "scope": "variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments", "settings": { "foreground": "#A6ACCD" } }, { "name": "Other Keyword", "scope": "keyword.other", "settings": { "foreground": "#F78C6C" } }, { "name": "Keyword", "scope": "keyword, modifier, variable.language.this, support.type.object, constant.language", "settings": { "foreground": "#89DDFF" } }, { "name": "Function call", "scope": "entity.name.function, support.function", "settings": { "foreground": "#82AAFF" } }, { "name": "Storage", "scope": "storage.type, storage.modifier, storage.control", "settings": { "foreground": "#C792EA" } }, { "name": "Modules", "scope": "support.module, support.node", "settings": { "foreground": "#f07178", "fontStyle": "italic" } }, { "name": "Type", "scope": "support.type, constant.other.key", "settings": { "foreground": "#FFCB6B" } }, { "name": "Type", "scope": "entity.name.type, entity.other.inherited-class, entity.other", "settings": { "foreground": "#FFCB6B" } }, { "name": "Comment", "scope": "comment", "settings": { "foreground": "#464B5D", "fontStyle": "italic" } }, { "name": "Comment", "scope": "comment punctuation.definition.comment, string.quoted.docstring", "settings": { "foreground": "#464B5D", "fontStyle": "italic" } }, { "name": "Punctuation", "scope": "punctuation", "settings": { "foreground": "#89DDFF" } }, { "name": "Class", "scope": "entity.name, entity.name.type.class, support.type, support.class, meta.use", "settings": { "foreground": "#FFCB6B" } }, { "name": "Class variable", "scope": "variable.object.property, meta.field.declaration entity.name.function", "settings": { "foreground": "#f07178" } }, { "name": "Class method", "scope": "meta.definition.method entity.name.function", "settings": { "foreground": "#f07178" } }, { "name": "Function definition", "scope": "meta.function entity.name.function", "settings": { "foreground": "#82AAFF" } }, { "name": "Template expression", "scope": "template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end", "settings": { "foreground": "#89DDFF" } }, { "name": "Reset embedded/template expression colors", "scope": "meta.embedded, source.groovy.embedded, meta.template.expression", "settings": { "foreground": "#A6ACCD" } }, { "name": "YAML key", "scope": "entity.name.tag.yaml", "settings": { "foreground": "#f07178" } }, { "name": "JSON key", "scope": "meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json", "settings": { "foreground": "#f07178" } }, { "name": "JSON constant", "scope": "constant.language.json", "settings": { "foreground": "#89DDFF" } }, { "name": "CSS class", "scope": "entity.other.attribute-name.class", "settings": { "foreground": "#FFCB6B" } }, { "name": "CSS ID", "scope": "entity.other.attribute-name.id", "settings": { "foreground": "#F78C6C" } }, { "name": "CSS tag", "scope": "source.css entity.name.tag", "settings": { "foreground": "#FFCB6B" } }, { "name": "CSS properties", "scope": "support.type.property-name.css", "settings": { "foreground": "#B2CCD6" } }, { "name": "HTML tag outer", "scope": "meta.tag, punctuation.definition.tag", "settings": { "foreground": "#89DDFF" } }, { "name": "HTML tag inner", "scope": "entity.name.tag", "settings": { "foreground": "#f07178" } }, { "name": "HTML tag attribute", "scope": "entity.other.attribute-name", "settings": { "foreground": "#C792EA" } }, { "name": "HTML entities", "scope": "punctuation.definition.entity.html", "settings": { "foreground": "#A6ACCD" } }, { "name": "Markdown heading", "scope": "markup.heading", "settings": { "foreground": "#89DDFF" } }, { "name": "Markdown link text", "scope": "text.html.markdown meta.link.inline, meta.link.reference", "settings": { "foreground": "#f07178" } }, { "name": "Markdown list item", "scope": "text.html.markdown beginning.punctuation.definition.list", "settings": { "foreground": "#89DDFF" } }, { "name": "Markdown italic", "scope": "markup.italic", "settings": { "foreground": "#f07178", "fontStyle": "italic" } }, { "name": "Markdown bold", "scope": "markup.bold", "settings": { "foreground": "#f07178", "fontStyle": "bold" } }, { "name": "Markdown bold italic", "scope": "markup.bold markup.italic, markup.italic markup.bold", "settings": { "foreground": "#f07178", "fontStyle": "italic bold" } }, { "name": "Markdown code block", "scope": "markup.fenced_code.block.markdown punctuation.definition.markdown", "settings": { "foreground": "#C3E88D" } }, { "name": "Markdown inline code", "scope": "markup.inline.raw.string.markdown", "settings": { "foreground": "#C3E88D" } }, { "name": "INI property name", "scope": "keyword.other.definition.ini", "settings": { "foreground": "#f07178" } }, { "name": "INI section title", "scope": "entity.name.section.group-title.ini", "settings": { "foreground": "#89DDFF" } }, { "name": "C# class", "scope": "source.cs meta.class.identifier storage.type", "settings": { "foreground": "#FFCB6B" } }, { "name": "C# class method", "scope": "source.cs meta.method.identifier entity.name.function", "settings": { "foreground": "#f07178" } }, { "name": "C# function call", "scope": "source.cs meta.method-call meta.method, source.cs entity.name.function", "settings": { "foreground": "#82AAFF" } }, { "name": "C# type", "scope": "source.cs storage.type", "settings": { "foreground": "#FFCB6B" } }, { "name": "C# return type", "scope": "source.cs meta.method.return-type", "settings": { "foreground": "#FFCB6B" } }, { "name": "C# preprocessor", "scope": "source.cs meta.preprocessor", "settings": { "foreground": "#464B5D" } }, { "name": "C# namespace", "scope": "source.cs entity.name.type.namespace", "settings": { "foreground": "#A6ACCD" } }, { "name": "JSX Text", "scope": "meta.jsx.children, SXNested", "settings": { "foreground": "#A6ACCD" } }, { "name": "JSX Components name", "scope": "support.class.component", "settings": { "foreground": "#FFCB6B" } }, { "name": "C-related Block Level Variables", "scope": "source.cpp meta.block variable.other", "settings": { "foreground": "#A6ACCD" } }, { "name": "Member Access Meta", "scope": "source.python meta.member.access.python", "settings": { "foreground": "#f07178" } }, { "name": "Function Call", "scope": "source.python meta.function-call.python, meta.function-call.arguments", "settings": { "foreground": "#82AAFF" } }, { "name": "Blocks", "scope": "meta.block", "settings": { "foreground": "#f07178" } }, { "name": "Function Call", "scope": "entity.name.function.call", "settings": { "foreground": "#82AAFF" } }, { "name": "Namespaces", "scope": "source.php support.other.namespace, source.php meta.use support.class", "settings": { "foreground": "#A6ACCD" } }, { "name": "Constant keywords", "scope": "constant.keyword", "settings": { "foreground": "#89DDFF", "fontStyle": "italic" } }, { "name": "Entity name", "scope": "entity.name.function", "settings": { "foreground": "#82AAFF" } }, { "name": "Global settings", "settings": { "background": "#0F111A", "foreground": "#A6ACCD" } }, { "name": "Markup Deleted", "scope": ["markup.deleted"], "settings": { "foreground": "#f07178" } }, { "name": "Markup Inserted", "scope": ["markup.inserted"], "settings": { "foreground": "#C3E88D" } }, { "name": "Markup Underline", "scope": ["markup.underline"], "settings": { "fontStyle": "underline" } }, { "name": "Keyword Control", "scope": ["keyword.control"], "settings": { "foreground": "#89DDFF", "fontStyle": "italic" } }, { "name": "Parameter", "scope": ["variable.parameter"], "settings": { "fontStyle": "italic" } }, { "name": "Python - Self Parameter", "scope": ["variable.parameter.function.language.special.self.python"], "settings": { "foreground": "#f07178", "fontStyle": "italic" } }, { "name": "Python - Format Placeholder", "scope": ["constant.character.format.placeholder.other.python"], "settings": { "foreground": "#F78C6C" } }, { "name": "Markdown - Blockquote", "scope": ["markup.quote"], "settings": { "fontStyle": "italic", "foreground": "#89DDFF" } }, { "name": "Markdown - Fenced Language", "scope": ["markup.fenced_code.block"], "settings": { "foreground": "#A6ACCD90" } }, { "name": "Markdown - Blockquote Punctuation", "scope": ["punctuation.definition.quote"], "settings": { "foreground": "#ff9cac" } }, { "name": "JSON Key - Level 0", "scope": [ "meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#C792EA" } }, { "name": "JSON Key - Level 1", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#FFCB6B" } }, { "name": "JSON Key - Level 2", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#F78C6C" } }, { "name": "JSON Key - Level 3", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#f07178" } }, { "name": "JSON Key - Level 4", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#916b53" } }, { "name": "JSON Key - Level 5", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#82AAFF" } }, { "name": "JSON Key - Level 6", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#ff9cac" } }, { "name": "JSON Key - Level 7", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#C792EA" } }, { "name": "JSON Key - Level 8", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#C3E88D" } } ], "colors": { "focusBorder": "#FFFFFF00", "foreground": "#A6ACCD", "button.background": "#717CB450", "button.foreground": "#ffffff", "dropdown.background": "#0F111A", "input.background": "#1A1C25", "inputOption.activeBorder": "#A6ACCD30", "list.activeSelectionBackground": "#0F111A", "list.activeSelectionForeground": "#80CBC4", "list.dropBackground": "#f0717880", "list.focusBackground": "#A6ACCD20", "list.focusForeground": "#A6ACCD", "list.highlightForeground": "#80CBC4", "list.hoverBackground": "#0F111A", "list.inactiveSelectionBackground": "#00000030", "activityBar.background": "#0F111A", "activityBar.dropBackground": "#f0717880", "activityBarBadge.background": "#80CBC4", "activityBarBadge.foreground": "#000000", "badge.background": "#00000030", "badge.foreground": "#464B5D", "sideBar.background": "#0F111A", "sideBarSectionHeader.background": "#0F111A", "editorGroup.dropBackground": "#f0717880", "editorGroup.focusedEmptyBorder": "#f07178", "editorGroupHeader.tabsBackground": "#0F111A", "tab.border": "#0F111A", "tab.activeBorder": "#80CBC4", "tab.inactiveBackground": "#0F111A", "tab.activeModifiedBorder": "#525975", "tab.inactiveModifiedBorder": "#904348", "tab.unfocusedActiveModifiedBorder": "#c05a60", "tab.unfocusedInactiveModifiedBorder": "#904348", "editor.background": "#0F111A", "editor.foreground": "#A6ACCD", "editorLineNumber.foreground": "#3B3F5180", "editorLineNumber.activeForeground": "#525975", "editorCursor.foreground": "#FFCC00", "editor.selectionBackground": "#717CB450", "editor.selectionHighlightBackground": "#FFCC0020", "editor.wordHighlightBackground": "#ff9cac30", "editor.wordHighlightStrongBackground": "#C3E88D30", "editor.findMatchHighlight": "#A6ACCD", "editor.findRangeHighlightBackground": "#FFCB6B30", "editor.lineHighlightBorder": "#00000000", "editor.rangeHighlightBackground": "#FFFFFF0d", "editorWhitespace.foreground": "#A6ACCD40", "editorWidget.background": "#0F111A", "editorHoverWidget.background": "#0F111A", "editorMarkerNavigation.background": "#A6ACCD05", "peekView.border": "#00000030", "peekViewEditor.background": "#A6ACCD05", "peekViewResult.background": "#A6ACCD05", "peekViewTitle.background": "#A6ACCD05", "panel.background": "#0F111A", "panel.border": "#0F111A60", "panelTitle.activeBorder": "#80CBC4", "panelTitle.inactiveForeground": "#A6ACCD", "statusBar.background": "#0F111A", "statusBar.debuggingBackground": "#C792EA", "statusBar.debuggingForeground": "#ffffff", "statusBar.noFolderBackground": "#0F111A", "statusBarItem.activeBackground": "#f0717880", "statusBarItem.hoverBackground": "#464B5D20", "statusBarItem.remoteBackground": "#80CBC4", "statusBarItem.remoteForeground": "#000000", "titleBar.activeBackground": "#0F111A", "pickerGroup.border": "#FFFFFF1a", "terminal.ansiBlack": "#000000", "terminal.ansiBlue": "#82AAFF", "terminal.ansiBrightBlack": "#464B5D", "terminal.ansiBrightBlue": "#82AAFF", "terminal.ansiBrightCyan": "#89DDFF", "terminal.ansiBrightGreen": "#C3E88D", "terminal.ansiBrightMagenta": "#C792EA", "terminal.ansiBrightRed": "#f07178", "terminal.ansiBrightWhite": "#ffffff", "terminal.ansiBrightYellow": "#FFCB6B", "terminal.ansiCyan": "#89DDFF", "terminal.ansiGreen": "#C3E88D", "terminal.ansiMagenta": "#C792EA", "terminal.ansiRed": "#f07178", "terminal.ansiWhite": "#ffffff", "terminal.ansiYellow": "#FFCB6B", "debugToolBar.background": "#0F111A", "debugConsole.errorForeground": "#f07178", "debugConsole.infoForeground": "#89DDFF", "debugConsole.warningForeground": "#FFCB6B", "selection.background": "#00000080", "editorRuler.foreground": "#3B3F51", "widget.shadow": "#00000030", "scrollbar.shadow": "#00000030", "editorLink.activeForeground": "#A6ACCD", "progressBar.background": "#80CBC4", "pickerGroup.foreground": "#80CBC4", "tree.indentGuidesStroke": "#3B3F51", "terminalCursor.foreground": "#FFCB6B", "terminalCursor.background": "#000000", "inputOption.activeBackground": "#A6ACCD30", "textLink.foreground": "#80CBC4", "textLink.activeForeground": "#A6ACCD", "sideBar.foreground": "#525975", "sideBar.border": "#0F111A60", "sideBarTitle.foreground": "#A6ACCD", "sideBarSectionHeader.border": "#0F111A60", "panel.dropBackground": "#A6ACCD", "panelTitle.activeForeground": "#FFFFFF", "editor.lineHighlightBackground": "#00000050", "editor.findMatchBackground": "#000000", "editor.findMatchHighlightBackground": "#00000050", "editor.findMatchBorder": "#80CBC4", "editor.findMatchHighlightBorder": "#ffffff30", "editorIndentGuide.background": "#3B3F5170", "editorIndentGuide.activeBackground": "#3B3F51", "editorGroup.border": "#00000030", "editorGutter.modifiedBackground": "#82AAFF60", "editorGutter.addedBackground": "#C3E88D60", "editorGutter.deletedBackground": "#f0717860", "activityBar.border": "#0F111A60", "activityBar.foreground": "#A6ACCD", "activityBar.activeBorder": "#80CBC4", "extensionBadge.remoteForeground": "#A6ACCD", "scrollbarSlider.background": "#8F93A220", "scrollbarSlider.hoverBackground": "#8F93A210", "scrollbarSlider.activeBackground": "#80CBC4", "tab.unfocusedActiveBorder": "#464B5D", "tab.activeForeground": "#FFFFFF", "tab.inactiveForeground": "#525975", "tab.activeBackground": "#0F111A", "tab.unfocusedActiveForeground": "#A6ACCD", "editorWidget.resizeBorder": "#80CBC4", "editorWidget.border": "#80CBC4", "notebook.focusedCellBorder": "#80CBC4", "notebook.inactiveFocusedCellBorder": "#80CBC450", "statusBar.border": "#0F111A60", "statusBar.foreground": "#4B526D", "editorBracketMatch.border": "#FFCC0050", "editorBracketMatch.background": "#0F111A", "editorOverviewRuler.findMatchForeground": "#80CBC4", "editorOverviewRuler.border": "#0F111A", "editorOverviewRuler.errorForeground": "#f0717840", "editorOverviewRuler.infoForeground": "#82AAFF40", "editorOverviewRuler.warningForeground": "#FFCB6B40", "editorInfo.foreground": "#82AAFF70", "editorWarning.foreground": "#FFCB6B70", "editorError.foreground": "#f0717870", "editorHoverWidget.border": "#FFFFFF10", "titleBar.activeForeground": "#A6ACCD", "titleBar.inactiveBackground": "#0F111A", "titleBar.inactiveForeground": "#525975", "titleBar.border": "#0F111A60", "input.foreground": "#A6ACCD", "input.placeholderForeground": "#A6ACCD60", "input.border": "#FFFFFF10", "inputValidation.errorBorder": "#f07178", "inputValidation.infoBorder": "#82AAFF", "inputValidation.warningBorder": "#FFCB6B", "dropdown.border": "#FFFFFF10", "quickInput.background": "#0F111A", "quickInput.foreground": "#525975", "list.hoverForeground": "#FFFFFF", "list.inactiveSelectionForeground": "#80CBC4", "quickInput.list.focusBackground": "#A6ACCD20", "editorSuggestWidget.background": "#0F111A", "editorSuggestWidget.foreground": "#A6ACCD", "editorSuggestWidget.highlightForeground": "#80CBC4", "editorSuggestWidget.selectedBackground": "#00000050", "editorSuggestWidget.border": "#FFFFFF10", "diffEditor.insertedTextBackground": "#89DDFF20", "diffEditor.removedTextBackground": "#ff9cac20", "notifications.background": "#0F111A", "notifications.foreground": "#A6ACCD", "notificationLink.foreground": "#80CBC4", "extensionButton.prominentBackground": "#C3E88D90", "extensionButton.prominentHoverBackground": "#C3E88D", "extensionButton.prominentForeground": "#000000", "peekViewEditorGutter.background": "#A6ACCD05", "peekViewTitleDescription.foreground": "#A6ACCD60", "peekViewResult.matchHighlightBackground": "#717CB450", "peekViewEditor.matchHighlightBackground": "#717CB450", "peekViewResult.selectionBackground": "#52597570", "gitDecoration.deletedResourceForeground": "#f0717890", "gitDecoration.conflictingResourceForeground": "#FFCB6B90", "gitDecoration.modifiedResourceForeground": "#82AAFF90", "gitDecoration.untrackedResourceForeground": "#C3E88D90", "gitDecoration.ignoredResourceForeground": "#52597590", "breadcrumb.background": "#0F111A", "breadcrumb.foreground": "#525975", "breadcrumb.focusForeground": "#A6ACCD", "breadcrumb.activeSelectionForeground": "#80CBC4", "breadcrumbPicker.background": "#0F111A", "menu.background": "#0F111A", "menu.foreground": "#A6ACCD", "menu.selectionBackground": "#00000050", "menu.selectionForeground": "#80CBC4", "menu.selectionBorder": "#00000030", "menu.separatorBackground": "#A6ACCD", "menubar.selectionBackground": "#00000030", "menubar.selectionForeground": "#80CBC4", "menubar.selectionBorder": "#00000030", "settings.dropdownForeground": "#A6ACCD", "settings.dropdownBackground": "#0F111A", "settings.numberInputForeground": "#A6ACCD", "settings.numberInputBackground": "#0F111A", "settings.textInputForeground": "#A6ACCD", "settings.textInputBackground": "#0F111A", "settings.headerForeground": "#80CBC4", "settings.modifiedItemIndicator": "#80CBC4", "settings.checkboxBackground": "#0F111A", "settings.checkboxForeground": "#A6ACCD", "listFilterWidget.background": "#00000030", "listFilterWidget.outline": "#00000030", "listFilterWidget.noMatchesOutline": "#00000030" } } ================================================ FILE: apps/web/src/lib/shiki/themes/material-palenight.json ================================================ { "name": "material-palenight", "semanticHighlighting": true, "tokenColors": [ { "name": "Global settings", "settings": { "background": "#292D3E", "foreground": "#A6ACCD" } }, { "name": "String", "scope": "string", "settings": { "foreground": "#C3E88D" } }, { "name": "Punctuation", "scope": "punctuation, constant.other.symbol", "settings": { "foreground": "#89DDFF" } }, { "name": "String Escape", "scope": "constant.character.escape, text.html constant.character.entity.named", "settings": { "foreground": "#A6ACCD" } }, { "name": "Boolean", "scope": "constant.language.boolean", "settings": { "foreground": "#ff9cac" } }, { "name": "Number", "scope": "constant.numeric", "settings": { "foreground": "#F78C6C" } }, { "name": "Variable", "scope": "variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments", "settings": { "foreground": "#A6ACCD" } }, { "name": "Other Keyword", "scope": "keyword.other", "settings": { "foreground": "#F78C6C" } }, { "name": "Keyword", "scope": "keyword, modifier, variable.language.this, support.type.object, constant.language", "settings": { "foreground": "#89DDFF" } }, { "name": "Function call", "scope": "entity.name.function, support.function", "settings": { "foreground": "#82AAFF" } }, { "name": "Storage", "scope": "storage.type, storage.modifier, storage.control", "settings": { "foreground": "#C792EA" } }, { "name": "Modules", "scope": "support.module, support.node", "settings": { "foreground": "#f07178", "fontStyle": "italic" } }, { "name": "Type", "scope": "support.type, constant.other.key", "settings": { "foreground": "#FFCB6B" } }, { "name": "Type", "scope": "entity.name.type, entity.other.inherited-class, entity.other", "settings": { "foreground": "#FFCB6B" } }, { "name": "Comment", "scope": "comment", "settings": { "foreground": "#676E95", "fontStyle": "italic" } }, { "name": "Comment", "scope": "comment punctuation.definition.comment, string.quoted.docstring", "settings": { "foreground": "#676E95", "fontStyle": "italic" } }, { "name": "Punctuation", "scope": "punctuation", "settings": { "foreground": "#89DDFF" } }, { "name": "Class", "scope": "entity.name, entity.name.type.class, support.type, support.class, meta.use", "settings": { "foreground": "#FFCB6B" } }, { "name": "Class variable", "scope": "variable.object.property, meta.field.declaration entity.name.function", "settings": { "foreground": "#f07178" } }, { "name": "Class method", "scope": "meta.definition.method entity.name.function", "settings": { "foreground": "#f07178" } }, { "name": "Function definition", "scope": "meta.function entity.name.function", "settings": { "foreground": "#82AAFF" } }, { "name": "Template expression", "scope": "template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end", "settings": { "foreground": "#89DDFF" } }, { "name": "Reset embedded/template expression colors", "scope": "meta.embedded, source.groovy.embedded, meta.template.expression", "settings": { "foreground": "#A6ACCD" } }, { "name": "YAML key", "scope": "entity.name.tag.yaml", "settings": { "foreground": "#f07178" } }, { "name": "JSON key", "scope": "meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json", "settings": { "foreground": "#f07178" } }, { "name": "JSON constant", "scope": "constant.language.json", "settings": { "foreground": "#89DDFF" } }, { "name": "CSS class", "scope": "entity.other.attribute-name.class", "settings": { "foreground": "#FFCB6B" } }, { "name": "CSS ID", "scope": "entity.other.attribute-name.id", "settings": { "foreground": "#F78C6C" } }, { "name": "CSS tag", "scope": "source.css entity.name.tag", "settings": { "foreground": "#FFCB6B" } }, { "name": "CSS properties", "scope": "support.type.property-name.css", "settings": { "foreground": "#B2CCD6" } }, { "name": "HTML tag outer", "scope": "meta.tag, punctuation.definition.tag", "settings": { "foreground": "#89DDFF" } }, { "name": "HTML tag inner", "scope": "entity.name.tag", "settings": { "foreground": "#f07178" } }, { "name": "HTML tag attribute", "scope": "entity.other.attribute-name", "settings": { "foreground": "#C792EA" } }, { "name": "HTML entities", "scope": "punctuation.definition.entity.html", "settings": { "foreground": "#A6ACCD" } }, { "name": "Markdown heading", "scope": "markup.heading", "settings": { "foreground": "#89DDFF" } }, { "name": "Markdown link text", "scope": "text.html.markdown meta.link.inline, meta.link.reference", "settings": { "foreground": "#f07178" } }, { "name": "Markdown list item", "scope": "text.html.markdown beginning.punctuation.definition.list", "settings": { "foreground": "#89DDFF" } }, { "name": "Markdown italic", "scope": "markup.italic", "settings": { "foreground": "#f07178", "fontStyle": "italic" } }, { "name": "Markdown bold", "scope": "markup.bold", "settings": { "foreground": "#f07178", "fontStyle": "bold" } }, { "name": "Markdown bold italic", "scope": "markup.bold markup.italic, markup.italic markup.bold", "settings": { "foreground": "#f07178", "fontStyle": "italic bold" } }, { "name": "Markdown code block", "scope": "markup.fenced_code.block.markdown punctuation.definition.markdown", "settings": { "foreground": "#C3E88D" } }, { "name": "Markdown inline code", "scope": "markup.inline.raw.string.markdown", "settings": { "foreground": "#C3E88D" } }, { "name": "INI property name", "scope": "keyword.other.definition.ini", "settings": { "foreground": "#f07178" } }, { "name": "INI section title", "scope": "entity.name.section.group-title.ini", "settings": { "foreground": "#89DDFF" } }, { "name": "C# class", "scope": "source.cs meta.class.identifier storage.type", "settings": { "foreground": "#FFCB6B" } }, { "name": "C# class method", "scope": "source.cs meta.method.identifier entity.name.function", "settings": { "foreground": "#f07178" } }, { "name": "C# function call", "scope": "source.cs meta.method-call meta.method, source.cs entity.name.function", "settings": { "foreground": "#82AAFF" } }, { "name": "C# type", "scope": "source.cs storage.type", "settings": { "foreground": "#FFCB6B" } }, { "name": "C# return type", "scope": "source.cs meta.method.return-type", "settings": { "foreground": "#FFCB6B" } }, { "name": "C# preprocessor", "scope": "source.cs meta.preprocessor", "settings": { "foreground": "#676E95" } }, { "name": "C# namespace", "scope": "source.cs entity.name.type.namespace", "settings": { "foreground": "#A6ACCD" } }, { "name": "JSX Text", "scope": "meta.jsx.children, SXNested", "settings": { "foreground": "#A6ACCD" } }, { "name": "JSX Components name", "scope": "support.class.component", "settings": { "foreground": "#FFCB6B" } }, { "name": "C-related Block Level Variables", "scope": "source.cpp meta.block variable.other", "settings": { "foreground": "#A6ACCD" } }, { "name": "Member Access Meta", "scope": "source.python meta.member.access.python", "settings": { "foreground": "#f07178" } }, { "name": "Function Call", "scope": "source.python meta.function-call.python, meta.function-call.arguments", "settings": { "foreground": "#82AAFF" } }, { "name": "Blocks", "scope": "meta.block", "settings": { "foreground": "#f07178" } }, { "name": "Function Call", "scope": "entity.name.function.call", "settings": { "foreground": "#82AAFF" } }, { "name": "Namespaces", "scope": "source.php support.other.namespace, source.php meta.use support.class", "settings": { "foreground": "#A6ACCD" } }, { "name": "Constant keywords", "scope": "constant.keyword", "settings": { "foreground": "#89DDFF", "fontStyle": "italic" } }, { "name": "Entity name", "scope": "entity.name.function", "settings": { "foreground": "#82AAFF" } }, { "name": "Global settings", "settings": { "background": "#292D3E", "foreground": "#A6ACCD" } }, { "name": "Markup Deleted", "scope": ["markup.deleted"], "settings": { "foreground": "#f07178" } }, { "name": "Markup Inserted", "scope": ["markup.inserted"], "settings": { "foreground": "#C3E88D" } }, { "name": "Markup Underline", "scope": ["markup.underline"], "settings": { "fontStyle": "underline" } }, { "name": "Keyword Control", "scope": ["keyword.control"], "settings": { "foreground": "#89DDFF", "fontStyle": "italic" } }, { "name": "Parameter", "scope": ["variable.parameter"], "settings": { "fontStyle": "italic" } }, { "name": "Python - Self Parameter", "scope": ["variable.parameter.function.language.special.self.python"], "settings": { "foreground": "#f07178", "fontStyle": "italic" } }, { "name": "Python - Format Placeholder", "scope": ["constant.character.format.placeholder.other.python"], "settings": { "foreground": "#F78C6C" } }, { "name": "Markdown - Blockquote", "scope": ["markup.quote"], "settings": { "fontStyle": "italic", "foreground": "#89DDFF" } }, { "name": "Markdown - Fenced Language", "scope": ["markup.fenced_code.block"], "settings": { "foreground": "#A6ACCD90" } }, { "name": "Markdown - Blockquote Punctuation", "scope": ["punctuation.definition.quote"], "settings": { "foreground": "#ff9cac" } }, { "name": "JSON Key - Level 0", "scope": [ "meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#C792EA" } }, { "name": "JSON Key - Level 1", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#FFCB6B" } }, { "name": "JSON Key - Level 2", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#F78C6C" } }, { "name": "JSON Key - Level 3", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#f07178" } }, { "name": "JSON Key - Level 4", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#916b53" } }, { "name": "JSON Key - Level 5", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#82AAFF" } }, { "name": "JSON Key - Level 6", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#ff9cac" } }, { "name": "JSON Key - Level 7", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#C792EA" } }, { "name": "JSON Key - Level 8", "scope": [ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#C3E88D" } } ], "colors": { "focusBorder": "#FFFFFF00", "foreground": "#A6ACCD", "button.background": "#717CB450", "button.foreground": "#ffffff", "dropdown.background": "#292D3E", "input.background": "#333747", "inputOption.activeBorder": "#A6ACCD30", "list.activeSelectionBackground": "#292D3E", "list.activeSelectionForeground": "#80CBC4", "list.dropBackground": "#f0717880", "list.focusBackground": "#A6ACCD20", "list.focusForeground": "#A6ACCD", "list.highlightForeground": "#80CBC4", "list.hoverBackground": "#292D3E", "list.inactiveSelectionBackground": "#00000030", "activityBar.background": "#292D3E", "activityBar.dropBackground": "#f0717880", "activityBarBadge.background": "#80CBC4", "activityBarBadge.foreground": "#000000", "badge.background": "#00000030", "badge.foreground": "#676E95", "sideBar.background": "#292D3E", "sideBarSectionHeader.background": "#292D3E", "editorGroup.dropBackground": "#f0717880", "editorGroup.focusedEmptyBorder": "#f07178", "editorGroupHeader.tabsBackground": "#292D3E", "tab.border": "#292D3E", "tab.activeBorder": "#80CBC4", "tab.inactiveBackground": "#292D3E", "tab.activeModifiedBorder": "#676E95", "tab.inactiveModifiedBorder": "#904348", "tab.unfocusedActiveModifiedBorder": "#c05a60", "tab.unfocusedInactiveModifiedBorder": "#904348", "editor.background": "#292D3E", "editor.foreground": "#A6ACCD", "editorLineNumber.foreground": "#3A3F58", "editorLineNumber.activeForeground": "#676E95", "editorCursor.foreground": "#FFCC00", "editor.selectionBackground": "#717CB450", "editor.selectionHighlightBackground": "#FFCC0020", "editor.wordHighlightBackground": "#ff9cac30", "editor.wordHighlightStrongBackground": "#C3E88D30", "editor.findMatchHighlight": "#A6ACCD", "editor.findRangeHighlightBackground": "#FFCB6B30", "editor.lineHighlightBorder": "#00000000", "editor.rangeHighlightBackground": "#FFFFFF0d", "editorWhitespace.foreground": "#A6ACCD40", "editorWidget.background": "#292D3E", "editorHoverWidget.background": "#292D3E", "editorMarkerNavigation.background": "#A6ACCD05", "peekView.border": "#00000030", "peekViewEditor.background": "#A6ACCD05", "peekViewResult.background": "#A6ACCD05", "peekViewTitle.background": "#A6ACCD05", "panel.background": "#292D3E", "panel.border": "#292D3E60", "panelTitle.activeBorder": "#80CBC4", "panelTitle.inactiveForeground": "#A6ACCD", "statusBar.background": "#292D3E", "statusBar.debuggingBackground": "#C792EA", "statusBar.debuggingForeground": "#ffffff", "statusBar.noFolderBackground": "#292D3E", "statusBarItem.activeBackground": "#f0717880", "statusBarItem.hoverBackground": "#676E9520", "statusBarItem.remoteBackground": "#80CBC4", "statusBarItem.remoteForeground": "#000000", "titleBar.activeBackground": "#292D3E", "pickerGroup.border": "#FFFFFF1a", "terminal.ansiBlack": "#000000", "terminal.ansiBlue": "#82AAFF", "terminal.ansiBrightBlack": "#676E95", "terminal.ansiBrightBlue": "#82AAFF", "terminal.ansiBrightCyan": "#89DDFF", "terminal.ansiBrightGreen": "#C3E88D", "terminal.ansiBrightMagenta": "#C792EA", "terminal.ansiBrightRed": "#f07178", "terminal.ansiBrightWhite": "#ffffff", "terminal.ansiBrightYellow": "#FFCB6B", "terminal.ansiCyan": "#89DDFF", "terminal.ansiGreen": "#C3E88D", "terminal.ansiMagenta": "#C792EA", "terminal.ansiRed": "#f07178", "terminal.ansiWhite": "#ffffff", "terminal.ansiYellow": "#FFCB6B", "debugToolBar.background": "#292D3E", "debugConsole.errorForeground": "#f07178", "debugConsole.infoForeground": "#89DDFF", "debugConsole.warningForeground": "#FFCB6B", "selection.background": "#00000080", "editorRuler.foreground": "#4E5579", "widget.shadow": "#00000030", "scrollbar.shadow": "#00000030", "editorLink.activeForeground": "#A6ACCD", "progressBar.background": "#80CBC4", "pickerGroup.foreground": "#80CBC4", "tree.indentGuidesStroke": "#4E5579", "terminalCursor.foreground": "#FFCB6B", "terminalCursor.background": "#000000", "inputOption.activeBackground": "#A6ACCD30", "textLink.foreground": "#80CBC4", "textLink.activeForeground": "#A6ACCD", "sideBar.foreground": "#676E95", "sideBar.border": "#292D3E60", "sideBarTitle.foreground": "#A6ACCD", "sideBarSectionHeader.border": "#292D3E60", "panel.dropBackground": "#A6ACCD", "panelTitle.activeForeground": "#FFFFFF", "editor.lineHighlightBackground": "#00000050", "editor.findMatchBackground": "#000000", "editor.findMatchHighlightBackground": "#00000050", "editor.findMatchBorder": "#80CBC4", "editor.findMatchHighlightBorder": "#ffffff30", "editorIndentGuide.background": "#4E557970", "editorIndentGuide.activeBackground": "#4E5579", "editorGroup.border": "#00000030", "editorGutter.modifiedBackground": "#82AAFF60", "editorGutter.addedBackground": "#C3E88D60", "editorGutter.deletedBackground": "#f0717860", "activityBar.border": "#292D3E60", "activityBar.foreground": "#A6ACCD", "activityBar.activeBorder": "#80CBC4", "extensionBadge.remoteForeground": "#A6ACCD", "scrollbarSlider.background": "#A6ACCD20", "scrollbarSlider.hoverBackground": "#A6ACCD10", "scrollbarSlider.activeBackground": "#80CBC4", "tab.unfocusedActiveBorder": "#676E95", "tab.activeForeground": "#FFFFFF", "tab.inactiveForeground": "#676E95", "tab.activeBackground": "#292D3E", "tab.unfocusedActiveForeground": "#A6ACCD", "editorWidget.resizeBorder": "#80CBC4", "editorWidget.border": "#80CBC4", "notebook.focusedCellBorder": "#80CBC4", "notebook.inactiveFocusedCellBorder": "#80CBC450", "statusBar.border": "#292D3E60", "statusBar.foreground": "#676E95", "editorBracketMatch.border": "#FFCC0050", "editorBracketMatch.background": "#292D3E", "editorOverviewRuler.findMatchForeground": "#80CBC4", "editorOverviewRuler.border": "#292D3E", "editorOverviewRuler.errorForeground": "#f0717840", "editorOverviewRuler.infoForeground": "#82AAFF40", "editorOverviewRuler.warningForeground": "#FFCB6B40", "editorInfo.foreground": "#82AAFF70", "editorWarning.foreground": "#FFCB6B70", "editorError.foreground": "#f0717870", "editorHoverWidget.border": "#FFFFFF10", "titleBar.activeForeground": "#A6ACCD", "titleBar.inactiveBackground": "#292D3E", "titleBar.inactiveForeground": "#676E95", "titleBar.border": "#292D3E60", "input.foreground": "#A6ACCD", "input.placeholderForeground": "#A6ACCD60", "input.border": "#FFFFFF10", "inputValidation.errorBorder": "#f07178", "inputValidation.infoBorder": "#82AAFF", "inputValidation.warningBorder": "#FFCB6B", "dropdown.border": "#FFFFFF10", "quickInput.background": "#292D3E", "quickInput.foreground": "#676E95", "list.hoverForeground": "#FFFFFF", "list.inactiveSelectionForeground": "#80CBC4", "quickInput.list.focusBackground": "#A6ACCD20", "editorSuggestWidget.background": "#292D3E", "editorSuggestWidget.foreground": "#A6ACCD", "editorSuggestWidget.highlightForeground": "#80CBC4", "editorSuggestWidget.selectedBackground": "#00000050", "editorSuggestWidget.border": "#FFFFFF10", "diffEditor.insertedTextBackground": "#89DDFF20", "diffEditor.removedTextBackground": "#ff9cac20", "notifications.background": "#292D3E", "notifications.foreground": "#A6ACCD", "notificationLink.foreground": "#80CBC4", "extensionButton.prominentBackground": "#C3E88D90", "extensionButton.prominentHoverBackground": "#C3E88D", "extensionButton.prominentForeground": "#000000", "peekViewEditorGutter.background": "#A6ACCD05", "peekViewTitleDescription.foreground": "#A6ACCD60", "peekViewResult.matchHighlightBackground": "#717CB450", "peekViewEditor.matchHighlightBackground": "#717CB450", "peekViewResult.selectionBackground": "#676E9570", "gitDecoration.deletedResourceForeground": "#f0717890", "gitDecoration.conflictingResourceForeground": "#FFCB6B90", "gitDecoration.modifiedResourceForeground": "#82AAFF90", "gitDecoration.untrackedResourceForeground": "#C3E88D90", "gitDecoration.ignoredResourceForeground": "#676E9590", "breadcrumb.background": "#292D3E", "breadcrumb.foreground": "#676E95", "breadcrumb.focusForeground": "#A6ACCD", "breadcrumb.activeSelectionForeground": "#80CBC4", "breadcrumbPicker.background": "#292D3E", "menu.background": "#292D3E", "menu.foreground": "#A6ACCD", "menu.selectionBackground": "#00000050", "menu.selectionForeground": "#80CBC4", "menu.selectionBorder": "#00000030", "menu.separatorBackground": "#A6ACCD", "menubar.selectionBackground": "#00000030", "menubar.selectionForeground": "#80CBC4", "menubar.selectionBorder": "#00000030", "settings.dropdownForeground": "#A6ACCD", "settings.dropdownBackground": "#292D3E", "settings.numberInputForeground": "#A6ACCD", "settings.numberInputBackground": "#292D3E", "settings.textInputForeground": "#A6ACCD", "settings.textInputBackground": "#292D3E", "settings.headerForeground": "#80CBC4", "settings.modifiedItemIndicator": "#80CBC4", "settings.checkboxBackground": "#292D3E", "settings.checkboxForeground": "#A6ACCD", "listFilterWidget.background": "#00000030", "listFilterWidget.outline": "#00000030", "listFilterWidget.noMatchesOutline": "#00000030" } } ================================================ FILE: apps/web/src/lib/shiki/themes/min-dark.json ================================================ { "name": "min-dark", "type": "dark", "colors": { "editorIndentGuide.activeBackground": "#383838", "editorIndentGuide.background": "#2A2A2A", "editorRuler.foreground": "#2A2A2A", "editorLineNumber.foreground": "#727272", "activityBar.background": "#1A1A1A", "activityBar.foreground": "#7D7D7D", "activityBarBadge.background": "#383838", "badge.background": "#383838", "badge.foreground": "#C1C1C1", "button.background": "#333", "editor.background": "#1f1f1f", "editor.lineHighlightBorder": "#303030", "editorGroupHeader.tabsBackground": "#1A1A1A", "editorGroupHeader.tabsBorder": "#1A1A1A", "editorSuggestWidget.background": "#1A1A1A", "focusBorder": "#444", "foreground": "#888888", "gitDecoration.ignoredResourceForeground": "#444444", "input.background": "#2A2A2A", "input.foreground": "#E0E0E0", "list.activeSelectionBackground": "#212121", "list.activeSelectionForeground": "#F5F5F5", "list.focusBackground": "#292929", "list.highlightForeground": "#EAEAEA", "list.hoverBackground": "#262626", "list.hoverForeground": "#9E9E9E", "list.inactiveSelectionBackground": "#212121", "list.inactiveSelectionForeground": "#F5F5F5", "panelTitle.activeBorder": "#1f1f1f", "panelTitle.activeForeground": "#FAFAFA", "panelTitle.inactiveForeground": "#484848", "peekView.border": "#444", "peekViewEditor.background": "#242424", "pickerGroup.border": "#363636", "pickerGroup.foreground": "#EAEAEA", "progressBar.background": "#FAFAFA", "scrollbar.shadow": "#1f1f1f", "sideBar.background": "#1A1A1A", "sideBarSectionHeader.background": "#202020", "statusBar.background": "#1A1A1A", "statusBar.debuggingBackground": "#1A1A1A", "statusBar.foreground": "#7E7E7E", "statusBar.noFolderBackground": "#1A1A1A", "statusBarItem.remoteForeground": "#7E7E7E", "statusBarItem.remoteBackground": "#1a1a1a00", "statusBarItem.prominentBackground": "#fafafa1a", "tab.activeBorder": "#1e1e1e", "tab.activeForeground": "#FAFAFA", "tab.border": "#1A1A1A", "tab.inactiveBackground": "#1A1A1A", "tab.inactiveForeground": "#727272", "textLink.foreground": "#CCC", "textLink.activeForeground": "#fafafa", "titleBar.activeBackground": "#1A1A1A", "titleBar.border": "#00000000", "terminal.ansiBrightBlack": "#5c5c5c", "inputOption.activeBackground": "#3a3a3a", "debugIcon.continueForeground": "#FF7A84", "debugIcon.disconnectForeground": "#FF7A84", "debugIcon.pauseForeground": "#FF7A84", "debugIcon.restartForeground": "#79b8ff", "debugIcon.startForeground": "#79b8ff", "debugIcon.stepBackForeground": "#FF7A84", "debugIcon.stepIntoForeground": "#FF7A84", "debugIcon.stepOutForeground": "#FF7A84", "debugIcon.stepOverForeground": "#FF7A84", "debugIcon.stopForeground": "#79b8ff", "debugIcon.breakpointCurrentStackframeForeground": "#79b8ff", "debugIcon.breakpointDisabledForeground": "#848484", "debugIcon.breakpointForeground": "#FF7A84", "debugIcon.breakpointStackframeForeground": "#79b8ff", "debugIcon.breakpointUnverifiedForeground": "#848484", "symbolIcon.classForeground": "#FF9800", "symbolIcon.enumeratorForeground": "#FF9800", "symbolIcon.eventForeground": "#FF9800", "symbolIcon.methodForeground": "#b392f0", "symbolIcon.constructorForeground": "#b392f0", "symbolIcon.functionForeground": "#b392f0", "symbolIcon.fieldForeground": "#79b8ff", "symbolIcon.interfaceForeground": "#79b8ff", "symbolIcon.variableForeground": "#79b8ff", "symbolIcon.enumeratorMemberForeground": "#79b8ff", "diffEditor.insertedTextBackground": "#3a632a4b", "diffEditor.removedTextBackground": "#88063852" }, "tokenColors": [ { "settings": { "foreground": "#b392f0" } }, { "scope": [ "support.function", "keyword.operator.accessor", "meta.group.braces.round.function.arguments", "meta.template.expression", "markup.fenced_code meta.embedded.block" ], "settings": { "foreground": "#b392f0" } }, { "scope": "emphasis", "settings": { "fontStyle": "italic" } }, { "scope": ["strong", "markup.heading.markdown", "markup.bold.markdown"], "settings": { "fontStyle": "bold", "foreground": "#FF7A84" } }, { "scope": ["markup.italic.markdown"], "settings": { "fontStyle": "italic" } }, { "scope": "meta.link.inline.markdown", "settings": { "fontStyle": "underline", "foreground": "#1976D2" } }, { "scope": ["string", "markup.fenced_code", "markup.inline"], "settings": { "foreground": "#9db1c5" } }, { "scope": ["comment", "string.quoted.docstring.multi"], "settings": { "foreground": "#6b737c" } }, { "scope": [ "constant.language", "variable.language.this", "variable.other.object", "variable.other.class", "variable.other.constant", "meta.property-name", "support", "string.other.link.title.markdown" ], "settings": { "foreground": "#79b8ff" } }, { "scope": [ "constant.numeric", "constant.other.placeholder", "constant.character.format.placeholder", "meta.property-value", "keyword.other.unit", "keyword.other.template", "entity.name.tag.yaml", "entity.other.attribute-name", "support.type.property-name.json" ], "settings": { "foreground": "#f8f8f8" } }, { "scope": [ "keyword", "storage.modifier", "storage.type", "storage.control.clojure", "entity.name.function.clojure", "support.function.node", "punctuation.separator.key-value", "punctuation.definition.template-expression" ], "settings": { "foreground": "#f97583" } }, { "scope": "variable.parameter.function", "settings": { "foreground": "#FF9800" } }, { "scope": [ "entity.name.type", "entity.other.inherited-class", "meta.function-call", "meta.instance.constructor", "entity.other.attribute-name", "entity.name.function", "constant.keyword.clojure" ], "settings": { "foreground": "#b392f0" } }, { "scope": [ "entity.name.tag", "string.quoted", "string.regexp", "string.interpolated", "string.template", "string.unquoted.plain.out.yaml", "keyword.other.template" ], "settings": { "foreground": "#ffab70" } }, { "scope": "token.info-token", "settings": { "foreground": "#316bcd" } }, { "scope": "token.warn-token", "settings": { "foreground": "#cd9731" } }, { "scope": "token.error-token", "settings": { "foreground": "#cd3131" } }, { "scope": "token.debug-token", "settings": { "foreground": "#800080" } }, { "scope": [ "punctuation.definition.arguments", "punctuation.definition.dict", "punctuation.separator", "meta.function-call.arguments" ], "settings": { "foreground": "#bbbbbb" } }, { "name": "[Custom] Markdown links", "scope": "markup.underline.link", "settings": { "foreground": "#ffab70" } }, { "name": "[Custom] Markdown list", "scope": ["beginning.punctuation.definition.list.markdown"], "settings": { "foreground": "#FF7A84" } }, { "name": "[Custom] Markdown punctuation definition", "scope": "punctuation.definition.metadata.markdown", "settings": { "foreground": "#ffab70" } }, { "name": "[Custom] Markdown punctuation definition brackets", "scope": [ "punctuation.definition.string.begin.markdown", "punctuation.definition.string.end.markdown" ], "settings": { "foreground": "#79b8ff" } } ], "semanticHighlighting": true } ================================================ FILE: apps/web/src/lib/shiki/themes/min-light.json ================================================ { "name": "min-light", "type": "light", "colors": { "activityBar.background": "#f6f6f6", "activityBar.foreground": "#9E9E9E", "activityBarBadge.background": "#616161", "badge.background": "#E0E0E0", "badge.foreground": "#616161", "button.background": "#757575", "button.hoverBackground": "#616161", "editor.background": "#ffffff", "editor.foreground": "#212121", "editor.lineHighlightBorder": "#f2f2f2", "editorBracketMatch.background": "#E7F3FF", "editorBracketMatch.border": "#c8e1ff", "editorGroupHeader.tabsBackground": "#f6f6f6", "editorGroupHeader.tabsBorder": "#fff", "editorIndentGuide.background": "#EEE", "editorLineNumber.activeForeground": "#757575", "editorLineNumber.foreground": "#CCC", "editorSuggestWidget.background": "#F3F3F3", "extensionButton.prominentBackground": "#000000AA", "extensionButton.prominentHoverBackground": "#000000BB", "focusBorder": "#D0D0D0", "foreground": "#757575", "gitDecoration.ignoredResourceForeground": "#AAAAAA", "input.border": "#E9E9E9", "list.activeSelectionBackground": "#EEE", "list.activeSelectionForeground": "#212121", "list.focusBackground": "#ddd", "list.focusForeground": "#212121", "list.highlightForeground": "#212121", "list.inactiveSelectionBackground": "#E0E0E0", "list.inactiveSelectionForeground": "#212121", "panel.background": "#fff", "panel.border": "#f4f4f4", "panelTitle.activeBorder": "#fff", "panelTitle.inactiveForeground": "#BDBDBD", "peekView.border": "#E0E0E0", "peekViewEditor.background": "#f8f8f8", "pickerGroup.foreground": "#000", "progressBar.background": "#000", "scrollbar.shadow": "#FFF", "sideBar.background": "#f6f6f6", "sideBar.border": "#f6f6f6", "sideBarSectionHeader.background": "#EEE", "sideBarTitle.foreground": "#999", "statusBar.background": "#f6f6f6", "statusBar.border": "#f6f6f6", "statusBar.debuggingBackground": "#f6f6f6", "statusBar.foreground": "#7E7E7E", "statusBar.noFolderBackground": "#f6f6f6", "statusBarItem.remoteForeground": "#7E7E7E", "statusBarItem.remoteBackground": "#f6f6f600", "statusBarItem.prominentBackground": "#0000001a", "tab.activeBorder": "#FFF", "tab.activeForeground": "#424242", "tab.border": "#f6f6f6", "tab.inactiveBackground": "#f6f6f6", "tab.inactiveForeground": "#BDBDBD", "tab.unfocusedActiveBorder": "#fff", "terminal.ansiBlack": "#333", "terminal.ansiBlue": "#e0e0e0", "terminal.ansiBrightBlack": "#a1a1a1", "terminal.ansiBrightBlue": "#6871ff", "terminal.ansiBrightCyan": "#57d9ad", "terminal.ansiBrightGreen": "#a3d900", "terminal.ansiBrightMagenta": "#a37acc", "terminal.ansiBrightRed": "#d6656a", "terminal.ansiBrightWhite": "#7E7E7E", "terminal.ansiBrightYellow": "#e7c547", "terminal.ansiCyan": "#4dbf99", "terminal.ansiGreen": "#77cc00", "terminal.ansiMagenta": "#9966cc", "terminal.ansiRed": "#D32F2F", "terminal.ansiWhite": "#c7c7c7", "terminal.ansiYellow": "#f29718", "terminal.background": "#fff", "textLink.activeForeground": "#000", "textLink.foreground": "#000", "titleBar.activeBackground": "#f6f6f6", "titleBar.border": "#FFFFFF00", "titleBar.inactiveBackground": "#f6f6f6", "inputOption.activeBackground": "#EDEDED", "debugIcon.continueForeground": "#6f42c1", "debugIcon.disconnectForeground": "#6f42c1", "debugIcon.pauseForeground": "#6f42c1", "debugIcon.restartForeground": "#1976D2", "debugIcon.startForeground": "#1976D2", "debugIcon.stepBackForeground": "#6f42c1", "debugIcon.stepIntoForeground": "#6f42c1", "debugIcon.stepOutForeground": "#6f42c1", "debugIcon.stepOverForeground": "#6f42c1", "debugIcon.stopForeground": "#1976D2", "debugIcon.breakpointCurrentStackframeForeground": "#1976D2", "debugIcon.breakpointDisabledForeground": "#848484", "debugIcon.breakpointForeground": "#D32F2F", "debugIcon.breakpointStackframeForeground": "#1976D2", "symbolIcon.classForeground": "#dd8500", "symbolIcon.enumeratorForeground": "#dd8500", "symbolIcon.eventForeground": "#dd8500", "symbolIcon.methodForeground": "#6f42c1", "symbolIcon.constructorForeground": "#6f42c1", "symbolIcon.functionForeground": "#6f42c1", "symbolIcon.fieldForeground": "#1976D2", "symbolIcon.interfaceForeground": "#1976D2", "symbolIcon.variableForeground": "#1976D2", "symbolIcon.enumeratorMemberForeground": "#1976D2", "diffEditor.removedTextBackground": "#e597af52", "diffEditor.insertedTextBackground": "#b7e7a44b" }, "tokenColors": [ { "settings": { "foreground": "#24292eff" } }, { "scope": [ "keyword.operator.accessor", "meta.group.braces.round.function.arguments", "meta.template.expression", "markup.fenced_code meta.embedded.block" ], "settings": { "foreground": "#24292eff" } }, { "scope": "emphasis", "settings": { "fontStyle": "italic" } }, { "scope": ["strong", "markup.heading.markdown", "markup.bold.markdown"], "settings": { "fontStyle": "bold" } }, { "scope": ["markup.italic.markdown"], "settings": { "fontStyle": "italic" } }, { "scope": "meta.link.inline.markdown", "settings": { "fontStyle": "underline", "foreground": "#1976D2" } }, { "scope": ["string", "markup.fenced_code", "markup.inline"], "settings": { "foreground": "#2b5581" } }, { "scope": ["comment", "string.quoted.docstring.multi"], "settings": { "foreground": "#c2c3c5" } }, { "scope": [ "constant.numeric", "constant.language", "constant.other.placeholder", "constant.character.format.placeholder", "variable.language.this", "variable.other.object", "variable.other.class", "variable.other.constant", "meta.property-name", "meta.property-value", "support" ], "settings": { "foreground": "#1976D2" } }, { "scope": [ "keyword", "storage.modifier", "storage.type", "storage.control.clojure", "entity.name.function.clojure", "entity.name.tag.yaml", "support.function.node", "support.type.property-name.json", "punctuation.separator.key-value", "punctuation.definition.template-expression" ], "settings": { "foreground": "#D32F2F" } }, { "scope": "variable.parameter.function", "settings": { "foreground": "#FF9800" } }, { "scope": [ "support.function", "entity.name.type", "entity.other.inherited-class", "meta.function-call", "meta.instance.constructor", "entity.other.attribute-name", "entity.name.function", "constant.keyword.clojure" ], "settings": { "foreground": "#6f42c1" } }, { "scope": [ "entity.name.tag", "string.quoted", "string.regexp", "string.interpolated", "string.template", "string.unquoted.plain.out.yaml", "keyword.other.template" ], "settings": { "foreground": "#22863a" } }, { "scope": "token.info-token", "settings": { "foreground": "#316bcd" } }, { "scope": "token.warn-token", "settings": { "foreground": "#cd9731" } }, { "scope": "token.error-token", "settings": { "foreground": "#cd3131" } }, { "scope": "token.debug-token", "settings": { "foreground": "#800080" } }, { "scope": ["strong", "markup.heading.markdown", "markup.bold.markdown"], "settings": { "foreground": "#6f42c1" } }, { "scope": [ "punctuation.definition.arguments", "punctuation.definition.dict", "punctuation.separator", "meta.function-call.arguments" ], "settings": { "foreground": "#212121" } }, { "name": "[Custom] Markdown links", "scope": [ "markup.underline.link", "punctuation.definition.metadata.markdown" ], "settings": { "foreground": "#22863a" } }, { "name": "[Custom] Markdown list", "scope": ["beginning.punctuation.definition.list.markdown"], "settings": { "foreground": "#6f42c1" } }, { "name": "[Custom] Markdown punctuation definition brackets", "scope": [ "punctuation.definition.string.begin.markdown", "punctuation.definition.string.end.markdown", "string.other.link.title.markdown", "string.other.link.description.markdown" ], "settings": { "foreground": "#d32f2f" } } ] } ================================================ FILE: apps/web/src/lib/shiki/themes/monokai.json ================================================ { "type": "dark", "colors": { "dropdown.background": "#414339", "list.activeSelectionBackground": "#75715E", "quickInputList.focusBackground": "#414339", "dropdown.listBackground": "#1e1f1c", "list.inactiveSelectionBackground": "#414339", "list.hoverBackground": "#3e3d32", "list.dropBackground": "#414339", "list.highlightForeground": "#f8f8f2", "button.background": "#75715E", "editor.background": "#272822", "editor.foreground": "#f8f8f2", "selection.background": "#878b9180", "editor.selectionHighlightBackground": "#575b6180", "editor.selectionBackground": "#878b9180", "minimap.selectionHighlight": "#878b9180", "editor.wordHighlightBackground": "#4a4a7680", "editor.wordHighlightStrongBackground": "#6a6a9680", "editor.lineHighlightBackground": "#3e3d32", "editorLineNumber.activeForeground": "#c2c2bf", "editorCursor.foreground": "#f8f8f0", "editorWhitespace.foreground": "#464741", "editorIndentGuide.background": "#464741", "editorIndentGuide.activeBackground": "#767771", "editorGroupHeader.tabsBackground": "#1e1f1c", "editorGroup.dropBackground": "#41433980", "tab.inactiveBackground": "#34352f", "tab.border": "#1e1f1c", "tab.inactiveForeground": "#ccccc7", "tab.lastPinnedBorder": "#414339", "widget.shadow": "#00000098", "progressBar.background": "#75715E", "badge.background": "#75715E", "badge.foreground": "#f8f8f2", "editorLineNumber.foreground": "#90908a", "panelTitle.activeForeground": "#f8f8f2", "panelTitle.activeBorder": "#75715E", "panelTitle.inactiveForeground": "#75715E", "panel.border": "#414339", "settings.focusedRowBackground": "#4143395A", "titleBar.activeBackground": "#1e1f1c", "statusBar.background": "#414339", "statusBar.noFolderBackground": "#414339", "statusBar.debuggingBackground": "#75715E", "statusBarItem.remoteBackground": "#AC6218", "ports.iconRunningProcessForeground": "#ccccc7", "activityBar.background": "#272822", "activityBar.foreground": "#f8f8f2", "sideBar.background": "#1e1f1c", "sideBarSectionHeader.background": "#272822", "menu.background": "#1e1f1c", "menu.foreground": "#cccccc", "pickerGroup.foreground": "#75715E", "input.background": "#414339", "inputOption.activeBorder": "#75715E", "focusBorder": "#75715E", "editorWidget.background": "#1e1f1c", "debugToolBar.background": "#1e1f1c", "diffEditor.insertedTextBackground": "#4b661680", "diffEditor.removedTextBackground": "#90274A70", "inputValidation.errorBackground": "#90274A", "inputValidation.errorBorder": "#f92672", "inputValidation.warningBackground": "#848528", "inputValidation.warningBorder": "#e2e22e", "inputValidation.infoBackground": "#546190", "inputValidation.infoBorder": "#819aff", "editorHoverWidget.background": "#414339", "editorHoverWidget.border": "#75715E", "editorSuggestWidget.background": "#272822", "editorSuggestWidget.border": "#75715E", "editorGroup.border": "#34352f", "peekView.border": "#75715E", "peekViewEditor.background": "#272822", "peekViewResult.background": "#1e1f1c", "peekViewTitle.background": "#1e1f1c", "peekViewResult.selectionBackground": "#414339", "peekViewResult.matchHighlightBackground": "#75715E", "peekViewEditor.matchHighlightBackground": "#75715E", "terminal.ansiBlack": "#333333", "terminal.ansiRed": "#C4265E", "terminal.ansiGreen": "#86B42B", "terminal.ansiYellow": "#B3B42B", "terminal.ansiBlue": "#6A7EC8", "terminal.ansiMagenta": "#8C6BC8", "terminal.ansiCyan": "#56ADBC", "terminal.ansiWhite": "#e3e3dd", "terminal.ansiBrightBlack": "#666666", "terminal.ansiBrightRed": "#f92672", "terminal.ansiBrightGreen": "#A6E22E", "terminal.ansiBrightYellow": "#e2e22e", "terminal.ansiBrightBlue": "#819aff", "terminal.ansiBrightMagenta": "#AE81FF", "terminal.ansiBrightCyan": "#66D9EF", "terminal.ansiBrightWhite": "#f8f8f2" }, "tokenColors": [ { "settings": { "foreground": "#F8F8F2" } }, { "scope": [ "meta.embedded", "source.groovy.embedded", "string meta.image.inline.markdown" ], "settings": { "foreground": "#F8F8F2" } }, { "name": "Comment", "scope": "comment", "settings": { "foreground": "#88846f" } }, { "name": "String", "scope": "string", "settings": { "foreground": "#E6DB74" } }, { "name": "Template Definition", "scope": [ "punctuation.definition.template-expression", "punctuation.section.embedded" ], "settings": { "foreground": "#F92672" } }, { "name": "Reset JavaScript string interpolation expression", "scope": ["meta.template.expression"], "settings": { "foreground": "#F8F8F2" } }, { "name": "Number", "scope": "constant.numeric", "settings": { "foreground": "#AE81FF" } }, { "name": "Built-in constant", "scope": "constant.language", "settings": { "foreground": "#AE81FF" } }, { "name": "User-defined constant", "scope": "constant.character, constant.other", "settings": { "foreground": "#AE81FF" } }, { "name": "Variable", "scope": "variable", "settings": { "fontStyle": "", "foreground": "#F8F8F2" } }, { "name": "Keyword", "scope": "keyword", "settings": { "foreground": "#F92672" } }, { "name": "Storage", "scope": "storage", "settings": { "fontStyle": "", "foreground": "#F92672" } }, { "name": "Storage type", "scope": "storage.type", "settings": { "fontStyle": "italic", "foreground": "#66D9EF" } }, { "name": "Class name", "scope": "entity.name.type, entity.name.class, entity.name.namespace, entity.name.scope-resolution", "settings": { "fontStyle": "underline", "foreground": "#A6E22E" } }, { "name": "Inherited class", "scope": "entity.other.inherited-class", "settings": { "fontStyle": "italic underline", "foreground": "#A6E22E" } }, { "name": "Function name", "scope": "entity.name.function", "settings": { "fontStyle": "", "foreground": "#A6E22E" } }, { "name": "Function argument", "scope": "variable.parameter", "settings": { "fontStyle": "italic", "foreground": "#FD971F" } }, { "name": "Tag name", "scope": "entity.name.tag", "settings": { "fontStyle": "", "foreground": "#F92672" } }, { "name": "Tag attribute", "scope": "entity.other.attribute-name", "settings": { "fontStyle": "", "foreground": "#A6E22E" } }, { "name": "Library function", "scope": "support.function", "settings": { "fontStyle": "", "foreground": "#66D9EF" } }, { "name": "Library constant", "scope": "support.constant", "settings": { "fontStyle": "", "foreground": "#66D9EF" } }, { "name": "Library class/type", "scope": "support.type, support.class", "settings": { "fontStyle": "italic", "foreground": "#66D9EF" } }, { "name": "Library variable", "scope": "support.other.variable", "settings": { "fontStyle": "" } }, { "name": "Invalid", "scope": "invalid", "settings": { "fontStyle": "", "foreground": "#F44747" } }, { "name": "Invalid deprecated", "scope": "invalid.deprecated", "settings": { "foreground": "#F44747" } }, { "name": "JSON String", "scope": "meta.structure.dictionary.json string.quoted.double.json", "settings": { "foreground": "#CFCFC2" } }, { "name": "diff.header", "scope": "meta.diff, meta.diff.header", "settings": { "foreground": "#75715E" } }, { "name": "diff.deleted", "scope": "markup.deleted", "settings": { "foreground": "#F92672" } }, { "name": "diff.inserted", "scope": "markup.inserted", "settings": { "foreground": "#A6E22E" } }, { "name": "diff.changed", "scope": "markup.changed", "settings": { "foreground": "#E6DB74" } }, { "scope": "constant.numeric.line-number.find-in-files - match", "settings": { "foreground": "#AE81FFA0" } }, { "scope": "entity.name.filename.find-in-files", "settings": { "foreground": "#E6DB74" } }, { "name": "Markup Quote", "scope": "markup.quote", "settings": { "foreground": "#F92672" } }, { "name": "Markup Lists", "scope": "markup.list", "settings": { "foreground": "#E6DB74" } }, { "name": "Markup Styling", "scope": "markup.bold, markup.italic", "settings": { "foreground": "#66D9EF" } }, { "name": "Markup Inline", "scope": "markup.inline.raw", "settings": { "fontStyle": "", "foreground": "#FD971F" } }, { "name": "Markup Headings", "scope": "markup.heading", "settings": { "foreground": "#A6E22E" } }, { "name": "Markup Setext Header", "scope": "markup.heading.setext", "settings": { "foreground": "#A6E22E", "fontStyle": "bold" } }, { "name": "Markup Headings", "scope": "markup.heading.markdown", "settings": { "fontStyle": "bold" } }, { "name": "Markdown Quote", "scope": "markup.quote.markdown", "settings": { "fontStyle": "italic", "foreground": "#75715E" } }, { "name": "Markdown Bold", "scope": "markup.bold.markdown", "settings": { "fontStyle": "bold" } }, { "name": "Markdown Link Title/Description", "scope": "string.other.link.title.markdown,string.other.link.description.markdown", "settings": { "foreground": "#AE81FF" } }, { "name": "Markdown Underline Link/Image", "scope": "markup.underline.link.markdown,markup.underline.link.image.markdown", "settings": { "foreground": "#E6DB74" } }, { "name": "Markdown Emphasis", "scope": "markup.italic.markdown", "settings": { "fontStyle": "italic" } }, { "scope": "markup.strikethrough", "settings": { "fontStyle": "strikethrough" } }, { "name": "Markdown Punctuation Definition Link", "scope": "markup.list.unnumbered.markdown, markup.list.numbered.markdown", "settings": { "foreground": "#f8f8f2" } }, { "name": "Markdown List Punctuation", "scope": ["punctuation.definition.list.begin.markdown"], "settings": { "foreground": "#A6E22E" } }, { "scope": "token.info-token", "settings": { "foreground": "#6796e6" } }, { "scope": "token.warn-token", "settings": { "foreground": "#cd9731" } }, { "scope": "token.error-token", "settings": { "foreground": "#f44747" } }, { "scope": "token.debug-token", "settings": { "foreground": "#b267e6" } }, { "name": "this.self", "scope": "variable.language", "settings": { "foreground": "#FD971F" } } ], "semanticHighlighting": true, "name": "monokai" } ================================================ FILE: apps/web/src/lib/shiki/themes/nord.json ================================================ { "name": "nord", "type": "dark", "semanticHighlighting": true, "colors": { "focusBorder": "#3b4252", "foreground": "#d8dee9", "activityBar.background": "#2e3440", "activityBar.dropBackground": "#3b4252", "activityBar.foreground": "#d8dee9", "activityBar.activeBorder": "#88c0d0", "activityBar.activeBackground": "#3b4252", "activityBarBadge.background": "#88c0d0", "activityBarBadge.foreground": "#2e3440", "badge.foreground": "#2e3440", "badge.background": "#88c0d0", "button.background": "#88c0d0ee", "button.foreground": "#2e3440", "button.hoverBackground": "#88c0d0", "button.secondaryBackground": "#434c5e", "button.secondaryForeground": "#d8dee9", "button.secondaryHoverBackground": "#4c566a", "charts.red": "#bf616a", "charts.blue": "#81a1c1", "charts.yellow": "#ebcb8b", "charts.orange": "#d08770", "charts.green": "#a3be8c", "charts.purple": "#b48ead", "charts.foreground": "#d8dee9", "charts.lines": "#88c0d0", "debugConsole.infoForeground": "#88c0d0", "debugConsole.warningForeground": "#ebcb8b", "debugConsole.errorForeground": "#bf616a", "debugConsole.sourceForeground": "#616e88", "debugConsoleInputIcon.foreground": "#81a1c1", "debugExceptionWidget.background": "#4c566a", "debugExceptionWidget.border": "#2e3440", "debugToolBar.background": "#3b4252", "descriptionForeground": "#d8dee9e6", "diffEditor.insertedTextBackground": "#81a1c133", "diffEditor.removedTextBackground": "#bf616a4d", "dropdown.background": "#3b4252", "dropdown.border": "#3b4252", "dropdown.foreground": "#d8dee9", "editorActiveLineNumber.foreground": "#d8dee9cc", "editorCursor.foreground": "#d8dee9", "editorHint.border": "#ebcb8b00", "editorHint.foreground": "#ebcb8b", "editorIndentGuide.background": "#434c5eb3", "editorIndentGuide.activeBackground": "#4c566a", "editorInlayHint.background": "#434c5e", "editorInlayHint.foreground": "#d8dee9", "editorLineNumber.foreground": "#4c566a", "editorLineNumber.activeForeground": "#d8dee9", "editorWhitespace.foreground": "#4c566ab3", "editorWidget.background": "#2e3440", "editorWidget.border": "#3b4252", "editor.background": "#2e3440", "editor.foreground": "#d8dee9", "editor.hoverHighlightBackground": "#3b4252", "editor.findMatchBackground": "#88c0d066", "editor.findMatchHighlightBackground": "#88c0d033", "editor.findRangeHighlightBackground": "#88c0d033", "editor.lineHighlightBackground": "#3b4252", "editor.lineHighlightBorder": "#3b4252", "editor.inactiveSelectionBackground": "#434c5ecc", "editor.inlineValuesBackground": "#4c566a", "editor.inlineValuesForeground": "#eceff4", "editor.selectionBackground": "#434c5ecc", "editor.selectionHighlightBackground": "#434c5ecc", "editor.rangeHighlightBackground": "#434c5e52", "editor.wordHighlightBackground": "#81a1c166", "editor.wordHighlightStrongBackground": "#81a1c199", "editor.stackFrameHighlightBackground": "#5e81ac", "editor.focusedStackFrameHighlightBackground": "#5e81ac", "editorError.foreground": "#bf616a", "editorError.border": "#bf616a00", "editorWarning.foreground": "#ebcb8b", "editorWarning.border": "#ebcb8b00", "editorBracketMatch.background": "#2e344000", "editorBracketMatch.border": "#88c0d0", "editorBracketHighlight.foreground1": "#8fbcbb", "editorBracketHighlight.foreground2": "#88c0d0", "editorBracketHighlight.foreground3": "#81a1c1", "editorBracketHighlight.foreground4": "#5e81ac", "editorBracketHighlight.foreground5": "#8fbcbb", "editorBracketHighlight.foreground6": "#88c0d0", "editorBracketHighlight.unexpectedBracket.foreground": "#bf616a", "editorCodeLens.foreground": "#4c566a", "editorGroup.background": "#2e3440", "editorGroup.border": "#3b425201", "editorGroup.dropBackground": "#3b425299", "editorGroupHeader.border": "#3b425200", "editorGroupHeader.noTabsBackground": "#2e3440", "editorGroupHeader.tabsBackground": "#2e3440", "editorGroupHeader.tabsBorder": "#3b425200", "editorGutter.background": "#2e3440", "editorGutter.modifiedBackground": "#ebcb8b", "editorGutter.addedBackground": "#a3be8c", "editorGutter.deletedBackground": "#bf616a", "editorHoverWidget.background": "#3b4252", "editorHoverWidget.border": "#3b4252", "editorLink.activeForeground": "#88c0d0", "editorMarkerNavigation.background": "#5e81acc0", "editorMarkerNavigationError.background": "#bf616ac0", "editorMarkerNavigationWarning.background": "#ebcb8bc0", "editorOverviewRuler.border": "#3b4252", "editorOverviewRuler.currentContentForeground": "#3b4252", "editorOverviewRuler.incomingContentForeground": "#3b4252", "editorOverviewRuler.findMatchForeground": "#88c0d066", "editorOverviewRuler.rangeHighlightForeground": "#88c0d066", "editorOverviewRuler.selectionHighlightForeground": "#88c0d066", "editorOverviewRuler.wordHighlightForeground": "#88c0d066", "editorOverviewRuler.wordHighlightStrongForeground": "#88c0d066", "editorOverviewRuler.modifiedForeground": "#ebcb8b", "editorOverviewRuler.addedForeground": "#a3be8c", "editorOverviewRuler.deletedForeground": "#bf616a", "editorOverviewRuler.errorForeground": "#bf616a", "editorOverviewRuler.warningForeground": "#ebcb8b", "editorOverviewRuler.infoForeground": "#81a1c1", "editorRuler.foreground": "#434c5e", "editorSuggestWidget.background": "#2e3440", "editorSuggestWidget.border": "#3b4252", "editorSuggestWidget.foreground": "#d8dee9", "editorSuggestWidget.focusHighlightForeground": "#88c0d0", "editorSuggestWidget.highlightForeground": "#88c0d0", "editorSuggestWidget.selectedBackground": "#434c5e", "editorSuggestWidget.selectedForeground": "#d8dee9", "extensionButton.prominentForeground": "#d8dee9", "extensionButton.prominentBackground": "#434c5e", "extensionButton.prominentHoverBackground": "#4c566a", "errorForeground": "#bf616a", "gitDecoration.modifiedResourceForeground": "#ebcb8b", "gitDecoration.deletedResourceForeground": "#bf616a", "gitDecoration.untrackedResourceForeground": "#a3be8c", "gitDecoration.ignoredResourceForeground": "#d8dee966", "gitDecoration.conflictingResourceForeground": "#5e81ac", "gitDecoration.submoduleResourceForeground": "#8fbcbb", "gitDecoration.stageDeletedResourceForeground": "#bf616a", "gitDecoration.stageModifiedResourceForeground": "#ebcb8b", "input.background": "#3b4252", "input.foreground": "#d8dee9", "input.placeholderForeground": "#d8dee999", "input.border": "#3b4252", "inputOption.activeBackground": "#5e81ac", "inputOption.activeBorder": "#5e81ac", "inputOption.activeForeground": "#eceff4", "inputValidation.errorBackground": "#bf616a", "inputValidation.errorBorder": "#bf616a", "inputValidation.infoBackground": "#81a1c1", "inputValidation.infoBorder": "#81a1c1", "inputValidation.warningBackground": "#d08770", "inputValidation.warningBorder": "#d08770", "keybindingLabel.background": "#4c566a", "keybindingLabel.border": "#4c566a", "keybindingLabel.bottomBorder": "#4c566a", "keybindingLabel.foreground": "#d8dee9", "list.activeSelectionBackground": "#88c0d0", "list.activeSelectionForeground": "#2e3440", "list.inactiveSelectionBackground": "#434c5e", "list.inactiveSelectionForeground": "#d8dee9", "list.inactiveFocusBackground": "#434c5ecc", "list.hoverForeground": "#eceff4", "list.focusForeground": "#d8dee9", "list.focusBackground": "#88c0d099", "list.focusHighlightForeground": "#eceff4", "list.hoverBackground": "#3b4252", "list.dropBackground": "#88c0d099", "list.highlightForeground": "#88c0d0", "list.errorForeground": "#bf616a", "list.warningForeground": "#ebcb8b", "merge.currentHeaderBackground": "#81a1c166", "merge.currentContentBackground": "#81a1c14d", "merge.incomingHeaderBackground": "#8fbcbb66", "merge.incomingContentBackground": "#8fbcbb4d", "merge.border": "#3b425200", "minimap.background": "#2e3440", "minimap.errorHighlight": "#bf616acc", "minimap.findMatchHighlight": "#88c0d0", "minimap.selectionHighlight": "#88c0d0cc", "minimap.warningHighlight": "#ebcb8bcc", "minimapGutter.addedBackground": "#a3be8c", "minimapGutter.deletedBackground": "#bf616a", "minimapGutter.modifiedBackground": "#ebcb8b", "minimapSlider.activeBackground": "#434c5eaa", "minimapSlider.background": "#434c5e99", "minimapSlider.hoverBackground": "#434c5eaa", "notification.background": "#3b4252", "notification.buttonBackground": "#434c5e", "notification.buttonForeground": "#d8dee9", "notification.buttonHoverBackground": "#4c566a", "notification.errorBackground": "#bf616a", "notification.errorForeground": "#2e3440", "notification.foreground": "#d8dee9", "notification.infoBackground": "#88c0d0", "notification.infoForeground": "#2e3440", "notification.warningBackground": "#ebcb8b", "notification.warningForeground": "#2e3440", "notificationCenter.border": "#3b425200", "notificationCenterHeader.background": "#2e3440", "notificationCenterHeader.foreground": "#88c0d0", "notificationLink.foreground": "#88c0d0", "notifications.background": "#3b4252", "notifications.border": "#2e3440", "notifications.foreground": "#d8dee9", "notificationToast.border": "#3b425200", "panel.background": "#2e3440", "panel.border": "#3b4252", "panelTitle.activeBorder": "#88c0d000", "panelTitle.activeForeground": "#88c0d0", "panelTitle.inactiveForeground": "#d8dee9", "peekView.border": "#4c566a", "peekViewEditor.background": "#2e3440", "peekViewEditorGutter.background": "#2e3440", "peekViewEditor.matchHighlightBackground": "#88c0d04d", "peekViewResult.background": "#2e3440", "peekViewResult.fileForeground": "#88c0d0", "peekViewResult.lineForeground": "#d8dee966", "peekViewResult.matchHighlightBackground": "#88c0d0cc", "peekViewResult.selectionBackground": "#434c5e", "peekViewResult.selectionForeground": "#d8dee9", "peekViewTitle.background": "#3b4252", "peekViewTitleDescription.foreground": "#d8dee9", "peekViewTitleLabel.foreground": "#88c0d0", "pickerGroup.border": "#3b4252", "pickerGroup.foreground": "#88c0d0", "progressBar.background": "#88c0d0", "quickInputList.focusBackground": "#88c0d0", "quickInputList.focusForeground": "#2e3440", "sash.hoverBorder": "#88c0d0", "scrollbar.shadow": "#00000066", "scrollbarSlider.activeBackground": "#434c5eaa", "scrollbarSlider.background": "#434c5e99", "scrollbarSlider.hoverBackground": "#434c5eaa", "selection.background": "#88c0d099", "sideBar.background": "#2e3440", "sideBar.foreground": "#d8dee9", "sideBar.border": "#3b4252", "sideBarSectionHeader.background": "#3b4252", "sideBarSectionHeader.foreground": "#d8dee9", "sideBarTitle.foreground": "#d8dee9", "statusBar.background": "#3b4252", "statusBar.debuggingBackground": "#5e81ac", "statusBar.debuggingForeground": "#d8dee9", "statusBar.noFolderForeground": "#d8dee9", "statusBar.noFolderBackground": "#3b4252", "statusBar.foreground": "#d8dee9", "statusBarItem.activeBackground": "#4c566a", "statusBarItem.hoverBackground": "#434c5e", "statusBarItem.prominentBackground": "#3b4252", "statusBarItem.prominentHoverBackground": "#434c5e", "statusBarItem.errorBackground": "#3b4252", "statusBarItem.errorForeground": "#bf616a", "statusBarItem.warningBackground": "#ebcb8b", "statusBarItem.warningForeground": "#2e3440", "statusBar.border": "#3b425200", "tab.activeBackground": "#3b4252", "tab.activeForeground": "#d8dee9", "tab.border": "#3b425200", "tab.activeBorder": "#88c0d000", "tab.unfocusedActiveBorder": "#88c0d000", "tab.inactiveBackground": "#2e3440", "tab.inactiveForeground": "#d8dee966", "tab.unfocusedActiveForeground": "#d8dee999", "tab.unfocusedInactiveForeground": "#d8dee966", "tab.hoverBackground": "#3b4252cc", "tab.unfocusedHoverBackground": "#3b4252b3", "tab.hoverBorder": "#88c0d000", "tab.unfocusedHoverBorder": "#88c0d000", "tab.activeBorderTop": "#88c0d000", "tab.unfocusedActiveBorderTop": "#88c0d000", "tab.lastPinnedBorder": "#4c566a", "terminal.background": "#2e3440", "terminal.foreground": "#d8dee9", "terminal.ansiBlack": "#3b4252", "terminal.ansiRed": "#bf616a", "terminal.ansiGreen": "#a3be8c", "terminal.ansiYellow": "#ebcb8b", "terminal.ansiBlue": "#81a1c1", "terminal.ansiMagenta": "#b48ead", "terminal.ansiCyan": "#88c0d0", "terminal.ansiWhite": "#e5e9f0", "terminal.ansiBrightBlack": "#4c566a", "terminal.ansiBrightRed": "#bf616a", "terminal.ansiBrightGreen": "#a3be8c", "terminal.ansiBrightYellow": "#ebcb8b", "terminal.ansiBrightBlue": "#81a1c1", "terminal.ansiBrightMagenta": "#b48ead", "terminal.ansiBrightCyan": "#8fbcbb", "terminal.ansiBrightWhite": "#eceff4", "terminal.tab.activeBorder": "#88c0d0", "textBlockQuote.background": "#3b4252", "textBlockQuote.border": "#81a1c1", "textCodeBlock.background": "#4c566a", "textLink.activeForeground": "#88c0d0", "textLink.foreground": "#88c0d0", "textPreformat.foreground": "#8fbcbb", "textSeparator.foreground": "#eceff4", "titleBar.activeBackground": "#2e3440", "titleBar.activeForeground": "#d8dee9", "titleBar.border": "#2e344000", "titleBar.inactiveBackground": "#2e3440", "titleBar.inactiveForeground": "#d8dee966", "tree.indentGuidesStroke": "#616e88", "walkThrough.embeddedEditorBackground": "#2e3440", "welcomePage.buttonBackground": "#434c5e", "welcomePage.buttonHoverBackground": "#4c566a", "widget.shadow": "#00000066" }, "tokenColors": [ { "settings": { "foreground": "#d8dee9ff", "background": "#2e3440ff" } }, { "scope": "emphasis", "settings": { "fontStyle": "italic" } }, { "scope": "strong", "settings": { "fontStyle": "bold" } }, { "name": "Comment", "scope": "comment", "settings": { "foreground": "#616E88" } }, { "name": "Constant Character", "scope": "constant.character", "settings": { "foreground": "#EBCB8B" } }, { "name": "Constant Character Escape", "scope": "constant.character.escape", "settings": { "foreground": "#EBCB8B" } }, { "name": "Constant Language", "scope": "constant.language", "settings": { "foreground": "#81A1C1" } }, { "name": "Constant Numeric", "scope": "constant.numeric", "settings": { "foreground": "#B48EAD" } }, { "name": "Constant Regexp", "scope": "constant.regexp", "settings": { "foreground": "#EBCB8B" } }, { "name": "Entity Name Class/Type", "scope": ["entity.name.class", "entity.name.type.class"], "settings": { "foreground": "#8FBCBB" } }, { "name": "Entity Name Function", "scope": "entity.name.function", "settings": { "foreground": "#88C0D0" } }, { "name": "Entity Name Tag", "scope": "entity.name.tag", "settings": { "foreground": "#81A1C1" } }, { "name": "Entity Other Attribute Name", "scope": "entity.other.attribute-name", "settings": { "foreground": "#8FBCBB" } }, { "name": "Entity Other Inherited Class", "scope": "entity.other.inherited-class", "settings": { "fontStyle": "bold", "foreground": "#8FBCBB" } }, { "name": "Invalid Deprecated", "scope": "invalid.deprecated", "settings": { "foreground": "#D8DEE9", "background": "#EBCB8B" } }, { "name": "Invalid Illegal", "scope": "invalid.illegal", "settings": { "foreground": "#D8DEE9", "background": "#BF616A" } }, { "name": "Keyword", "scope": "keyword", "settings": { "foreground": "#81A1C1" } }, { "name": "Keyword Operator", "scope": "keyword.operator", "settings": { "foreground": "#81A1C1" } }, { "name": "Keyword Other New", "scope": "keyword.other.new", "settings": { "foreground": "#81A1C1" } }, { "name": "Markup Bold", "scope": "markup.bold", "settings": { "fontStyle": "bold" } }, { "name": "Markup Changed", "scope": "markup.changed", "settings": { "foreground": "#EBCB8B" } }, { "name": "Markup Deleted", "scope": "markup.deleted", "settings": { "foreground": "#BF616A" } }, { "name": "Markup Inserted", "scope": "markup.inserted", "settings": { "foreground": "#A3BE8C" } }, { "name": "Meta Preprocessor", "scope": "meta.preprocessor", "settings": { "foreground": "#5E81AC" } }, { "name": "Punctuation", "scope": "punctuation", "settings": { "foreground": "#ECEFF4" } }, { "name": "Punctuation Definition Parameters", "scope": [ "punctuation.definition.method-parameters", "punctuation.definition.function-parameters", "punctuation.definition.parameters" ], "settings": { "foreground": "#ECEFF4" } }, { "name": "Punctuation Definition Tag", "scope": "punctuation.definition.tag", "settings": { "foreground": "#81A1C1" } }, { "name": "Punctuation Definition Comment", "scope": [ "punctuation.definition.comment", "punctuation.end.definition.comment", "punctuation.start.definition.comment" ], "settings": { "foreground": "#616E88" } }, { "name": "Punctuation Section", "scope": "punctuation.section", "settings": { "foreground": "#ECEFF4" } }, { "name": "Punctuation Section Embedded", "scope": [ "punctuation.section.embedded.begin", "punctuation.section.embedded.end" ], "settings": { "foreground": "#81A1C1" } }, { "name": "Punctuation Terminator", "scope": "punctuation.terminator", "settings": { "foreground": "#81A1C1" } }, { "name": "Punctuation Variable", "scope": "punctuation.definition.variable", "settings": { "foreground": "#81A1C1" } }, { "name": "Storage", "scope": "storage", "settings": { "foreground": "#81A1C1" } }, { "name": "String", "scope": "string", "settings": { "foreground": "#A3BE8C" } }, { "name": "String Regexp", "scope": "string.regexp", "settings": { "foreground": "#EBCB8B" } }, { "name": "Support Class", "scope": "support.class", "settings": { "foreground": "#8FBCBB" } }, { "name": "Support Constant", "scope": "support.constant", "settings": { "foreground": "#81A1C1" } }, { "name": "Support Function", "scope": "support.function", "settings": { "foreground": "#88C0D0" } }, { "name": "Support Function Construct", "scope": "support.function.construct", "settings": { "foreground": "#81A1C1" } }, { "name": "Support Type", "scope": "support.type", "settings": { "foreground": "#8FBCBB" } }, { "name": "Support Type Exception", "scope": "support.type.exception", "settings": { "foreground": "#8FBCBB" } }, { "name": "Token Debug", "scope": "token.debug-token", "settings": { "foreground": "#b48ead" } }, { "name": "Token Error", "scope": "token.error-token", "settings": { "foreground": "#bf616a" } }, { "name": "Token Info", "scope": "token.info-token", "settings": { "foreground": "#88c0d0" } }, { "name": "Token Warning", "scope": "token.warn-token", "settings": { "foreground": "#ebcb8b" } }, { "name": "Variable", "scope": "variable.other", "settings": { "foreground": "#D8DEE9" } }, { "name": "Variable Language", "scope": "variable.language", "settings": { "foreground": "#81A1C1" } }, { "name": "Variable Parameter", "scope": "variable.parameter", "settings": { "foreground": "#D8DEE9" } }, { "name": "[C/CPP] Punctuation Separator Pointer-Access", "scope": "punctuation.separator.pointer-access.c", "settings": { "foreground": "#81A1C1" } }, { "name": "[C/CPP] Meta Preprocessor Include", "scope": [ "source.c meta.preprocessor.include", "source.c string.quoted.other.lt-gt.include" ], "settings": { "foreground": "#8FBCBB" } }, { "name": "[C/CPP] Conditional Directive", "scope": [ "source.cpp keyword.control.directive.conditional", "source.cpp punctuation.definition.directive", "source.c keyword.control.directive.conditional", "source.c punctuation.definition.directive" ], "settings": { "foreground": "#5E81AC", "fontStyle": "bold" } }, { "name": "[CSS] Constant Other Color RGB Value", "scope": "source.css constant.other.color.rgb-value", "settings": { "foreground": "#B48EAD" } }, { "name": "[CSS](Function) Meta Property-Value", "scope": "source.css meta.property-value", "settings": { "foreground": "#88C0D0" } }, { "name": "[CSS] Media Queries", "scope": [ "source.css keyword.control.at-rule.media", "source.css keyword.control.at-rule.media punctuation.definition.keyword" ], "settings": { "foreground": "#D08770" } }, { "name": "[CSS] Punctuation Definition Keyword", "scope": "source.css punctuation.definition.keyword", "settings": { "foreground": "#81A1C1" } }, { "name": "[CSS] Support Type Property Name", "scope": "source.css support.type.property-name", "settings": { "foreground": "#D8DEE9" } }, { "name": "[diff] Meta Range Context", "scope": "source.diff meta.diff.range.context", "settings": { "foreground": "#8FBCBB" } }, { "name": "[diff] Meta Header From-File", "scope": "source.diff meta.diff.header.from-file", "settings": { "foreground": "#8FBCBB" } }, { "name": "[diff] Punctuation Definition From-File", "scope": "source.diff punctuation.definition.from-file", "settings": { "foreground": "#8FBCBB" } }, { "name": "[diff] Punctuation Definition Range", "scope": "source.diff punctuation.definition.range", "settings": { "foreground": "#8FBCBB" } }, { "name": "[diff] Punctuation Definition Separator", "scope": "source.diff punctuation.definition.separator", "settings": { "foreground": "#81A1C1" } }, { "name": "[Elixir](JakeBecker.elixir-ls) module names", "scope": "entity.name.type.module.elixir", "settings": { "foreground": "#8FBCBB" } }, { "name": "[Elixir](JakeBecker.elixir-ls) module attributes", "scope": "variable.other.readwrite.module.elixir", "settings": { "foreground": "#D8DEE9", "fontStyle": "bold" } }, { "name": "[Elixir](JakeBecker.elixir-ls) atoms", "scope": "constant.other.symbol.elixir", "settings": { "foreground": "#D8DEE9", "fontStyle": "bold" } }, { "name": "[Elixir](JakeBecker.elixir-ls) modules", "scope": "variable.other.constant.elixir", "settings": { "foreground": "#8FBCBB" } }, { "name": "[Go] String Format Placeholder", "scope": "source.go constant.other.placeholder.go", "settings": { "foreground": "#EBCB8B" } }, { "name": "[Java](JavaDoc) Comment Block Documentation HTML Entities", "scope": "source.java comment.block.documentation.javadoc punctuation.definition.entity.html", "settings": { "foreground": "#81A1C1" } }, { "name": "[Java](JavaDoc) Constant Other", "scope": "source.java constant.other", "settings": { "foreground": "#D8DEE9" } }, { "name": "[Java](JavaDoc) Keyword Other Documentation", "scope": "source.java keyword.other.documentation", "settings": { "foreground": "#8FBCBB" } }, { "name": "[Java](JavaDoc) Keyword Other Documentation Author", "scope": "source.java keyword.other.documentation.author.javadoc", "settings": { "foreground": "#8FBCBB" } }, { "name": "[Java](JavaDoc) Keyword Other Documentation Directive/Custom", "scope": [ "source.java keyword.other.documentation.directive", "source.java keyword.other.documentation.custom" ], "settings": { "foreground": "#8FBCBB" } }, { "name": "[Java](JavaDoc) Keyword Other Documentation See", "scope": "source.java keyword.other.documentation.see.javadoc", "settings": { "foreground": "#8FBCBB" } }, { "name": "[Java] Meta Method-Call", "scope": "source.java meta.method-call meta.method", "settings": { "foreground": "#88C0D0" } }, { "name": "[Java](JavaDoc) Meta Tag Template Link", "scope": [ "source.java meta.tag.template.link.javadoc", "source.java string.other.link.title.javadoc" ], "settings": { "foreground": "#8FBCBB" } }, { "name": "[Java](JavaDoc) Meta Tag Template Value", "scope": "source.java meta.tag.template.value.javadoc", "settings": { "foreground": "#88C0D0" } }, { "name": "[Java](JavaDoc) Punctuation Definition Keyword", "scope": "source.java punctuation.definition.keyword.javadoc", "settings": { "foreground": "#8FBCBB" } }, { "name": "[Java](JavaDoc) Punctuation Definition Tag", "scope": [ "source.java punctuation.definition.tag.begin.javadoc", "source.java punctuation.definition.tag.end.javadoc" ], "settings": { "foreground": "#616E88" } }, { "name": "[Java] Storage Modifier Import", "scope": "source.java storage.modifier.import", "settings": { "foreground": "#8FBCBB" } }, { "name": "[Java] Storage Modifier Package", "scope": "source.java storage.modifier.package", "settings": { "foreground": "#8FBCBB" } }, { "name": "[Java] Storage Type", "scope": "source.java storage.type", "settings": { "foreground": "#8FBCBB" } }, { "name": "[Java] Storage Type Annotation", "scope": "source.java storage.type.annotation", "settings": { "foreground": "#D08770" } }, { "name": "[Java] Storage Type Generic", "scope": "source.java storage.type.generic", "settings": { "foreground": "#8FBCBB" } }, { "name": "[Java] Storage Type Primitive", "scope": "source.java storage.type.primitive", "settings": { "foreground": "#81A1C1" } }, { "name": "[JavaScript] Decorator", "scope": [ "source.js punctuation.decorator", "source.js meta.decorator variable.other.readwrite", "source.js meta.decorator entity.name.function" ], "settings": { "foreground": "#D08770" } }, { "name": "[JavaScript] Meta Object-Literal Key", "scope": "source.js meta.object-literal.key", "settings": { "foreground": "#88C0D0" } }, { "name": "[JavaScript](JSDoc) Storage Type Class", "scope": "source.js storage.type.class.jsdoc", "settings": { "foreground": "#8FBCBB" } }, { "name": "[JavaScript] String Template Literals Punctuation", "scope": [ "source.js string.quoted.template punctuation.quasi.element.begin", "source.js string.quoted.template punctuation.quasi.element.end", "source.js string.template punctuation.definition.template-expression" ], "settings": { "foreground": "#81A1C1" } }, { "name": "[JavaScript] Interpolated String Template Punctuation Functions", "scope": "source.js string.quoted.template meta.method-call.with-arguments", "settings": { "foreground": "#ECEFF4" } }, { "name": "[JavaScript] String Template Literal Variable", "scope": [ "source.js string.template meta.template.expression support.variable.property", "source.js string.template meta.template.expression variable.other.object" ], "settings": { "foreground": "#D8DEE9" } }, { "name": "[JavaScript] Support Type Primitive", "scope": "source.js support.type.primitive", "settings": { "foreground": "#81A1C1" } }, { "name": "[JavaScript] Variable Other Object", "scope": "source.js variable.other.object", "settings": { "foreground": "#D8DEE9" } }, { "name": "[JavaScript] Variable Other Read-Write Alias", "scope": "source.js variable.other.readwrite.alias", "settings": { "foreground": "#8FBCBB" } }, { "name": "[JavaScript] Parentheses in Template Strings", "scope": [ "source.js meta.embedded.line meta.brace.square", "source.js meta.embedded.line meta.brace.round", "source.js string.quoted.template meta.brace.square", "source.js string.quoted.template meta.brace.round" ], "settings": { "foreground": "#ECEFF4" } }, { "name": "[HTML] Constant Character Entity", "scope": "text.html.basic constant.character.entity.html", "settings": { "foreground": "#EBCB8B" } }, { "name": "[HTML] Constant Other Inline-Data", "scope": "text.html.basic constant.other.inline-data", "settings": { "foreground": "#D08770", "fontStyle": "italic" } }, { "name": "[HTML] Meta Tag SGML Doctype", "scope": "text.html.basic meta.tag.sgml.doctype", "settings": { "foreground": "#5E81AC" } }, { "name": "[HTML] Punctuation Definition Entity", "scope": "text.html.basic punctuation.definition.entity", "settings": { "foreground": "#81A1C1" } }, { "name": "[INI] Entity Name Section Group-Title", "scope": "source.properties entity.name.section.group-title.ini", "settings": { "foreground": "#88C0D0" } }, { "name": "[INI] Punctuation Separator Key-Value", "scope": "source.properties punctuation.separator.key-value.ini", "settings": { "foreground": "#81A1C1" } }, { "name": "[Markdown] Markup Fenced Code Block", "scope": [ "text.html.markdown markup.fenced_code.block", "text.html.markdown markup.fenced_code.block punctuation.definition" ], "settings": { "foreground": "#8FBCBB" } }, { "name": "[Markdown] Markup Heading", "scope": "markup.heading", "settings": { "foreground": "#88C0D0" } }, { "name": "[Markdown] Markup Inline", "scope": [ "text.html.markdown markup.inline.raw", "text.html.markdown markup.inline.raw punctuation.definition.raw" ], "settings": { "foreground": "#8FBCBB" } }, { "name": "[Markdown] Markup Italic", "scope": "text.html.markdown markup.italic", "settings": { "fontStyle": "italic" } }, { "name": "[Markdown] Markup Link", "scope": "text.html.markdown markup.underline.link", "settings": { "fontStyle": "underline" } }, { "name": "[Markdown] Markup List Numbered/Unnumbered", "scope": "text.html.markdown beginning.punctuation.definition.list", "settings": { "foreground": "#81A1C1" } }, { "name": "[Markdown] Markup Quote Punctuation Definition", "scope": "text.html.markdown beginning.punctuation.definition.quote", "settings": { "foreground": "#8FBCBB" } }, { "name": "[Markdown] Markup Quote Punctuation Definition", "scope": "text.html.markdown markup.quote", "settings": { "foreground": "#616E88" } }, { "name": "[Markdown] Markup Math Constant", "scope": "text.html.markdown constant.character.math.tex", "settings": { "foreground": "#81A1C1" } }, { "name": "[Markdown] Markup Math Definition Marker", "scope": [ "text.html.markdown punctuation.definition.math.begin", "text.html.markdown punctuation.definition.math.end" ], "settings": { "foreground": "#5E81AC" } }, { "name": "[Markdown] Markup Math Function Definition Marker", "scope": "text.html.markdown punctuation.definition.function.math.tex", "settings": { "foreground": "#88C0D0" } }, { "name": "[Markdown] Markup Math Operator", "scope": "text.html.markdown punctuation.math.operator.latex", "settings": { "foreground": "#81A1C1" } }, { "name": "[Markdown] Punctuation Definition Heading", "scope": "text.html.markdown punctuation.definition.heading", "settings": { "foreground": "#81A1C1" } }, { "name": "[Markdown] Punctuation Definition Constant/String", "scope": [ "text.html.markdown punctuation.definition.constant", "text.html.markdown punctuation.definition.string" ], "settings": { "foreground": "#81A1C1" } }, { "name": "[Markdown] String Other Link Description/Title", "scope": [ "text.html.markdown constant.other.reference.link", "text.html.markdown string.other.link.description", "text.html.markdown string.other.link.title" ], "settings": { "foreground": "#88C0D0" } }, { "name": "[Perl] Perl Sigils", "scope": "source.perl punctuation.definition.variable", "settings": { "foreground": "#D8DEE9" } }, { "name": "[PHP] Meta Function-Call Object", "scope": [ "source.php meta.function-call", "source.php meta.function-call.object" ], "settings": { "foreground": "#88C0D0" } }, { "name": "[Python] Decorator", "scope": [ "source.python entity.name.function.decorator", "source.python meta.function.decorator support.type" ], "settings": { "foreground": "#D08770" } }, { "name": "[Python] Function Call", "scope": "source.python meta.function-call.generic", "settings": { "foreground": "#88C0D0" } }, { "name": "[Python] Support Type", "scope": "source.python support.type", "settings": { "foreground": "#88C0D0" } }, { "name": "[Python] Function Parameter", "scope": ["source.python variable.parameter.function.language"], "settings": { "foreground": "#D8DEE9" } }, { "name": "[Python] Function Parameter Special", "scope": [ "source.python meta.function.parameters variable.parameter.function.language.special.self" ], "settings": { "foreground": "#81A1C1" } }, { "name": "[Rust] Entity types", "scope": "source.rust entity.name.type", "settings": { "foreground": "#8FBCBB" } }, { "name": "[Rust] Macro", "scope": "source.rust meta.macro entity.name.function", "settings": { "fontStyle": "bold", "foreground": "#88C0D0" } }, { "name": "[Rust] Attributes", "scope": [ "source.rust meta.attribute", "source.rust meta.attribute punctuation", "source.rust meta.attribute keyword.operator" ], "settings": { "foreground": "#5E81AC" } }, { "name": "[Rust] Traits", "scope": "source.rust entity.name.type.trait", "settings": { "fontStyle": "bold" } }, { "name": "[Rust] Interpolation Bracket Curly", "scope": "source.rust punctuation.definition.interpolation", "settings": { "foreground": "#EBCB8B" } }, { "name": "[SCSS] Punctuation Definition Interpolation Bracket Curly", "scope": [ "source.css.scss punctuation.definition.interpolation.begin.bracket.curly", "source.css.scss punctuation.definition.interpolation.end.bracket.curly" ], "settings": { "foreground": "#81A1C1" } }, { "name": "[SCSS] Variable Interpolation", "scope": "source.css.scss variable.interpolation", "settings": { "foreground": "#D8DEE9", "fontStyle": "italic" } }, { "name": "[TypeScript] Decorators", "scope": [ "source.ts punctuation.decorator", "source.ts meta.decorator variable.other.readwrite", "source.ts meta.decorator entity.name.function", "source.tsx punctuation.decorator", "source.tsx meta.decorator variable.other.readwrite", "source.tsx meta.decorator entity.name.function" ], "settings": { "foreground": "#D08770" } }, { "name": "[TypeScript] Object-literal keys", "scope": [ "source.ts meta.object-literal.key", "source.tsx meta.object-literal.key" ], "settings": { "foreground": "#D8DEE9" } }, { "name": "[TypeScript] Object-literal functions", "scope": [ "source.ts meta.object-literal.key entity.name.function", "source.tsx meta.object-literal.key entity.name.function" ], "settings": { "foreground": "#88C0D0" } }, { "name": "[TypeScript] Type/Class", "scope": [ "source.ts support.class", "source.ts support.type", "source.ts entity.name.type", "source.ts entity.name.class", "source.tsx support.class", "source.tsx support.type", "source.tsx entity.name.type", "source.tsx entity.name.class" ], "settings": { "foreground": "#8FBCBB" } }, { "name": "[TypeScript] Static Class Support", "scope": [ "source.ts support.constant.math", "source.ts support.constant.dom", "source.ts support.constant.json", "source.tsx support.constant.math", "source.tsx support.constant.dom", "source.tsx support.constant.json" ], "settings": { "foreground": "#8FBCBB" } }, { "name": "[TypeScript] Variables", "scope": ["source.ts support.variable", "source.tsx support.variable"], "settings": { "foreground": "#D8DEE9" } }, { "name": "[TypeScript] Parentheses in Template Strings", "scope": [ "source.ts meta.embedded.line meta.brace.square", "source.ts meta.embedded.line meta.brace.round", "source.tsx meta.embedded.line meta.brace.square", "source.tsx meta.embedded.line meta.brace.round" ], "settings": { "foreground": "#ECEFF4" } }, { "name": "[XML] Entity Name Tag Namespace", "scope": "text.xml entity.name.tag.namespace", "settings": { "foreground": "#8FBCBB" } }, { "name": "[XML] Keyword Other Doctype", "scope": "text.xml keyword.other.doctype", "settings": { "foreground": "#5E81AC" } }, { "name": "[XML] Meta Tag Preprocessor", "scope": "text.xml meta.tag.preprocessor entity.name.tag", "settings": { "foreground": "#5E81AC" } }, { "name": "[XML] Entity Name Tag Namespace", "scope": [ "text.xml string.unquoted.cdata", "text.xml string.unquoted.cdata punctuation.definition.string" ], "settings": { "foreground": "#D08770", "fontStyle": "italic" } }, { "name": "[YAML] Entity Name Tag", "scope": "source.yaml entity.name.tag", "settings": { "foreground": "#8FBCBB" } } ] } ================================================ FILE: apps/web/src/lib/shiki/themes/one-dark-pro.json ================================================ { "name": "one-dark-pro", "type": "dark", "semanticHighlighting": true, "semanticTokenColors": { "enumMember": { "foreground": "#56b6c2" }, "variable.constant": { "foreground": "#d19a66" }, "variable.defaultLibrary": { "foreground": "#e5c07b" }, "variable:dart": { "foreground": "#d19a66" }, "property:dart": { "foreground": "#d19a66" }, "annotation:dart": { "foreground": "#d19a66" }, "parameter.label:dart": { "foreground": "#abb2bf" }, "macro": { "foreground": "#d19a66" } }, "tokenColors": [ { "scope": "meta.embedded", "settings": { "foreground": "#abb2bf" } }, { "name": "unison punctuation", "scope": "punctuation.definition.delayed.unison,punctuation.definition.list.begin.unison,punctuation.definition.list.end.unison,punctuation.definition.ability.begin.unison,punctuation.definition.ability.end.unison,punctuation.operator.assignment.as.unison,punctuation.separator.pipe.unison,punctuation.separator.delimiter.unison,punctuation.definition.hash.unison", "settings": { "foreground": "#e06c75" } }, { "name": "haskell variable generic-type", "scope": "variable.other.generic-type.haskell", "settings": { "foreground": "#c678dd" } }, { "name": "haskell storage type", "scope": "storage.type.haskell", "settings": { "foreground": "#d19a66" } }, { "name": "support.variable.magic.python", "scope": "support.variable.magic.python", "settings": { "foreground": "#e06c75" } }, { "name": "punctuation.separator.parameters.python", "scope": "punctuation.separator.period.python,punctuation.separator.element.python,punctuation.parenthesis.begin.python,punctuation.parenthesis.end.python", "settings": { "foreground": "#abb2bf" } }, { "name": "variable.parameter.function.language.special.self.python", "scope": "variable.parameter.function.language.special.self.python", "settings": { "foreground": "#e5c07b" } }, { "name": "variable.parameter.function.language.special.cls.python", "scope": "variable.parameter.function.language.special.cls.python", "settings": { "foreground": "#e5c07b" } }, { "name": "storage.modifier.lifetime.rust", "scope": "storage.modifier.lifetime.rust", "settings": { "foreground": "#abb2bf" } }, { "name": "support.function.std.rust", "scope": "support.function.std.rust", "settings": { "foreground": "#61afef" } }, { "name": "entity.name.lifetime.rust", "scope": "entity.name.lifetime.rust", "settings": { "foreground": "#e5c07b" } }, { "name": "variable.language.rust", "scope": "variable.language.rust", "settings": { "foreground": "#e06c75" } }, { "name": "support.constant.edge", "scope": "support.constant.edge", "settings": { "foreground": "#c678dd" } }, { "name": "regexp constant character-class", "scope": "constant.other.character-class.regexp", "settings": { "foreground": "#e06c75" } }, { "name": "keyword.operator", "scope": ["keyword.operator.word"], "settings": { "foreground": "#c678dd" } }, { "name": "regexp operator.quantifier", "scope": "keyword.operator.quantifier.regexp", "settings": { "foreground": "#d19a66" } }, { "name": "Text", "scope": "variable.parameter.function", "settings": { "foreground": "#abb2bf" } }, { "name": "Comment Markup Link", "scope": "comment markup.link", "settings": { "foreground": "#5c6370" } }, { "name": "markup diff", "scope": "markup.changed.diff", "settings": { "foreground": "#e5c07b" } }, { "name": "diff", "scope": "meta.diff.header.from-file,meta.diff.header.to-file,punctuation.definition.from-file.diff,punctuation.definition.to-file.diff", "settings": { "foreground": "#61afef" } }, { "name": "inserted.diff", "scope": "markup.inserted.diff", "settings": { "foreground": "#98c379" } }, { "name": "deleted.diff", "scope": "markup.deleted.diff", "settings": { "foreground": "#e06c75" } }, { "name": "c++ function", "scope": "meta.function.c,meta.function.cpp", "settings": { "foreground": "#e06c75" } }, { "name": "c++ block", "scope": "punctuation.section.block.begin.bracket.curly.cpp,punctuation.section.block.end.bracket.curly.cpp,punctuation.terminator.statement.c,punctuation.section.block.begin.bracket.curly.c,punctuation.section.block.end.bracket.curly.c,punctuation.section.parens.begin.bracket.round.c,punctuation.section.parens.end.bracket.round.c,punctuation.section.parameters.begin.bracket.round.c,punctuation.section.parameters.end.bracket.round.c", "settings": { "foreground": "#abb2bf" } }, { "name": "js/ts punctuation separator key-value", "scope": "punctuation.separator.key-value", "settings": { "foreground": "#abb2bf" } }, { "name": "js/ts import keyword", "scope": "keyword.operator.expression.import", "settings": { "foreground": "#61afef" } }, { "name": "math js/ts", "scope": "support.constant.math", "settings": { "foreground": "#e5c07b" } }, { "name": "math property js/ts", "scope": "support.constant.property.math", "settings": { "foreground": "#d19a66" } }, { "name": "js/ts variable.other.constant", "scope": "variable.other.constant", "settings": { "foreground": "#e5c07b" } }, { "name": "java type", "scope": [ "storage.type.annotation.java", "storage.type.object.array.java" ], "settings": { "foreground": "#e5c07b" } }, { "name": "java source", "scope": "source.java", "settings": { "foreground": "#e06c75" } }, { "name": "java modifier.import", "scope": "punctuation.section.block.begin.java,punctuation.section.block.end.java,punctuation.definition.method-parameters.begin.java,punctuation.definition.method-parameters.end.java,meta.method.identifier.java,punctuation.section.method.begin.java,punctuation.section.method.end.java,punctuation.terminator.java,punctuation.section.class.begin.java,punctuation.section.class.end.java,punctuation.section.inner-class.begin.java,punctuation.section.inner-class.end.java,meta.method-call.java,punctuation.section.class.begin.bracket.curly.java,punctuation.section.class.end.bracket.curly.java,punctuation.section.method.begin.bracket.curly.java,punctuation.section.method.end.bracket.curly.java,punctuation.separator.period.java,punctuation.bracket.angle.java,punctuation.definition.annotation.java,meta.method.body.java", "settings": { "foreground": "#abb2bf" } }, { "name": "java modifier.import", "scope": "meta.method.java", "settings": { "foreground": "#61afef" } }, { "name": "java modifier.import", "scope": "storage.modifier.import.java,storage.type.java,storage.type.generic.java", "settings": { "foreground": "#e5c07b" } }, { "name": "java instanceof", "scope": "keyword.operator.instanceof.java", "settings": { "foreground": "#c678dd" } }, { "name": "java variable.name", "scope": "meta.definition.variable.name.java", "settings": { "foreground": "#e06c75" } }, { "name": "operator logical", "scope": "keyword.operator.logical", "settings": { "foreground": "#56b6c2" } }, { "name": "operator bitwise", "scope": "keyword.operator.bitwise", "settings": { "foreground": "#56b6c2" } }, { "name": "operator channel", "scope": "keyword.operator.channel", "settings": { "foreground": "#56b6c2" } }, { "name": "support.constant.property-value.scss", "scope": "support.constant.property-value.scss,support.constant.property-value.css", "settings": { "foreground": "#d19a66" } }, { "name": "CSS/SCSS/LESS Operators", "scope": "keyword.operator.css,keyword.operator.scss,keyword.operator.less", "settings": { "foreground": "#56b6c2" } }, { "name": "css color standard name", "scope": "support.constant.color.w3c-standard-color-name.css,support.constant.color.w3c-standard-color-name.scss", "settings": { "foreground": "#d19a66" } }, { "name": "css comma", "scope": "punctuation.separator.list.comma.css", "settings": { "foreground": "#abb2bf" } }, { "name": "css attribute-name.id", "scope": "support.constant.color.w3c-standard-color-name.css", "settings": { "foreground": "#d19a66" } }, { "name": "css property-name", "scope": "support.type.vendored.property-name.css", "settings": { "foreground": "#56b6c2" } }, { "name": "js/ts module", "scope": "support.module.node,support.type.object.module,support.module.node", "settings": { "foreground": "#e5c07b" } }, { "name": "entity.name.type.module", "scope": "entity.name.type.module", "settings": { "foreground": "#e5c07b" } }, { "name": "js variable readwrite", "scope": "variable.other.readwrite,meta.object-literal.key,support.variable.property,support.variable.object.process,support.variable.object.node", "settings": { "foreground": "#e06c75" } }, { "name": "js/ts json", "scope": "support.constant.json", "settings": { "foreground": "#d19a66" } }, { "name": "js/ts Keyword", "scope": [ "keyword.operator.expression.instanceof", "keyword.operator.new", "keyword.operator.ternary", "keyword.operator.optional", "keyword.operator.expression.keyof" ], "settings": { "foreground": "#c678dd" } }, { "name": "js/ts console", "scope": "support.type.object.console", "settings": { "foreground": "#e06c75" } }, { "name": "js/ts support.variable.property.process", "scope": "support.variable.property.process", "settings": { "foreground": "#d19a66" } }, { "name": "js console function", "scope": "entity.name.function,support.function.console", "settings": { "foreground": "#61afef" } }, { "name": "keyword.operator.misc.rust", "scope": "keyword.operator.misc.rust", "settings": { "foreground": "#abb2bf" } }, { "name": "keyword.operator.sigil.rust", "scope": "keyword.operator.sigil.rust", "settings": { "foreground": "#c678dd" } }, { "name": "operator", "scope": "keyword.operator.delete", "settings": { "foreground": "#c678dd" } }, { "name": "js dom", "scope": "support.type.object.dom", "settings": { "foreground": "#56b6c2" } }, { "name": "js dom variable", "scope": "support.variable.dom,support.variable.property.dom", "settings": { "foreground": "#e06c75" } }, { "name": "keyword.operator", "scope": "keyword.operator.arithmetic,keyword.operator.comparison,keyword.operator.decrement,keyword.operator.increment,keyword.operator.relational", "settings": { "foreground": "#56b6c2" } }, { "name": "C operator assignment", "scope": "keyword.operator.assignment.c,keyword.operator.comparison.c,keyword.operator.c,keyword.operator.increment.c,keyword.operator.decrement.c,keyword.operator.bitwise.shift.c,keyword.operator.assignment.cpp,keyword.operator.comparison.cpp,keyword.operator.cpp,keyword.operator.increment.cpp,keyword.operator.decrement.cpp,keyword.operator.bitwise.shift.cpp", "settings": { "foreground": "#c678dd" } }, { "name": "Punctuation", "scope": "punctuation.separator.delimiter", "settings": { "foreground": "#abb2bf" } }, { "name": "Other punctuation .c", "scope": "punctuation.separator.c,punctuation.separator.cpp", "settings": { "foreground": "#c678dd" } }, { "name": "C type posix-reserved", "scope": "support.type.posix-reserved.c,support.type.posix-reserved.cpp", "settings": { "foreground": "#56b6c2" } }, { "name": "keyword.operator.sizeof.c", "scope": "keyword.operator.sizeof.c,keyword.operator.sizeof.cpp", "settings": { "foreground": "#c678dd" } }, { "name": "python parameter", "scope": "variable.parameter.function.language.python", "settings": { "foreground": "#d19a66" } }, { "name": "python type", "scope": "support.type.python", "settings": { "foreground": "#56b6c2" } }, { "name": "python logical", "scope": "keyword.operator.logical.python", "settings": { "foreground": "#c678dd" } }, { "name": "pyCs", "scope": "variable.parameter.function.python", "settings": { "foreground": "#d19a66" } }, { "name": "python block", "scope": "punctuation.definition.arguments.begin.python,punctuation.definition.arguments.end.python,punctuation.separator.arguments.python,punctuation.definition.list.begin.python,punctuation.definition.list.end.python", "settings": { "foreground": "#abb2bf" } }, { "name": "python function-call.generic", "scope": "meta.function-call.generic.python", "settings": { "foreground": "#61afef" } }, { "name": "python placeholder reset to normal string", "scope": "constant.character.format.placeholder.other.python", "settings": { "foreground": "#d19a66" } }, { "name": "Operators", "scope": "keyword.operator", "settings": { "foreground": "#abb2bf" } }, { "name": "Compound Assignment Operators", "scope": "keyword.operator.assignment.compound", "settings": { "foreground": "#c678dd" } }, { "name": "Compound Assignment Operators js/ts", "scope": "keyword.operator.assignment.compound.js,keyword.operator.assignment.compound.ts", "settings": { "foreground": "#56b6c2" } }, { "name": "Keywords", "scope": "keyword", "settings": { "foreground": "#c678dd" } }, { "name": "Namespaces", "scope": "entity.name.namespace", "settings": { "foreground": "#e5c07b" } }, { "name": "Variables", "scope": "variable", "settings": { "foreground": "#e06c75" } }, { "name": "Variables", "scope": "variable.c", "settings": { "foreground": "#abb2bf" } }, { "name": "Language variables", "scope": "variable.language", "settings": { "foreground": "#e5c07b" } }, { "name": "Java Variables", "scope": "token.variable.parameter.java", "settings": { "foreground": "#abb2bf" } }, { "name": "Java Imports", "scope": "import.storage.java", "settings": { "foreground": "#e5c07b" } }, { "name": "Packages", "scope": "token.package.keyword", "settings": { "foreground": "#c678dd" } }, { "name": "Packages", "scope": "token.package", "settings": { "foreground": "#abb2bf" } }, { "name": "Functions", "scope": [ "entity.name.function", "meta.require", "support.function.any-method", "variable.function" ], "settings": { "foreground": "#61afef" } }, { "name": "Classes", "scope": "entity.name.type.namespace", "settings": { "foreground": "#e5c07b" } }, { "name": "Classes", "scope": "support.class, entity.name.type.class", "settings": { "foreground": "#e5c07b" } }, { "name": "Class name", "scope": "entity.name.class.identifier.namespace.type", "settings": { "foreground": "#e5c07b" } }, { "name": "Class name", "scope": [ "entity.name.class", "variable.other.class.js", "variable.other.class.ts" ], "settings": { "foreground": "#e5c07b" } }, { "name": "Class name php", "scope": "variable.other.class.php", "settings": { "foreground": "#e06c75" } }, { "name": "Type Name", "scope": "entity.name.type", "settings": { "foreground": "#e5c07b" } }, { "name": "Keyword Control", "scope": "keyword.control", "settings": { "foreground": "#c678dd" } }, { "name": "Control Elements", "scope": "control.elements, keyword.operator.less", "settings": { "foreground": "#d19a66" } }, { "name": "Methods", "scope": "keyword.other.special-method", "settings": { "foreground": "#61afef" } }, { "name": "Storage", "scope": "storage", "settings": { "foreground": "#c678dd" } }, { "name": "Storage JS TS", "scope": "token.storage", "settings": { "foreground": "#c678dd" } }, { "name": "Source Js Keyword Operator Delete,source Js Keyword Operator In,source Js Keyword Operator Of,source Js Keyword Operator Instanceof,source Js Keyword Operator New,source Js Keyword Operator Typeof,source Js Keyword Operator Void", "scope": "keyword.operator.expression.delete,keyword.operator.expression.in,keyword.operator.expression.of,keyword.operator.expression.instanceof,keyword.operator.new,keyword.operator.expression.typeof,keyword.operator.expression.void", "settings": { "foreground": "#c678dd" } }, { "name": "Java Storage", "scope": "token.storage.type.java", "settings": { "foreground": "#e5c07b" } }, { "name": "Support", "scope": "support.function", "settings": { "foreground": "#56b6c2" } }, { "name": "Support type", "scope": "support.type.property-name", "settings": { "foreground": "#abb2bf" } }, { "name": "Support type", "scope": "support.constant.property-value", "settings": { "foreground": "#abb2bf" } }, { "name": "Support type", "scope": "support.constant.font-name", "settings": { "foreground": "#d19a66" } }, { "name": "Meta tag", "scope": "meta.tag", "settings": { "foreground": "#abb2bf" } }, { "name": "Strings", "scope": "string", "settings": { "foreground": "#98c379" } }, { "name": "Constant other symbol", "scope": "constant.other.symbol", "settings": { "foreground": "#56b6c2" } }, { "name": "Integers", "scope": "constant.numeric", "settings": { "foreground": "#d19a66" } }, { "name": "Constants", "scope": "constant", "settings": { "foreground": "#d19a66" } }, { "name": "Constants", "scope": "punctuation.definition.constant", "settings": { "foreground": "#d19a66" } }, { "name": "Tags", "scope": "entity.name.tag", "settings": { "foreground": "#e06c75" } }, { "name": "Attributes", "scope": "entity.other.attribute-name", "settings": { "foreground": "#d19a66" } }, { "name": "Attribute IDs", "scope": "entity.other.attribute-name.id", "settings": { "foreground": "#61afef" } }, { "name": "Attribute class", "scope": "entity.other.attribute-name.class.css", "settings": { "foreground": "#d19a66" } }, { "name": "Selector", "scope": "meta.selector", "settings": { "foreground": "#c678dd" } }, { "name": "Headings", "scope": "markup.heading", "settings": { "foreground": "#e06c75" } }, { "name": "Headings", "scope": "markup.heading punctuation.definition.heading, entity.name.section", "settings": { "foreground": "#61afef" } }, { "name": "Units", "scope": "keyword.other.unit", "settings": { "foreground": "#e06c75" } }, { "name": "Bold", "scope": "markup.bold,todo.bold", "settings": { "foreground": "#d19a66" } }, { "name": "Bold", "scope": "punctuation.definition.bold", "settings": { "foreground": "#e5c07b" } }, { "name": "markup Italic", "scope": "markup.italic, punctuation.definition.italic,todo.emphasis", "settings": { "foreground": "#c678dd" } }, { "name": "emphasis md", "scope": "emphasis md", "settings": { "foreground": "#c678dd" } }, { "name": "[VSCODE-CUSTOM] Markdown headings", "scope": "entity.name.section.markdown", "settings": { "foreground": "#e06c75" } }, { "name": "[VSCODE-CUSTOM] Markdown heading Punctuation Definition", "scope": "punctuation.definition.heading.markdown", "settings": { "foreground": "#e06c75" } }, { "name": "punctuation.definition.list.begin.markdown", "scope": "punctuation.definition.list.begin.markdown", "settings": { "foreground": "#e5c07b" } }, { "name": "[VSCODE-CUSTOM] Markdown heading setext", "scope": "markup.heading.setext", "settings": { "foreground": "#abb2bf" } }, { "name": "[VSCODE-CUSTOM] Markdown Punctuation Definition Bold", "scope": "punctuation.definition.bold.markdown", "settings": { "foreground": "#d19a66" } }, { "name": "[VSCODE-CUSTOM] Markdown Inline Raw", "scope": "markup.inline.raw.markdown", "settings": { "foreground": "#98c379" } }, { "name": "[VSCODE-CUSTOM] Markdown Inline Raw", "scope": "markup.inline.raw.string.markdown", "settings": { "foreground": "#98c379" } }, { "name": "[VSCODE-CUSTOM] Markdown Inline Raw punctuation", "scope": "punctuation.definition.raw.markdown", "settings": { "foreground": "#e5c07b" } }, { "name": "[VSCODE-CUSTOM] Markdown List Punctuation Definition", "scope": "punctuation.definition.list.markdown", "settings": { "foreground": "#e5c07b" } }, { "name": "[VSCODE-CUSTOM] Markdown Punctuation Definition String", "scope": [ "punctuation.definition.string.begin.markdown", "punctuation.definition.string.end.markdown", "punctuation.definition.metadata.markdown" ], "settings": { "foreground": "#e06c75" } }, { "name": "beginning.punctuation.definition.list.markdown", "scope": ["beginning.punctuation.definition.list.markdown"], "settings": { "foreground": "#e06c75" } }, { "name": "[VSCODE-CUSTOM] Markdown Punctuation Definition Link", "scope": "punctuation.definition.metadata.markdown", "settings": { "foreground": "#e06c75" } }, { "name": "[VSCODE-CUSTOM] Markdown Underline Link/Image", "scope": "markup.underline.link.markdown,markup.underline.link.image.markdown", "settings": { "foreground": "#c678dd" } }, { "name": "[VSCODE-CUSTOM] Markdown Link Title/Description", "scope": "string.other.link.title.markdown,string.other.link.description.markdown", "settings": { "foreground": "#61afef" } }, { "name": "[VSCODE-CUSTOM] Asciidoc Inline Raw", "scope": "markup.raw.monospace.asciidoc", "settings": { "foreground": "#98c379" } }, { "name": "[VSCODE-CUSTOM] Asciidoc Inline Raw Punctuation Definition", "scope": "punctuation.definition.asciidoc", "settings": { "foreground": "#e5c07b" } }, { "name": "[VSCODE-CUSTOM] Asciidoc List Punctuation Definition", "scope": "markup.list.asciidoc", "settings": { "foreground": "#e5c07b" } }, { "name": "[VSCODE-CUSTOM] Asciidoc underline link", "scope": "markup.link.asciidoc,markup.other.url.asciidoc", "settings": { "foreground": "#c678dd" } }, { "name": "[VSCODE-CUSTOM] Asciidoc link name", "scope": "string.unquoted.asciidoc,markup.other.url.asciidoc", "settings": { "foreground": "#61afef" } }, { "name": "Regular Expressions", "scope": "string.regexp", "settings": { "foreground": "#56b6c2" } }, { "name": "Embedded", "scope": "punctuation.section.embedded, variable.interpolation", "settings": { "foreground": "#e06c75" } }, { "name": "Embedded", "scope": "punctuation.section.embedded.begin,punctuation.section.embedded.end", "settings": { "foreground": "#c678dd" } }, { "name": "illegal", "scope": "invalid.illegal", "settings": { "foreground": "#ffffff" } }, { "name": "illegal", "scope": "invalid.illegal.bad-ampersand.html", "settings": { "foreground": "#abb2bf" } }, { "scope": "invalid.illegal.unrecognized-tag.html", "settings": { "foreground": "#e06c75" } }, { "name": "Broken", "scope": "invalid.broken", "settings": { "foreground": "#ffffff" } }, { "name": "Deprecated", "scope": "invalid.deprecated", "settings": { "foreground": "#ffffff" } }, { "name": "html Deprecated", "scope": "invalid.deprecated.entity.other.attribute-name.html", "settings": { "foreground": "#d19a66" } }, { "name": "Unimplemented", "scope": "invalid.unimplemented", "settings": { "foreground": "#ffffff" } }, { "name": "Source Json Meta Structure Dictionary Json > String Quoted Json", "scope": "source.json meta.structure.dictionary.json > string.quoted.json", "settings": { "foreground": "#e06c75" } }, { "name": "Source Json Meta Structure Dictionary Json > String Quoted Json > Punctuation String", "scope": "source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string", "settings": { "foreground": "#e06c75" } }, { "name": "Source Json Meta Structure Dictionary Json > Value Json > String Quoted Json,source Json Meta Structure Array Json > Value Json > String Quoted Json,source Json Meta Structure Dictionary Json > Value Json > String Quoted Json > Punctuation,source Json Meta Structure Array Json > Value Json > String Quoted Json > Punctuation", "scope": "source.json meta.structure.dictionary.json > value.json > string.quoted.json,source.json meta.structure.array.json > value.json > string.quoted.json,source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation,source.json meta.structure.array.json > value.json > string.quoted.json > punctuation", "settings": { "foreground": "#98c379" } }, { "name": "Source Json Meta Structure Dictionary Json > Constant Language Json,source Json Meta Structure Array Json > Constant Language Json", "scope": "source.json meta.structure.dictionary.json > constant.language.json,source.json meta.structure.array.json > constant.language.json", "settings": { "foreground": "#56b6c2" } }, { "name": "[VSCODE-CUSTOM] JSON Property Name", "scope": "support.type.property-name.json", "settings": { "foreground": "#e06c75" } }, { "name": "[VSCODE-CUSTOM] JSON Punctuation for Property Name", "scope": "support.type.property-name.json punctuation", "settings": { "foreground": "#e06c75" } }, { "name": "laravel blade tag", "scope": "text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade", "settings": { "foreground": "#c678dd" } }, { "name": "laravel blade @", "scope": "text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade", "settings": { "foreground": "#c678dd" } }, { "name": "use statement for other classes", "scope": "support.other.namespace.use.php,support.other.namespace.use-as.php,entity.other.alias.php,meta.interface.php", "settings": { "foreground": "#e5c07b" } }, { "name": "error suppression", "scope": "keyword.operator.error-control.php", "settings": { "foreground": "#c678dd" } }, { "name": "php instanceof", "scope": "keyword.operator.type.php", "settings": { "foreground": "#c678dd" } }, { "name": "style double quoted array index normal begin", "scope": "punctuation.section.array.begin.php", "settings": { "foreground": "#abb2bf" } }, { "name": "style double quoted array index normal end", "scope": "punctuation.section.array.end.php", "settings": { "foreground": "#abb2bf" } }, { "name": "php illegal.non-null-typehinted", "scope": "invalid.illegal.non-null-typehinted.php", "settings": { "foreground": "#f44747" } }, { "name": "php types", "scope": "storage.type.php,meta.other.type.phpdoc.php,keyword.other.type.php,keyword.other.array.phpdoc.php", "settings": { "foreground": "#e5c07b" } }, { "name": "php call-function", "scope": "meta.function-call.php,meta.function-call.object.php,meta.function-call.static.php", "settings": { "foreground": "#61afef" } }, { "name": "php function-resets", "scope": "punctuation.definition.parameters.begin.bracket.round.php,punctuation.definition.parameters.end.bracket.round.php,punctuation.separator.delimiter.php,punctuation.section.scope.begin.php,punctuation.section.scope.end.php,punctuation.terminator.expression.php,punctuation.definition.arguments.begin.bracket.round.php,punctuation.definition.arguments.end.bracket.round.php,punctuation.definition.storage-type.begin.bracket.round.php,punctuation.definition.storage-type.end.bracket.round.php,punctuation.definition.array.begin.bracket.round.php,punctuation.definition.array.end.bracket.round.php,punctuation.definition.begin.bracket.round.php,punctuation.definition.end.bracket.round.php,punctuation.definition.begin.bracket.curly.php,punctuation.definition.end.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php,punctuation.definition.section.switch-block.start.bracket.curly.php,punctuation.definition.section.switch-block.begin.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php", "settings": { "foreground": "#abb2bf" } }, { "name": "support php constants", "scope": "support.constant.core.rust", "settings": { "foreground": "#d19a66" } }, { "name": "support php constants", "scope": "support.constant.ext.php,support.constant.std.php,support.constant.core.php,support.constant.parser-token.php", "settings": { "foreground": "#d19a66" } }, { "name": "php goto", "scope": "entity.name.goto-label.php,support.other.php", "settings": { "foreground": "#61afef" } }, { "name": "php logical/bitwise operator", "scope": "keyword.operator.logical.php,keyword.operator.bitwise.php,keyword.operator.arithmetic.php", "settings": { "foreground": "#56b6c2" } }, { "name": "php regexp operator", "scope": "keyword.operator.regexp.php", "settings": { "foreground": "#c678dd" } }, { "name": "php comparison", "scope": "keyword.operator.comparison.php", "settings": { "foreground": "#56b6c2" } }, { "name": "php heredoc/nowdoc", "scope": "keyword.operator.heredoc.php,keyword.operator.nowdoc.php", "settings": { "foreground": "#c678dd" } }, { "name": "python function decorator @", "scope": "meta.function.decorator.python", "settings": { "foreground": "#61afef" } }, { "name": "python function support", "scope": "support.token.decorator.python,meta.function.decorator.identifier.python", "settings": { "foreground": "#56b6c2" } }, { "name": "parameter function js/ts", "scope": "function.parameter", "settings": { "foreground": "#abb2bf" } }, { "name": "brace function", "scope": "function.brace", "settings": { "foreground": "#abb2bf" } }, { "name": "parameter function ruby cs", "scope": "function.parameter.ruby, function.parameter.cs", "settings": { "foreground": "#abb2bf" } }, { "name": "constant.language.symbol.ruby", "scope": "constant.language.symbol.ruby", "settings": { "foreground": "#56b6c2" } }, { "name": "rgb-value", "scope": "rgb-value", "settings": { "foreground": "#56b6c2" } }, { "name": "rgb value", "scope": "inline-color-decoration rgb-value", "settings": { "foreground": "#d19a66" } }, { "name": "rgb value less", "scope": "less rgb-value", "settings": { "foreground": "#d19a66" } }, { "name": "sass selector", "scope": "selector.sass", "settings": { "foreground": "#e06c75" } }, { "name": "ts primitive/builtin types", "scope": "support.type.primitive.ts,support.type.builtin.ts,support.type.primitive.tsx,support.type.builtin.tsx", "settings": { "foreground": "#e5c07b" } }, { "name": "block scope", "scope": "block.scope.end,block.scope.begin", "settings": { "foreground": "#abb2bf" } }, { "name": "cs storage type", "scope": "storage.type.cs", "settings": { "foreground": "#e5c07b" } }, { "name": "cs local variable", "scope": "entity.name.variable.local.cs", "settings": { "foreground": "#e06c75" } }, { "scope": "token.info-token", "settings": { "foreground": "#61afef" } }, { "scope": "token.warn-token", "settings": { "foreground": "#d19a66" } }, { "scope": "token.error-token", "settings": { "foreground": "#f44747" } }, { "scope": "token.debug-token", "settings": { "foreground": "#c678dd" } }, { "name": "String interpolation", "scope": [ "punctuation.definition.template-expression.begin", "punctuation.definition.template-expression.end", "punctuation.section.embedded" ], "settings": { "foreground": "#c678dd" } }, { "name": "Reset JavaScript string interpolation expression", "scope": ["meta.template.expression"], "settings": { "foreground": "#abb2bf" } }, { "name": "Import module JS", "scope": ["keyword.operator.module"], "settings": { "foreground": "#c678dd" } }, { "name": "js Flowtype", "scope": ["support.type.type.flowtype"], "settings": { "foreground": "#61afef" } }, { "name": "js Flow", "scope": ["support.type.primitive"], "settings": { "foreground": "#e5c07b" } }, { "name": "js class prop", "scope": ["meta.property.object"], "settings": { "foreground": "#e06c75" } }, { "name": "js func parameter", "scope": ["variable.parameter.function.js"], "settings": { "foreground": "#e06c75" } }, { "name": "js template literals begin", "scope": ["keyword.other.template.begin"], "settings": { "foreground": "#98c379" } }, { "name": "js template literals end", "scope": ["keyword.other.template.end"], "settings": { "foreground": "#98c379" } }, { "name": "js template literals variable braces begin", "scope": ["keyword.other.substitution.begin"], "settings": { "foreground": "#98c379" } }, { "name": "js template literals variable braces end", "scope": ["keyword.other.substitution.end"], "settings": { "foreground": "#98c379" } }, { "name": "js operator.assignment", "scope": ["keyword.operator.assignment"], "settings": { "foreground": "#56b6c2" } }, { "name": "go operator", "scope": ["keyword.operator.assignment.go"], "settings": { "foreground": "#e5c07b" } }, { "name": "go operator", "scope": [ "keyword.operator.arithmetic.go", "keyword.operator.address.go" ], "settings": { "foreground": "#c678dd" } }, { "name": "Go package name", "scope": ["entity.name.package.go"], "settings": { "foreground": "#e5c07b" } }, { "name": "elm prelude", "scope": ["support.type.prelude.elm"], "settings": { "foreground": "#56b6c2" } }, { "name": "elm constant", "scope": ["support.constant.elm"], "settings": { "foreground": "#d19a66" } }, { "name": "template literal", "scope": ["punctuation.quasi.element"], "settings": { "foreground": "#c678dd" } }, { "name": "html/pug (jade) escaped characters and entities", "scope": ["constant.character.entity"], "settings": { "foreground": "#e06c75" } }, { "name": "styling css pseudo-elements/classes to be able to differentiate from classes which are the same colour", "scope": [ "entity.other.attribute-name.pseudo-element", "entity.other.attribute-name.pseudo-class" ], "settings": { "foreground": "#56b6c2" } }, { "name": "Clojure globals", "scope": ["entity.global.clojure"], "settings": { "foreground": "#e5c07b" } }, { "name": "Clojure symbols", "scope": ["meta.symbol.clojure"], "settings": { "foreground": "#e06c75" } }, { "name": "Clojure constants", "scope": ["constant.keyword.clojure"], "settings": { "foreground": "#56b6c2" } }, { "name": "CoffeeScript Function Argument", "scope": ["meta.arguments.coffee", "variable.parameter.function.coffee"], "settings": { "foreground": "#e06c75" } }, { "name": "Ini Default Text", "scope": ["source.ini"], "settings": { "foreground": "#98c379" } }, { "name": "Makefile prerequisities", "scope": ["meta.scope.prerequisites.makefile"], "settings": { "foreground": "#e06c75" } }, { "name": "Makefile text colour", "scope": ["source.makefile"], "settings": { "foreground": "#e5c07b" } }, { "name": "Groovy import names", "scope": ["storage.modifier.import.groovy"], "settings": { "foreground": "#e5c07b" } }, { "name": "Groovy Methods", "scope": ["meta.method.groovy"], "settings": { "foreground": "#61afef" } }, { "name": "Groovy Variables", "scope": ["meta.definition.variable.name.groovy"], "settings": { "foreground": "#e06c75" } }, { "name": "Groovy Inheritance", "scope": ["meta.definition.class.inherited.classes.groovy"], "settings": { "foreground": "#98c379" } }, { "name": "HLSL Semantic", "scope": ["support.variable.semantic.hlsl"], "settings": { "foreground": "#e5c07b" } }, { "name": "HLSL Types", "scope": [ "support.type.texture.hlsl", "support.type.sampler.hlsl", "support.type.object.hlsl", "support.type.object.rw.hlsl", "support.type.fx.hlsl", "support.type.object.hlsl" ], "settings": { "foreground": "#c678dd" } }, { "name": "SQL Variables", "scope": ["text.variable", "text.bracketed"], "settings": { "foreground": "#e06c75" } }, { "name": "types", "scope": ["support.type.swift", "support.type.vb.asp"], "settings": { "foreground": "#e5c07b" } }, { "name": "heading 1, keyword", "scope": ["entity.name.function.xi"], "settings": { "foreground": "#e5c07b" } }, { "name": "heading 2, callable", "scope": ["entity.name.class.xi"], "settings": { "foreground": "#56b6c2" } }, { "name": "heading 3, property", "scope": ["constant.character.character-class.regexp.xi"], "settings": { "foreground": "#e06c75" } }, { "name": "heading 4, type, class, interface", "scope": ["constant.regexp.xi"], "settings": { "foreground": "#c678dd" } }, { "name": "heading 5, enums, preprocessor, constant, decorator", "scope": ["keyword.control.xi"], "settings": { "foreground": "#56b6c2" } }, { "name": "heading 6, number", "scope": ["invalid.xi"], "settings": { "foreground": "#abb2bf" } }, { "name": "string", "scope": ["beginning.punctuation.definition.quote.markdown.xi"], "settings": { "foreground": "#98c379" } }, { "name": "comments", "scope": ["beginning.punctuation.definition.list.markdown.xi"], "settings": { "foreground": "#7f848e" } }, { "name": "link", "scope": ["constant.character.xi"], "settings": { "foreground": "#61afef" } }, { "name": "accent", "scope": ["accent.xi"], "settings": { "foreground": "#61afef" } }, { "name": "wikiword", "scope": ["wikiword.xi"], "settings": { "foreground": "#d19a66" } }, { "name": "language operators like '+', '-' etc", "scope": ["constant.other.color.rgb-value.xi"], "settings": { "foreground": "#ffffff" } }, { "name": "elements to dim", "scope": ["punctuation.definition.tag.xi"], "settings": { "foreground": "#5c6370" } }, { "name": "C++/C#", "scope": [ "entity.name.label.cs", "entity.name.scope-resolution.function.call", "entity.name.scope-resolution.function.definition" ], "settings": { "foreground": "#e5c07b" } }, { "name": "Markdown underscore-style headers", "scope": [ "entity.name.label.cs", "markup.heading.setext.1.markdown", "markup.heading.setext.2.markdown" ], "settings": { "foreground": "#e06c75" } }, { "name": "meta.brace.square", "scope": [" meta.brace.square"], "settings": { "foreground": "#abb2bf" } }, { "name": "Comments", "scope": "comment, punctuation.definition.comment", "settings": { "foreground": "#7f848e", "fontStyle": "italic" } }, { "name": "[VSCODE-CUSTOM] Markdown Quote", "scope": "markup.quote.markdown", "settings": { "foreground": "#5c6370" } }, { "name": "punctuation.definition.block.sequence.item.yaml", "scope": "punctuation.definition.block.sequence.item.yaml", "settings": { "foreground": "#abb2bf" } }, { "scope": [ "constant.language.symbol.elixir", "constant.language.symbol.double-quoted.elixir" ], "settings": { "foreground": "#56b6c2" } }, { "scope": ["entity.name.variable.parameter.cs"], "settings": { "foreground": "#e5c07b" } }, { "scope": ["entity.name.variable.field.cs"], "settings": { "foreground": "#e06c75" } }, { "name": "Deleted", "scope": "markup.deleted", "settings": { "foreground": "#e06c75" } }, { "name": "Inserted", "scope": "markup.inserted", "settings": { "foreground": "#98c379" } }, { "name": "Underline", "scope": "markup.underline", "settings": { "fontStyle": "underline" } }, { "name": "punctuation.section.embedded.begin.php", "scope": [ "punctuation.section.embedded.begin.php", "punctuation.section.embedded.end.php" ], "settings": { "foreground": "#BE5046" } }, { "name": "support.other.namespace.php", "scope": ["support.other.namespace.php"], "settings": { "foreground": "#abb2bf" } }, { "name": "variable.other.object", "scope": ["variable.other.object"], "settings": { "foreground": "#e5c07b" } }, { "name": "variable.other.constant.property", "scope": ["variable.other.constant.property"], "settings": { "foreground": "#e06c75" } }, { "name": "entity.other.inherited-class", "scope": ["entity.other.inherited-class"], "settings": { "foreground": "#e5c07b" } }, { "name": "c variable readwrite", "scope": "variable.other.readwrite.c", "settings": { "foreground": "#e06c75" } }, { "name": "php scope", "scope": "entity.name.variable.parameter.php,punctuation.separator.colon.php,constant.other.php", "settings": { "foreground": "#abb2bf" } }, { "name": "Assembly", "scope": ["constant.numeric.decimal.asm.x86_64"], "settings": { "foreground": "#c678dd" } }, { "scope": ["support.other.parenthesis.regexp"], "settings": { "foreground": "#d19a66" } }, { "scope": ["constant.character.escape"], "settings": { "foreground": "#56b6c2" } }, { "scope": ["string.regexp"], "settings": { "foreground": "#e06c75" } }, { "name": "js/ts italic", "scope": "entity.other.attribute-name.js,entity.other.attribute-name.ts,entity.other.attribute-name.jsx,entity.other.attribute-name.tsx,variable.parameter,variable.language.super", "settings": { "fontStyle": "italic" } }, { "name": "comment", "scope": "comment.line.double-slash,comment.block.documentation", "settings": { "fontStyle": "italic" } }, { "name": "Python Keyword Control", "scope": "keyword.control.import.python,keyword.control.flow.python,keyword.operator.logical.python", "settings": { "fontStyle": "italic" } }, { "name": "markup.italic.markdown", "scope": "markup.italic.markdown", "settings": { "fontStyle": "italic" } } ], "colors": { "activityBar.background": "#282c34", "activityBar.foreground": "#d7dae0", "activityBarBadge.background": "#4d78cc", "activityBarBadge.foreground": "#f8fafd", "badge.background": "#282c34", "button.background": "#404754", "button.secondaryBackground": "#30333d", "button.secondaryForeground": "#c0bdbd", "checkbox.border": "#404754", "debugToolBar.background": "#21252b", "descriptionForeground": "#abb2bf", "diffEditor.insertedTextBackground": "#00809b33", "dropdown.background": "#21252b", "dropdown.border": "#21252b", "editor.background": "#282c34", "editor.findMatchBackground": "#42557b", "editor.findMatchBorder": "#457dff", "editor.findMatchHighlightBackground": "#6199ff2f", "editor.foreground": "#abb2bf", "editorBracketHighlight.foreground1": "#d19a66", "editorBracketHighlight.foreground2": "#c678dd", "editorBracketHighlight.foreground3": "#56b6c2", "editorHoverWidget.highlightForeground": "#61afef", "editorInlayHint.foreground": "#abb2bf", "editorInlayHint.background": "#2c313c", "editor.lineHighlightBackground": "#2c313c", "editorLineNumber.activeForeground": "#abb2bf", "editorGutter.addedBackground": "#109868", "editorGutter.deletedBackground": "#9A353D", "editorGutter.modifiedBackground": "#948B60", "editorOverviewRuler.addedBackground": "#109868", "editorOverviewRuler.deletedBackground": "#9A353D", "editorOverviewRuler.modifiedBackground": "#948B60", "editor.selectionBackground": "#67769660", "editor.selectionHighlightBackground": "#ffffff10", "editor.selectionHighlightBorder": "#dddddd", "editor.wordHighlightBackground": "#d2e0ff2f", "editor.wordHighlightBorder": "#7f848e", "editor.wordHighlightStrongBackground": "#abb2bf26", "editor.wordHighlightStrongBorder": "#7f848e", "editorBracketMatch.background": "#515a6b", "editorBracketMatch.border": "#515a6b", "editorCursor.background": "#ffffffc9", "editorCursor.foreground": "#528bff", "editorError.foreground": "#c24038", "editorGroup.background": "#181a1f", "editorGroup.border": "#181a1f", "editorGroupHeader.tabsBackground": "#21252b", "editorHoverWidget.background": "#21252b", "editorHoverWidget.border": "#181a1f", "editorIndentGuide.activeBackground": "#c8c8c859", "editorIndentGuide.background": "#3b4048", "editorLineNumber.foreground": "#495162", "editorMarkerNavigation.background": "#21252b", "editorRuler.foreground": "#abb2bf26", "editorSuggestWidget.background": "#21252b", "editorSuggestWidget.border": "#181a1f", "editorSuggestWidget.selectedBackground": "#2c313a", "editorWarning.foreground": "#d19a66", "editorWhitespace.foreground": "#ffffff1d", "editorWidget.background": "#21252b", "focusBorder": "#3e4452", "gitDecoration.ignoredResourceForeground": "#636b78", "input.background": "#1d1f23", "input.foreground": "#abb2bf", "list.activeSelectionBackground": "#2c313a", "list.activeSelectionForeground": "#d7dae0", "list.focusBackground": "#323842", "list.focusForeground": "#f0f0f0", "list.highlightForeground": "#c5c5c5", "list.hoverBackground": "#2c313a", "list.hoverForeground": "#abb2bf", "list.inactiveSelectionBackground": "#323842", "list.inactiveSelectionForeground": "#d7dae0", "list.warningForeground": "#d19a66", "menu.foreground": "#abb2bf", "menu.separatorBackground": "#343a45", "minimapGutter.addedBackground": "#109868", "minimapGutter.deletedBackground": "#9A353D", "minimapGutter.modifiedBackground": "#948B60", "panel.border": "#3e4452", "panelSectionHeader.background": "#21252b", "peekViewEditor.background": "#1b1d23", "peekViewEditor.matchHighlightBackground": "#29244b", "peekViewResult.background": "#22262b", "scrollbar.shadow": "#23252c", "scrollbarSlider.activeBackground": "#747d9180", "scrollbarSlider.background": "#4e566660", "scrollbarSlider.hoverBackground": "#5a637580", "settings.focusedRowBackground": "#282c34", "settings.headerForeground": "#fff", "sideBar.background": "#21252b", "sideBar.foreground": "#abb2bf", "sideBarSectionHeader.background": "#282c34", "sideBarSectionHeader.foreground": "#abb2bf", "statusBar.background": "#21252b", "statusBar.debuggingBackground": "#cc6633", "statusBar.debuggingBorder": "#ff000000", "statusBar.debuggingForeground": "#ffffff", "statusBar.foreground": "#9da5b4", "statusBar.noFolderBackground": "#21252b", "statusBarItem.remoteBackground": "#4d78cc", "statusBarItem.remoteForeground": "#f8fafd", "tab.activeBackground": "#282c34", "tab.activeBorder": "#b4b4b4", "tab.activeForeground": "#dcdcdc", "tab.border": "#181a1f", "tab.hoverBackground": "#323842", "tab.inactiveBackground": "#21252b", "tab.unfocusedHoverBackground": "#323842", "terminal.ansiBlack": "#3f4451", "terminal.ansiBlue": "#4aa5f0", "terminal.ansiBrightBlack": "#4f5666", "terminal.ansiBrightBlue": "#4dc4ff", "terminal.ansiBrightCyan": "#4cd1e0", "terminal.ansiBrightGreen": "#a5e075", "terminal.ansiBrightMagenta": "#de73ff", "terminal.ansiBrightRed": "#ff616e", "terminal.ansiBrightWhite": "#e6e6e6", "terminal.ansiBrightYellow": "#f0a45d", "terminal.ansiCyan": "#42b3c2", "terminal.ansiGreen": "#8cc265", "terminal.ansiMagenta": "#c162de", "terminal.ansiRed": "#e05561", "terminal.ansiWhite": "#d7dae0", "terminal.ansiYellow": "#d18f52", "terminal.background": "#282c34", "terminal.border": "#3e4452", "terminal.foreground": "#abb2bf", "terminal.selectionBackground": "#abb2bf30", "textBlockQuote.background": "#2e3440", "textBlockQuote.border": "#4b5362", "textLink.foreground": "#61afef", "textPreformat.foreground": "#d19a66", "titleBar.activeBackground": "#282c34", "titleBar.activeForeground": "#9da5b4", "titleBar.inactiveBackground": "#21252b", "titleBar.inactiveForeground": "#6b717d", "tree.indentGuidesStroke": "#ffffff1d", "walkThrough.embeddedEditorBackground": "#2e3440", "welcomePage.buttonHoverBackground": "#404754" } } ================================================ FILE: apps/web/src/lib/shiki/themes/poimandres.json ================================================ { "name": "poimandres", "type": "dark", "colors": { "activityBar.background": "#1b1e28", "activityBar.foreground": "#a6accd", "activityBarBadge.background": "#303340", "activityBarBadge.foreground": "#e4f0fb", "badge.background": "#303340", "badge.foreground": "#e4f0fb", "button.background": "#303340", "diffEditor.insertedTextBackground": "#50647715", "diffEditor.removedTextBackground": "#d0679d20", "dropdown.background": "#1b1e28", "dropdown.border": "#ffffff10", "editor.background": "#1b1e28", "editor.findMatchBackground": "#ADD7FF40", "editor.findMatchBorder": "#ADD7FF", "editor.findMatchHighlightBackground": "#ADD7FF40", "editor.foreground": "#a6accd", "editor.lineHighlightBackground": "#717cb425", "editor.lineHighlightBorder": "#00000000", "editor.selectionBackground": "#717cb425", "editor.selectionHighlightBackground": "#00000000", "editor.selectionHighlightBorder": "#ADD7FF80", "editor.wordHighlightBackground": "#ADD7FF20", "editor.wordHighlightStrongBackground": "#ADD7FF40", "editorBracketMatch.border": "#e4f0fb40", "editorCursor.foreground": "#a6accd", "editorGroup.border": "#00000030", "editorGroupHeader.tabsBackground": "#1b1e28", "editorHoverWidget.background": "#1b1e28", "editorHoverWidget.border": "#ffffff10", "editorIndentGuide.background": "#303340", "editorLineNumber.foreground": "#767c9d50", "editorLink.activeForeground": "#ADD7FF", "editorSuggestWidget.background": "#1b1e28", "editorSuggestWidget.border": "#ffffff10", "editorSuggestWidget.foreground": "#a6accd", "editorSuggestWidget.highlightForeground": "#5DE4c7", "editorSuggestWidget.selectedBackground": "#00000050", "editorWidget.background": "#1b1e28", "editor.findRangeHighlightBackground": "#ADD7FF40", "editor.focusedStackFrameHighlightBackground": "#7abd7a4d", "editor.foldBackground": "#717cb40b", "editor.hoverHighlightBackground": "#264f7840", "editor.inactiveSelectionBackground": "#717cb425", "editor.linkedEditingBackground": "#d0679d4d", "editor.rangeHighlightBackground": "#ffffff0b", "editor.snippetFinalTabstopHighlightBorder": "#525252", "editor.snippetTabstopHighlightBackground": "#7c7c7c4d", "editor.stackFrameHighlightBackground": "#ffff0033", "editor.symbolHighlightBackground": "#89ddff60", "editorBracketMatch.background": "#00000000", "editorCodeLens.foreground": "#a6accd", "editorError.foreground": "#d0679d", "editorGroup.dropBackground": "#7390AA80", "editorGroupHeader.noTabsBackground": "#1b1e28", "editorGutter.background": "#1b1e28", "editorGutter.commentRangeForeground": "#a6accd", "editorGutter.foldingControlForeground": "#a6accd", "editorGutter.addedBackground": "#5fb3a140", "editorGutter.deletedBackground": "#d0679d40", "editorGutter.modifiedBackground": "#ADD7FF20", "editorHint.foreground": "#7390AAb3", "editorHoverWidget.foreground": "#a6accd", "editorHoverWidget.statusBarBackground": "#202430", "editorIndentGuide.activeBackground": "#e3e4e229", "editorInfo.foreground": "#ADD7FF", "editorInlineHint.background": "#a6accd", "editorInlineHint.foreground": "#1b1e28", "editorLightBulb.foreground": "#fffac2", "editorLightBulbAutoFix.foreground": "#ADD7FF", "editorLineNumber.activeForeground": "#a6accd", "editorMarkerNavigation.background": "#2d2d30", "editorMarkerNavigationError.background": "#d0679d", "editorMarkerNavigationInfo.background": "#ADD7FF", "editorMarkerNavigationWarning.background": "#fffac2", "editorOverviewRuler.addedForeground": "#5fb3a199", "editorOverviewRuler.border": "#00000000", "editorOverviewRuler.bracketMatchForeground": "#a0a0a0", "editorOverviewRuler.commonContentForeground": "#a6accd66", "editorOverviewRuler.currentContentForeground": "#5fb3a180", "editorOverviewRuler.deletedForeground": "#d0679d99", "editorOverviewRuler.errorForeground": "#d0679db3", "editorOverviewRuler.findMatchForeground": "#e4f0fb20", "editorOverviewRuler.incomingContentForeground": "#89ddff80", "editorOverviewRuler.infoForeground": "#ADD7FF", "editorOverviewRuler.modifiedForeground": "#89ddff99", "editorOverviewRuler.rangeHighlightForeground": "#89ddff99", "editorOverviewRuler.selectionHighlightForeground": "#a0a0a0cc", "editorOverviewRuler.warningForeground": "#fffac2", "editorOverviewRuler.wordHighlightForeground": "#a0a0a0cc", "editorOverviewRuler.wordHighlightStrongForeground": "#89ddffcc", "editorPane.background": "#1b1e28", "editorRuler.foreground": "#e4f0fb10", "editorUnnecessaryCode.opacity": "#000000aa", "editorWarning.foreground": "#fffac2", "editorWhitespace.foreground": "#303340", "editorWidget.border": "#a6accd", "editorWidget.foreground": "#a6accd", "extensionButton.prominentBackground": "#30334090", "extensionButton.prominentHoverBackground": "#303340", "focusBorder": "#00000000", "input.background": "#ffffff05", "input.border": "#ffffff10", "input.foreground": "#e4f0fb", "input.placeholderForeground": "#a6accd60", "inputValidation.errorBorder": "#d0679d", "inputValidation.errorForeground": "#d0679d", "inputValidation.infoBorder": "#89ddff", "inputValidation.warningBorder": "#fffac2", "notifications.background": "#1b1e28", "notifications.foreground": "#e4f0fb", "panel.border": "#00000030", "panelTitle.activeForeground": "#a6accd", "peekView.border": "#00000030", "peekViewEditor.background": "#a6accd05", "peekViewEditorGutter.background": "#a6accd05", "peekViewResult.background": "#a6accd05", "peekViewTitle.background": "#a6accd05", "peekViewTitleDescription.foreground": "#a6accd60", "scrollbar.shadow": "#00000000", "scrollbarSlider.activeBackground": "#a6accd25", "scrollbarSlider.background": "#00000080", "scrollbarSlider.hoverBackground": "#a6accd25", "selection.background": "#a6accd", "sideBar.background": "#1b1e28", "sideBar.foreground": "#767c9d", "sideBarSectionHeader.background": "#1b1e28", "sideBarTitle.foreground": "#a6accd", "statusBar.background": "#1b1e28", "statusBar.foreground": "#a6accd", "statusBar.noFolderBackground": "#1b1e28", "tab.activeBackground": "#30334080", "tab.activeForeground": "#e4f0fb", "tab.border": "#00000000", "tab.inactiveBackground": "#1b1e28", "tab.inactiveForeground": "#767c9d", "tab.unfocusedActiveForeground": "#a6accd", "tab.activeModifiedBorder": "#ADD7FF", "tab.inactiveModifiedBorder": "#ADD7FF80", "tab.lastPinnedBorder": "#00000000", "tab.unfocusedActiveBackground": "#1b1e28", "tab.unfocusedActiveModifiedBorder": "#ADD7FF40", "tab.unfocusedInactiveBackground": "#1b1e28", "tab.unfocusedInactiveForeground": "#a6accd80", "tab.unfocusedInactiveModifiedBorder": "#ADD7FF40", "terminal.ansiBlack": "#1b1e28", "terminal.ansiBlue": "#89ddff", "terminal.ansiBrightBlack": "#a6accd", "terminal.ansiBrightBlue": "#ADD7FF", "terminal.ansiBrightCyan": "#ADD7FF", "terminal.ansiBrightGreen": "#5DE4c7", "terminal.ansiBrightMagenta": "#f087bd", "terminal.ansiBrightRed": "#d0679d", "terminal.ansiBrightWhite": "#ffffff", "terminal.ansiBrightYellow": "#fffac2", "terminal.ansiCyan": "#89ddff", "terminal.ansiGreen": "#5DE4c7", "terminal.ansiMagenta": "#f087bd", "terminal.ansiRed": "#d0679d", "terminal.ansiWhite": "#ffffff", "terminal.ansiYellow": "#fffac2", "textLink.activeForeground": "#ADD7FF", "textLink.foreground": "#ADD7FF", "titleBar.activeBackground": "#1b1e28", "titleBar.activeForeground": "#a6accd", "titleBar.inactiveBackground": "#1b1e28", "titleBar.inactiveForeground": "#767c9d", "tree.indentGuidesStroke": "#00000000", "widget.shadow": "#00000030", "activityBar.activeBorder": "#a6accd", "activityBar.dropBorder": "#a6accd", "activityBar.inactiveForeground": "#a6accd66", "breadcrumb.activeSelectionForeground": "#e4f0fb", "breadcrumb.background": "#00000000", "breadcrumb.focusForeground": "#e4f0fb", "breadcrumb.foreground": "#767c9dcc", "breadcrumbPicker.background": "#1b1e28", "button.foreground": "#ffffff", "button.hoverBackground": "#50647750", "button.secondaryBackground": "#a6accd", "button.secondaryForeground": "#ffffff", "button.secondaryHoverBackground": "#a6accd", "charts.blue": "#ADD7FF", "charts.foreground": "#a6accd", "charts.green": "#5DE4c7", "charts.lines": "#a6accd80", "charts.orange": "#89ddff", "charts.purple": "#f087bd", "charts.red": "#d0679d", "charts.yellow": "#fffac2", "checkbox.background": "#1b1e28", "checkbox.border": "#ffffff10", "checkbox.foreground": "#e4f0fb", "debugConsole.errorForeground": "#d0679d", "debugConsole.infoForeground": "#ADD7FF", "debugConsole.sourceForeground": "#a6accd", "debugConsole.warningForeground": "#fffac2", "debugConsoleInputIcon.foreground": "#a6accd", "debugExceptionWidget.background": "#d0679d", "debugExceptionWidget.border": "#d0679d", "debugIcon.breakpointCurrentStackframeForeground": "#fffac2", "debugIcon.breakpointDisabledForeground": "#7390AA", "debugIcon.breakpointForeground": "#d0679d", "debugIcon.breakpointStackframeForeground": "#5fb3a1", "debugIcon.breakpointUnverifiedForeground": "#7390AA", "debugIcon.continueForeground": "#ADD7FF", "debugIcon.disconnectForeground": "#d0679d", "debugIcon.pauseForeground": "#ADD7FF", "debugIcon.restartForeground": "#5fb3a1", "debugIcon.startForeground": "#5fb3a1", "debugIcon.stepBackForeground": "#ADD7FF", "debugIcon.stepIntoForeground": "#ADD7FF", "debugIcon.stepOutForeground": "#ADD7FF", "debugIcon.stepOverForeground": "#ADD7FF", "debugIcon.stopForeground": "#d0679d", "debugTokenExpression.boolean": "#89ddff", "debugTokenExpression.error": "#d0679d", "debugTokenExpression.name": "#e4f0fb", "debugTokenExpression.number": "#5fb3a1", "debugTokenExpression.string": "#89ddff", "debugTokenExpression.value": "#a6accd99", "debugToolBar.background": "#303340", "debugView.exceptionLabelBackground": "#d0679d", "debugView.exceptionLabelForeground": "#e4f0fb", "debugView.stateLabelBackground": "#303340", "debugView.stateLabelForeground": "#a6accd", "debugView.valueChangedHighlight": "#89ddff", "descriptionForeground": "#a6accdb3", "diffEditor.diagonalFill": "#a6accd33", "dropdown.foreground": "#e4f0fb", "errorForeground": "#d0679d", "extensionBadge.remoteBackground": "#303340", "extensionBadge.remoteForeground": "#e4f0fb", "extensionButton.prominentForeground": "#ffffff", "extensionIcon.starForeground": "#fffac2", "foreground": "#a6accd", "gitDecoration.addedResourceForeground": "#5fb3a1", "gitDecoration.conflictingResourceForeground": "#d0679d", "gitDecoration.deletedResourceForeground": "#d0679d", "gitDecoration.ignoredResourceForeground": "#767c9d70", "gitDecoration.modifiedResourceForeground": "#ADD7FF", "gitDecoration.renamedResourceForeground": "#5DE4c7", "gitDecoration.stageDeletedResourceForeground": "#d0679d", "gitDecoration.stageModifiedResourceForeground": "#ADD7FF", "gitDecoration.submoduleResourceForeground": "#89ddff", "gitDecoration.untrackedResourceForeground": "#5DE4c7", "icon.foreground": "#a6accd", "imagePreview.border": "#303340", "inputOption.activeBackground": "#00000000", "inputOption.activeBorder": "#00000000", "inputOption.activeForeground": "#ffffff", "inputValidation.errorBackground": "#1b1e28", "inputValidation.infoBackground": "#506477", "inputValidation.warningBackground": "#506477", "list.deemphasizedForeground": "#767c9d", "list.dropBackground": "#506477", "list.filterMatchBackground": "#89ddff60", "list.focusOutline": "#00000000", "list.invalidItemForeground": "#fffac2", "list.warningForeground": "#fffac2", "listFilterWidget.background": "#303340", "listFilterWidget.noMatchesOutline": "#d0679d", "listFilterWidget.outline": "#00000000", "list.activeSelectionBackground": "#30334080", "list.activeSelectionForeground": "#e4f0fb", "list.errorForeground": "#d0679d", "list.focusBackground": "#30334080", "list.focusForeground": "#a6accd", "list.highlightForeground": "#5fb3a1", "list.hoverBackground": "#30334080", "list.hoverForeground": "#e4f0fb", "list.inactiveSelectionBackground": "#00000000", "list.inactiveSelectionForeground": "#e4f0fb", "menu.background": "#1b1e28", "menu.foreground": "#e4f0fb", "menu.selectionBackground": "#00000000", "menu.selectionForeground": "#7390AA", "menu.separatorBackground": "#767c9d", "menubar.selectionBackground": "#717cb425", "menubar.selectionForeground": "#a6accd", "merge.commonContentBackground": "#a6accd29", "merge.commonHeaderBackground": "#a6accd66", "merge.currentContentBackground": "#5fb3a133", "merge.currentHeaderBackground": "#5fb3a180", "merge.incomingContentBackground": "#89ddff33", "merge.incomingHeaderBackground": "#89ddff80", "minimap.errorHighlight": "#d0679d", "minimap.findMatchHighlight": "#ADD7FF", "minimap.selectionHighlight": "#e4f0fb40", "minimap.warningHighlight": "#fffac2", "minimapGutter.addedBackground": "#5fb3a180", "minimapGutter.deletedBackground": "#d0679d80", "minimapGutter.modifiedBackground": "#ADD7FF80", "minimapSlider.activeBackground": "#a6accd30", "minimapSlider.background": "#a6accd20", "minimapSlider.hoverBackground": "#a6accd30", "notebook.cellBorderColor": "#1b1e28", "notebook.cellInsertionIndicator": "#00000000", "notebook.cellStatusBarItemHoverBackground": "#ffffff26", "notebook.cellToolbarSeparator": "#303340", "notebook.focusedCellBorder": "#00000000", "notebook.focusedEditorBorder": "#00000000", "notebook.focusedRowBorder": "#00000000", "notebook.inactiveFocusedCellBorder": "#00000000", "notebook.outputContainerBackgroundColor": "#1b1e28", "notebook.rowHoverBackground": "#30334000", "notebook.selectedCellBackground": "#303340", "notebook.selectedCellBorder": "#1b1e28", "notebook.symbolHighlightBackground": "#ffffff0b", "notebookScrollbarSlider.activeBackground": "#a6accd25", "notebookScrollbarSlider.background": "#00000050", "notebookScrollbarSlider.hoverBackground": "#a6accd25", "notebookStatusErrorIcon.foreground": "#d0679d", "notebookStatusRunningIcon.foreground": "#a6accd", "notebookStatusSuccessIcon.foreground": "#5fb3a1", "notificationCenterHeader.background": "#303340", "notificationLink.foreground": "#ADD7FF", "notifications.border": "#303340", "notificationsErrorIcon.foreground": "#d0679d", "notificationsInfoIcon.foreground": "#ADD7FF", "notificationsWarningIcon.foreground": "#fffac2", "panel.background": "#1b1e28", "panel.dropBorder": "#a6accd", "panelSection.border": "#1b1e28", "panelSection.dropBackground": "#7390AA80", "panelSectionHeader.background": "#303340", "panelTitle.activeBorder": "#a6accd", "panelTitle.inactiveForeground": "#a6accd99", "peekViewEditor.matchHighlightBackground": "#303340", "peekViewResult.fileForeground": "#ffffff", "peekViewResult.lineForeground": "#a6accd", "peekViewResult.matchHighlightBackground": "#303340", "peekViewResult.selectionBackground": "#717cb425", "peekViewResult.selectionForeground": "#ffffff", "peekViewTitleLabel.foreground": "#ffffff", "pickerGroup.border": "#a6accd", "pickerGroup.foreground": "#89ddff", "problemsErrorIcon.foreground": "#d0679d", "problemsInfoIcon.foreground": "#ADD7FF", "problemsWarningIcon.foreground": "#fffac2", "progressBar.background": "#89ddff", "quickInput.background": "#1b1e28", "quickInput.foreground": "#a6accd", "quickInputList.focusBackground": "#a6accd10", "quickInputTitle.background": "#ffffff1b", "sash.hoverBorder": "#00000000", "scm.providerBorder": "#e4f0fb10", "searchEditor.findMatchBackground": "#ADD7FF50", "searchEditor.textInputBorder": "#ffffff10", "settings.checkboxBackground": "#1b1e28", "settings.checkboxBorder": "#ffffff10", "settings.checkboxForeground": "#e4f0fb", "settings.dropdownBackground": "#1b1e28", "settings.dropdownBorder": "#ffffff10", "settings.dropdownForeground": "#e4f0fb", "settings.dropdownListBorder": "#e4f0fb10", "settings.focusedRowBackground": "#00000000", "settings.headerForeground": "#e4f0fb", "settings.modifiedItemIndicator": "#ADD7FF", "settings.numberInputBackground": "#ffffff05", "settings.numberInputBorder": "#ffffff10", "settings.numberInputForeground": "#e4f0fb", "settings.textInputBackground": "#ffffff05", "settings.textInputBorder": "#ffffff10", "settings.textInputForeground": "#e4f0fb", "sideBar.dropBackground": "#7390AA80", "sideBarSectionHeader.foreground": "#a6accd", "statusBar.debuggingBackground": "#303340", "statusBar.debuggingForeground": "#ffffff", "statusBar.noFolderForeground": "#a6accd", "statusBarItem.activeBackground": "#ffffff2e", "statusBarItem.errorBackground": "#d0679d", "statusBarItem.errorForeground": "#ffffff", "statusBarItem.hoverBackground": "#ffffff1f", "statusBarItem.prominentBackground": "#00000080", "statusBarItem.prominentForeground": "#a6accd", "statusBarItem.prominentHoverBackground": "#0000004d", "statusBarItem.remoteBackground": "#303340", "statusBarItem.remoteForeground": "#e4f0fb", "symbolIcon.arrayForeground": "#a6accd", "symbolIcon.booleanForeground": "#a6accd", "symbolIcon.classForeground": "#fffac2", "symbolIcon.colorForeground": "#a6accd", "symbolIcon.constantForeground": "#a6accd", "symbolIcon.constructorForeground": "#f087bd", "symbolIcon.enumeratorForeground": "#fffac2", "symbolIcon.enumeratorMemberForeground": "#ADD7FF", "symbolIcon.eventForeground": "#fffac2", "symbolIcon.fieldForeground": "#ADD7FF", "symbolIcon.fileForeground": "#a6accd", "symbolIcon.folderForeground": "#a6accd", "symbolIcon.functionForeground": "#f087bd", "symbolIcon.interfaceForeground": "#ADD7FF", "symbolIcon.keyForeground": "#a6accd", "symbolIcon.keywordForeground": "#a6accd", "symbolIcon.methodForeground": "#f087bd", "symbolIcon.moduleForeground": "#a6accd", "symbolIcon.namespaceForeground": "#a6accd", "symbolIcon.nullForeground": "#a6accd", "symbolIcon.numberForeground": "#a6accd", "symbolIcon.objectForeground": "#a6accd", "symbolIcon.operatorForeground": "#a6accd", "symbolIcon.packageForeground": "#a6accd", "symbolIcon.propertyForeground": "#a6accd", "symbolIcon.referenceForeground": "#a6accd", "symbolIcon.snippetForeground": "#a6accd", "symbolIcon.stringForeground": "#a6accd", "symbolIcon.structForeground": "#a6accd", "symbolIcon.textForeground": "#a6accd", "symbolIcon.typeParameterForeground": "#a6accd", "symbolIcon.unitForeground": "#a6accd", "symbolIcon.variableForeground": "#ADD7FF", "terminal.border": "#00000000", "terminal.foreground": "#a6accd", "terminal.selectionBackground": "#717cb425", "testing.iconErrored": "#d0679d", "testing.iconFailed": "#d0679d", "testing.iconPassed": "#5DE4c7", "testing.iconQueued": "#fffac2", "testing.iconSkipped": "#7390AA", "testing.iconUnset": "#7390AA", "testing.message.error.decorationForeground": "#d0679d", "testing.message.error.lineBackground": "#d0679d33", "testing.message.hint.decorationForeground": "#7390AAb3", "testing.message.info.decorationForeground": "#ADD7FF", "testing.message.info.lineBackground": "#89ddff33", "testing.message.warning.decorationForeground": "#fffac2", "testing.message.warning.lineBackground": "#fffac233", "testing.peekBorder": "#d0679d", "testing.runAction": "#5DE4c7", "textBlockQuote.background": "#7390AA1a", "textBlockQuote.border": "#89ddff80", "textCodeBlock.background": "#00000050", "textPreformat.foreground": "#e4f0fb", "textSeparator.foreground": "#ffffff2e", "tree.tableColumnsBorder": "#a6accd20", "welcomePage.progress.background": "#ffffff05", "welcomePage.progress.foreground": "#5fb3a1", "welcomePage.tileBackground": "#1b1e28", "welcomePage.tileHoverBackground": "#303340" }, "tokenColors": [ { "scope": ["comment", "punctuation.definition.comment"], "settings": { "foreground": "#767c9dB0", "fontStyle": "italic" } }, { "scope": "meta.parameters comment.block", "settings": { "foreground": "#a6accd", "fontStyle": "italic" } }, { "scope": [ "variable.other.constant.object", "variable.other.readwrite.alias", "meta.import variable.other.readwrite" ], "settings": { "foreground": "#ADD7FF" } }, { "scope": ["variable.other", "support.type.object"], "settings": { "foreground": "#e4f0fb" } }, { "scope": [ "variable.other.object.property", "variable.other.property", "support.variable.property" ], "settings": { "foreground": "#e4f0fb" } }, { "scope": [ "entity.name.function.method", "string.unquoted", "meta.object.member" ], "settings": { "foreground": "#ADD7FF" } }, { "scope": [ "variable - meta.import", "constant.other.placeholder", "meta.object-literal.key-meta.object.member" ], "settings": { "foreground": "#e4f0fb" } }, { "scope": ["keyword.control.flow"], "settings": { "foreground": "#5DE4c7c0" } }, { "scope": ["keyword.operator.new", "keyword.control.new"], "settings": { "foreground": "#5DE4c7" } }, { "scope": [ "variable.language.this", "storage.modifier.async", "storage.modifier", "variable.language.super" ], "settings": { "foreground": "#5DE4c7" } }, { "scope": [ "support.class.error", "keyword.control.trycatch", "keyword.operator.expression.delete", "keyword.operator.expression.void", "keyword.operator.void", "keyword.operator.delete", "constant.language.null", "constant.language.boolean.false", "constant.language.undefined" ], "settings": { "foreground": "#d0679d" } }, { "scope": [ "variable.parameter", "variable.other.readwrite.js", "meta.definition.variable variable.other.constant", "meta.definition.variable variable.other.readwrite" ], "settings": { "foreground": "#e4f0fb" } }, { "scope": ["constant.other.color"], "settings": { "foreground": "#ffffff" } }, { "scope": ["invalid", "invalid.illegal"], "settings": { "foreground": "#d0679d" } }, { "scope": ["invalid.deprecated"], "settings": { "foreground": "#d0679d" } }, { "scope": ["keyword.control", "keyword"], "settings": { "foreground": "#a6accd" } }, { "scope": ["keyword.operator", "storage.type"], "settings": { "foreground": "#91B4D5" } }, { "scope": [ "keyword.control.module", "keyword.control.import", "keyword.control.export", "keyword.control.default", "meta.import", "meta.export" ], "settings": { "foreground": "#5DE4c7" } }, { "scope": ["Keyword", "Storage"], "settings": { "fontStyle": "italic" } }, { "scope": ["keyword-meta.export"], "settings": { "foreground": "#ADD7FF" } }, { "scope": ["meta.brace", "punctuation", "keyword.operator.existential"], "settings": { "foreground": "#a6accd" } }, { "scope": [ "constant.other.color", "meta.tag", "punctuation.definition.tag", "punctuation.separator.inheritance.php", "punctuation.definition.tag.html", "punctuation.definition.tag.begin.html", "punctuation.definition.tag.end.html", "punctuation.section.embedded", "keyword.other.template", "keyword.other.substitution", "meta.objectliteral" ], "settings": { "foreground": "#e4f0fb" } }, { "scope": ["support.class.component"], "settings": { "foreground": "#5DE4c7" } }, { "scope": [ "entity.name.tag", "entity.name.tag", "meta.tag.sgml", "markup.deleted.git_gutter" ], "settings": { "foreground": "#5DE4c7" } }, { "name": "Function Call", "scope": "variable.function, source meta.function-call entity.name.function, source meta.function-call entity.name.function, source meta.method-call entity.name.function, meta.class meta.group.braces.curly meta.function-call variable.function, meta.class meta.field.declaration meta.function-call entity.name.function, variable.function.constructor, meta.block meta.var.expr meta.function-call entity.name.function, support.function.console, meta.function-call support.function, meta.property.class variable.other.class, punctuation.definition.entity.css", "settings": { "foreground": "#e4f0fbd0" } }, { "name": "Function/Class Name", "scope": "entity.name.function, meta.class entity.name.class, meta.class entity.name.type.class, meta.class meta.function-call variable.function, keyword.other.important", "settings": { "foreground": "#ADD7FF" } }, { "scope": ["source.cpp meta.block variable.other"], "settings": { "foreground": "#ADD7FF" } }, { "scope": ["support.other.variable", "string.other.link"], "settings": { "foreground": "#5DE4c7" } }, { "scope": [ "constant.numeric", "support.constant", "constant.character", "constant.escape", "keyword.other.unit", "keyword.other", "string", "constant.language", "constant.other.symbol", "constant.other.key", "markup.heading", "markup.inserted.git_gutter", "meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js", "text.html.derivative" ], "settings": { "foreground": "#5DE4c7" } }, { "scope": ["entity.other.inherited-class"], "settings": { "foreground": "#ADD7FF" } }, { "scope": ["meta.type.declaration"], "settings": { "foreground": "#ADD7FF" } }, { "scope": ["entity.name.type.alias"], "settings": { "foreground": "#a6accd" } }, { "scope": ["keyword.control.as", "entity.name.type", "support.type"], "settings": { "foreground": "#a6accdC0" } }, { "scope": [ "entity.name", "support.orther.namespace.use.php", "meta.use.php", "support.other.namespace.php", "markup.changed.git_gutter", "support.type.sys-types" ], "settings": { "foreground": "#91B4D5" } }, { "scope": [ "support.class", "support.constant", "variable.other.constant.object" ], "settings": { "foreground": "#ADD7FF" } }, { "scope": [ "source.css support.type.property-name", "source.sass support.type.property-name", "source.scss support.type.property-name", "source.less support.type.property-name", "source.stylus support.type.property-name", "source.postcss support.type.property-name" ], "settings": { "foreground": "#ADD7FF" } }, { "scope": [ "entity.name.module.js", "variable.import.parameter.js", "variable.other.class.js" ], "settings": { "foreground": "#e4f0fb" } }, { "scope": ["variable.language"], "settings": { "foreground": "#ADD7FF", "fontStyle": "italic" } }, { "scope": ["entity.name.method.js"], "settings": { "foreground": "#91B4D5", "fontStyle": "italic" } }, { "scope": [ "meta.class-method.js entity.name.function.js", "variable.function.constructor" ], "settings": { "foreground": "#91B4D5" } }, { "scope": ["entity.other.attribute-name"], "settings": { "foreground": "#91B4D5", "fontStyle": "italic" } }, { "scope": [ "text.html.basic entity.other.attribute-name.html", "text.html.basic entity.other.attribute-name" ], "settings": { "foreground": "#5fb3a1", "fontStyle": "italic" } }, { "scope": ["entity.other.attribute-name.class"], "settings": { "foreground": "#5fb3a1" } }, { "scope": ["source.sass keyword.control"], "settings": { "foreground": "#42675A" } }, { "scope": ["markup.inserted"], "settings": { "foreground": "#ADD7FF" } }, { "scope": ["markup.deleted"], "settings": { "foreground": "#506477" } }, { "scope": ["markup.changed"], "settings": { "foreground": "#91B4D5" } }, { "scope": ["string.regexp"], "settings": { "foreground": "#5fb3a1" } }, { "scope": ["constant.character.escape"], "settings": { "foreground": "#5fb3a1" } }, { "scope": ["*url*", "*link*", "*uri*"], "settings": { "foreground": "#ADD7FF", "fontStyle": "underline" } }, { "scope": [ "tag.decorator.js entity.name.tag.js", "tag.decorator.js punctuation.definition.tag.js" ], "settings": { "foreground": "#42675A", "fontStyle": "italic" } }, { "scope": [ "source.js constant.other.object.key.js string.unquoted.label.js" ], "settings": { "foreground": "#5fb3a1", "fontStyle": "italic" } }, { "scope": [ "source.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#e4f0fb" } }, { "scope": [ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#ADD7FF" } }, { "scope": [ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#91B4D5" } }, { "scope": [ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#7390AA" } }, { "scope": [ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#e4f0fb" } }, { "scope": [ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#ADD7FF" } }, { "scope": [ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#91B4D5" } }, { "scope": [ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#7390AA" } }, { "scope": [ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { "foreground": "#e4f0fb" } }, { "scope": [ "text.html.markdown", "punctuation.definition.list_item.markdown" ], "settings": { "foreground": "#e4f0fb" } }, { "scope": ["text.html.markdown markup.inline.raw.markdown"], "settings": { "foreground": "#ADD7FF" } }, { "scope": [ "text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown" ], "settings": { "foreground": "#91B4D5" } }, { "scope": [ "markdown.heading", "markup.heading | markup.heading entity.name", "markup.heading.markdown punctuation.definition.heading.markdown" ], "settings": { "foreground": "#e4f0fb" } }, { "scope": ["markup.italic"], "settings": { "foreground": "#7390AA", "fontStyle": "italic" } }, { "scope": ["markup.bold", "markup.bold string"], "settings": { "foreground": "#7390AA", "fontStyle": "bold" } }, { "scope": [ "markup.bold markup.italic", "markup.italic markup.bold", "markup.quote markup.bold", "markup.bold markup.italic string", "markup.italic markup.bold string", "markup.quote markup.bold string" ], "settings": { "foreground": "#7390AA", "fontStyle": "bold" } }, { "scope": ["markup.underline"], "settings": { "foreground": "#7390AA", "fontStyle": "underline" } }, { "scope": ["markup.strike"], "settings": { "fontStyle": "italic" } }, { "scope": ["markup.quote punctuation.definition.blockquote.markdown"], "settings": { "foreground": "#5DE4c7" } }, { "scope": ["markup.quote"], "settings": { "fontStyle": "italic" } }, { "scope": ["string.other.link.title.markdown"], "settings": { "foreground": "#ADD7FF" } }, { "scope": ["string.other.link.description.title.markdown"], "settings": { "foreground": "#ADD7FF" } }, { "scope": ["constant.other.reference.link.markdown"], "settings": { "foreground": "#ADD7FF" } }, { "scope": ["markup.raw.block"], "settings": { "foreground": "#ADD7FF" } }, { "scope": ["markup.raw.block.fenced.markdown"], "settings": { "foreground": "#50647750" } }, { "scope": ["punctuation.definition.fenced.markdown"], "settings": { "foreground": "#50647750" } }, { "scope": [ "markup.raw.block.fenced.markdown", "variable.language.fenced.markdown", "punctuation.section.class.end" ], "settings": { "foreground": "#91B4D5" } }, { "scope": ["variable.language.fenced.markdown"], "settings": { "foreground": "#91B4D5" } }, { "scope": ["meta.separator"], "settings": { "foreground": "#7390AA", "fontStyle": "bold" } }, { "scope": ["markup.table"], "settings": { "foreground": "#ADD7FF" } }, { "scope": "token.info-token", "settings": { "foreground": "#89ddff" } }, { "scope": "token.warn-token", "settings": { "foreground": "#fffac2" } }, { "scope": "token.error-token", "settings": { "foreground": "#d0679d" } }, { "scope": "token.debug-token", "settings": { "foreground": "#e4f0fb" } }, { "scope": [ "entity.name.section.markdown", "markup.heading.setext.1.markdown", "markup.heading.setext.2.markdown" ], "settings": { "foreground": "#e4f0fb", "fontStyle": "bold" } }, { "scope": "meta.paragraph.markdown", "settings": { "foreground": "#e4f0fbd0" } }, { "scope": [ "punctuation.definition.from-file.diff", "meta.diff.header.from-file" ], "settings": { "foreground": "#506477" } }, { "scope": "markup.inline.raw.string.markdown", "settings": { "foreground": "#7390AA" } }, { "scope": "meta.separator.markdown", "settings": { "foreground": "#767c9d" } }, { "scope": "markup.bold.markdown", "settings": { "fontStyle": "bold" } }, { "scope": "markup.italic.markdown", "settings": { "fontStyle": "italic" } }, { "scope": [ "beginning.punctuation.definition.list.markdown", "punctuation.definition.list.begin.markdown", "markup.list.unnumbered.markdown" ], "settings": { "foreground": "#ADD7FF" } }, { "scope": [ "string.other.link.description.title.markdown punctuation.definition.string.markdown", "meta.link.inline.markdown string.other.link.description.title.markdown", "string.other.link.description.title.markdown punctuation.definition.string.begin.markdown", "string.other.link.description.title.markdown punctuation.definition.string.end.markdown", "meta.image.inline.markdown string.other.link.description.title.markdown" ], "settings": { "foreground": "#ADD7FF", "fontStyle": "" } }, { "scope": [ "meta.link.inline.markdown string.other.link.title.markdown", "meta.link.reference.markdown string.other.link.title.markdown", "meta.link.reference.def.markdown markup.underline.link.markdown" ], "settings": { "foreground": "#ADD7FF", "fontStyle": "underline" } }, { "scope": [ "markup.underline.link.markdown", "string.other.link.description.title.markdown" ], "settings": { "foreground": "#5DE4c7" } }, { "scope": ["fenced_code.block.language", "markup.inline.raw.markdown"], "settings": { "foreground": "#ADD7FF" } }, { "scope": [ "punctuation.definition.markdown", "punctuation.definition.raw.markdown", "punctuation.definition.heading.markdown", "punctuation.definition.bold.markdown", "punctuation.definition.italic.markdown" ], "settings": { "foreground": "#ADD7FF" } }, { "scope": ["source.ignore", "log.error", "log.exception"], "settings": { "foreground": "#d0679d" } }, { "scope": ["log.verbose"], "settings": { "foreground": "#a6accd" } } ] } ================================================ FILE: apps/web/src/lib/shiki/themes/rose-pine-dawn.json ================================================ { "name": "rose-pine-dawn", "type": "light", "colors": { "activityBar.activeBorder": "#575279", "activityBar.background": "#faf4ed", "activityBar.dropBorder": "#f2e9e1", "activityBar.foreground": "#575279", "activityBar.inactiveForeground": "#797593", "activityBarBadge.background": "#d7827e", "activityBarBadge.foreground": "#faf4ed", "badge.background": "#d7827e", "badge.foreground": "#faf4ed", "banner.background": "#fffaf3", "banner.foreground": "#575279", "banner.iconForeground": "#797593", "breadcrumb.activeSelectionForeground": "#d7827e", "breadcrumb.background": "#faf4ed", "breadcrumb.focusForeground": "#797593", "breadcrumb.foreground": "#9893a5", "breadcrumbPicker.background": "#fffaf3", "button.background": "#d7827e", "button.foreground": "#faf4ed", "button.hoverBackground": "#d7827ee6", "button.secondaryBackground": "#fffaf3", "button.secondaryForeground": "#575279", "button.secondaryHoverBackground": "#f2e9e1", "charts.blue": "#56949f", "charts.foreground": "#575279", "charts.green": "#286983", "charts.lines": "#797593", "charts.orange": "#d7827e", "charts.purple": "#907aa9", "charts.red": "#b4637a", "charts.yellow": "#ea9d34", "checkbox.background": "#fffaf3", "checkbox.border": "#6e6a8614", "checkbox.foreground": "#575279", "debugExceptionWidget.background": "#fffaf3", "debugExceptionWidget.border": "#6e6a8614", "debugIcon.breakpointCurrentStackframeForeground": "#797593", "debugIcon.breakpointDisabledForeground": "#797593", "debugIcon.breakpointForeground": "#797593", "debugIcon.breakpointStackframeForeground": "#797593", "debugIcon.breakpointUnverifiedForeground": "#797593", "debugIcon.continueForeground": "#797593", "debugIcon.disconnectForeground": "#797593", "debugIcon.pauseForeground": "#797593", "debugIcon.restartForeground": "#797593", "debugIcon.startForeground": "#797593", "debugIcon.stepBackForeground": "#797593", "debugIcon.stepIntoForeground": "#797593", "debugIcon.stepOutForeground": "#797593", "debugIcon.stepOverForeground": "#797593", "debugIcon.stopForeground": "#b4637a", "debugToolBar.background": "#fffaf3", "debugToolBar.border": "#f2e9e1", "descriptionForeground": "#797593", "diffEditor.border": "#f2e9e1", "diffEditor.diagonalFill": "#6e6a8626", "diffEditor.insertedTextBackground": "#56949f26", "diffEditor.removedTextBackground": "#b4637a26", "diffEditorOverview.insertedForeground": "#56949f80", "diffEditorOverview.removedForeground": "#b4637a80", "dropdown.background": "#fffaf3", "dropdown.border": "#6e6a8614", "dropdown.foreground": "#575279", "dropdown.listBackground": "#fffaf3", "editor.background": "#faf4ed", "editor.findMatchBackground": "#6e6a8626", "editor.findMatchHighlightBackground": "#6e6a8626", "editor.findRangeHighlightBackground": "#6e6a8626", "editor.findRangeHighlightBorder": "#0000", "editor.focusedStackFrameHighlightBackground": "#6e6a8614", "editor.foldBackground": "#fffaf3", "editor.foreground": "#575279", "editor.hoverHighlightBackground": "#0000", "editor.inactiveSelectionBackground": "#6e6a860d", "editor.inlineValuesBackground": "#0000", "editor.inlineValuesForeground": "#797593", "editor.lineHighlightBackground": "#6e6a860d", "editor.lineHighlightBorder": "#0000", "editor.linkedEditingBackground": "#fffaf3", "editor.rangeHighlightBackground": "#6e6a860d", "editor.rangeHighlightBorder": "#0000", "editor.selectionBackground": "#6e6a8614", "editor.selectionForeground": "#575279", "editor.selectionHighlightBackground": "#6e6a8614", "editor.selectionHighlightBorder": "#0000", "editor.snippetFinalTabstopHighlightBackground": "#6e6a8614", "editor.snippetFinalTabstopHighlightBorder": "#fffaf3", "editor.snippetTabstopHighlightBackground": "#6e6a8614", "editor.snippetTabstopHighlightBorder": "#fffaf3", "editor.stackFrameHighlightBackground": "#6e6a8614", "editor.symbolHighlightBackground": "#6e6a8614", "editor.symbolHighlightBorder": "#0000", "editor.wordHighlightBackground": "#6e6a8614", "editor.wordHighlightBorder": "#0000", "editor.wordHighlightStrongBackground": "#6e6a8614", "editor.wordHighlightStrongBorder": "#6e6a8614", "editorBracketHighlight.foreground1": "#b4637a80", "editorBracketHighlight.foreground2": "#28698380", "editorBracketHighlight.foreground3": "#ea9d3480", "editorBracketHighlight.foreground4": "#56949f80", "editorBracketHighlight.foreground5": "#d7827e80", "editorBracketHighlight.foreground6": "#907aa980", "editorBracketMatch.background": "#0000", "editorBracketMatch.border": "#797593", "editorBracketPairGuide.activeBackground1": "#286983", "editorBracketPairGuide.activeBackground2": "#d7827e", "editorBracketPairGuide.activeBackground3": "#907aa9", "editorBracketPairGuide.activeBackground4": "#56949f", "editorBracketPairGuide.activeBackground5": "#ea9d34", "editorBracketPairGuide.activeBackground6": "#b4637a", "editorBracketPairGuide.background1": "#28698380", "editorBracketPairGuide.background2": "#d7827e80", "editorBracketPairGuide.background3": "#907aa980", "editorBracketPairGuide.background4": "#56949f80", "editorBracketPairGuide.background5": "#ea9d3480", "editorBracketPairGuide.background6": "#b4637a80", "editorCodeLens.foreground": "#d7827e", "editorCursor.background": "#575279", "editorCursor.foreground": "#9893a5", "editorError.border": "#0000", "editorError.foreground": "#b4637a", "editorGhostText.foreground": "#797593", "editorGroup.border": "#0000", "editorGroup.dropBackground": "#fffaf3", "editorGroup.emptyBackground": "#0000", "editorGroup.focusedEmptyBorder": "#0000", "editorGroupHeader.noTabsBackground": "#0000", "editorGroupHeader.tabsBackground": "#0000", "editorGroupHeader.tabsBorder": "#0000", "editorGutter.addedBackground": "#56949f", "editorGutter.background": "#0000", "editorGutter.commentRangeForeground": "#797593", "editorGutter.deletedBackground": "#b4637a", "editorGutter.foldingControlForeground": "#907aa9", "editorGutter.modifiedBackground": "#d7827e", "editorHint.border": "#0000", "editorHint.foreground": "#797593", "editorHoverWidget.background": "#fffaf3", "editorHoverWidget.border": "#9893a580", "editorHoverWidget.foreground": "#797593", "editorHoverWidget.highlightForeground": "#575279", "editorHoverWidget.statusBarBackground": "#0000", "editorIndentGuide.activeBackground": "#9893a5", "editorIndentGuide.background": "#6e6a8626", "editorInfo.border": "#f2e9e1", "editorInfo.foreground": "#56949f", "editorInlayHint.background": "#f2e9e1", "editorInlayHint.foreground": "#797593", "editorInlayHint.parameterBackground": "#f2e9e1", "editorInlayHint.parameterForeground": "#907aa9", "editorInlayHint.typeBackground": "#f2e9e1", "editorInlayHint.typeForeground": "#56949f", "editorLightBulb.foreground": "#286983", "editorLightBulbAutoFix.foreground": "#d7827e", "editorLineNumber.activeForeground": "#575279", "editorLineNumber.foreground": "#797593", "editorLink.activeForeground": "#d7827e", "editorMarkerNavigation.background": "#fffaf3", "editorMarkerNavigationError.background": "#fffaf3", "editorMarkerNavigationInfo.background": "#fffaf3", "editorMarkerNavigationWarning.background": "#fffaf3", "editorOverviewRuler.addedForeground": "#56949f80", "editorOverviewRuler.background": "#faf4ed", "editorOverviewRuler.border": "#6e6a8626", "editorOverviewRuler.bracketMatchForeground": "#797593", "editorOverviewRuler.commonContentForeground": "#6e6a860d", "editorOverviewRuler.currentContentForeground": "#6e6a8614", "editorOverviewRuler.deletedForeground": "#b4637a80", "editorOverviewRuler.errorForeground": "#b4637a80", "editorOverviewRuler.findMatchForeground": "#6e6a8626", "editorOverviewRuler.incomingContentForeground": "#907aa980", "editorOverviewRuler.infoForeground": "#56949f80", "editorOverviewRuler.modifiedForeground": "#d7827e80", "editorOverviewRuler.rangeHighlightForeground": "#6e6a8626", "editorOverviewRuler.selectionHighlightForeground": "#6e6a8626", "editorOverviewRuler.warningForeground": "#ea9d3480", "editorOverviewRuler.wordHighlightForeground": "#6e6a8614", "editorOverviewRuler.wordHighlightStrongForeground": "#6e6a8626", "editorPane.background": "#0000", "editorRuler.foreground": "#6e6a8626", "editorSuggestWidget.background": "#fffaf3", "editorSuggestWidget.border": "#0000", "editorSuggestWidget.focusHighlightForeground": "#d7827e", "editorSuggestWidget.foreground": "#797593", "editorSuggestWidget.highlightForeground": "#d7827e", "editorSuggestWidget.selectedBackground": "#6e6a8614", "editorSuggestWidget.selectedForeground": "#575279", "editorSuggestWidget.selectedIconForeground": "#575279", "editorUnnecessaryCode.border": "#0000", "editorUnnecessaryCode.opacity": "#00000080", "editorWarning.border": "#0000", "editorWarning.foreground": "#ea9d34", "editorWhitespace.foreground": "#9893a5", "editorWidget.background": "#fffaf3", "editorWidget.border": "#f2e9e1", "editorWidget.foreground": "#797593", "editorWidget.resizeBorder": "#9893a5", "errorForeground": "#b4637a", "extensionBadge.remoteBackground": "#907aa9", "extensionBadge.remoteForeground": "#faf4ed", "extensionButton.prominentBackground": "#d7827e", "extensionButton.prominentForeground": "#faf4ed", "extensionButton.prominentHoverBackground": "#d7827ee6", "extensionIcon.starForeground": "#d7827e", "extensionIcon.verifiedForeground": "#907aa9", "focusBorder": "#6e6a8614", "foreground": "#575279", "gitDecoration.addedResourceForeground": "#56949f", "gitDecoration.conflictingResourceForeground": "#b4637a", "gitDecoration.deletedResourceForeground": "#797593", "gitDecoration.ignoredResourceForeground": "#9893a5", "gitDecoration.modifiedResourceForeground": "#d7827e", "gitDecoration.renamedResourceForeground": "#286983", "gitDecoration.stageDeletedResourceForeground": "#b4637a", "gitDecoration.stageModifiedResourceForeground": "#907aa9", "gitDecoration.submoduleResourceForeground": "#ea9d34", "gitDecoration.untrackedResourceForeground": "#ea9d34", "icon.foreground": "#797593", "input.background": "#f2e9e180", "input.border": "#6e6a8614", "input.foreground": "#575279", "input.placeholderForeground": "#797593", "inputOption.activeBackground": "#d7827e", "inputOption.activeBorder": "#0000", "inputOption.activeForeground": "#faf4ed", "inputValidation.errorBackground": "#fffaf3", "inputValidation.errorBorder": "#6e6a8626", "inputValidation.errorForeground": "#b4637a", "inputValidation.infoBackground": "#fffaf3", "inputValidation.infoBorder": "#6e6a8626", "inputValidation.infoForeground": "#56949f", "inputValidation.warningBackground": "#fffaf3", "inputValidation.warningBorder": "#6e6a8626", "inputValidation.warningForeground": "#56949f80", "keybindingLabel.background": "#f2e9e1", "keybindingLabel.border": "#6e6a8626", "keybindingLabel.bottomBorder": "#6e6a8626", "keybindingLabel.foreground": "#907aa9", "keybindingTable.headerBackground": "#f2e9e1", "keybindingTable.rowsBackground": "#fffaf3", "list.activeSelectionBackground": "#6e6a8614", "list.activeSelectionForeground": "#575279", "list.activeSelectionIconForeground": "#575279", "list.deemphasizedForeground": "#797593", "list.dropBackground": "#fffaf3", "list.errorForeground": "#b4637a", "list.filterMatchBackground": "#fffaf3", "list.filterMatchBorder": "#d7827e", "list.focusBackground": "#6e6a8626", "list.focusForeground": "#575279", "list.focusOutline": "#6e6a8614", "list.highlightForeground": "#d7827e", "list.hoverBackground": "#6e6a860d", "list.hoverForeground": "#575279", "list.inactiveFocusBackground": "#6e6a860d", "list.inactiveSelectionBackground": "#fffaf3", "list.inactiveSelectionForeground": "#575279", "list.inactiveSelectionIconForeground": "#797593", "list.invalidItemForeground": "#b4637a", "list.warningForeground": "#ea9d34", "listFilterWidget.background": "#fffaf3", "listFilterWidget.noMatchesOutline": "#b4637a", "listFilterWidget.outline": "#f2e9e1", "menu.background": "#fffaf3", "menu.border": "#6e6a860d", "menu.foreground": "#575279", "menu.selectionBackground": "#6e6a8614", "menu.selectionBorder": "#f2e9e1", "menu.selectionForeground": "#575279", "menu.separatorBackground": "#6e6a8626", "menubar.selectionBackground": "#6e6a8614", "menubar.selectionBorder": "#6e6a860d", "menubar.selectionForeground": "#575279", "merge.border": "#f2e9e1", "merge.commonContentBackground": "#6e6a8614", "merge.commonHeaderBackground": "#6e6a8614", "merge.currentContentBackground": "#ea9d3480", "merge.currentHeaderBackground": "#ea9d3480", "merge.incomingContentBackground": "#56949f80", "merge.incomingHeaderBackground": "#56949f80", "minimap.background": "#fffaf3", "minimap.errorHighlight": "#b4637a80", "minimap.findMatchHighlight": "#6e6a8614", "minimap.selectionHighlight": "#6e6a8614", "minimap.warningHighlight": "#ea9d3480", "minimapGutter.addedBackground": "#56949f", "minimapGutter.deletedBackground": "#b4637a", "minimapGutter.modifiedBackground": "#d7827e", "minimapSlider.activeBackground": "#6e6a8626", "minimapSlider.background": "#6e6a8614", "minimapSlider.hoverBackground": "#6e6a8614", "notificationCenter.border": "#6e6a8614", "notificationCenterHeader.background": "#fffaf3", "notificationCenterHeader.foreground": "#797593", "notificationLink.foreground": "#907aa9", "notifications.background": "#fffaf3", "notifications.border": "#6e6a8614", "notifications.foreground": "#575279", "notificationsErrorIcon.foreground": "#b4637a", "notificationsInfoIcon.foreground": "#56949f", "notificationsWarningIcon.foreground": "#ea9d34", "notificationToast.border": "#6e6a8614", "panel.background": "#fffaf3", "panel.border": "#0000", "panel.dropBorder": "#f2e9e1", "panelInput.border": "#fffaf3", "panelSection.dropBackground": "#6e6a8614", "panelSectionHeader.background": "#fffaf3", "panelSectionHeader.foreground": "#575279", "panelTitle.activeBorder": "#6e6a8626", "panelTitle.activeForeground": "#575279", "panelTitle.inactiveForeground": "#797593", "peekView.border": "#f2e9e1", "peekViewEditor.background": "#fffaf3", "peekViewEditor.matchHighlightBackground": "#6e6a8626", "peekViewResult.background": "#fffaf3", "peekViewResult.fileForeground": "#797593", "peekViewResult.lineForeground": "#797593", "peekViewResult.matchHighlightBackground": "#6e6a8626", "peekViewResult.selectionBackground": "#6e6a8614", "peekViewResult.selectionForeground": "#575279", "peekViewTitle.background": "#f2e9e1", "peekViewTitleDescription.foreground": "#797593", "pickerGroup.border": "#6e6a8626", "pickerGroup.foreground": "#907aa9", "ports.iconRunningProcessForeground": "#d7827e", "problemsErrorIcon.foreground": "#b4637a", "problemsInfoIcon.foreground": "#56949f", "problemsWarningIcon.foreground": "#ea9d34", "progressBar.background": "#d7827e", "quickInput.background": "#fffaf3", "quickInput.foreground": "#797593", "quickInputList.focusBackground": "#6e6a8614", "quickInputList.focusForeground": "#575279", "quickInputList.focusIconForeground": "#575279", "scrollbar.shadow": "#0000", "scrollbarSlider.activeBackground": "#28698380", "scrollbarSlider.background": "#6e6a8614", "scrollbarSlider.hoverBackground": "#6e6a8626", "searchEditor.findMatchBackground": "#6e6a8614", "selection.background": "#6e6a8626", "settings.focusedRowBackground": "#fffaf3", "settings.headerForeground": "#575279", "settings.modifiedItemIndicator": "#d7827e", "settings.focusedRowBorder": "#6e6a8614", "settings.rowHoverBackground": "#fffaf3", "sideBar.background": "#faf4ed", "sideBar.dropBackground": "#fffaf3", "sideBar.foreground": "#797593", "sideBarSectionHeader.background": "#0000", "sideBarSectionHeader.border": "#6e6a8614", "statusBar.background": "#faf4ed", "statusBar.debuggingBackground": "#907aa9", "statusBar.debuggingForeground": "#faf4ed", "statusBar.foreground": "#797593", "statusBar.noFolderBackground": "#faf4ed", "statusBar.noFolderForeground": "#797593", "statusBarItem.activeBackground": "#6e6a8626", "statusBarItem.hoverBackground": "#6e6a8614", "statusBarItem.prominentBackground": "#f2e9e1", "statusBarItem.prominentForeground": "#575279", "statusBarItem.prominentHoverBackground": "#6e6a8614", "statusBarItem.remoteBackground": "#faf4ed", "statusBarItem.remoteForeground": "#ea9d34", "statusBarItem.errorBackground": "#faf4ed", "statusBarItem.errorForeground": "#b4637a", "symbolIcon.arrayForeground": "#797593", "symbolIcon.classForeground": "#797593", "symbolIcon.colorForeground": "#797593", "symbolIcon.constantForeground": "#797593", "symbolIcon.constructorForeground": "#797593", "symbolIcon.enumeratorForeground": "#797593", "symbolIcon.enumeratorMemberForeground": "#797593", "symbolIcon.eventForeground": "#797593", "symbolIcon.fieldForeground": "#797593", "symbolIcon.fileForeground": "#797593", "symbolIcon.folderForeground": "#797593", "symbolIcon.functionForeground": "#797593", "symbolIcon.interfaceForeground": "#797593", "symbolIcon.keyForeground": "#797593", "symbolIcon.keywordForeground": "#797593", "symbolIcon.methodForeground": "#797593", "symbolIcon.moduleForeground": "#797593", "symbolIcon.namespaceForeground": "#797593", "symbolIcon.nullForeground": "#797593", "symbolIcon.numberForeground": "#797593", "symbolIcon.objectForeground": "#797593", "symbolIcon.operatorForeground": "#797593", "symbolIcon.packageForeground": "#797593", "symbolIcon.propertyForeground": "#797593", "symbolIcon.referenceForeground": "#797593", "symbolIcon.snippetForeground": "#797593", "symbolIcon.stringForeground": "#797593", "symbolIcon.structForeground": "#797593", "symbolIcon.textForeground": "#797593", "symbolIcon.typeParameterForeground": "#797593", "symbolIcon.unitForeground": "#797593", "symbolIcon.variableForeground": "#797593", "tab.activeBackground": "#6e6a860d", "tab.activeForeground": "#575279", "tab.activeModifiedBorder": "#56949f", "tab.border": "#0000", "tab.hoverBackground": "#6e6a8614", "tab.inactiveBackground": "#0000", "tab.inactiveForeground": "#797593", "tab.inactiveModifiedBorder": "#56949f80", "tab.lastPinnedBorder": "#9893a5", "tab.unfocusedActiveBackground": "#0000", "tab.unfocusedHoverBackground": "#0000", "tab.unfocusedInactiveBackground": "#0000", "tab.unfocusedInactiveModifiedBorder": "#56949f80", "terminal.ansiBlack": "#f2e9e1", "terminal.ansiBlue": "#56949f", "terminal.ansiBrightBlack": "#797593", "terminal.ansiBrightBlue": "#56949f", "terminal.ansiBrightCyan": "#d7827e", "terminal.ansiBrightGreen": "#286983", "terminal.ansiBrightMagenta": "#907aa9", "terminal.ansiBrightRed": "#b4637a", "terminal.ansiBrightWhite": "#575279", "terminal.ansiBrightYellow": "#ea9d34", "terminal.ansiCyan": "#d7827e", "terminal.ansiGreen": "#286983", "terminal.ansiMagenta": "#907aa9", "terminal.ansiRed": "#b4637a", "terminal.ansiWhite": "#575279", "terminal.ansiYellow": "#ea9d34", "terminal.dropBackground": "#6e6a8614", "terminal.foreground": "#575279", "terminal.selectionBackground": "#6e6a8614", "terminal.tab.activeBorder": "#575279", "terminalCursor.background": "#575279", "terminalCursor.foreground": "#9893a5", "textBlockQuote.background": "#fffaf3", "textBlockQuote.border": "#6e6a8614", "textCodeBlock.background": "#fffaf3", "textLink.activeForeground": "#907aa9e6", "textLink.foreground": "#907aa9", "textPreformat.foreground": "#ea9d34", "textSeparator.foreground": "#797593", "titleBar.activeBackground": "#faf4ed", "titleBar.activeForeground": "#797593", "titleBar.inactiveBackground": "#fffaf3", "titleBar.inactiveForeground": "#797593", "toolbar.activeBackground": "#6e6a8626", "toolbar.hoverBackground": "#6e6a8614", "tree.indentGuidesStroke": "#797593", "walkThrough.embeddedEditorBackground": "#faf4ed", "welcomePage.background": "#faf4ed", "welcomePage.buttonBackground": "#fffaf3", "welcomePage.buttonHoverBackground": "#f2e9e1", "widget.shadow": "#f2e9de4d", "window.activeBorder": "#fffaf3", "window.inactiveBorder": "#fffaf3" }, "tokenColors": [ { "scope": ["comment"], "settings": { "foreground": "#9893a5", "fontStyle": "italic" } }, { "scope": ["constant"], "settings": { "foreground": "#286983" } }, { "scope": [ "constant.numeric", "constant.language", "constant.charcter.escape" ], "settings": { "foreground": "#d7827e" } }, { "scope": ["entity.name"], "settings": { "foreground": "#d7827e" } }, { "scope": [ "entity.name.section", "entity.name.tag", "entity.name.namespace", "entity.name.type" ], "settings": { "foreground": "#56949f" } }, { "scope": ["entity.other.attribute-name", "entity.other.inherited-class"], "settings": { "foreground": "#907aa9", "fontStyle": "italic" } }, { "scope": ["invalid"], "settings": { "foreground": "#b4637a" } }, { "scope": ["invalid.deprecated"], "settings": { "foreground": "#797593" } }, { "scope": ["keyword"], "settings": { "foreground": "#286983" } }, { "scope": ["markup.inserted.diff"], "settings": { "foreground": "#56949f" } }, { "scope": ["markup.deleted.diff"], "settings": { "foreground": "#b4637a" } }, { "scope": ["meta.diff.range"], "settings": { "foreground": "#907aa9" } }, { "scope": ["meta.tag", "meta.brace"], "settings": { "foreground": "#575279" } }, { "scope": ["meta.import", "meta.export"], "settings": { "foreground": "#286983" } }, { "scope": "meta.directive.vue", "settings": { "foreground": "#907aa9", "fontStyle": "italic" } }, { "scope": "meta.property-name.css", "settings": { "foreground": "#56949f" } }, { "scope": "meta.property-value.css", "settings": { "foreground": "#ea9d34" } }, { "scope": "meta.tag.other.html", "settings": { "foreground": "#797593" } }, { "scope": ["punctuation"], "settings": { "foreground": "#797593" } }, { "scope": ["punctuation.accessor"], "settings": { "foreground": "#286983" } }, { "scope": ["punctuation.definition.string"], "settings": { "foreground": "#ea9d34" } }, { "scope": ["punctuation.definition.tag"], "settings": { "foreground": "#9893a5" } }, { "scope": ["storage.type", "storage.modifier"], "settings": { "foreground": "#286983" } }, { "scope": ["string"], "settings": { "foreground": "#ea9d34" } }, { "scope": ["support"], "settings": { "foreground": "#56949f" } }, { "scope": ["support.constant"], "settings": { "foreground": "#ea9d34" } }, { "scope": ["support.function"], "settings": { "foreground": "#b4637a", "fontStyle": "italic" } }, { "scope": ["variable"], "settings": { "foreground": "#d7827e", "fontStyle": "italic" } }, { "scope": [ "variable.other", "variable.language", "variable.function", "variable.argument" ], "settings": { "foreground": "#575279" } }, { "scope": ["variable.parameter"], "settings": { "foreground": "#907aa9" } } ] } ================================================ FILE: apps/web/src/lib/shiki/themes/rose-pine-moon.json ================================================ { "name": "rose-pine-moon", "type": "dark", "colors": { "activityBar.activeBorder": "#e0def4", "activityBar.background": "#232136", "activityBar.dropBorder": "#393552", "activityBar.foreground": "#e0def4", "activityBar.inactiveForeground": "#908caa", "activityBarBadge.background": "#ea9a97", "activityBarBadge.foreground": "#232136", "badge.background": "#ea9a97", "badge.foreground": "#232136", "banner.background": "#2a273f", "banner.foreground": "#e0def4", "banner.iconForeground": "#908caa", "breadcrumb.activeSelectionForeground": "#ea9a97", "breadcrumb.background": "#232136", "breadcrumb.focusForeground": "#908caa", "breadcrumb.foreground": "#6e6a86", "breadcrumbPicker.background": "#2a273f", "button.background": "#ea9a97", "button.foreground": "#232136", "button.hoverBackground": "#ea9a97e6", "button.secondaryBackground": "#2a273f", "button.secondaryForeground": "#e0def4", "button.secondaryHoverBackground": "#393552", "charts.blue": "#9ccfd8", "charts.foreground": "#e0def4", "charts.green": "#3e8fb0", "charts.lines": "#908caa", "charts.orange": "#ea9a97", "charts.purple": "#c4a7e7", "charts.red": "#eb6f92", "charts.yellow": "#f6c177", "checkbox.background": "#2a273f", "checkbox.border": "#817c9c26", "checkbox.foreground": "#e0def4", "debugExceptionWidget.background": "#2a273f", "debugExceptionWidget.border": "#817c9c26", "debugIcon.breakpointCurrentStackframeForeground": "#908caa", "debugIcon.breakpointDisabledForeground": "#908caa", "debugIcon.breakpointForeground": "#908caa", "debugIcon.breakpointStackframeForeground": "#908caa", "debugIcon.breakpointUnverifiedForeground": "#908caa", "debugIcon.continueForeground": "#908caa", "debugIcon.disconnectForeground": "#908caa", "debugIcon.pauseForeground": "#908caa", "debugIcon.restartForeground": "#908caa", "debugIcon.startForeground": "#908caa", "debugIcon.stepBackForeground": "#908caa", "debugIcon.stepIntoForeground": "#908caa", "debugIcon.stepOutForeground": "#908caa", "debugIcon.stepOverForeground": "#908caa", "debugIcon.stopForeground": "#eb6f92", "debugToolBar.background": "#2a273f", "debugToolBar.border": "#393552", "descriptionForeground": "#908caa", "diffEditor.border": "#393552", "diffEditor.diagonalFill": "#817c9c4d", "diffEditor.insertedTextBackground": "#9ccfd826", "diffEditor.removedTextBackground": "#eb6f9226", "diffEditorOverview.insertedForeground": "#9ccfd880", "diffEditorOverview.removedForeground": "#eb6f9280", "dropdown.background": "#2a273f", "dropdown.border": "#817c9c26", "dropdown.foreground": "#e0def4", "dropdown.listBackground": "#2a273f", "editor.background": "#232136", "editor.findMatchBackground": "#817c9c4d", "editor.findMatchHighlightBackground": "#817c9c4d", "editor.findRangeHighlightBackground": "#817c9c4d", "editor.findRangeHighlightBorder": "#0000", "editor.focusedStackFrameHighlightBackground": "#817c9c26", "editor.foldBackground": "#2a273f", "editor.foreground": "#e0def4", "editor.hoverHighlightBackground": "#0000", "editor.inactiveSelectionBackground": "#817c9c14", "editor.inlineValuesBackground": "#0000", "editor.inlineValuesForeground": "#908caa", "editor.lineHighlightBackground": "#817c9c14", "editor.lineHighlightBorder": "#0000", "editor.linkedEditingBackground": "#2a273f", "editor.rangeHighlightBackground": "#817c9c14", "editor.rangeHighlightBorder": "#0000", "editor.selectionBackground": "#817c9c26", "editor.selectionForeground": "#e0def4", "editor.selectionHighlightBackground": "#817c9c26", "editor.selectionHighlightBorder": "#0000", "editor.snippetFinalTabstopHighlightBackground": "#817c9c26", "editor.snippetFinalTabstopHighlightBorder": "#2a273f", "editor.snippetTabstopHighlightBackground": "#817c9c26", "editor.snippetTabstopHighlightBorder": "#2a273f", "editor.stackFrameHighlightBackground": "#817c9c26", "editor.symbolHighlightBackground": "#817c9c26", "editor.symbolHighlightBorder": "#0000", "editor.wordHighlightBackground": "#817c9c26", "editor.wordHighlightBorder": "#0000", "editor.wordHighlightStrongBackground": "#817c9c26", "editor.wordHighlightStrongBorder": "#817c9c26", "editorBracketHighlight.foreground1": "#eb6f9280", "editorBracketHighlight.foreground2": "#3e8fb080", "editorBracketHighlight.foreground3": "#f6c17780", "editorBracketHighlight.foreground4": "#9ccfd880", "editorBracketHighlight.foreground5": "#ea9a9780", "editorBracketHighlight.foreground6": "#c4a7e780", "editorBracketMatch.background": "#0000", "editorBracketMatch.border": "#908caa", "editorBracketPairGuide.activeBackground1": "#3e8fb0", "editorBracketPairGuide.activeBackground2": "#ea9a97", "editorBracketPairGuide.activeBackground3": "#c4a7e7", "editorBracketPairGuide.activeBackground4": "#9ccfd8", "editorBracketPairGuide.activeBackground5": "#f6c177", "editorBracketPairGuide.activeBackground6": "#eb6f92", "editorBracketPairGuide.background1": "#3e8fb080", "editorBracketPairGuide.background2": "#ea9a9780", "editorBracketPairGuide.background3": "#c4a7e780", "editorBracketPairGuide.background4": "#9ccfd880", "editorBracketPairGuide.background5": "#f6c17780", "editorBracketPairGuide.background6": "#eb6f9280", "editorCodeLens.foreground": "#ea9a97", "editorCursor.background": "#e0def4", "editorCursor.foreground": "#6e6a86", "editorError.border": "#0000", "editorError.foreground": "#eb6f92", "editorGhostText.foreground": "#908caa", "editorGroup.border": "#0000", "editorGroup.dropBackground": "#2a273f", "editorGroup.emptyBackground": "#0000", "editorGroup.focusedEmptyBorder": "#0000", "editorGroupHeader.noTabsBackground": "#0000", "editorGroupHeader.tabsBackground": "#0000", "editorGroupHeader.tabsBorder": "#0000", "editorGutter.addedBackground": "#9ccfd8", "editorGutter.background": "#0000", "editorGutter.commentRangeForeground": "#908caa", "editorGutter.deletedBackground": "#eb6f92", "editorGutter.foldingControlForeground": "#c4a7e7", "editorGutter.modifiedBackground": "#ea9a97", "editorHint.border": "#0000", "editorHint.foreground": "#908caa", "editorHoverWidget.background": "#2a273f", "editorHoverWidget.border": "#6e6a8680", "editorHoverWidget.foreground": "#908caa", "editorHoverWidget.highlightForeground": "#e0def4", "editorHoverWidget.statusBarBackground": "#0000", "editorIndentGuide.activeBackground": "#6e6a86", "editorIndentGuide.background": "#817c9c4d", "editorInfo.border": "#393552", "editorInfo.foreground": "#9ccfd8", "editorInlayHint.background": "#393552", "editorInlayHint.foreground": "#908caa", "editorInlayHint.parameterBackground": "#393552", "editorInlayHint.parameterForeground": "#c4a7e7", "editorInlayHint.typeBackground": "#393552", "editorInlayHint.typeForeground": "#9ccfd8", "editorLightBulb.foreground": "#3e8fb0", "editorLightBulbAutoFix.foreground": "#ea9a97", "editorLineNumber.activeForeground": "#e0def4", "editorLineNumber.foreground": "#908caa", "editorLink.activeForeground": "#ea9a97", "editorMarkerNavigation.background": "#2a273f", "editorMarkerNavigationError.background": "#2a273f", "editorMarkerNavigationInfo.background": "#2a273f", "editorMarkerNavigationWarning.background": "#2a273f", "editorOverviewRuler.addedForeground": "#9ccfd880", "editorOverviewRuler.background": "#232136", "editorOverviewRuler.border": "#817c9c4d", "editorOverviewRuler.bracketMatchForeground": "#908caa", "editorOverviewRuler.commonContentForeground": "#817c9c14", "editorOverviewRuler.currentContentForeground": "#817c9c26", "editorOverviewRuler.deletedForeground": "#eb6f9280", "editorOverviewRuler.errorForeground": "#eb6f9280", "editorOverviewRuler.findMatchForeground": "#817c9c4d", "editorOverviewRuler.incomingContentForeground": "#c4a7e780", "editorOverviewRuler.infoForeground": "#9ccfd880", "editorOverviewRuler.modifiedForeground": "#ea9a9780", "editorOverviewRuler.rangeHighlightForeground": "#817c9c4d", "editorOverviewRuler.selectionHighlightForeground": "#817c9c4d", "editorOverviewRuler.warningForeground": "#f6c17780", "editorOverviewRuler.wordHighlightForeground": "#817c9c26", "editorOverviewRuler.wordHighlightStrongForeground": "#817c9c4d", "editorPane.background": "#0000", "editorRuler.foreground": "#817c9c4d", "editorSuggestWidget.background": "#2a273f", "editorSuggestWidget.border": "#0000", "editorSuggestWidget.focusHighlightForeground": "#ea9a97", "editorSuggestWidget.foreground": "#908caa", "editorSuggestWidget.highlightForeground": "#ea9a97", "editorSuggestWidget.selectedBackground": "#817c9c26", "editorSuggestWidget.selectedForeground": "#e0def4", "editorSuggestWidget.selectedIconForeground": "#e0def4", "editorUnnecessaryCode.border": "#0000", "editorUnnecessaryCode.opacity": "#00000080", "editorWarning.border": "#0000", "editorWarning.foreground": "#f6c177", "editorWhitespace.foreground": "#6e6a86", "editorWidget.background": "#2a273f", "editorWidget.border": "#393552", "editorWidget.foreground": "#908caa", "editorWidget.resizeBorder": "#6e6a86", "errorForeground": "#eb6f92", "extensionBadge.remoteBackground": "#c4a7e7", "extensionBadge.remoteForeground": "#232136", "extensionButton.prominentBackground": "#ea9a97", "extensionButton.prominentForeground": "#232136", "extensionButton.prominentHoverBackground": "#ea9a97e6", "extensionIcon.starForeground": "#ea9a97", "extensionIcon.verifiedForeground": "#c4a7e7", "focusBorder": "#817c9c26", "foreground": "#e0def4", "gitDecoration.addedResourceForeground": "#9ccfd8", "gitDecoration.conflictingResourceForeground": "#eb6f92", "gitDecoration.deletedResourceForeground": "#908caa", "gitDecoration.ignoredResourceForeground": "#6e6a86", "gitDecoration.modifiedResourceForeground": "#ea9a97", "gitDecoration.renamedResourceForeground": "#3e8fb0", "gitDecoration.stageDeletedResourceForeground": "#eb6f92", "gitDecoration.stageModifiedResourceForeground": "#c4a7e7", "gitDecoration.submoduleResourceForeground": "#f6c177", "gitDecoration.untrackedResourceForeground": "#f6c177", "icon.foreground": "#908caa", "input.background": "#39355280", "input.border": "#817c9c26", "input.foreground": "#e0def4", "input.placeholderForeground": "#908caa", "inputOption.activeBackground": "#ea9a97", "inputOption.activeBorder": "#0000", "inputOption.activeForeground": "#232136", "inputValidation.errorBackground": "#2a273f", "inputValidation.errorBorder": "#817c9c4d", "inputValidation.errorForeground": "#eb6f92", "inputValidation.infoBackground": "#2a273f", "inputValidation.infoBorder": "#817c9c4d", "inputValidation.infoForeground": "#9ccfd8", "inputValidation.warningBackground": "#2a273f", "inputValidation.warningBorder": "#817c9c4d", "inputValidation.warningForeground": "#9ccfd880", "keybindingLabel.background": "#393552", "keybindingLabel.border": "#817c9c4d", "keybindingLabel.bottomBorder": "#817c9c4d", "keybindingLabel.foreground": "#c4a7e7", "keybindingTable.headerBackground": "#393552", "keybindingTable.rowsBackground": "#2a273f", "list.activeSelectionBackground": "#817c9c26", "list.activeSelectionForeground": "#e0def4", "list.activeSelectionIconForeground": "#e0def4", "list.deemphasizedForeground": "#908caa", "list.dropBackground": "#2a273f", "list.errorForeground": "#eb6f92", "list.filterMatchBackground": "#2a273f", "list.filterMatchBorder": "#ea9a97", "list.focusBackground": "#817c9c4d", "list.focusForeground": "#e0def4", "list.focusOutline": "#817c9c26", "list.highlightForeground": "#ea9a97", "list.hoverBackground": "#817c9c14", "list.hoverForeground": "#e0def4", "list.inactiveFocusBackground": "#817c9c14", "list.inactiveSelectionBackground": "#2a273f", "list.inactiveSelectionForeground": "#e0def4", "list.inactiveSelectionIconForeground": "#908caa", "list.invalidItemForeground": "#eb6f92", "list.warningForeground": "#f6c177", "listFilterWidget.background": "#2a273f", "listFilterWidget.noMatchesOutline": "#eb6f92", "listFilterWidget.outline": "#393552", "menu.background": "#2a273f", "menu.border": "#817c9c14", "menu.foreground": "#e0def4", "menu.selectionBackground": "#817c9c26", "menu.selectionBorder": "#393552", "menu.selectionForeground": "#e0def4", "menu.separatorBackground": "#817c9c4d", "menubar.selectionBackground": "#817c9c26", "menubar.selectionBorder": "#817c9c14", "menubar.selectionForeground": "#e0def4", "merge.border": "#393552", "merge.commonContentBackground": "#817c9c26", "merge.commonHeaderBackground": "#817c9c26", "merge.currentContentBackground": "#f6c17780", "merge.currentHeaderBackground": "#f6c17780", "merge.incomingContentBackground": "#9ccfd880", "merge.incomingHeaderBackground": "#9ccfd880", "minimap.background": "#2a273f", "minimap.errorHighlight": "#eb6f9280", "minimap.findMatchHighlight": "#817c9c26", "minimap.selectionHighlight": "#817c9c26", "minimap.warningHighlight": "#f6c17780", "minimapGutter.addedBackground": "#9ccfd8", "minimapGutter.deletedBackground": "#eb6f92", "minimapGutter.modifiedBackground": "#ea9a97", "minimapSlider.activeBackground": "#817c9c4d", "minimapSlider.background": "#817c9c26", "minimapSlider.hoverBackground": "#817c9c26", "notificationCenter.border": "#817c9c26", "notificationCenterHeader.background": "#2a273f", "notificationCenterHeader.foreground": "#908caa", "notificationLink.foreground": "#c4a7e7", "notifications.background": "#2a273f", "notifications.border": "#817c9c26", "notifications.foreground": "#e0def4", "notificationsErrorIcon.foreground": "#eb6f92", "notificationsInfoIcon.foreground": "#9ccfd8", "notificationsWarningIcon.foreground": "#f6c177", "notificationToast.border": "#817c9c26", "panel.background": "#2a273f", "panel.border": "#0000", "panel.dropBorder": "#393552", "panelInput.border": "#2a273f", "panelSection.dropBackground": "#817c9c26", "panelSectionHeader.background": "#2a273f", "panelSectionHeader.foreground": "#e0def4", "panelTitle.activeBorder": "#817c9c4d", "panelTitle.activeForeground": "#e0def4", "panelTitle.inactiveForeground": "#908caa", "peekView.border": "#393552", "peekViewEditor.background": "#2a273f", "peekViewEditor.matchHighlightBackground": "#817c9c4d", "peekViewResult.background": "#2a273f", "peekViewResult.fileForeground": "#908caa", "peekViewResult.lineForeground": "#908caa", "peekViewResult.matchHighlightBackground": "#817c9c4d", "peekViewResult.selectionBackground": "#817c9c26", "peekViewResult.selectionForeground": "#e0def4", "peekViewTitle.background": "#393552", "peekViewTitleDescription.foreground": "#908caa", "pickerGroup.border": "#817c9c4d", "pickerGroup.foreground": "#c4a7e7", "ports.iconRunningProcessForeground": "#ea9a97", "problemsErrorIcon.foreground": "#eb6f92", "problemsInfoIcon.foreground": "#9ccfd8", "problemsWarningIcon.foreground": "#f6c177", "progressBar.background": "#ea9a97", "quickInput.background": "#2a273f", "quickInput.foreground": "#908caa", "quickInputList.focusBackground": "#817c9c26", "quickInputList.focusForeground": "#e0def4", "quickInputList.focusIconForeground": "#e0def4", "scrollbar.shadow": "#0000", "scrollbarSlider.activeBackground": "#3e8fb080", "scrollbarSlider.background": "#817c9c26", "scrollbarSlider.hoverBackground": "#817c9c4d", "searchEditor.findMatchBackground": "#817c9c26", "selection.background": "#817c9c4d", "settings.focusedRowBackground": "#2a273f", "settings.headerForeground": "#e0def4", "settings.modifiedItemIndicator": "#ea9a97", "settings.focusedRowBorder": "#817c9c26", "settings.rowHoverBackground": "#2a273f", "sideBar.background": "#232136", "sideBar.dropBackground": "#2a273f", "sideBar.foreground": "#908caa", "sideBarSectionHeader.background": "#0000", "sideBarSectionHeader.border": "#817c9c26", "statusBar.background": "#232136", "statusBar.debuggingBackground": "#c4a7e7", "statusBar.debuggingForeground": "#232136", "statusBar.foreground": "#908caa", "statusBar.noFolderBackground": "#232136", "statusBar.noFolderForeground": "#908caa", "statusBarItem.activeBackground": "#817c9c4d", "statusBarItem.hoverBackground": "#817c9c26", "statusBarItem.prominentBackground": "#393552", "statusBarItem.prominentForeground": "#e0def4", "statusBarItem.prominentHoverBackground": "#817c9c26", "statusBarItem.remoteBackground": "#232136", "statusBarItem.remoteForeground": "#f6c177", "statusBarItem.errorBackground": "#232136", "statusBarItem.errorForeground": "#eb6f92", "symbolIcon.arrayForeground": "#908caa", "symbolIcon.classForeground": "#908caa", "symbolIcon.colorForeground": "#908caa", "symbolIcon.constantForeground": "#908caa", "symbolIcon.constructorForeground": "#908caa", "symbolIcon.enumeratorForeground": "#908caa", "symbolIcon.enumeratorMemberForeground": "#908caa", "symbolIcon.eventForeground": "#908caa", "symbolIcon.fieldForeground": "#908caa", "symbolIcon.fileForeground": "#908caa", "symbolIcon.folderForeground": "#908caa", "symbolIcon.functionForeground": "#908caa", "symbolIcon.interfaceForeground": "#908caa", "symbolIcon.keyForeground": "#908caa", "symbolIcon.keywordForeground": "#908caa", "symbolIcon.methodForeground": "#908caa", "symbolIcon.moduleForeground": "#908caa", "symbolIcon.namespaceForeground": "#908caa", "symbolIcon.nullForeground": "#908caa", "symbolIcon.numberForeground": "#908caa", "symbolIcon.objectForeground": "#908caa", "symbolIcon.operatorForeground": "#908caa", "symbolIcon.packageForeground": "#908caa", "symbolIcon.propertyForeground": "#908caa", "symbolIcon.referenceForeground": "#908caa", "symbolIcon.snippetForeground": "#908caa", "symbolIcon.stringForeground": "#908caa", "symbolIcon.structForeground": "#908caa", "symbolIcon.textForeground": "#908caa", "symbolIcon.typeParameterForeground": "#908caa", "symbolIcon.unitForeground": "#908caa", "symbolIcon.variableForeground": "#908caa", "tab.activeBackground": "#817c9c14", "tab.activeForeground": "#e0def4", "tab.activeModifiedBorder": "#9ccfd8", "tab.border": "#0000", "tab.hoverBackground": "#817c9c26", "tab.inactiveBackground": "#0000", "tab.inactiveForeground": "#908caa", "tab.inactiveModifiedBorder": "#9ccfd880", "tab.lastPinnedBorder": "#6e6a86", "tab.unfocusedActiveBackground": "#0000", "tab.unfocusedHoverBackground": "#0000", "tab.unfocusedInactiveBackground": "#0000", "tab.unfocusedInactiveModifiedBorder": "#9ccfd880", "terminal.ansiBlack": "#393552", "terminal.ansiBlue": "#9ccfd8", "terminal.ansiBrightBlack": "#908caa", "terminal.ansiBrightBlue": "#9ccfd8", "terminal.ansiBrightCyan": "#ea9a97", "terminal.ansiBrightGreen": "#3e8fb0", "terminal.ansiBrightMagenta": "#c4a7e7", "terminal.ansiBrightRed": "#eb6f92", "terminal.ansiBrightWhite": "#e0def4", "terminal.ansiBrightYellow": "#f6c177", "terminal.ansiCyan": "#ea9a97", "terminal.ansiGreen": "#3e8fb0", "terminal.ansiMagenta": "#c4a7e7", "terminal.ansiRed": "#eb6f92", "terminal.ansiWhite": "#e0def4", "terminal.ansiYellow": "#f6c177", "terminal.dropBackground": "#817c9c26", "terminal.foreground": "#e0def4", "terminal.selectionBackground": "#817c9c26", "terminal.tab.activeBorder": "#e0def4", "terminalCursor.background": "#e0def4", "terminalCursor.foreground": "#6e6a86", "textBlockQuote.background": "#2a273f", "textBlockQuote.border": "#817c9c26", "textCodeBlock.background": "#2a273f", "textLink.activeForeground": "#c4a7e7e6", "textLink.foreground": "#c4a7e7", "textPreformat.foreground": "#f6c177", "textSeparator.foreground": "#908caa", "titleBar.activeBackground": "#232136", "titleBar.activeForeground": "#908caa", "titleBar.inactiveBackground": "#2a273f", "titleBar.inactiveForeground": "#908caa", "toolbar.activeBackground": "#817c9c4d", "toolbar.hoverBackground": "#817c9c26", "tree.indentGuidesStroke": "#908caa", "walkThrough.embeddedEditorBackground": "#232136", "welcomePage.background": "#232136", "welcomePage.buttonBackground": "#2a273f", "welcomePage.buttonHoverBackground": "#393552", "widget.shadow": "#1917244d", "window.activeBorder": "#2a273f", "window.inactiveBorder": "#2a273f" }, "tokenColors": [ { "scope": ["comment"], "settings": { "foreground": "#6e6a86", "fontStyle": "italic" } }, { "scope": ["constant"], "settings": { "foreground": "#3e8fb0" } }, { "scope": [ "constant.numeric", "constant.language", "constant.charcter.escape" ], "settings": { "foreground": "#ea9a97" } }, { "scope": ["entity.name"], "settings": { "foreground": "#ea9a97" } }, { "scope": [ "entity.name.section", "entity.name.tag", "entity.name.namespace", "entity.name.type" ], "settings": { "foreground": "#9ccfd8" } }, { "scope": ["entity.other.attribute-name", "entity.other.inherited-class"], "settings": { "foreground": "#c4a7e7", "fontStyle": "italic" } }, { "scope": ["invalid"], "settings": { "foreground": "#eb6f92" } }, { "scope": ["invalid.deprecated"], "settings": { "foreground": "#908caa" } }, { "scope": ["keyword"], "settings": { "foreground": "#3e8fb0" } }, { "scope": ["markup.inserted.diff"], "settings": { "foreground": "#9ccfd8" } }, { "scope": ["markup.deleted.diff"], "settings": { "foreground": "#eb6f92" } }, { "scope": ["meta.diff.range"], "settings": { "foreground": "#c4a7e7" } }, { "scope": ["meta.tag", "meta.brace"], "settings": { "foreground": "#e0def4" } }, { "scope": ["meta.import", "meta.export"], "settings": { "foreground": "#3e8fb0" } }, { "scope": "meta.directive.vue", "settings": { "foreground": "#c4a7e7", "fontStyle": "italic" } }, { "scope": "meta.property-name.css", "settings": { "foreground": "#9ccfd8" } }, { "scope": "meta.property-value.css", "settings": { "foreground": "#f6c177" } }, { "scope": "meta.tag.other.html", "settings": { "foreground": "#908caa" } }, { "scope": ["punctuation"], "settings": { "foreground": "#908caa" } }, { "scope": ["punctuation.accessor"], "settings": { "foreground": "#3e8fb0" } }, { "scope": ["punctuation.definition.string"], "settings": { "foreground": "#f6c177" } }, { "scope": ["punctuation.definition.tag"], "settings": { "foreground": "#6e6a86" } }, { "scope": ["storage.type", "storage.modifier"], "settings": { "foreground": "#3e8fb0" } }, { "scope": ["string"], "settings": { "foreground": "#f6c177" } }, { "scope": ["support"], "settings": { "foreground": "#9ccfd8" } }, { "scope": ["support.constant"], "settings": { "foreground": "#f6c177" } }, { "scope": ["support.function"], "settings": { "foreground": "#eb6f92", "fontStyle": "italic" } }, { "scope": ["variable"], "settings": { "foreground": "#ea9a97", "fontStyle": "italic" } }, { "scope": [ "variable.other", "variable.language", "variable.function", "variable.argument" ], "settings": { "foreground": "#e0def4" } }, { "scope": ["variable.parameter"], "settings": { "foreground": "#c4a7e7" } } ] } ================================================ FILE: apps/web/src/lib/shiki/themes/rose-pine.json ================================================ { "name": "rose-pine", "type": "dark", "colors": { "activityBar.activeBorder": "#e0def4", "activityBar.background": "#191724", "activityBar.dropBorder": "#26233a", "activityBar.foreground": "#e0def4", "activityBar.inactiveForeground": "#908caa", "activityBarBadge.background": "#ebbcba", "activityBarBadge.foreground": "#191724", "badge.background": "#ebbcba", "badge.foreground": "#191724", "banner.background": "#1f1d2e", "banner.foreground": "#e0def4", "banner.iconForeground": "#908caa", "breadcrumb.activeSelectionForeground": "#ebbcba", "breadcrumb.background": "#191724", "breadcrumb.focusForeground": "#908caa", "breadcrumb.foreground": "#6e6a86", "breadcrumbPicker.background": "#1f1d2e", "button.background": "#ebbcba", "button.foreground": "#191724", "button.hoverBackground": "#ebbcbae6", "button.secondaryBackground": "#1f1d2e", "button.secondaryForeground": "#e0def4", "button.secondaryHoverBackground": "#26233a", "charts.blue": "#9ccfd8", "charts.foreground": "#e0def4", "charts.green": "#31748f", "charts.lines": "#908caa", "charts.orange": "#ebbcba", "charts.purple": "#c4a7e7", "charts.red": "#eb6f92", "charts.yellow": "#f6c177", "checkbox.background": "#1f1d2e", "checkbox.border": "#6e6a8633", "checkbox.foreground": "#e0def4", "debugExceptionWidget.background": "#1f1d2e", "debugExceptionWidget.border": "#6e6a8633", "debugIcon.breakpointCurrentStackframeForeground": "#908caa", "debugIcon.breakpointDisabledForeground": "#908caa", "debugIcon.breakpointForeground": "#908caa", "debugIcon.breakpointStackframeForeground": "#908caa", "debugIcon.breakpointUnverifiedForeground": "#908caa", "debugIcon.continueForeground": "#908caa", "debugIcon.disconnectForeground": "#908caa", "debugIcon.pauseForeground": "#908caa", "debugIcon.restartForeground": "#908caa", "debugIcon.startForeground": "#908caa", "debugIcon.stepBackForeground": "#908caa", "debugIcon.stepIntoForeground": "#908caa", "debugIcon.stepOutForeground": "#908caa", "debugIcon.stepOverForeground": "#908caa", "debugIcon.stopForeground": "#eb6f92", "debugToolBar.background": "#1f1d2e", "debugToolBar.border": "#26233a", "descriptionForeground": "#908caa", "diffEditor.border": "#26233a", "diffEditor.diagonalFill": "#6e6a8666", "diffEditor.insertedTextBackground": "#9ccfd826", "diffEditor.removedTextBackground": "#eb6f9226", "diffEditorOverview.insertedForeground": "#9ccfd880", "diffEditorOverview.removedForeground": "#eb6f9280", "dropdown.background": "#1f1d2e", "dropdown.border": "#6e6a8633", "dropdown.foreground": "#e0def4", "dropdown.listBackground": "#1f1d2e", "editor.background": "#191724", "editor.findMatchBackground": "#6e6a8666", "editor.findMatchHighlightBackground": "#6e6a8666", "editor.findRangeHighlightBackground": "#6e6a8666", "editor.findRangeHighlightBorder": "#0000", "editor.focusedStackFrameHighlightBackground": "#6e6a8633", "editor.foldBackground": "#1f1d2e", "editor.foreground": "#e0def4", "editor.hoverHighlightBackground": "#0000", "editor.inactiveSelectionBackground": "#6e6a861a", "editor.inlineValuesBackground": "#0000", "editor.inlineValuesForeground": "#908caa", "editor.lineHighlightBackground": "#6e6a861a", "editor.lineHighlightBorder": "#0000", "editor.linkedEditingBackground": "#1f1d2e", "editor.rangeHighlightBackground": "#6e6a861a", "editor.rangeHighlightBorder": "#0000", "editor.selectionBackground": "#6e6a8633", "editor.selectionForeground": "#e0def4", "editor.selectionHighlightBackground": "#6e6a8633", "editor.selectionHighlightBorder": "#0000", "editor.snippetFinalTabstopHighlightBackground": "#6e6a8633", "editor.snippetFinalTabstopHighlightBorder": "#1f1d2e", "editor.snippetTabstopHighlightBackground": "#6e6a8633", "editor.snippetTabstopHighlightBorder": "#1f1d2e", "editor.stackFrameHighlightBackground": "#6e6a8633", "editor.symbolHighlightBackground": "#6e6a8633", "editor.symbolHighlightBorder": "#0000", "editor.wordHighlightBackground": "#6e6a8633", "editor.wordHighlightBorder": "#0000", "editor.wordHighlightStrongBackground": "#6e6a8633", "editor.wordHighlightStrongBorder": "#6e6a8633", "editorBracketHighlight.foreground1": "#eb6f9280", "editorBracketHighlight.foreground2": "#31748f80", "editorBracketHighlight.foreground3": "#f6c17780", "editorBracketHighlight.foreground4": "#9ccfd880", "editorBracketHighlight.foreground5": "#ebbcba80", "editorBracketHighlight.foreground6": "#c4a7e780", "editorBracketMatch.background": "#0000", "editorBracketMatch.border": "#908caa", "editorBracketPairGuide.activeBackground1": "#31748f", "editorBracketPairGuide.activeBackground2": "#ebbcba", "editorBracketPairGuide.activeBackground3": "#c4a7e7", "editorBracketPairGuide.activeBackground4": "#9ccfd8", "editorBracketPairGuide.activeBackground5": "#f6c177", "editorBracketPairGuide.activeBackground6": "#eb6f92", "editorBracketPairGuide.background1": "#31748f80", "editorBracketPairGuide.background2": "#ebbcba80", "editorBracketPairGuide.background3": "#c4a7e780", "editorBracketPairGuide.background4": "#9ccfd880", "editorBracketPairGuide.background5": "#f6c17780", "editorBracketPairGuide.background6": "#eb6f9280", "editorCodeLens.foreground": "#ebbcba", "editorCursor.background": "#e0def4", "editorCursor.foreground": "#6e6a86", "editorError.border": "#0000", "editorError.foreground": "#eb6f92", "editorGhostText.foreground": "#908caa", "editorGroup.border": "#0000", "editorGroup.dropBackground": "#1f1d2e", "editorGroup.emptyBackground": "#0000", "editorGroup.focusedEmptyBorder": "#0000", "editorGroupHeader.noTabsBackground": "#0000", "editorGroupHeader.tabsBackground": "#0000", "editorGroupHeader.tabsBorder": "#0000", "editorGutter.addedBackground": "#9ccfd8", "editorGutter.background": "#0000", "editorGutter.commentRangeForeground": "#908caa", "editorGutter.deletedBackground": "#eb6f92", "editorGutter.foldingControlForeground": "#c4a7e7", "editorGutter.modifiedBackground": "#ebbcba", "editorHint.border": "#0000", "editorHint.foreground": "#908caa", "editorHoverWidget.background": "#1f1d2e", "editorHoverWidget.border": "#6e6a8680", "editorHoverWidget.foreground": "#908caa", "editorHoverWidget.highlightForeground": "#e0def4", "editorHoverWidget.statusBarBackground": "#0000", "editorIndentGuide.activeBackground": "#6e6a86", "editorIndentGuide.background": "#6e6a8666", "editorInfo.border": "#26233a", "editorInfo.foreground": "#9ccfd8", "editorInlayHint.background": "#26233a", "editorInlayHint.foreground": "#908caa", "editorInlayHint.parameterBackground": "#26233a", "editorInlayHint.parameterForeground": "#c4a7e7", "editorInlayHint.typeBackground": "#26233a", "editorInlayHint.typeForeground": "#9ccfd8", "editorLightBulb.foreground": "#31748f", "editorLightBulbAutoFix.foreground": "#ebbcba", "editorLineNumber.activeForeground": "#e0def4", "editorLineNumber.foreground": "#908caa", "editorLink.activeForeground": "#ebbcba", "editorMarkerNavigation.background": "#1f1d2e", "editorMarkerNavigationError.background": "#1f1d2e", "editorMarkerNavigationInfo.background": "#1f1d2e", "editorMarkerNavigationWarning.background": "#1f1d2e", "editorOverviewRuler.addedForeground": "#9ccfd880", "editorOverviewRuler.background": "#191724", "editorOverviewRuler.border": "#6e6a8666", "editorOverviewRuler.bracketMatchForeground": "#908caa", "editorOverviewRuler.commonContentForeground": "#6e6a861a", "editorOverviewRuler.currentContentForeground": "#6e6a8633", "editorOverviewRuler.deletedForeground": "#eb6f9280", "editorOverviewRuler.errorForeground": "#eb6f9280", "editorOverviewRuler.findMatchForeground": "#6e6a8666", "editorOverviewRuler.incomingContentForeground": "#c4a7e780", "editorOverviewRuler.infoForeground": "#9ccfd880", "editorOverviewRuler.modifiedForeground": "#ebbcba80", "editorOverviewRuler.rangeHighlightForeground": "#6e6a8666", "editorOverviewRuler.selectionHighlightForeground": "#6e6a8666", "editorOverviewRuler.warningForeground": "#f6c17780", "editorOverviewRuler.wordHighlightForeground": "#6e6a8633", "editorOverviewRuler.wordHighlightStrongForeground": "#6e6a8666", "editorPane.background": "#0000", "editorRuler.foreground": "#6e6a8666", "editorSuggestWidget.background": "#1f1d2e", "editorSuggestWidget.border": "#0000", "editorSuggestWidget.focusHighlightForeground": "#ebbcba", "editorSuggestWidget.foreground": "#908caa", "editorSuggestWidget.highlightForeground": "#ebbcba", "editorSuggestWidget.selectedBackground": "#6e6a8633", "editorSuggestWidget.selectedForeground": "#e0def4", "editorSuggestWidget.selectedIconForeground": "#e0def4", "editorUnnecessaryCode.border": "#0000", "editorUnnecessaryCode.opacity": "#00000080", "editorWarning.border": "#0000", "editorWarning.foreground": "#f6c177", "editorWhitespace.foreground": "#6e6a86", "editorWidget.background": "#1f1d2e", "editorWidget.border": "#26233a", "editorWidget.foreground": "#908caa", "editorWidget.resizeBorder": "#6e6a86", "errorForeground": "#eb6f92", "extensionBadge.remoteBackground": "#c4a7e7", "extensionBadge.remoteForeground": "#191724", "extensionButton.prominentBackground": "#ebbcba", "extensionButton.prominentForeground": "#191724", "extensionButton.prominentHoverBackground": "#ebbcbae6", "extensionIcon.starForeground": "#ebbcba", "extensionIcon.verifiedForeground": "#c4a7e7", "focusBorder": "#6e6a8633", "foreground": "#e0def4", "gitDecoration.addedResourceForeground": "#9ccfd8", "gitDecoration.conflictingResourceForeground": "#eb6f92", "gitDecoration.deletedResourceForeground": "#908caa", "gitDecoration.ignoredResourceForeground": "#6e6a86", "gitDecoration.modifiedResourceForeground": "#ebbcba", "gitDecoration.renamedResourceForeground": "#31748f", "gitDecoration.stageDeletedResourceForeground": "#eb6f92", "gitDecoration.stageModifiedResourceForeground": "#c4a7e7", "gitDecoration.submoduleResourceForeground": "#f6c177", "gitDecoration.untrackedResourceForeground": "#f6c177", "icon.foreground": "#908caa", "input.background": "#26233a80", "input.border": "#6e6a8633", "input.foreground": "#e0def4", "input.placeholderForeground": "#908caa", "inputOption.activeBackground": "#ebbcba", "inputOption.activeBorder": "#0000", "inputOption.activeForeground": "#191724", "inputValidation.errorBackground": "#1f1d2e", "inputValidation.errorBorder": "#6e6a8666", "inputValidation.errorForeground": "#eb6f92", "inputValidation.infoBackground": "#1f1d2e", "inputValidation.infoBorder": "#6e6a8666", "inputValidation.infoForeground": "#9ccfd8", "inputValidation.warningBackground": "#1f1d2e", "inputValidation.warningBorder": "#6e6a8666", "inputValidation.warningForeground": "#9ccfd880", "keybindingLabel.background": "#26233a", "keybindingLabel.border": "#6e6a8666", "keybindingLabel.bottomBorder": "#6e6a8666", "keybindingLabel.foreground": "#c4a7e7", "keybindingTable.headerBackground": "#26233a", "keybindingTable.rowsBackground": "#1f1d2e", "list.activeSelectionBackground": "#6e6a8633", "list.activeSelectionForeground": "#e0def4", "list.activeSelectionIconForeground": "#e0def4", "list.deemphasizedForeground": "#908caa", "list.dropBackground": "#1f1d2e", "list.errorForeground": "#eb6f92", "list.filterMatchBackground": "#1f1d2e", "list.filterMatchBorder": "#ebbcba", "list.focusBackground": "#6e6a8666", "list.focusForeground": "#e0def4", "list.focusOutline": "#6e6a8633", "list.highlightForeground": "#ebbcba", "list.hoverBackground": "#6e6a861a", "list.hoverForeground": "#e0def4", "list.inactiveFocusBackground": "#6e6a861a", "list.inactiveSelectionBackground": "#1f1d2e", "list.inactiveSelectionForeground": "#e0def4", "list.inactiveSelectionIconForeground": "#908caa", "list.invalidItemForeground": "#eb6f92", "list.warningForeground": "#f6c177", "listFilterWidget.background": "#1f1d2e", "listFilterWidget.noMatchesOutline": "#eb6f92", "listFilterWidget.outline": "#26233a", "menu.background": "#1f1d2e", "menu.border": "#6e6a861a", "menu.foreground": "#e0def4", "menu.selectionBackground": "#6e6a8633", "menu.selectionBorder": "#26233a", "menu.selectionForeground": "#e0def4", "menu.separatorBackground": "#6e6a8666", "menubar.selectionBackground": "#6e6a8633", "menubar.selectionBorder": "#6e6a861a", "menubar.selectionForeground": "#e0def4", "merge.border": "#26233a", "merge.commonContentBackground": "#6e6a8633", "merge.commonHeaderBackground": "#6e6a8633", "merge.currentContentBackground": "#f6c17780", "merge.currentHeaderBackground": "#f6c17780", "merge.incomingContentBackground": "#9ccfd880", "merge.incomingHeaderBackground": "#9ccfd880", "minimap.background": "#1f1d2e", "minimap.errorHighlight": "#eb6f9280", "minimap.findMatchHighlight": "#6e6a8633", "minimap.selectionHighlight": "#6e6a8633", "minimap.warningHighlight": "#f6c17780", "minimapGutter.addedBackground": "#9ccfd8", "minimapGutter.deletedBackground": "#eb6f92", "minimapGutter.modifiedBackground": "#ebbcba", "minimapSlider.activeBackground": "#6e6a8666", "minimapSlider.background": "#6e6a8633", "minimapSlider.hoverBackground": "#6e6a8633", "notificationCenter.border": "#6e6a8633", "notificationCenterHeader.background": "#1f1d2e", "notificationCenterHeader.foreground": "#908caa", "notificationLink.foreground": "#c4a7e7", "notifications.background": "#1f1d2e", "notifications.border": "#6e6a8633", "notifications.foreground": "#e0def4", "notificationsErrorIcon.foreground": "#eb6f92", "notificationsInfoIcon.foreground": "#9ccfd8", "notificationsWarningIcon.foreground": "#f6c177", "notificationToast.border": "#6e6a8633", "panel.background": "#1f1d2e", "panel.border": "#0000", "panel.dropBorder": "#26233a", "panelInput.border": "#1f1d2e", "panelSection.dropBackground": "#6e6a8633", "panelSectionHeader.background": "#1f1d2e", "panelSectionHeader.foreground": "#e0def4", "panelTitle.activeBorder": "#6e6a8666", "panelTitle.activeForeground": "#e0def4", "panelTitle.inactiveForeground": "#908caa", "peekView.border": "#26233a", "peekViewEditor.background": "#1f1d2e", "peekViewEditor.matchHighlightBackground": "#6e6a8666", "peekViewResult.background": "#1f1d2e", "peekViewResult.fileForeground": "#908caa", "peekViewResult.lineForeground": "#908caa", "peekViewResult.matchHighlightBackground": "#6e6a8666", "peekViewResult.selectionBackground": "#6e6a8633", "peekViewResult.selectionForeground": "#e0def4", "peekViewTitle.background": "#26233a", "peekViewTitleDescription.foreground": "#908caa", "pickerGroup.border": "#6e6a8666", "pickerGroup.foreground": "#c4a7e7", "ports.iconRunningProcessForeground": "#ebbcba", "problemsErrorIcon.foreground": "#eb6f92", "problemsInfoIcon.foreground": "#9ccfd8", "problemsWarningIcon.foreground": "#f6c177", "progressBar.background": "#ebbcba", "quickInput.background": "#1f1d2e", "quickInput.foreground": "#908caa", "quickInputList.focusBackground": "#6e6a8633", "quickInputList.focusForeground": "#e0def4", "quickInputList.focusIconForeground": "#e0def4", "scrollbar.shadow": "#0000", "scrollbarSlider.activeBackground": "#31748f80", "scrollbarSlider.background": "#6e6a8633", "scrollbarSlider.hoverBackground": "#6e6a8666", "searchEditor.findMatchBackground": "#6e6a8633", "selection.background": "#6e6a8666", "settings.focusedRowBackground": "#1f1d2e", "settings.headerForeground": "#e0def4", "settings.modifiedItemIndicator": "#ebbcba", "settings.focusedRowBorder": "#6e6a8633", "settings.rowHoverBackground": "#1f1d2e", "sideBar.background": "#191724", "sideBar.dropBackground": "#1f1d2e", "sideBar.foreground": "#908caa", "sideBarSectionHeader.background": "#0000", "sideBarSectionHeader.border": "#6e6a8633", "statusBar.background": "#191724", "statusBar.debuggingBackground": "#c4a7e7", "statusBar.debuggingForeground": "#191724", "statusBar.foreground": "#908caa", "statusBar.noFolderBackground": "#191724", "statusBar.noFolderForeground": "#908caa", "statusBarItem.activeBackground": "#6e6a8666", "statusBarItem.hoverBackground": "#6e6a8633", "statusBarItem.prominentBackground": "#26233a", "statusBarItem.prominentForeground": "#e0def4", "statusBarItem.prominentHoverBackground": "#6e6a8633", "statusBarItem.remoteBackground": "#191724", "statusBarItem.remoteForeground": "#f6c177", "statusBarItem.errorBackground": "#191724", "statusBarItem.errorForeground": "#eb6f92", "symbolIcon.arrayForeground": "#908caa", "symbolIcon.classForeground": "#908caa", "symbolIcon.colorForeground": "#908caa", "symbolIcon.constantForeground": "#908caa", "symbolIcon.constructorForeground": "#908caa", "symbolIcon.enumeratorForeground": "#908caa", "symbolIcon.enumeratorMemberForeground": "#908caa", "symbolIcon.eventForeground": "#908caa", "symbolIcon.fieldForeground": "#908caa", "symbolIcon.fileForeground": "#908caa", "symbolIcon.folderForeground": "#908caa", "symbolIcon.functionForeground": "#908caa", "symbolIcon.interfaceForeground": "#908caa", "symbolIcon.keyForeground": "#908caa", "symbolIcon.keywordForeground": "#908caa", "symbolIcon.methodForeground": "#908caa", "symbolIcon.moduleForeground": "#908caa", "symbolIcon.namespaceForeground": "#908caa", "symbolIcon.nullForeground": "#908caa", "symbolIcon.numberForeground": "#908caa", "symbolIcon.objectForeground": "#908caa", "symbolIcon.operatorForeground": "#908caa", "symbolIcon.packageForeground": "#908caa", "symbolIcon.propertyForeground": "#908caa", "symbolIcon.referenceForeground": "#908caa", "symbolIcon.snippetForeground": "#908caa", "symbolIcon.stringForeground": "#908caa", "symbolIcon.structForeground": "#908caa", "symbolIcon.textForeground": "#908caa", "symbolIcon.typeParameterForeground": "#908caa", "symbolIcon.unitForeground": "#908caa", "symbolIcon.variableForeground": "#908caa", "tab.activeBackground": "#6e6a861a", "tab.activeForeground": "#e0def4", "tab.activeModifiedBorder": "#9ccfd8", "tab.border": "#0000", "tab.hoverBackground": "#6e6a8633", "tab.inactiveBackground": "#0000", "tab.inactiveForeground": "#908caa", "tab.inactiveModifiedBorder": "#9ccfd880", "tab.lastPinnedBorder": "#6e6a86", "tab.unfocusedActiveBackground": "#0000", "tab.unfocusedHoverBackground": "#0000", "tab.unfocusedInactiveBackground": "#0000", "tab.unfocusedInactiveModifiedBorder": "#9ccfd880", "terminal.ansiBlack": "#26233a", "terminal.ansiBlue": "#9ccfd8", "terminal.ansiBrightBlack": "#908caa", "terminal.ansiBrightBlue": "#9ccfd8", "terminal.ansiBrightCyan": "#ebbcba", "terminal.ansiBrightGreen": "#31748f", "terminal.ansiBrightMagenta": "#c4a7e7", "terminal.ansiBrightRed": "#eb6f92", "terminal.ansiBrightWhite": "#e0def4", "terminal.ansiBrightYellow": "#f6c177", "terminal.ansiCyan": "#ebbcba", "terminal.ansiGreen": "#31748f", "terminal.ansiMagenta": "#c4a7e7", "terminal.ansiRed": "#eb6f92", "terminal.ansiWhite": "#e0def4", "terminal.ansiYellow": "#f6c177", "terminal.dropBackground": "#6e6a8633", "terminal.foreground": "#e0def4", "terminal.selectionBackground": "#6e6a8633", "terminal.tab.activeBorder": "#e0def4", "terminalCursor.background": "#e0def4", "terminalCursor.foreground": "#6e6a86", "textBlockQuote.background": "#1f1d2e", "textBlockQuote.border": "#6e6a8633", "textCodeBlock.background": "#1f1d2e", "textLink.activeForeground": "#c4a7e7e6", "textLink.foreground": "#c4a7e7", "textPreformat.foreground": "#f6c177", "textSeparator.foreground": "#908caa", "titleBar.activeBackground": "#191724", "titleBar.activeForeground": "#908caa", "titleBar.inactiveBackground": "#1f1d2e", "titleBar.inactiveForeground": "#908caa", "toolbar.activeBackground": "#6e6a8666", "toolbar.hoverBackground": "#6e6a8633", "tree.indentGuidesStroke": "#908caa", "walkThrough.embeddedEditorBackground": "#191724", "welcomePage.background": "#191724", "welcomePage.buttonBackground": "#1f1d2e", "welcomePage.buttonHoverBackground": "#26233a", "widget.shadow": "#0101011a", "window.activeBorder": "#1f1d2e", "window.inactiveBorder": "#1f1d2e" }, "tokenColors": [ { "scope": ["comment"], "settings": { "foreground": "#6e6a86", "fontStyle": "italic" } }, { "scope": ["constant"], "settings": { "foreground": "#31748f" } }, { "scope": [ "constant.numeric", "constant.language", "constant.charcter.escape" ], "settings": { "foreground": "#ebbcba" } }, { "scope": ["entity.name"], "settings": { "foreground": "#ebbcba" } }, { "scope": [ "entity.name.section", "entity.name.tag", "entity.name.namespace", "entity.name.type" ], "settings": { "foreground": "#9ccfd8" } }, { "scope": ["entity.other.attribute-name", "entity.other.inherited-class"], "settings": { "foreground": "#c4a7e7", "fontStyle": "italic" } }, { "scope": ["invalid"], "settings": { "foreground": "#eb6f92" } }, { "scope": ["invalid.deprecated"], "settings": { "foreground": "#908caa" } }, { "scope": ["keyword"], "settings": { "foreground": "#31748f" } }, { "scope": ["markup.inserted.diff"], "settings": { "foreground": "#9ccfd8" } }, { "scope": ["markup.deleted.diff"], "settings": { "foreground": "#eb6f92" } }, { "scope": ["meta.diff.range"], "settings": { "foreground": "#c4a7e7" } }, { "scope": ["meta.tag", "meta.brace"], "settings": { "foreground": "#e0def4" } }, { "scope": ["meta.import", "meta.export"], "settings": { "foreground": "#31748f" } }, { "scope": "meta.directive.vue", "settings": { "foreground": "#c4a7e7", "fontStyle": "italic" } }, { "scope": "meta.property-name.css", "settings": { "foreground": "#9ccfd8" } }, { "scope": "meta.property-value.css", "settings": { "foreground": "#f6c177" } }, { "scope": "meta.tag.other.html", "settings": { "foreground": "#908caa" } }, { "scope": ["punctuation"], "settings": { "foreground": "#908caa" } }, { "scope": ["punctuation.accessor"], "settings": { "foreground": "#31748f" } }, { "scope": ["punctuation.definition.string"], "settings": { "foreground": "#f6c177" } }, { "scope": ["punctuation.definition.tag"], "settings": { "foreground": "#6e6a86" } }, { "scope": ["storage.type", "storage.modifier"], "settings": { "foreground": "#31748f" } }, { "scope": ["string"], "settings": { "foreground": "#f6c177" } }, { "scope": ["support"], "settings": { "foreground": "#9ccfd8" } }, { "scope": ["support.constant"], "settings": { "foreground": "#f6c177" } }, { "scope": ["support.function"], "settings": { "foreground": "#eb6f92", "fontStyle": "italic" } }, { "scope": ["variable"], "settings": { "foreground": "#ebbcba", "fontStyle": "italic" } }, { "scope": [ "variable.other", "variable.language", "variable.function", "variable.argument" ], "settings": { "foreground": "#e0def4" } }, { "scope": ["variable.parameter"], "settings": { "foreground": "#c4a7e7" } } ] } ================================================ FILE: apps/web/src/lib/shiki/themes/slack-dark.json ================================================ { "name": "slack-dark", "type": "dark", "colors": { "activityBarBadge.background": "#1D978D", "editor.background": "#222222", "editor.foreground": "#E6E6E6", "editor.inactiveSelectionBackground": "#3a3d41", "editor.selectionHighlightBackground": "#add6ff26", "editorIndentGuide.activeBackground": "#707070", "editorIndentGuide.background": "#404040", "input.placeholderForeground": "#7A7A7A", "list.dropBackground": "#383b3d", "list.activeSelectionBackground": "#222222", "list.focusBackground": "#0077B5", "menu.background": "#252526", "menu.foreground": "#E6E6E6", "settings.numberInputBackground": "#292929", "settings.textInputBackground": "#292929", "sideBarTitle.foreground": "#E6E6E6", "statusBar.background": "#222222", "statusBar.noFolderBackground": "#141414", "statusBar.debuggingBackground": "#1D978D", "list.hoverBackground": "#222222", "gitDecoration.modifiedResourceForeground": "#ECB22E", "gitDecoration.deletedResourceForeground": "#FFF", "gitDecoration.untrackedResourceForeground": "#ECB22E", "gitDecoration.ignoredResourceForeground": "#877583", "gitDecoration.addedResourceForeground": "#ECB22E", "gitDecoration.conflictingResourceForeground": "#FFF", "editor.lineHighlightBorder": "#141414", "editor.lineHighlightBackground": "#141414", "editorSuggestWidget.selectedBackground": "#0077B5", "sideBarSectionHeader.background": "#222222", "activityBar.background": "#222222", "button.background": "#0077B5", "button.foreground": "#FFF", "button.hoverBackground": "#005076", "extensionButton.prominentBackground": "#0077B5", "extensionButton.prominentForeground": "#FFF", "extensionButton.prominentHoverBackground": "#005076", "debugExceptionWidget.background": "#141414", "debugExceptionWidget.border": "#FFF", "debugToolBar.background": "#141414", "titleBar.activeBackground": "#222222", "titleBar.activeForeground": "#E6E6E6", "titleBar.inactiveBackground": "#222222", "titleBar.inactiveForeground": "#7A7A7A", "focusBorder": "#0077B5", "textLink.activeForeground": "#0077B5", "textLink.foreground": "#0077B5", "editorLink.activeForeground": "#0077B5", "notificationLink.foreground": "#0077B5" }, "tokenColors": [ { "scope": ["meta.embedded", "source.groovy.embedded"], "settings": { "foreground": "#D4D4D4" } }, { "scope": "emphasis", "settings": { "fontStyle": "italic" } }, { "scope": "strong", "settings": { "fontStyle": "bold" } }, { "scope": "header", "settings": { "foreground": "#000080" } }, { "scope": "comment", "settings": { "foreground": "#6A9955" } }, { "scope": "constant.language", "settings": { "foreground": "#569cd6" } }, { "scope": ["constant.numeric"], "settings": { "foreground": "#b5cea8" } }, { "scope": "constant.regexp", "settings": { "foreground": "#646695" } }, { "scope": "entity.name.tag", "settings": { "foreground": "#569cd6" } }, { "scope": "entity.name.tag.css", "settings": { "foreground": "#d7ba7d" } }, { "scope": "entity.other.attribute-name", "settings": { "foreground": "#9cdcfe" } }, { "scope": [ "entity.other.attribute-name.class.css", "entity.other.attribute-name.class.mixin.css", "entity.other.attribute-name.id.css", "entity.other.attribute-name.parent-selector.css", "entity.other.attribute-name.pseudo-class.css", "entity.other.attribute-name.pseudo-element.css", "source.css.less entity.other.attribute-name.id", "entity.other.attribute-name.attribute.scss", "entity.other.attribute-name.scss" ], "settings": { "foreground": "#d7ba7d" } }, { "scope": "invalid", "settings": { "foreground": "#f44747" } }, { "scope": "markup.underline", "settings": { "fontStyle": "underline" } }, { "scope": "markup.bold", "settings": { "fontStyle": "bold", "foreground": "#569cd6" } }, { "scope": "markup.heading", "settings": { "fontStyle": "bold", "foreground": "#569cd6" } }, { "scope": "markup.italic", "settings": { "fontStyle": "italic" } }, { "scope": "markup.inserted", "settings": { "foreground": "#b5cea8" } }, { "scope": "markup.deleted", "settings": { "foreground": "#ce9178" } }, { "scope": "markup.changed", "settings": { "foreground": "#569cd6" } }, { "scope": "punctuation.definition.quote.begin.markdown", "settings": { "foreground": "#6A9955" } }, { "scope": "punctuation.definition.list.begin.markdown", "settings": { "foreground": "#6796e6" } }, { "scope": "markup.inline.raw", "settings": { "foreground": "#ce9178" } }, { "name": "brackets of XML/HTML tags", "scope": "punctuation.definition.tag", "settings": { "foreground": "#808080" } }, { "scope": "meta.preprocessor", "settings": { "foreground": "#569cd6" } }, { "scope": "meta.preprocessor.string", "settings": { "foreground": "#ce9178" } }, { "scope": "meta.preprocessor.numeric", "settings": { "foreground": "#b5cea8" } }, { "scope": "meta.structure.dictionary.key.python", "settings": { "foreground": "#9cdcfe" } }, { "scope": "meta.diff.header", "settings": { "foreground": "#569cd6" } }, { "scope": "storage", "settings": { "foreground": "#569cd6" } }, { "scope": "storage.type", "settings": { "foreground": "#569cd6" } }, { "scope": "storage.modifier", "settings": { "foreground": "#569cd6" } }, { "scope": "string", "settings": { "foreground": "#ce9178" } }, { "scope": "string.tag", "settings": { "foreground": "#ce9178" } }, { "scope": "string.value", "settings": { "foreground": "#ce9178" } }, { "scope": "string.regexp", "settings": { "foreground": "#d16969" } }, { "name": "String interpolation", "scope": [ "punctuation.definition.template-expression.begin", "punctuation.definition.template-expression.end", "punctuation.section.embedded" ], "settings": { "foreground": "#569cd6" } }, { "name": "Reset JavaScript string interpolation expression", "scope": ["meta.template.expression"], "settings": { "foreground": "#d4d4d4" } }, { "scope": [ "support.type.vendored.property-name", "support.type.property-name", "variable.css", "variable.scss", "variable.other.less", "source.coffee.embedded" ], "settings": { "foreground": "#9cdcfe" } }, { "scope": "keyword", "settings": { "foreground": "#569cd6" } }, { "scope": "keyword.control", "settings": { "foreground": "#569cd6" } }, { "scope": "keyword.operator", "settings": { "foreground": "#d4d4d4" } }, { "scope": [ "keyword.operator.new", "keyword.operator.expression", "keyword.operator.cast", "keyword.operator.sizeof", "keyword.operator.instanceof", "keyword.operator.logical.python" ], "settings": { "foreground": "#569cd6" } }, { "scope": "keyword.other.unit", "settings": { "foreground": "#b5cea8" } }, { "scope": [ "punctuation.section.embedded.begin.php", "punctuation.section.embedded.end.php" ], "settings": { "foreground": "#569cd6" } }, { "scope": "support.function.git-rebase", "settings": { "foreground": "#9cdcfe" } }, { "scope": "constant.sha.git-rebase", "settings": { "foreground": "#b5cea8" } }, { "name": "coloring of the Java import and package identifiers", "scope": [ "storage.modifier.import.java", "variable.language.wildcard.java", "storage.modifier.package.java" ], "settings": { "foreground": "#d4d4d4" } }, { "name": "this.self", "scope": "variable.language", "settings": { "foreground": "#569cd6" } }, { "name": "Function declarations", "scope": [ "entity.name.function", "support.function", "support.constant.handlebars" ], "settings": { "foreground": "#DCDCAA" } }, { "name": "Types declaration and references", "scope": [ "meta.return-type", "support.class", "support.type", "entity.name.type", "entity.name.class", "storage.type.numeric.go", "storage.type.byte.go", "storage.type.boolean.go", "storage.type.string.go", "storage.type.uintptr.go", "storage.type.error.go", "storage.type.rune.go", "storage.type.cs", "storage.type.generic.cs", "storage.type.modifier.cs", "storage.type.variable.cs", "storage.type.annotation.java", "storage.type.generic.java", "storage.type.java", "storage.type.object.array.java", "storage.type.primitive.array.java", "storage.type.primitive.java", "storage.type.token.java", "storage.type.groovy", "storage.type.annotation.groovy", "storage.type.parameters.groovy", "storage.type.generic.groovy", "storage.type.object.array.groovy", "storage.type.primitive.array.groovy", "storage.type.primitive.groovy" ], "settings": { "foreground": "#4EC9B0" } }, { "name": "Types declaration and references, TS grammar specific", "scope": [ "meta.type.cast.expr", "meta.type.new.expr", "support.constant.math", "support.constant.dom", "support.constant.json", "entity.other.inherited-class" ], "settings": { "foreground": "#4EC9B0" } }, { "name": "Control flow keywords", "scope": "keyword.control", "settings": { "foreground": "#C586C0" } }, { "name": "Variable and parameter name", "scope": [ "variable", "meta.definition.variable.name", "support.variable", "entity.name.variable" ], "settings": { "foreground": "#9CDCFE" } }, { "name": "Object keys, TS grammar specific", "scope": ["meta.object-literal.key"], "settings": { "foreground": "#9CDCFE" } }, { "name": "CSS property value", "scope": [ "support.constant.property-value", "support.constant.font-name", "support.constant.media-type", "support.constant.media", "constant.other.color.rgb-value", "constant.other.rgb-value", "support.constant.color" ], "settings": { "foreground": "#CE9178" } }, { "name": "Regular expression groups", "scope": [ "punctuation.definition.group.regexp", "punctuation.definition.group.assertion.regexp", "punctuation.definition.character-class.regexp", "punctuation.character.set.begin.regexp", "punctuation.character.set.end.regexp", "keyword.operator.negation.regexp", "support.other.parenthesis.regexp" ], "settings": { "foreground": "#CE9178" } }, { "scope": [ "constant.character.character-class.regexp", "constant.other.character-class.set.regexp", "constant.other.character-class.regexp", "constant.character.set.regexp" ], "settings": { "foreground": "#d16969" } }, { "scope": ["keyword.operator.or.regexp", "keyword.control.anchor.regexp"], "settings": { "foreground": "#DCDCAA" } }, { "scope": "keyword.operator.quantifier.regexp", "settings": { "foreground": "#d7ba7d" } }, { "scope": "constant.character", "settings": { "foreground": "#569cd6" } }, { "scope": "constant.character.escape", "settings": { "foreground": "#d7ba7d" } }, { "scope": "token.info-token", "settings": { "foreground": "#6796e6" } }, { "scope": "token.warn-token", "settings": { "foreground": "#cd9731" } }, { "scope": "token.error-token", "settings": { "foreground": "#f44747" } }, { "scope": "token.debug-token", "settings": { "foreground": "#b267e6" } } ] } ================================================ FILE: apps/web/src/lib/shiki/themes/slack-ochin.json ================================================ { "name": "slack-ochin", "type": "dark", "colors": { "foreground": "#616161", "focusBorder": "#161F26", "widget.shadow": "#161F2694", "input.background": "#FFF", "input.border": "#161F26", "input.foreground": "#000", "input.placeholderForeground": "#a0a0a0", "inputOption.activeBorder": "#3E313C", "inputValidation.errorBackground": "#F44C5E", "inputValidation.errorForeground": "#FFF", "inputValidation.infoBackground": "#6182b8", "inputValidation.infoForeground": "#FFF", "inputValidation.warningBackground": "#F6B555", "inputValidation.warningForeground": "#000", "list.activeSelectionBackground": "#5899C5", "list.activeSelectionForeground": "#fff", "list.hoverBackground": "#d5e1ea", "list.hoverForeground": "#fff", "list.focusBackground": "#d5e1ea", "list.focusForeground": "#fff", "list.inactiveSelectionBackground": "#5899C5", "list.inactiveSelectionForeground": "#fff", "list.highlightForeground": "#2D3E4C", "list.inactiveFocusBackground": "#161F26", "list.invalidItemForeground": "#fff", "button.background": "#475663", "button.foreground": "#FFF", "button.hoverBackground": "#161F26", "scrollbar.shadow": "#ffffff00", "scrollbarSlider.activeBackground": "#161F267e", "scrollbarSlider.background": "#161F267e", "scrollbarSlider.hoverBackground": "#161F267e", "badge.background": "#8AE773", "progressBar.background": "#8AE773", "editor.background": "#FFF", "editor.foreground": "#000", "editor.lineHighlightBackground": "#EEEEEE", "editor.wordHighlightStrongBackground": "#EEEEEE", "editor.selectionBackground": "#AED4FB", "editorLineNumber.foreground": "#b9b9b9", "editorActiveLineNumber.foreground": "#475663", "editor.findMatchBackground": "#AED4FB", "editorHint.foreground": "#F9F9F9", "editorHint.border": "#F9F9F9", "editor.wordHighlightBackground": "#AED4FB", "terminal.border": "#2D3E4C", "terminal.foreground": "#161F26", "terminal.ansiBlack": "#000000", "terminal.ansiBlue": "#6182b8", "terminal.ansiBrightBlack": "#90a4ae", "terminal.ansiBrightBlue": "#6182b8", "terminal.ansiBrightCyan": "#39adb5", "terminal.ansiBrightGreen": "#91b859", "terminal.ansiBrightMagenta": "#7c4dff", "terminal.ansiBrightRed": "#e53935", "terminal.ansiBrightWhite": "#ffffff", "terminal.ansiBrightYellow": "#ffb62c", "terminal.ansiCyan": "#39adb5", "terminal.ansiGreen": "#91b859", "terminal.ansiMagenta": "#7c4dff", "terminal.ansiRed": "#e53935", "terminal.ansiWhite": "#ffffff", "terminal.ansiYellow": "#ffb62c", "terminal.selectionBackground": "#0006", "panelTitle.activeForeground": "#161F26", "activityBar.background": "#161F26", "activityBar.foreground": "#FFF", "activityBar.dropBackground": "#FFF", "activityBarBadge.background": "#8AE773", "activityBarBadge.foreground": "#FFF", "panel.border": "#2D3E4C", "dropdown.background": "#FFF", "dropdown.listBackground": "#FFF", "dropdown.border": "#DCDEDF", "dropdown.foreground": "#DCDEDF", "sideBar.background": "#2D3E4C", "sideBar.foreground": "#DCDEDF", "sideBarTitle.foreground": "#FFF", "sideBarSectionHeader.foreground": "#FFF", "sideBarSectionHeader.background": "#161F26", "debugToolBar.background": "#161F26", "tab.border": "#F3F3F3", "tab.activeBackground": "#FFF", "tab.inactiveForeground": "#686868", "tab.inactiveBackground": "#F3F3F3", "tab.activeForeground": "#000", "editorGroupHeader.tabsBackground": "#2D3E4C", "statusBar.foreground": "#FFF", "statusBar.background": "#5899C5", "statusBar.debuggingBackground": "#8AE773", "statusBar.noFolderBackground": "#161F26", "extensionButton.prominentBackground": "#475663", "extensionButton.prominentForeground": "#F6F6F6", "extensionButton.prominentHoverBackground": "#161F26", "gitDecoration.modifiedResourceForeground": "#ECB22E", "gitDecoration.deletedResourceForeground": "#FFF", "gitDecoration.untrackedResourceForeground": "#ECB22E", "gitDecoration.ignoredResourceForeground": "#877583", "gitDecoration.addedResourceForeground": "#ECB22E", "gitDecoration.conflictingResourceForeground": "#FFF", "notificationCenter.border": "#161F26", "notificationToast.border": "#161F26", "notifications.foreground": "#FFF", "notifications.background": "#161F26", "notifications.border": "#161F26", "notificationCenterHeader.foreground": "#FFF", "notificationLink.foreground": "#FFF", "titleBar.activeBackground": "#2D3E4C", "titleBar.activeForeground": "#FFF", "titleBar.inactiveBackground": "#161F26", "titleBar.inactiveForeground": "#685C66", "titleBar.border": "#2D3E4C", "welcomePage.buttonBackground": "#F3F3F3", "welcomePage.buttonHoverBackground": "#ECECEC", "editorWidget.background": "#F9F9F9", "editorWidget.border": "#dbdbdb", "editorSuggestWidget.foreground": "#2D3E4C", "editorSuggestWidget.highlightForeground": "#2D3E4C", "editorSuggestWidget.selectedBackground": "#b9b9b9", "editorGroup.emptyBackground": "#2D3E4C", "editorGroup.focusedEmptyBorder": "#2D3E4C", "editorPane.background": "#2D3E4C", "breadcrumb.foreground": "#161F26", "breadcrumb.focusForeground": "#475663", "settings.headerForeground": "#161F26", "settings.dropdownForeground": "#161F26", "settings.dropdownBorder": "#161F26", "menu.separatorBackground": "#F9FAFA", "menu.background": "#161F26", "menu.foreground": "#F9FAFA", "textPreformat.foreground": "#161F26", "editorIndentGuide.background": "#F3F3F3", "editorIndentGuide.activeBackground": "#dbdbdb", "debugExceptionWidget.background": "#AED4FB", "debugExceptionWidget.border": "#161F26", "editorMarkerNavigation.background": "#F9F9F9", "editorMarkerNavigationInfo.background": "#6182b8", "editorMarkerNavigationError.background": "#F44C5E", "editorMarkerNavigationWarning.background": "#F6B555" }, "tokenColors": [ { "settings": { "foreground": "#002339" } }, { "scope": [ "meta.paragraph.markdown", "string.other.link.description.title.markdown" ], "settings": { "foreground": "#110000" } }, { "scope": [ "entity.name.section.markdown", "punctuation.definition.heading.markdown" ], "settings": { "foreground": "#034c7c" } }, { "scope": [ "punctuation.definition.string.begin.markdown", "punctuation.definition.string.end.markdown", "markup.quote.markdown" ], "settings": { "foreground": "#00AC8F" } }, { "scope": ["markup.quote.markdown"], "settings": { "fontStyle": "italic", "foreground": "#003494" } }, { "scope": ["markup.bold.markdown", "punctuation.definition.bold.markdown"], "settings": { "fontStyle": "bold", "foreground": "#4e76b5" } }, { "scope": [ "markup.italic.markdown", "punctuation.definition.italic.markdown" ], "settings": { "fontStyle": "italic", "foreground": "#C792EA" } }, { "scope": [ "markup.inline.raw.string.markdown", "markup.fenced_code.block.markdown" ], "settings": { "fontStyle": "italic", "foreground": "#0460b1" } }, { "scope": ["punctuation.definition.metadata.markdown"], "settings": { "foreground": "#00AC8F" } }, { "scope": [ "markup.underline.link.image.markdown", "markup.underline.link.markdown" ], "settings": { "foreground": "#924205" } }, { "name": "Comment", "scope": "comment", "settings": { "fontStyle": "italic", "foreground": "#357b42" } }, { "name": "String", "scope": "string", "settings": { "foreground": "#a44185" } }, { "name": "Number", "scope": "constant.numeric", "settings": { "foreground": "#174781" } }, { "name": "Constant", "scope": "constant", "settings": { "foreground": "#174781" } }, { "name": "Built-in constant", "scope": "language.method", "settings": { "foreground": "#174781" } }, { "name": "User-defined constant", "scope": ["constant.character", "constant.other"], "settings": { "foreground": "#174781" } }, { "name": "Variable", "scope": "variable", "settings": { "fontStyle": "", "foreground": "#2f86d2" } }, { "name": "Variable", "scope": "variable.language.this", "settings": { "fontStyle": "", "foreground": "#000000" } }, { "name": "Keyword", "scope": "keyword", "settings": { "fontStyle": "", "foreground": "#7b30d0" } }, { "name": "Storage", "scope": "storage", "settings": { "fontStyle": "", "foreground": "#da5221" } }, { "name": "Storage type", "scope": "storage.type", "settings": { "foreground": "#0991b6", "fontStyle": "" } }, { "name": "Class name", "scope": "entity.name.class", "settings": { "foreground": "#1172c7" } }, { "name": "Inherited class", "scope": "entity.other.inherited-class", "settings": { "fontStyle": "", "foreground": "#b02767" } }, { "name": "Function name", "scope": "entity.name.function", "settings": { "fontStyle": "", "foreground": "#7eb233" } }, { "name": "Function argument", "scope": "variable.parameter", "settings": { "foreground": "#b1108e", "fontStyle": "" } }, { "name": "Tag name", "scope": "entity.name.tag", "settings": { "fontStyle": "", "foreground": "#0444ac" } }, { "name": "Html Other", "scope": "text.html.basic", "settings": { "fontStyle": "", "foreground": "#0071ce" } }, { "name": "Entity Name Type", "scope": "entity.name.type", "settings": { "foreground": "#0444ac" } }, { "name": "Tag attribute", "scope": "entity.other.attribute-name", "settings": { "fontStyle": "italic", "foreground": "#df8618" } }, { "name": "Library function", "scope": "support.function", "settings": { "fontStyle": "", "foreground": "#1ab394" } }, { "name": "Library constant", "scope": "support.constant", "settings": { "fontStyle": "", "foreground": "#174781" } }, { "name": "Library class/type", "scope": ["support.type", "support.class"], "settings": { "foreground": "#dc3eb7" } }, { "name": "Library variable", "scope": "support.other.variable", "settings": { "foreground": "#224555" } }, { "name": "Invalid", "scope": "invalid", "settings": { "fontStyle": " italic bold underline", "foreground": "#207bb8" } }, { "name": "Invalid deprecated", "scope": "invalid.deprecated", "settings": { "foreground": "#207bb8", "fontStyle": " bold italic underline" } }, { "name": "[JSON] - Support", "scope": "source.json support", "settings": { "foreground": "#6dbdfa" } }, { "name": "[JSON] - String", "scope": [ "source.json string", "source.json punctuation.definition.string" ], "settings": { "foreground": "#00820f" } }, { "name": "Lists", "scope": "markup.list", "settings": { "foreground": "#207bb8" } }, { "name": "Headings", "scope": [ "markup.heading punctuation.definition.heading", "entity.name.section" ], "settings": { "fontStyle": "", "foreground": "#4FB4D8" } }, { "name": "Support", "scope": [ "text.html.markdown meta.paragraph meta.link.inline", "text.html.markdown meta.paragraph meta.link.inline punctuation.definition.string.begin.markdown", "text.html.markdown meta.paragraph meta.link.inline punctuation.definition.string.end.markdown" ], "settings": { "foreground": "#87429A" } }, { "name": "Quotes", "scope": "markup.quote", "settings": { "foreground": "#87429A" } }, { "name": "Bold", "scope": "markup.bold", "settings": { "fontStyle": "bold", "foreground": "#08134A" } }, { "name": "Italic", "scope": ["markup.italic", "punctuation.definition.italic"], "settings": { "fontStyle": "italic", "foreground": "#174781" } }, { "name": "Link Url", "scope": "meta.link", "settings": { "foreground": "#87429A" } } ] } ================================================ FILE: apps/web/src/lib/shiki/themes/solarized-dark.json ================================================ { "name": "solarized-dark", "tokenColors": [ { "settings": { "foreground": "#839496" } }, { "scope": [ "meta.embedded", "source.groovy.embedded", "string meta.image.inline.markdown" ], "settings": { "foreground": "#839496" } }, { "name": "Comment", "scope": "comment", "settings": { "fontStyle": "italic", "foreground": "#586E75" } }, { "name": "String", "scope": "string", "settings": { "foreground": "#2AA198" } }, { "name": "Regexp", "scope": "string.regexp", "settings": { "foreground": "#DC322F" } }, { "name": "Number", "scope": "constant.numeric", "settings": { "foreground": "#D33682" } }, { "name": "Variable", "scope": ["variable.language", "variable.other"], "settings": { "foreground": "#268BD2" } }, { "name": "Keyword", "scope": "keyword", "settings": { "foreground": "#859900" } }, { "name": "Storage", "scope": "storage", "settings": { "fontStyle": "bold", "foreground": "#93A1A1" } }, { "name": "Class name", "scope": [ "entity.name.class", "entity.name.type", "entity.name.namespace", "entity.name.scope-resolution" ], "settings": { "fontStyle": "", "foreground": "#CB4B16" } }, { "name": "Function name", "scope": "entity.name.function", "settings": { "foreground": "#268BD2" } }, { "name": "Variable start", "scope": "punctuation.definition.variable", "settings": { "foreground": "#859900" } }, { "name": "Embedded code markers", "scope": [ "punctuation.section.embedded.begin", "punctuation.section.embedded.end" ], "settings": { "foreground": "#DC322F" } }, { "name": "Built-in constant", "scope": ["constant.language", "meta.preprocessor"], "settings": { "foreground": "#B58900" } }, { "name": "Support.construct", "scope": ["support.function.construct", "keyword.other.new"], "settings": { "foreground": "#CB4B16" } }, { "name": "User-defined constant", "scope": ["constant.character", "constant.other"], "settings": { "foreground": "#CB4B16" } }, { "name": "Inherited class", "scope": "entity.other.inherited-class", "settings": { "foreground": "#6C71C4" } }, { "name": "Function argument", "scope": "variable.parameter", "settings": {} }, { "name": "Tag name", "scope": "entity.name.tag", "settings": { "foreground": "#268BD2" } }, { "name": "Tag start/end", "scope": "punctuation.definition.tag", "settings": { "foreground": "#586E75" } }, { "name": "Tag attribute", "scope": "entity.other.attribute-name", "settings": { "foreground": "#93A1A1" } }, { "name": "Library function", "scope": "support.function", "settings": { "foreground": "#268BD2" } }, { "name": "Continuation", "scope": "punctuation.separator.continuation", "settings": { "foreground": "#DC322F" } }, { "name": "Library constant", "scope": ["support.constant", "support.variable"], "settings": {} }, { "name": "Library class/type", "scope": ["support.type", "support.class"], "settings": { "foreground": "#859900" } }, { "name": "Library Exception", "scope": "support.type.exception", "settings": { "foreground": "#CB4B16" } }, { "name": "Library variable", "scope": "support.other.variable", "settings": {} }, { "name": "Invalid", "scope": "invalid", "settings": { "foreground": "#DC322F" } }, { "name": "diff: header", "scope": ["meta.diff", "meta.diff.header"], "settings": { "fontStyle": "italic", "foreground": "#268BD2" } }, { "name": "diff: deleted", "scope": "markup.deleted", "settings": { "fontStyle": "", "foreground": "#DC322F" } }, { "name": "diff: changed", "scope": "markup.changed", "settings": { "fontStyle": "", "foreground": "#CB4B16" } }, { "name": "diff: inserted", "scope": "markup.inserted", "settings": { "foreground": "#859900" } }, { "name": "Markup Quote", "scope": "markup.quote", "settings": { "foreground": "#859900" } }, { "name": "Markup Lists", "scope": "markup.list", "settings": { "foreground": "#B58900" } }, { "name": "Markup Styling", "scope": ["markup.bold", "markup.italic"], "settings": { "foreground": "#D33682" } }, { "name": "Markup: Strong", "scope": "markup.bold", "settings": { "fontStyle": "bold" } }, { "name": "Markup: Emphasis", "scope": "markup.italic", "settings": { "fontStyle": "italic" } }, { "scope": "markup.strikethrough", "settings": { "fontStyle": "strikethrough" } }, { "name": "Markup Inline", "scope": "markup.inline.raw", "settings": { "fontStyle": "", "foreground": "#2AA198" } }, { "name": "Markup Headings", "scope": "markup.heading", "settings": { "fontStyle": "bold", "foreground": "#268BD2" } }, { "name": "Markup Setext Header", "scope": "markup.heading.setext", "settings": { "fontStyle": "", "foreground": "#268BD2" } } ], "colors": { "focusBorder": "#2AA19899", "selection.background": "#2AA19899", "input.background": "#003847", "input.foreground": "#93A1A1", "input.placeholderForeground": "#93A1A1AA", "inputOption.activeBorder": "#2AA19899", "inputValidation.infoBorder": "#363b5f", "inputValidation.infoBackground": "#052730", "inputValidation.warningBackground": "#5d5938", "inputValidation.warningBorder": "#9d8a5e", "inputValidation.errorBackground": "#571b26", "inputValidation.errorBorder": "#a92049", "errorForeground": "#ffeaea", "badge.background": "#047aa6", "progressBar.background": "#047aa6", "dropdown.background": "#00212B", "dropdown.border": "#2AA19899", "button.background": "#2AA19899", "list.activeSelectionBackground": "#005A6F", "quickInputList.focusBackground": "#005A6F", "list.hoverBackground": "#004454AA", "list.inactiveSelectionBackground": "#00445488", "list.dropBackground": "#00445488", "list.highlightForeground": "#1ebcc5", "editor.background": "#002B36", "editor.foreground": "#839496", "editorWidget.background": "#00212B", "editorCursor.foreground": "#D30102", "editorWhitespace.foreground": "#93A1A180", "editor.lineHighlightBackground": "#073642", "editorLineNumber.activeForeground": "#949494", "editor.selectionBackground": "#274642", "minimap.selectionHighlight": "#274642", "editorIndentGuide.background": "#93A1A180", "editorIndentGuide.activeBackground": "#C3E1E180", "editorHoverWidget.background": "#004052", "editorMarkerNavigationError.background": "#AB395B", "editorMarkerNavigationWarning.background": "#5B7E7A", "editor.selectionHighlightBackground": "#005A6FAA", "editor.wordHighlightBackground": "#004454AA", "editor.wordHighlightStrongBackground": "#005A6FAA", "editorBracketHighlight.foreground1": "#cdcdcdff", "editorBracketHighlight.foreground2": "#b58900ff", "editorBracketHighlight.foreground3": "#d33682ff", "peekViewResult.background": "#00212B", "peekViewEditor.background": "#10192c", "peekViewTitle.background": "#00212B", "peekView.border": "#2b2b4a", "peekViewEditor.matchHighlightBackground": "#7744AA40", "titleBar.activeBackground": "#002C39", "editorGroup.border": "#00212B", "editorGroup.dropBackground": "#2AA19844", "editorGroupHeader.tabsBackground": "#004052", "tab.activeForeground": "#d6dbdb", "tab.activeBackground": "#002B37", "tab.inactiveForeground": "#93A1A1", "tab.inactiveBackground": "#004052", "tab.border": "#003847", "tab.lastPinnedBorder": "#2AA19844", "activityBar.background": "#003847", "panel.border": "#2b2b4a", "sideBar.background": "#00212B", "sideBarTitle.foreground": "#93A1A1", "statusBar.foreground": "#93A1A1", "statusBar.background": "#00212B", "statusBar.debuggingBackground": "#00212B", "statusBar.noFolderBackground": "#00212B", "statusBarItem.remoteBackground": "#2AA19899", "ports.iconRunningProcessForeground": "#369432", "statusBarItem.prominentBackground": "#003847", "statusBarItem.prominentHoverBackground": "#003847", "debugToolBar.background": "#00212B", "debugExceptionWidget.background": "#00212B", "debugExceptionWidget.border": "#AB395B", "pickerGroup.foreground": "#2AA19899", "pickerGroup.border": "#2AA19899", "terminal.ansiBlack": "#073642", "terminal.ansiRed": "#dc322f", "terminal.ansiGreen": "#859900", "terminal.ansiYellow": "#b58900", "terminal.ansiBlue": "#268bd2", "terminal.ansiMagenta": "#d33682", "terminal.ansiCyan": "#2aa198", "terminal.ansiWhite": "#eee8d5", "terminal.ansiBrightBlack": "#002b36", "terminal.ansiBrightRed": "#cb4b16", "terminal.ansiBrightGreen": "#586e75", "terminal.ansiBrightYellow": "#657b83", "terminal.ansiBrightBlue": "#839496", "terminal.ansiBrightMagenta": "#6c71c4", "terminal.ansiBrightCyan": "#93a1a1", "terminal.ansiBrightWhite": "#fdf6e3" }, "semanticHighlighting": true } ================================================ FILE: apps/web/src/lib/shiki/themes/solarized-light.json ================================================ { "name": "solarized-light", "tokenColors": [ { "settings": { "foreground": "#657B83" } }, { "scope": [ "meta.embedded", "source.groovy.embedded", "string meta.image.inline.markdown" ], "settings": { "foreground": "#657B83" } }, { "name": "Comment", "scope": "comment", "settings": { "fontStyle": "italic", "foreground": "#93A1A1" } }, { "name": "String", "scope": "string", "settings": { "foreground": "#2AA198" } }, { "name": "Regexp", "scope": "string.regexp", "settings": { "foreground": "#DC322F" } }, { "name": "Number", "scope": "constant.numeric", "settings": { "foreground": "#D33682" } }, { "name": "Variable", "scope": ["variable.language", "variable.other"], "settings": { "foreground": "#268BD2" } }, { "name": "Keyword", "scope": "keyword", "settings": { "foreground": "#859900" } }, { "name": "Storage", "scope": "storage", "settings": { "fontStyle": "bold", "foreground": "#586E75" } }, { "name": "Class name", "scope": [ "entity.name.class", "entity.name.type", "entity.name.namespace", "entity.name.scope-resolution" ], "settings": { "fontStyle": "", "foreground": "#CB4B16" } }, { "name": "Function name", "scope": "entity.name.function", "settings": { "foreground": "#268BD2" } }, { "name": "Variable start", "scope": "punctuation.definition.variable", "settings": { "foreground": "#859900" } }, { "name": "Embedded code markers", "scope": [ "punctuation.section.embedded.begin", "punctuation.section.embedded.end" ], "settings": { "foreground": "#DC322F" } }, { "name": "Built-in constant", "scope": ["constant.language", "meta.preprocessor"], "settings": { "foreground": "#B58900" } }, { "name": "Support.construct", "scope": ["support.function.construct", "keyword.other.new"], "settings": { "foreground": "#CB4B16" } }, { "name": "User-defined constant", "scope": ["constant.character", "constant.other"], "settings": { "foreground": "#CB4B16" } }, { "name": "Inherited class", "scope": "entity.other.inherited-class", "settings": { "foreground": "#6C71C4" } }, { "name": "Function argument", "scope": "variable.parameter", "settings": {} }, { "name": "Tag name", "scope": "entity.name.tag", "settings": { "foreground": "#268BD2" } }, { "name": "Tag start/end", "scope": "punctuation.definition.tag", "settings": { "foreground": "#93A1A1" } }, { "name": "Tag attribute", "scope": "entity.other.attribute-name", "settings": { "foreground": "#93A1A1" } }, { "name": "Library function", "scope": "support.function", "settings": { "foreground": "#268BD2" } }, { "name": "Continuation", "scope": "punctuation.separator.continuation", "settings": { "foreground": "#DC322F" } }, { "name": "Library constant", "scope": ["support.constant", "support.variable"], "settings": {} }, { "name": "Library class/type", "scope": ["support.type", "support.class"], "settings": { "foreground": "#859900" } }, { "name": "Library Exception", "scope": "support.type.exception", "settings": { "foreground": "#CB4B16" } }, { "name": "Library variable", "scope": "support.other.variable", "settings": {} }, { "name": "Invalid", "scope": "invalid", "settings": { "foreground": "#DC322F" } }, { "name": "diff: header", "scope": ["meta.diff", "meta.diff.header"], "settings": { "fontStyle": "italic", "foreground": "#268BD2" } }, { "name": "diff: deleted", "scope": "markup.deleted", "settings": { "fontStyle": "", "foreground": "#DC322F" } }, { "name": "diff: changed", "scope": "markup.changed", "settings": { "fontStyle": "", "foreground": "#CB4B16" } }, { "name": "diff: inserted", "scope": "markup.inserted", "settings": { "foreground": "#859900" } }, { "name": "Markup Quote", "scope": "markup.quote", "settings": { "foreground": "#859900" } }, { "name": "Markup Lists", "scope": "markup.list", "settings": { "foreground": "#B58900" } }, { "name": "Markup Styling", "scope": ["markup.bold", "markup.italic"], "settings": { "foreground": "#D33682" } }, { "name": "Markup: Strong", "scope": "markup.bold", "settings": { "fontStyle": "bold" } }, { "name": "Markup: Emphasis", "scope": "markup.italic", "settings": { "fontStyle": "italic" } }, { "scope": "markup.strikethrough", "settings": { "fontStyle": "strikethrough" } }, { "name": "Markup Inline", "scope": "markup.inline.raw", "settings": { "fontStyle": "", "foreground": "#2AA198" } }, { "name": "Markup Headings", "scope": "markup.heading", "settings": { "fontStyle": "bold", "foreground": "#268BD2" } }, { "name": "Markup Setext Header", "scope": "markup.heading.setext", "settings": { "fontStyle": "", "foreground": "#268BD2" } } ], "colors": { "focusBorder": "#D3AF86", "input.background": "#DDD6C1", "input.foreground": "#586E75", "input.placeholderForeground": "#586E75AA", "inputOption.activeBorder": "#D3AF86", "badge.background": "#B58900AA", "progressBar.background": "#B58900", "dropdown.background": "#EEE8D5", "dropdown.border": "#D3AF86", "button.background": "#AC9D57", "selection.background": "#878b9180", "list.activeSelectionBackground": "#DFCA88", "list.activeSelectionForeground": "#6C6C6C", "quickInputList.focusBackground": "#DFCA8866", "list.hoverBackground": "#DFCA8844", "list.inactiveSelectionBackground": "#D1CBB8", "list.highlightForeground": "#B58900", "editor.background": "#FDF6E3", "editor.foreground": "#657B83", "notebook.cellEditorBackground": "#F7F0E0", "editorWidget.background": "#EEE8D5", "editorCursor.foreground": "#657B83", "editorWhitespace.foreground": "#586E7580", "editor.lineHighlightBackground": "#EEE8D5", "editor.selectionBackground": "#EEE8D5", "minimap.selectionHighlight": "#EEE8D5", "editorIndentGuide.background": "#586E7580", "editorIndentGuide.activeBackground": "#081E2580", "editorHoverWidget.background": "#CCC4B0", "editorLineNumber.activeForeground": "#567983", "peekViewResult.background": "#EEE8D5", "peekViewEditor.background": "#FFFBF2", "peekViewTitle.background": "#EEE8D5", "peekView.border": "#B58900", "peekViewEditor.matchHighlightBackground": "#7744AA40", "titleBar.activeBackground": "#EEE8D5", "editorGroup.border": "#DDD6C1", "editorGroup.dropBackground": "#DDD6C1AA", "editorGroupHeader.tabsBackground": "#D9D2C2", "tab.border": "#DDD6C1", "tab.activeBackground": "#FDF6E3", "tab.inactiveForeground": "#586E75", "tab.inactiveBackground": "#D3CBB7", "tab.activeModifiedBorder": "#cb4b16", "tab.lastPinnedBorder": "#FDF6E3", "activityBar.background": "#DDD6C1", "activityBar.foreground": "#584c27", "activityBarBadge.background": "#B58900", "panel.border": "#DDD6C1", "sideBar.background": "#EEE8D5", "sideBarTitle.foreground": "#586E75", "statusBar.foreground": "#586E75", "statusBar.background": "#EEE8D5", "statusBar.debuggingBackground": "#EEE8D5", "statusBar.noFolderBackground": "#EEE8D5", "statusBarItem.remoteBackground": "#AC9D57", "ports.iconRunningProcessForeground": "#2AA19899", "statusBarItem.prominentBackground": "#DDD6C1", "statusBarItem.prominentHoverBackground": "#DDD6C199", "debugToolBar.background": "#DDD6C1", "debugExceptionWidget.background": "#DDD6C1", "debugExceptionWidget.border": "#AB395B", "pickerGroup.border": "#2AA19899", "pickerGroup.foreground": "#2AA19899", "extensionButton.prominentBackground": "#b58900", "extensionButton.prominentHoverBackground": "#584c27aa", "terminal.ansiBlack": "#073642", "terminal.ansiRed": "#dc322f", "terminal.ansiGreen": "#859900", "terminal.ansiYellow": "#b58900", "terminal.ansiBlue": "#268bd2", "terminal.ansiMagenta": "#d33682", "terminal.ansiCyan": "#2aa198", "terminal.ansiWhite": "#eee8d5", "terminal.ansiBrightBlack": "#002b36", "terminal.ansiBrightRed": "#cb4b16", "terminal.ansiBrightGreen": "#586e75", "terminal.ansiBrightYellow": "#657b83", "terminal.ansiBrightBlue": "#839496", "terminal.ansiBrightMagenta": "#6c71c4", "terminal.ansiBrightCyan": "#93a1a1", "terminal.ansiBrightWhite": "#fdf6e3", "terminal.background": "#FDF6E3", "walkThrough.embeddedEditorBackground": "#00000014" }, "semanticHighlighting": true } ================================================ FILE: apps/web/src/lib/shiki/themes/vitesse-dark.json ================================================ { "name": "vitesse-dark", "base": "vs-dark", "colors": { "focusBorder": "#00000000", "foreground": "#dbd7caee", "descriptionForeground": "#dedcd590", "errorForeground": "#cb7676", "textLink.foreground": "#4d9375", "textLink.activeForeground": "#4d9375", "textBlockQuote.background": "#121212", "textBlockQuote.border": "#191919", "textCodeBlock.background": "#121212", "textPreformat.foreground": "#d1d5da", "textSeparator.foreground": "#586069", "button.background": "#4d9375", "button.foreground": "#121212", "button.hoverBackground": "#4d9375", "checkbox.background": "#181818", "checkbox.border": "#2f363d", "dropdown.background": "#121212", "dropdown.border": "#191919", "dropdown.foreground": "#dbd7caee", "dropdown.listBackground": "#181818", "input.background": "#181818", "input.border": "#191919", "input.foreground": "#dbd7caee", "input.placeholderForeground": "#dedcd590", "inputOption.activeBackground": "#dedcd530", "badge.foreground": "#121212", "badge.background": "#dedcd590", "progressBar.background": "#4d9375", "titleBar.activeForeground": "#bfbaaa", "titleBar.activeBackground": "#121212", "titleBar.inactiveForeground": "#959da5", "titleBar.inactiveBackground": "#121212", "titleBar.border": "#181818", "activityBar.foreground": "#dbd7caee", "activityBar.inactiveForeground": "#dedcd530", "activityBar.background": "#121212", "activityBarBadge.foreground": "#121212", "activityBarBadge.background": "#bfbaaa", "activityBar.activeBorder": "#4d9375", "activityBar.border": "#191919", "sideBar.foreground": "#bfbaaa", "sideBar.background": "#121212", "sideBar.border": "#191919", "sideBarTitle.foreground": "#dbd7caee", "sideBarSectionHeader.foreground": "#dbd7caee", "sideBarSectionHeader.background": "#121212", "sideBarSectionHeader.border": "#191919", "list.hoverForeground": "#dbd7caee", "list.inactiveSelectionForeground": "#dbd7caee", "list.activeSelectionForeground": "#dbd7caee", "list.hoverBackground": "#181818", "list.inactiveSelectionBackground": "#181818", "list.activeSelectionBackground": "#181818", "list.inactiveFocusBackground": "#121212", "list.focusBackground": "#181818", "tree.indentGuidesStroke": "#2f363d", "notificationCenterHeader.foreground": "#959da5", "notificationCenterHeader.background": "#121212", "notifications.foreground": "#dbd7caee", "notifications.background": "#121212", "notifications.border": "#191919", "notificationsErrorIcon.foreground": "#cb7676", "notificationsWarningIcon.foreground": "#d4976c", "notificationsInfoIcon.foreground": "#6394bf", "pickerGroup.border": "#444d56", "pickerGroup.foreground": "#dbd7caee", "quickInput.background": "#121212", "quickInput.foreground": "#dbd7caee", "statusBar.foreground": "#bfbaaa", "statusBar.background": "#121212", "statusBar.border": "#191919", "statusBar.noFolderBackground": "#121212", "statusBar.debuggingBackground": "#181818", "statusBar.debuggingForeground": "#bfbaaa", "statusBarItem.prominentBackground": "#181818", "editorGroupHeader.tabsBackground": "#121212", "editorGroupHeader.tabsBorder": "#191919", "editorGroup.border": "#191919", "tab.activeForeground": "#dbd7caee", "tab.inactiveForeground": "#959da5", "tab.inactiveBackground": "#121212", "tab.activeBackground": "#121212", "tab.hoverBackground": "#181818", "tab.unfocusedHoverBackground": "#121212", "tab.border": "#191919", "tab.unfocusedActiveBorderTop": "#191919", "tab.activeBorder": "#191919", "tab.unfocusedActiveBorder": "#191919", "tab.activeBorderTop": "#dedcd590", "breadcrumb.foreground": "#959da5", "breadcrumb.focusForeground": "#dbd7caee", "breadcrumb.activeSelectionForeground": "#eeeeee15", "breadcrumbPicker.background": "#121212", "editor.foreground": "#dbd7caee", "editor.background": "#121212", "editorWidget.background": "#121212", "editor.foldBackground": "#eeeeee10", "editor.lineHighlightBackground": "#181818", "editorLineNumber.foreground": "#dedcd530", "editorLineNumber.activeForeground": "#bfbaaa", "editorIndentGuide.background": "#ffffff15", "editorIndentGuide.activeBackground": "#ffffff30", "editorWhitespace.foreground": "#ffffff15", "editor.findMatchBackground": "#e6cc7722", "editor.findMatchHighlightBackground": "#e6cc7744", "editor.inactiveSelectionBackground": "#eeeeee08", "editor.selectionBackground": "#eeeeee15", "editor.selectionHighlightBackground": "#eeeeee08", "editor.wordHighlightBackground": "#1c6b4805", "editor.wordHighlightStrongBackground": "#1c6b4810", "editorBracketMatch.background": "#4d937520", "diffEditor.insertedTextBackground": "#4d937522", "diffEditor.removedTextBackground": "#ab595922", "scrollbar.shadow": "#0008", "scrollbarSlider.background": "#dedcd510", "scrollbarSlider.hoverBackground": "#dedcd530", "scrollbarSlider.activeBackground": "#dedcd530", "editorOverviewRuler.border": "#111", "panel.background": "#121212", "panel.border": "#191919", "panelTitle.activeBorder": "#4d9375", "panelTitle.activeForeground": "#dbd7caee", "panelTitle.inactiveForeground": "#959da5", "panelInput.border": "#2f363d", "terminal.foreground": "#dbd7caee", "terminal.selectionBackground": "#eeeeee15", "terminal.ansiBrightBlack": "#777777", "terminal.ansiBrightBlue": "#6394bf", "terminal.ansiBrightCyan": "#5eaab5", "terminal.ansiBrightGreen": "#4d9375", "terminal.ansiBrightMagenta": "#d9739f", "terminal.ansiBrightRed": "#cb7676", "terminal.ansiBrightWhite": "#ffffff", "terminal.ansiBrightYellow": "#e6cc77", "terminal.ansiBlack": "#393a34", "terminal.ansiBlue": "#6394bf", "terminal.ansiCyan": "#5eaab5", "terminal.ansiGreen": "#4d9375", "terminal.ansiMagenta": "#d9739f", "terminal.ansiRed": "#cb7676", "terminal.ansiWhite": "#dbd7caee", "terminal.ansiYellow": "#e6cc77", "gitDecoration.addedResourceForeground": "#4d9375", "gitDecoration.modifiedResourceForeground": "#6394bf", "gitDecoration.deletedResourceForeground": "#cb7676", "gitDecoration.untrackedResourceForeground": "#5eaab5", "gitDecoration.ignoredResourceForeground": "#dedcd530", "gitDecoration.conflictingResourceForeground": "#d4976c", "gitDecoration.submoduleResourceForeground": "#dedcd590", "editorGutter.modifiedBackground": "#6394bf", "editorGutter.addedBackground": "#4d9375", "editorGutter.deletedBackground": "#cb7676", "editorBracketHighlight.foreground1": "#5eaab5", "editorBracketHighlight.foreground2": "#4d9375", "editorBracketHighlight.foreground3": "#d4976c", "editorBracketHighlight.foreground4": "#d9739f", "editorBracketHighlight.foreground5": "#e6cc77", "editorBracketHighlight.foreground6": "#6394bf", "debugToolBar.background": "#121212", "editor.stackFrameHighlightBackground": "#a707", "editor.focusedStackFrameHighlightBackground": "#b808", "peekViewEditor.matchHighlightBackground": "#ffd33d33", "peekViewResult.matchHighlightBackground": "#ffd33d33", "peekViewEditor.background": "#121212", "peekViewResult.background": "#121212", "settings.headerForeground": "#dbd7caee", "settings.modifiedItemIndicator": "#4d9375", "welcomePage.buttonBackground": "#2f363d", "welcomePage.buttonHoverBackground": "#444d56", "problemsErrorIcon.foreground": "#cb7676", "problemsWarningIcon.foreground": "#d4976c", "problemsInfoIcon.foreground": "#6394bf", "editorError.foreground": "#cb7676", "editorWarning.foreground": "#d4976c", "editorInfo.foreground": "#6394bf", "editorHint.foreground": "#4d9375", "editorGutter.commentRangeForeground": "#dedcd530", "editorGutter.foldingControlForeground": "#dedcd590", "editorInlayHint.foreground": "#666666", "editorInlayHint.background": "#00000000" }, "semanticHighlighting": true, "semanticTokenColors": { "namespace": "#db889a", "property": "#b8a965", "interface": "#5DA994", "type": "#5DA994", "class": "#6893BF" }, "tokenColors": [ { "scope": ["comment", "punctuation.definition.comment", "string.comment"], "settings": { "foreground": "#758575dd" } }, { "scope": [ "delimiter.bracket", "delimiter", "invalid.illegal.character-not-allowed-here.html", "keyword.operator.assignment", "keyword.operator.assignment", "keyword.operator.rest", "keyword.operator.spread", "keyword.operator.type.annotation", "meta.brace", "meta.tag.block.any.html", "meta.tag.inline.any.html", "meta.tag.structure.input.void.html", "meta.type.annotation", "storage.type.function.arrow", "keyword.operator.type", "punctuation" ], "settings": { "foreground": "#666666" } }, { "scope": [ "constant", "entity.name.constant", "variable.language", "meta.definition.variable" ], "settings": { "foreground": "#c99076" } }, { "scope": ["entity", "entity.name"], "settings": { "foreground": "#80a665" } }, { "scope": "variable.parameter.function", "settings": { "foreground": "#dbd7caee" } }, { "scope": ["entity.name.tag", "tag.html"], "settings": { "foreground": "#4d9375" } }, { "scope": "entity.name.function", "settings": { "foreground": "#80a665" } }, { "scope": ["keyword", "storage.type.class.jsdoc"], "settings": { "foreground": "#4d9375" } }, { "scope": [ "storage", "storage.type", "support.type.builtin", "constant.language.undefined", "constant.language.null" ], "settings": { "foreground": "#cb7676" } }, { "scope": [ "storage.modifier.package", "storage.modifier.import", "storage.type.java" ], "settings": { "foreground": "#dbd7caee" } }, { "scope": [ "string", "string punctuation.section.embedded source", "attribute.value" ], "settings": { "foreground": "#c98a7d" } }, { "scope": ["punctuation.definition.string"], "settings": { "foreground": "#c98a7daa" } }, { "scope": ["punctuation.support.type.property-name"], "settings": { "foreground": "#b8a965aa" } }, { "scope": "support", "settings": { "foreground": "#b8a965" } }, { "scope": [ "property", "meta.property-name", "meta.object-literal.key", "entity.name.tag.yaml", "attribute.name" ], "settings": { "foreground": "#b8a965" } }, { "scope": [ "entity.other.attribute-name", "invalid.deprecated.entity.other.attribute-name.html" ], "settings": { "foreground": "#bd976a" } }, { "scope": ["variable", "identifier"], "settings": { "foreground": "#bd976a" } }, { "scope": ["support.type.primitive", "entity.name.type"], "settings": { "foreground": "#5da9a7" } }, { "scope": "namespace", "settings": { "foreground": "#db889a" } }, { "scope": ["keyword.operator", "meta.var.expr.ts"], "settings": { "foreground": "#cb7676" } }, { "scope": "invalid.broken", "settings": { "fontStyle": "italic", "foreground": "#fdaeb7" } }, { "scope": "invalid.deprecated", "settings": { "fontStyle": "italic", "foreground": "#fdaeb7" } }, { "scope": "invalid.illegal", "settings": { "fontStyle": "italic", "foreground": "#fdaeb7" } }, { "scope": "invalid.unimplemented", "settings": { "fontStyle": "italic", "foreground": "#fdaeb7" } }, { "scope": "carriage-return", "settings": { "fontStyle": "italic underline", "background": "#f97583", "foreground": "#24292e", "content": "^M" } }, { "scope": "message.error", "settings": { "foreground": "#fdaeb7" } }, { "scope": "string source", "settings": { "foreground": "#dbd7caee" } }, { "scope": "string variable", "settings": { "foreground": "#c98a7d" } }, { "scope": ["source.regexp", "string.regexp"], "settings": { "foreground": "#c4704f" } }, { "scope": [ "string.regexp.character-class", "string.regexp constant.character.escape", "string.regexp source.ruby.embedded", "string.regexp string.regexp.arbitrary-repitition" ], "settings": { "foreground": "#c98a7d" } }, { "scope": "string.regexp constant.character.escape", "settings": { "foreground": "#e6cc77" } }, { "scope": ["support.constant"], "settings": { "foreground": "#c99076" } }, { "scope": ["constant.numeric", "number"], "settings": { "foreground": "#4C9A91" } }, { "scope": ["keyword.other.unit"], "settings": { "foreground": "#cb7676" } }, { "scope": ["constant.language.boolean", "constant.language"], "settings": { "foreground": "#4d9375" } }, { "scope": "meta.module-reference", "settings": { "foreground": "#4d9375" } }, { "scope": "punctuation.definition.list.begin.markdown", "settings": { "foreground": "#d4976c" } }, { "scope": ["markup.heading", "markup.heading entity.name"], "settings": { "fontStyle": "bold", "foreground": "#4d9375" } }, { "scope": "markup.quote", "settings": { "foreground": "#5DA994" } }, { "scope": "markup.italic", "settings": { "fontStyle": "italic", "foreground": "#dbd7caee" } }, { "scope": "markup.bold", "settings": { "fontStyle": "bold", "foreground": "#dbd7caee" } }, { "scope": "markup.raw", "settings": { "foreground": "#4d9375" } }, { "scope": [ "markup.deleted", "meta.diff.header.from-file", "punctuation.definition.deleted" ], "settings": { "background": "#86181d", "foreground": "#fdaeb7" } }, { "scope": [ "markup.inserted", "meta.diff.header.to-file", "punctuation.definition.inserted" ], "settings": { "background": "#144620", "foreground": "#85e89d" } }, { "scope": ["markup.changed", "punctuation.definition.changed"], "settings": { "background": "#c24e00", "foreground": "#ffab70" } }, { "scope": ["markup.ignored", "markup.untracked"], "settings": { "foreground": "#2f363d", "background": "#79b8ff" } }, { "scope": "meta.diff.range", "settings": { "foreground": "#b392f0", "fontStyle": "bold" } }, { "scope": "meta.diff.header", "settings": { "foreground": "#79b8ff" } }, { "scope": "meta.separator", "settings": { "fontStyle": "bold", "foreground": "#79b8ff" } }, { "scope": "meta.output", "settings": { "foreground": "#79b8ff" } }, { "scope": [ "brackethighlighter.tag", "brackethighlighter.curly", "brackethighlighter.round", "brackethighlighter.square", "brackethighlighter.angle", "brackethighlighter.quote" ], "settings": { "foreground": "#d1d5da" } }, { "scope": "brackethighlighter.unmatched", "settings": { "foreground": "#fdaeb7" } }, { "scope": [ "constant.other.reference.link", "string.other.link", "punctuation.definition.string.begin.markdown", "punctuation.definition.string.end.markdown" ], "settings": { "foreground": "#c98a7d" } }, { "scope": ["markup.underline.link.markdown"], "settings": { "foreground": "#dedcd590", "fontStyle": "underline" } }, { "scope": ["type.identifier"], "settings": { "foreground": "#6893BF" } }, { "scope": ["entity.other.attribute-name.html.vue"], "settings": { "foreground": "#80a665" } }, { "scope": ["invalid.illegal.unrecognized-tag.html"], "settings": { "fontStyle": "normal" } } ], "rules": [ { "token": "comment", "foreground": "758575dd" }, { "token": "punctuation.definition.comment", "foreground": "758575dd" }, { "token": "string.comment", "foreground": "758575dd" }, { "token": "delimiter.bracket", "foreground": "666666" }, { "token": "delimiter", "foreground": "666666" }, { "token": "invalid.illegal.character-not-allowed-here.html", "foreground": "666666" }, { "token": "keyword.operator.assignment", "foreground": "666666" }, { "token": "keyword.operator.assignment", "foreground": "666666" }, { "token": "keyword.operator.rest", "foreground": "666666" }, { "token": "keyword.operator.spread", "foreground": "666666" }, { "token": "keyword.operator.type.annotation", "foreground": "666666" }, { "token": "meta.brace", "foreground": "666666" }, { "token": "meta.tag.block.any.html", "foreground": "666666" }, { "token": "meta.tag.inline.any.html", "foreground": "666666" }, { "token": "meta.tag.structure.input.void.html", "foreground": "666666" }, { "token": "meta.type.annotation", "foreground": "666666" }, { "token": "storage.type.function.arrow", "foreground": "666666" }, { "token": "keyword.operator.type", "foreground": "666666" }, { "token": "punctuation", "foreground": "666666" }, { "token": "constant", "foreground": "c99076" }, { "token": "entity.name.constant", "foreground": "c99076" }, { "token": "variable.language", "foreground": "c99076" }, { "token": "meta.definition.variable", "foreground": "c99076" }, { "token": "entity", "foreground": "80a665" }, { "token": "entity.name", "foreground": "80a665" }, { "token": "variable.parameter.function", "foreground": "dbd7caee" }, { "token": "entity.name.tag", "foreground": "4d9375" }, { "token": "tag.html", "foreground": "4d9375" }, { "token": "entity.name.function", "foreground": "80a665" }, { "token": "keyword", "foreground": "4d9375" }, { "token": "storage.type.class.jsdoc", "foreground": "4d9375" }, { "token": "storage", "foreground": "cb7676" }, { "token": "storage.type", "foreground": "cb7676" }, { "token": "support.type.builtin", "foreground": "cb7676" }, { "token": "constant.language.undefined", "foreground": "cb7676" }, { "token": "constant.language.null", "foreground": "cb7676" }, { "token": "storage.modifier.package", "foreground": "dbd7caee" }, { "token": "storage.modifier.import", "foreground": "dbd7caee" }, { "token": "storage.type.java", "foreground": "dbd7caee" }, { "token": "string", "foreground": "c98a7d" }, { "token": "string punctuation.section.embedded source", "foreground": "c98a7d" }, { "token": "attribute.value", "foreground": "c98a7d" }, { "token": "punctuation.definition.string", "foreground": "c98a7daa" }, { "token": "punctuation.support.type.property-name", "foreground": "b8a965aa" }, { "token": "support", "foreground": "b8a965" }, { "token": "property", "foreground": "b8a965" }, { "token": "meta.property-name", "foreground": "b8a965" }, { "token": "meta.object-literal.key", "foreground": "b8a965" }, { "token": "entity.name.tag.yaml", "foreground": "b8a965" }, { "token": "attribute.name", "foreground": "b8a965" }, { "token": "entity.other.attribute-name", "foreground": "bd976a" }, { "token": "invalid.deprecated.entity.other.attribute-name.html", "foreground": "bd976a" }, { "token": "variable", "foreground": "bd976a" }, { "token": "identifier", "foreground": "bd976a" }, { "token": "support.type.primitive", "foreground": "5da9a7" }, { "token": "entity.name.type", "foreground": "5da9a7" }, { "token": "namespace", "foreground": "db889a" }, { "token": "keyword.operator", "foreground": "cb7676" }, { "token": "meta.var.expr.ts", "foreground": "cb7676" }, { "token": "invalid.broken", "foreground": "fdaeb7" }, { "token": "invalid.deprecated", "foreground": "fdaeb7" }, { "token": "invalid.illegal", "foreground": "fdaeb7" }, { "token": "invalid.unimplemented", "foreground": "fdaeb7" }, { "token": "carriage-return", "foreground": "24292e" }, { "token": "message.error", "foreground": "fdaeb7" }, { "token": "string source", "foreground": "dbd7caee" }, { "token": "string variable", "foreground": "c98a7d" }, { "token": "source.regexp", "foreground": "c4704f" }, { "token": "string.regexp", "foreground": "c4704f" }, { "token": "string.regexp.character-class", "foreground": "c98a7d" }, { "token": "string.regexp constant.character.escape", "foreground": "c98a7d" }, { "token": "string.regexp source.ruby.embedded", "foreground": "c98a7d" }, { "token": "string.regexp string.regexp.arbitrary-repitition", "foreground": "c98a7d" }, { "token": "string.regexp constant.character.escape", "foreground": "e6cc77" }, { "token": "support.constant", "foreground": "c99076" }, { "token": "constant.numeric", "foreground": "4C9A91" }, { "token": "number", "foreground": "4C9A91" }, { "token": "keyword.other.unit", "foreground": "cb7676" }, { "token": "constant.language.boolean", "foreground": "4d9375" }, { "token": "constant.language", "foreground": "4d9375" }, { "token": "meta.module-reference", "foreground": "4d9375" }, { "token": "punctuation.definition.list.begin.markdown", "foreground": "d4976c" }, { "token": "markup.heading", "foreground": "4d9375" }, { "token": "markup.heading entity.name", "foreground": "4d9375" }, { "token": "markup.quote", "foreground": "5DA994" }, { "token": "markup.italic", "foreground": "dbd7caee" }, { "token": "markup.bold", "foreground": "dbd7caee" }, { "token": "markup.raw", "foreground": "4d9375" }, { "token": "markup.deleted", "foreground": "fdaeb7" }, { "token": "meta.diff.header.from-file", "foreground": "fdaeb7" }, { "token": "punctuation.definition.deleted", "foreground": "fdaeb7" }, { "token": "markup.inserted", "foreground": "85e89d" }, { "token": "meta.diff.header.to-file", "foreground": "85e89d" }, { "token": "punctuation.definition.inserted", "foreground": "85e89d" }, { "token": "markup.changed", "foreground": "ffab70" }, { "token": "punctuation.definition.changed", "foreground": "ffab70" }, { "token": "markup.ignored", "foreground": "2f363d" }, { "token": "markup.untracked", "foreground": "2f363d" }, { "token": "meta.diff.range", "foreground": "b392f0" }, { "token": "meta.diff.header", "foreground": "79b8ff" }, { "token": "meta.separator", "foreground": "79b8ff" }, { "token": "meta.output", "foreground": "79b8ff" }, { "token": "brackethighlighter.tag", "foreground": "d1d5da" }, { "token": "brackethighlighter.curly", "foreground": "d1d5da" }, { "token": "brackethighlighter.round", "foreground": "d1d5da" }, { "token": "brackethighlighter.square", "foreground": "d1d5da" }, { "token": "brackethighlighter.angle", "foreground": "d1d5da" }, { "token": "brackethighlighter.quote", "foreground": "d1d5da" }, { "token": "brackethighlighter.unmatched", "foreground": "fdaeb7" }, { "token": "constant.other.reference.link", "foreground": "c98a7d" }, { "token": "string.other.link", "foreground": "c98a7d" }, { "token": "punctuation.definition.string.begin.markdown", "foreground": "c98a7d" }, { "token": "punctuation.definition.string.end.markdown", "foreground": "c98a7d" }, { "token": "markup.underline.link.markdown", "foreground": "dedcd590" }, { "token": "type.identifier", "foreground": "6893BF" }, { "token": "entity.other.attribute-name.html.vue", "foreground": "80a665" }, { "token": "invalid.illegal.unrecognized-tag.html" } ] } ================================================ FILE: apps/web/src/lib/shiki/themes/vitesse-light.json ================================================ { "name": "vitesse-light", "base": "vs", "colors": { "focusBorder": "#00000000", "foreground": "#393a34", "descriptionForeground": "#393a3490", "errorForeground": "#ab5959", "textLink.foreground": "#1c6b48", "textLink.activeForeground": "#1c6b48", "textBlockQuote.background": "#ffffff", "textBlockQuote.border": "#f0f0f0", "textCodeBlock.background": "#ffffff", "textPreformat.foreground": "#586069", "textSeparator.foreground": "#d1d5da", "button.background": "#1c6b48", "button.foreground": "#ffffff", "button.hoverBackground": "#1c6b48", "checkbox.background": "#f5f5f5", "checkbox.border": "#d1d5da", "dropdown.background": "#ffffff", "dropdown.border": "#f0f0f0", "dropdown.foreground": "#393a34", "dropdown.listBackground": "#f5f5f5", "input.background": "#f5f5f5", "input.border": "#f0f0f0", "input.foreground": "#393a34", "input.placeholderForeground": "#393a3490", "inputOption.activeBackground": "#393a3450", "badge.foreground": "#ffffff", "badge.background": "#393a3490", "progressBar.background": "#1c6b48", "titleBar.activeForeground": "#4e4f47", "titleBar.activeBackground": "#ffffff", "titleBar.inactiveForeground": "#6a737d", "titleBar.inactiveBackground": "#ffffff", "titleBar.border": "#f5f5f5", "activityBar.foreground": "#393a34", "activityBar.inactiveForeground": "#393a3450", "activityBar.background": "#ffffff", "activityBarBadge.foreground": "#ffffff", "activityBarBadge.background": "#4e4f47", "activityBar.activeBorder": "#1c6b48", "activityBar.border": "#f0f0f0", "sideBar.foreground": "#4e4f47", "sideBar.background": "#ffffff", "sideBar.border": "#f0f0f0", "sideBarTitle.foreground": "#393a34", "sideBarSectionHeader.foreground": "#393a34", "sideBarSectionHeader.background": "#ffffff", "sideBarSectionHeader.border": "#f0f0f0", "list.hoverForeground": "#393a34", "list.inactiveSelectionForeground": "#393a34", "list.activeSelectionForeground": "#393a34", "list.hoverBackground": "#f5f5f5", "list.inactiveSelectionBackground": "#f5f5f5", "list.activeSelectionBackground": "#f5f5f5", "list.inactiveFocusBackground": "#ffffff", "list.focusBackground": "#f5f5f5", "tree.indentGuidesStroke": "#e1e4e8", "notificationCenterHeader.foreground": "#6a737d", "notificationCenterHeader.background": "#ffffff", "notifications.foreground": "#393a34", "notifications.background": "#ffffff", "notifications.border": "#f0f0f0", "notificationsErrorIcon.foreground": "#ab5959", "notificationsWarningIcon.foreground": "#a65e2b", "notificationsInfoIcon.foreground": "#296aa3", "pickerGroup.border": "#e1e4e8", "pickerGroup.foreground": "#393a34", "quickInput.background": "#ffffff", "quickInput.foreground": "#393a34", "statusBar.foreground": "#4e4f47", "statusBar.background": "#ffffff", "statusBar.border": "#f0f0f0", "statusBar.noFolderBackground": "#ffffff", "statusBar.debuggingBackground": "#f5f5f5", "statusBar.debuggingForeground": "#4e4f47", "statusBarItem.prominentBackground": "#f5f5f5", "editorGroupHeader.tabsBackground": "#ffffff", "editorGroupHeader.tabsBorder": "#f0f0f0", "editorGroup.border": "#f0f0f0", "tab.activeForeground": "#393a34", "tab.inactiveForeground": "#6a737d", "tab.inactiveBackground": "#ffffff", "tab.activeBackground": "#ffffff", "tab.hoverBackground": "#f5f5f5", "tab.unfocusedHoverBackground": "#ffffff", "tab.border": "#f0f0f0", "tab.unfocusedActiveBorderTop": "#f0f0f0", "tab.activeBorder": "#f0f0f0", "tab.unfocusedActiveBorder": "#f0f0f0", "tab.activeBorderTop": "#393a3490", "breadcrumb.foreground": "#6a737d", "breadcrumb.focusForeground": "#393a34", "breadcrumb.activeSelectionForeground": "#22222215", "breadcrumbPicker.background": "#ffffff", "editor.foreground": "#393a34", "editor.background": "#ffffff", "editorWidget.background": "#ffffff", "editor.foldBackground": "#22222210", "editor.lineHighlightBackground": "#f5f5f5", "editorLineNumber.foreground": "#393a3450", "editorLineNumber.activeForeground": "#4e4f47", "editorIndentGuide.background": "#00000015", "editorIndentGuide.activeBackground": "#00000030", "editorWhitespace.foreground": "#00000015", "editor.findMatchBackground": "#e6cc7744", "editor.findMatchHighlightBackground": "#e6cc7766", "editor.inactiveSelectionBackground": "#22222208", "editor.selectionBackground": "#22222215", "editor.selectionHighlightBackground": "#22222208", "editor.wordHighlightBackground": "#1c6b4805", "editor.wordHighlightStrongBackground": "#1c6b4810", "editorBracketMatch.background": "#1c6b4820", "diffEditor.insertedTextBackground": "#1c6b4815", "diffEditor.removedTextBackground": "#ab595910", "scrollbar.shadow": "#6a737d33", "scrollbarSlider.background": "#393a3410", "scrollbarSlider.hoverBackground": "#393a3450", "scrollbarSlider.activeBackground": "#393a3450", "editorOverviewRuler.border": "#fff", "panel.background": "#ffffff", "panel.border": "#f0f0f0", "panelTitle.activeBorder": "#1c6b48", "panelTitle.activeForeground": "#393a34", "panelTitle.inactiveForeground": "#6a737d", "panelInput.border": "#e1e4e8", "terminal.foreground": "#393a34", "terminal.selectionBackground": "#22222215", "terminal.ansiBrightBlack": "#aaaaaa", "terminal.ansiBrightBlue": "#296aa3", "terminal.ansiBrightCyan": "#2993a3", "terminal.ansiBrightGreen": "#1e754f", "terminal.ansiBrightMagenta": "#a13865", "terminal.ansiBrightRed": "#ab5959", "terminal.ansiBrightWhite": "#dddddd", "terminal.ansiBrightYellow": "#bda437", "terminal.ansiBlack": "#121212", "terminal.ansiBlue": "#296aa3", "terminal.ansiCyan": "#2993a3", "terminal.ansiGreen": "#1e754f", "terminal.ansiMagenta": "#a13865", "terminal.ansiRed": "#ab5959", "terminal.ansiWhite": "#dbd7caee", "terminal.ansiYellow": "#bda437", "gitDecoration.addedResourceForeground": "#1e754f", "gitDecoration.modifiedResourceForeground": "#296aa3", "gitDecoration.deletedResourceForeground": "#ab5959", "gitDecoration.untrackedResourceForeground": "#2993a3", "gitDecoration.ignoredResourceForeground": "#393a3450", "gitDecoration.conflictingResourceForeground": "#a65e2b", "gitDecoration.submoduleResourceForeground": "#393a3490", "editorGutter.modifiedBackground": "#296aa3", "editorGutter.addedBackground": "#1e754f", "editorGutter.deletedBackground": "#ab5959", "editorBracketHighlight.foreground1": "#2993a3", "editorBracketHighlight.foreground2": "#1e754f", "editorBracketHighlight.foreground3": "#a65e2b", "editorBracketHighlight.foreground4": "#a13865", "editorBracketHighlight.foreground5": "#bda437", "editorBracketHighlight.foreground6": "#296aa3", "debugToolBar.background": "#ffffff", "editor.stackFrameHighlightBackground": "#fffbdd", "editor.focusedStackFrameHighlightBackground": "#fff5b1", "peekViewEditor.background": "#ffffff", "peekViewResult.background": "#ffffff", "settings.headerForeground": "#393a34", "settings.modifiedItemIndicator": "#1c6b48", "welcomePage.buttonBackground": "#f6f8fa", "welcomePage.buttonHoverBackground": "#e1e4e8", "problemsErrorIcon.foreground": "#ab5959", "problemsWarningIcon.foreground": "#a65e2b", "problemsInfoIcon.foreground": "#296aa3", "editorError.foreground": "#ab5959", "editorWarning.foreground": "#a65e2b", "editorInfo.foreground": "#296aa3", "editorHint.foreground": "#1e754f", "editorGutter.commentRangeForeground": "#393a3450", "editorGutter.foldingControlForeground": "#393a3490", "editorInlayHint.foreground": "#999999", "editorInlayHint.background": "#00000000" }, "semanticHighlighting": true, "semanticTokenColors": { "namespace": "#b05a78", "property": "#998418", "interface": "#2e8f82", "type": "#2e8f82", "class": "#5a6aa6" }, "tokenColors": [ { "scope": ["comment", "punctuation.definition.comment", "string.comment"], "settings": { "foreground": "#a0ada0" } }, { "scope": [ "delimiter.bracket", "delimiter", "invalid.illegal.character-not-allowed-here.html", "keyword.operator.assignment", "keyword.operator.assignment", "keyword.operator.rest", "keyword.operator.spread", "keyword.operator.type.annotation", "meta.brace", "meta.tag.block.any.html", "meta.tag.inline.any.html", "meta.tag.structure.input.void.html", "meta.type.annotation", "storage.type.function.arrow", "keyword.operator.type", "punctuation" ], "settings": { "foreground": "#999999" } }, { "scope": [ "constant", "entity.name.constant", "variable.language", "meta.definition.variable" ], "settings": { "foreground": "#a65e2b" } }, { "scope": ["entity", "entity.name"], "settings": { "foreground": "#59873a" } }, { "scope": "variable.parameter.function", "settings": { "foreground": "#393a34" } }, { "scope": ["entity.name.tag", "tag.html"], "settings": { "foreground": "#1e754f" } }, { "scope": "entity.name.function", "settings": { "foreground": "#59873a" } }, { "scope": ["keyword", "storage.type.class.jsdoc"], "settings": { "foreground": "#1e754f" } }, { "scope": [ "storage", "storage.type", "support.type.builtin", "constant.language.undefined", "constant.language.null" ], "settings": { "foreground": "#ab5959" } }, { "scope": [ "storage.modifier.package", "storage.modifier.import", "storage.type.java" ], "settings": { "foreground": "#393a34" } }, { "scope": [ "string", "string punctuation.section.embedded source", "attribute.value" ], "settings": { "foreground": "#b56959" } }, { "scope": ["punctuation.definition.string"], "settings": { "foreground": "#b56959aa" } }, { "scope": ["punctuation.support.type.property-name"], "settings": { "foreground": "#998418aa" } }, { "scope": "support", "settings": { "foreground": "#998418" } }, { "scope": [ "property", "meta.property-name", "meta.object-literal.key", "entity.name.tag.yaml", "attribute.name" ], "settings": { "foreground": "#998418" } }, { "scope": [ "entity.other.attribute-name", "invalid.deprecated.entity.other.attribute-name.html" ], "settings": { "foreground": "#b07d48" } }, { "scope": ["variable", "identifier"], "settings": { "foreground": "#b07d48" } }, { "scope": ["support.type.primitive", "entity.name.type"], "settings": { "foreground": "#2e808f" } }, { "scope": "namespace", "settings": { "foreground": "#b05a78" } }, { "scope": ["keyword.operator", "meta.var.expr.ts"], "settings": { "foreground": "#ab5959" } }, { "scope": "invalid.broken", "settings": { "fontStyle": "italic", "foreground": "#b31d28" } }, { "scope": "invalid.deprecated", "settings": { "fontStyle": "italic", "foreground": "#b31d28" } }, { "scope": "invalid.illegal", "settings": { "fontStyle": "italic", "foreground": "#b31d28" } }, { "scope": "invalid.unimplemented", "settings": { "fontStyle": "italic", "foreground": "#b31d28" } }, { "scope": "carriage-return", "settings": { "fontStyle": "italic underline", "background": "#d73a49", "foreground": "#fafbfc", "content": "^M" } }, { "scope": "message.error", "settings": { "foreground": "#b31d28" } }, { "scope": "string source", "settings": { "foreground": "#393a34" } }, { "scope": "string variable", "settings": { "foreground": "#b56959" } }, { "scope": ["source.regexp", "string.regexp"], "settings": { "foreground": "#ab5e3f" } }, { "scope": [ "string.regexp.character-class", "string.regexp constant.character.escape", "string.regexp source.ruby.embedded", "string.regexp string.regexp.arbitrary-repitition" ], "settings": { "foreground": "#b56959" } }, { "scope": "string.regexp constant.character.escape", "settings": { "foreground": "#bda437" } }, { "scope": ["support.constant"], "settings": { "foreground": "#a65e2b" } }, { "scope": ["constant.numeric", "number"], "settings": { "foreground": "#2f798a" } }, { "scope": ["keyword.other.unit"], "settings": { "foreground": "#ab5959" } }, { "scope": ["constant.language.boolean", "constant.language"], "settings": { "foreground": "#1e754f" } }, { "scope": "meta.module-reference", "settings": { "foreground": "#1c6b48" } }, { "scope": "punctuation.definition.list.begin.markdown", "settings": { "foreground": "#a65e2b" } }, { "scope": ["markup.heading", "markup.heading entity.name"], "settings": { "fontStyle": "bold", "foreground": "#1c6b48" } }, { "scope": "markup.quote", "settings": { "foreground": "#2e8f82" } }, { "scope": "markup.italic", "settings": { "fontStyle": "italic", "foreground": "#393a34" } }, { "scope": "markup.bold", "settings": { "fontStyle": "bold", "foreground": "#393a34" } }, { "scope": "markup.raw", "settings": { "foreground": "#1c6b48" } }, { "scope": [ "markup.deleted", "meta.diff.header.from-file", "punctuation.definition.deleted" ], "settings": { "background": "#ffeef0", "foreground": "#b31d28" } }, { "scope": [ "markup.inserted", "meta.diff.header.to-file", "punctuation.definition.inserted" ], "settings": { "background": "#f0fff4", "foreground": "#22863a" } }, { "scope": ["markup.changed", "punctuation.definition.changed"], "settings": { "background": "#ffebda", "foreground": "#e36209" } }, { "scope": ["markup.ignored", "markup.untracked"], "settings": { "foreground": "#f6f8fa", "background": "#005cc5" } }, { "scope": "meta.diff.range", "settings": { "foreground": "#6f42c1", "fontStyle": "bold" } }, { "scope": "meta.diff.header", "settings": { "foreground": "#005cc5" } }, { "scope": "meta.separator", "settings": { "fontStyle": "bold", "foreground": "#005cc5" } }, { "scope": "meta.output", "settings": { "foreground": "#005cc5" } }, { "scope": [ "brackethighlighter.tag", "brackethighlighter.curly", "brackethighlighter.round", "brackethighlighter.square", "brackethighlighter.angle", "brackethighlighter.quote" ], "settings": { "foreground": "#586069" } }, { "scope": "brackethighlighter.unmatched", "settings": { "foreground": "#b31d28" } }, { "scope": [ "constant.other.reference.link", "string.other.link", "punctuation.definition.string.begin.markdown", "punctuation.definition.string.end.markdown" ], "settings": { "foreground": "#b56959" } }, { "scope": ["markup.underline.link.markdown"], "settings": { "foreground": "#393a3490", "fontStyle": "underline" } }, { "scope": ["type.identifier"], "settings": { "foreground": "#5a6aa6" } }, { "scope": ["entity.other.attribute-name.html.vue"], "settings": { "foreground": "#59873a" } }, { "scope": ["invalid.illegal.unrecognized-tag.html"], "settings": { "fontStyle": "normal" } } ], "rules": [ { "token": "comment", "foreground": "a0ada0" }, { "token": "punctuation.definition.comment", "foreground": "a0ada0" }, { "token": "string.comment", "foreground": "a0ada0" }, { "token": "delimiter.bracket", "foreground": "999999" }, { "token": "delimiter", "foreground": "999999" }, { "token": "invalid.illegal.character-not-allowed-here.html", "foreground": "999999" }, { "token": "keyword.operator.assignment", "foreground": "999999" }, { "token": "keyword.operator.assignment", "foreground": "999999" }, { "token": "keyword.operator.rest", "foreground": "999999" }, { "token": "keyword.operator.spread", "foreground": "999999" }, { "token": "keyword.operator.type.annotation", "foreground": "999999" }, { "token": "meta.brace", "foreground": "999999" }, { "token": "meta.tag.block.any.html", "foreground": "999999" }, { "token": "meta.tag.inline.any.html", "foreground": "999999" }, { "token": "meta.tag.structure.input.void.html", "foreground": "999999" }, { "token": "meta.type.annotation", "foreground": "999999" }, { "token": "storage.type.function.arrow", "foreground": "999999" }, { "token": "keyword.operator.type", "foreground": "999999" }, { "token": "punctuation", "foreground": "999999" }, { "token": "constant", "foreground": "a65e2b" }, { "token": "entity.name.constant", "foreground": "a65e2b" }, { "token": "variable.language", "foreground": "a65e2b" }, { "token": "meta.definition.variable", "foreground": "a65e2b" }, { "token": "entity", "foreground": "59873a" }, { "token": "entity.name", "foreground": "59873a" }, { "token": "variable.parameter.function", "foreground": "393a34" }, { "token": "entity.name.tag", "foreground": "1e754f" }, { "token": "tag.html", "foreground": "1e754f" }, { "token": "entity.name.function", "foreground": "59873a" }, { "token": "keyword", "foreground": "1e754f" }, { "token": "storage.type.class.jsdoc", "foreground": "1e754f" }, { "token": "storage", "foreground": "ab5959" }, { "token": "storage.type", "foreground": "ab5959" }, { "token": "support.type.builtin", "foreground": "ab5959" }, { "token": "constant.language.undefined", "foreground": "ab5959" }, { "token": "constant.language.null", "foreground": "ab5959" }, { "token": "storage.modifier.package", "foreground": "393a34" }, { "token": "storage.modifier.import", "foreground": "393a34" }, { "token": "storage.type.java", "foreground": "393a34" }, { "token": "string", "foreground": "b56959" }, { "token": "string punctuation.section.embedded source", "foreground": "b56959" }, { "token": "attribute.value", "foreground": "b56959" }, { "token": "punctuation.definition.string", "foreground": "b56959aa" }, { "token": "punctuation.support.type.property-name", "foreground": "998418aa" }, { "token": "support", "foreground": "998418" }, { "token": "property", "foreground": "998418" }, { "token": "meta.property-name", "foreground": "998418" }, { "token": "meta.object-literal.key", "foreground": "998418" }, { "token": "entity.name.tag.yaml", "foreground": "998418" }, { "token": "attribute.name", "foreground": "998418" }, { "token": "entity.other.attribute-name", "foreground": "b07d48" }, { "token": "invalid.deprecated.entity.other.attribute-name.html", "foreground": "b07d48" }, { "token": "variable", "foreground": "b07d48" }, { "token": "identifier", "foreground": "b07d48" }, { "token": "support.type.primitive", "foreground": "2e808f" }, { "token": "entity.name.type", "foreground": "2e808f" }, { "token": "namespace", "foreground": "b05a78" }, { "token": "keyword.operator", "foreground": "ab5959" }, { "token": "meta.var.expr.ts", "foreground": "ab5959" }, { "token": "invalid.broken", "foreground": "b31d28" }, { "token": "invalid.deprecated", "foreground": "b31d28" }, { "token": "invalid.illegal", "foreground": "b31d28" }, { "token": "invalid.unimplemented", "foreground": "b31d28" }, { "token": "carriage-return", "foreground": "fafbfc" }, { "token": "message.error", "foreground": "b31d28" }, { "token": "string source", "foreground": "393a34" }, { "token": "string variable", "foreground": "b56959" }, { "token": "source.regexp", "foreground": "ab5e3f" }, { "token": "string.regexp", "foreground": "ab5e3f" }, { "token": "string.regexp.character-class", "foreground": "b56959" }, { "token": "string.regexp constant.character.escape", "foreground": "b56959" }, { "token": "string.regexp source.ruby.embedded", "foreground": "b56959" }, { "token": "string.regexp string.regexp.arbitrary-repitition", "foreground": "b56959" }, { "token": "string.regexp constant.character.escape", "foreground": "bda437" }, { "token": "support.constant", "foreground": "a65e2b" }, { "token": "constant.numeric", "foreground": "2f798a" }, { "token": "number", "foreground": "2f798a" }, { "token": "keyword.other.unit", "foreground": "ab5959" }, { "token": "constant.language.boolean", "foreground": "1e754f" }, { "token": "constant.language", "foreground": "1e754f" }, { "token": "meta.module-reference", "foreground": "1c6b48" }, { "token": "punctuation.definition.list.begin.markdown", "foreground": "a65e2b" }, { "token": "markup.heading", "foreground": "1c6b48" }, { "token": "markup.heading entity.name", "foreground": "1c6b48" }, { "token": "markup.quote", "foreground": "2e8f82" }, { "token": "markup.italic", "foreground": "393a34" }, { "token": "markup.bold", "foreground": "393a34" }, { "token": "markup.raw", "foreground": "1c6b48" }, { "token": "markup.deleted", "foreground": "b31d28" }, { "token": "meta.diff.header.from-file", "foreground": "b31d28" }, { "token": "punctuation.definition.deleted", "foreground": "b31d28" }, { "token": "markup.inserted", "foreground": "22863a" }, { "token": "meta.diff.header.to-file", "foreground": "22863a" }, { "token": "punctuation.definition.inserted", "foreground": "22863a" }, { "token": "markup.changed", "foreground": "e36209" }, { "token": "punctuation.definition.changed", "foreground": "e36209" }, { "token": "markup.ignored", "foreground": "f6f8fa" }, { "token": "markup.untracked", "foreground": "f6f8fa" }, { "token": "meta.diff.range", "foreground": "6f42c1" }, { "token": "meta.diff.header", "foreground": "005cc5" }, { "token": "meta.separator", "foreground": "005cc5" }, { "token": "meta.output", "foreground": "005cc5" }, { "token": "brackethighlighter.tag", "foreground": "586069" }, { "token": "brackethighlighter.curly", "foreground": "586069" }, { "token": "brackethighlighter.round", "foreground": "586069" }, { "token": "brackethighlighter.square", "foreground": "586069" }, { "token": "brackethighlighter.angle", "foreground": "586069" }, { "token": "brackethighlighter.quote", "foreground": "586069" }, { "token": "brackethighlighter.unmatched", "foreground": "b31d28" }, { "token": "constant.other.reference.link", "foreground": "b56959" }, { "token": "string.other.link", "foreground": "b56959" }, { "token": "punctuation.definition.string.begin.markdown", "foreground": "b56959" }, { "token": "punctuation.definition.string.end.markdown", "foreground": "b56959" }, { "token": "markup.underline.link.markdown", "foreground": "393a3490" }, { "token": "type.identifier", "foreground": "5a6aa6" }, { "token": "entity.other.attribute-name.html.vue", "foreground": "59873a" }, { "token": "invalid.illegal.unrecognized-tag.html" } ] } ================================================ FILE: apps/web/src/lib/stripe.ts ================================================ import type { Project } from "@prisma/client"; import { loadStripe } from "@stripe/stripe-js"; import { env } from "env/client.mjs"; import { PLANS, type PlanName } from "server/common/plans"; import { trpc } from "utils/trpc"; export const useAbbyStripe = () => { const { mutateAsync: createCheckoutSession } = trpc.project.createStripeCheckoutSession.useMutation(); const { mutateAsync: createBillingPortalUrl } = trpc.project.createStripeBillingPortalUrl.useMutation(); const redirectToCheckout = (projectId: string, plan: PlanName) => Promise.all([ loadStripe(env.NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY), createCheckoutSession({ plan, projectId, }), ]).then(([stripe, sessionId]) => { if (!stripe || !sessionId) return; stripe.redirectToCheckout({ sessionId, }); }); const redirectToBillingPortal = async (projectId: string) => { const url = await createBillingPortalUrl({ projectId }); if (!url) return; window.location.assign(url); }; return { redirectToBillingPortal, redirectToCheckout }; }; const MILLISECONDS_IN_A_DAY = 86_400_000; export const BETA_PRICE_ID = "BETA"; export const isBetaPlan = (project: Project) => project.stripePriceId === BETA_PRICE_ID; /** * @returns the project's paid plan or null if the project is a free one * * @example * ```ts * const project = await prisma.project.findFirst(...) * const plan = getProjectPaidPlan(project) * ``` */ export const getProjectPaidPlan = (project: T | null) => { // beta plans last for ever and have special rules if (project !== null && isBetaPlan(project)) return BETA_PRICE_ID; if ( !project || !project.stripePriceId || !project.currentPeriodEnd || // We give projects a grace period of 24 hours to pay their invoices project.currentPeriodEnd.getTime() + MILLISECONDS_IN_A_DAY < Date.now() ) { return null; } const plan = Object.keys(PLANS).find( (plan) => PLANS[plan as PlanName] === project.stripePriceId ); return (plan as PlanName) ?? null; }; ================================================ FILE: apps/web/src/lib/tracking.ts ================================================ import { useOpenPanel } from "@openpanel/nextjs"; import { usePlausible } from "next-plausible"; import { useCallback } from "react"; import type { EventOptionsTuple } from "server/common/tracking"; import type { PlausibleEvents } from "types/plausible-events"; export const useTracking = () => { const trackPlausible = usePlausible(); const { track: trackOpenPanel } = useOpenPanel(); return useCallback( ( eventName: N, ...rest: PlausibleEvents[N] extends never ? [] : EventOptionsTuple ) => { trackPlausible(eventName, ...rest); trackOpenPanel(eventName, ...rest); }, [trackPlausible, trackOpenPanel] ); }; ================================================ FILE: apps/web/src/lib/utils.ts ================================================ import { type ClassValue, clsx } from "clsx"; import { twMerge } from "tailwind-merge"; export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)); } ================================================ FILE: apps/web/src/middleware.ts ================================================ import { withAuth } from "next-auth/middleware"; import { type NextMiddleware, NextResponse } from "next/server"; export default withAuth( // `withAuth` augments your `Request` with the user's token. async function middleware(req) { const projectId = req.nextUrl.searchParams.get("projectId"); const pathName = req.nextUrl.pathname; // redirect to /welcome if user has not completed onboarding if ( pathName.startsWith("/projects") && req.nextauth.token?.user && // required check since old sessions don't have this field "hasCompletedOnboarding" in req.nextauth.token.user && req.nextauth.token.user.hasCompletedOnboarding === false ) { const newUrl = new URL(req.nextUrl); newUrl.pathname = "/welcome"; return NextResponse.redirect(newUrl); } if (pathName === "/projects" && !projectId) { const newUrl = new URL(req.nextUrl); const tokenUser = req.nextauth.token?.user; newUrl.pathname = `/projects/${ tokenUser?.lastOpenProjectId ?? tokenUser?.projectIds[0] }/flags`; return NextResponse.redirect(newUrl); } }, { callbacks: { authorized: ({ token, req }) => { const pathName = req.nextUrl.pathname; // onboarding needs authentification if (pathName === "/welcome") return token !== null; // basic auth check for /profile if (pathName.startsWith("/profile")) return token !== null; if (!pathName.startsWith("/projects")) return true; const projectId = req.nextUrl.pathname.split("/")[2]; if (!projectId) { // If the path is /projects, we want to allow it. // because we redirect afterwards if (pathName === "/projects") return true; return false; } return token?.user.projectIds.includes(projectId) ?? false; }, }, } ) as NextMiddleware; export const config = { matcher: [ "/projects/:path*", "/marketing", "/profile", "/profile/generate-token", "/welcome", ], }; ================================================ FILE: apps/web/src/pages/_app.tsx ================================================ import type { Session } from "next-auth"; import { SessionProvider } from "next-auth/react"; import { DefaultSeo } from "next-seo"; import { ThemeProvider } from "next-themes"; import type { AppProps, AppType } from "next/app"; import { Toaster } from "react-hot-toast"; import { trpc } from "../utils/trpc"; import { OpenPanelComponent } from "@openpanel/nextjs"; import { TooltipProvider } from "components/Tooltip"; import { env } from "env/client.mjs"; import { AbbyDevtools, AbbyProvider, withAbby } from "lib/abby"; import type { NextPage } from "next"; import { useRouter } from "next/router"; import type { ReactElement, ReactNode } from "react"; import "@fontsource/martian-mono/600.css"; import "../styles/shadcn.css"; import "@code-hike/mdx/dist/index.css"; import PlausibleProvider from "next-plausible"; export type NextPageWithLayout

= NextPage & { getLayout?: (page: ReactElement) => ReactNode; }; type AppPropsWithLayout = AppProps & { Component: NextPageWithLayout; }; const seoDescription = "Discover the benefits of using Abby, the open-source feature management and A/B testing SaaS. Increase transparency, collaboration, and trust. Try it now!"; const MyApp: AppType<{ session: Session | null }> = ({ Component, pageProps: { session, __ABBY_PROJECT_DATA__, ...pageProps }, }: AppPropsWithLayout) => { const router = useRouter(); const currentPageUrl = `https://www.tryabby.com${router.asPath}`; // Use the layout defined at the page level, if available const getLayout = Component.getLayout ?? ((page) => page); return ( <> {env.NEXT_PUBLIC_OPENPANEL_CLIENT_ID && ( )} {/* we render different devtools on the landing page */} {router.asPath !== "/" && }

{getLayout()}
); }; export default trpc.withTRPC(withAbby(MyApp)); ================================================ FILE: apps/web/src/pages/_document.tsx ================================================ import { Head, Html, Main, NextScript } from "next/document"; export default function Document() { return (
); } ================================================ FILE: apps/web/src/pages/_error.jsx ================================================ import * as Sentry from "@sentry/nextjs"; // biome-ignore lint/suspicious/noShadowRestrictedNames: import Error from "next/error"; const CustomErrorComponent = (props) => { return ; }; CustomErrorComponent.getInitialProps = async (contextData) => { // In case this is running in a serverless function, await this in order to give Sentry // time to send the error before the lambda exits await Sentry.captureUnderscoreErrorException(contextData); // This will contain the status code of the response return Error.getInitialProps(contextData); }; export default CustomErrorComponent; ================================================ FILE: apps/web/src/pages/api/[[...route]].ts ================================================ import { handle } from "@hono/node-server/vercel"; import { app } from "api"; export default handle(app); export const config = { api: { bodyParser: false, }, }; ================================================ FILE: apps/web/src/pages/api/auth/[...nextauth].ts ================================================ import { PrismaAdapter } from "@next-auth/prisma-adapter"; import NextAuth, { type NextAuthOptions } from "next-auth"; import EmailProvider from "next-auth/providers/email"; import GithubProvider from "next-auth/providers/github"; import GoogleProvider from "next-auth/providers/google"; import { trackSignup } from "lib/logsnag"; import { env } from "../../../env/server.mjs"; import { prisma } from "../../../server/db/client"; import { ProjectService } from "../../../server/services/ProjectService"; import type { NextApiRequest, NextApiResponse } from "next"; export const authOptions: NextAuthOptions = { pages: { signIn: "/login", newUser: "/welcome", }, session: { strategy: "jwt", }, callbacks: { // Include user.id on session session({ session, token }) { if (token.user) { session.user = { ...session.user, id: token.user.id, image: token.user.image, projectIds: token.user.projectIds, hasCompletedOnboarding: token.user.hasCompletedOnboarding, lastOpenProjectId: session.user?.lastOpenProjectId ? session.user?.lastOpenProjectId : token.user.projectIds[0], }; } return session; }, async jwt({ token, user, trigger, session }) { if (trigger === "update" && session) { if ("lastOpenProjectId" in session) { token.user.lastOpenProjectId = session.lastOpenProjectId; } if ("projectIds" in session) { token.user.projectIds = session.projectIds; } if ("hasCompletedOnboarding" in session) { token.user.hasCompletedOnboarding = session.hasCompletedOnboarding; } if ("name" in session) { token.name = session.name; } } if (user) { const dbUser = await prisma.user.findUnique({ where: { id: user.id }, include: { projects: { select: { projectId: true }, }, }, }); token.user = { ...(token.user ?? {}), id: user.id, image: user.image ?? `https://avatars.dicebear.com/api/initials/${user?.email}.svg`, hasCompletedOnboarding: dbUser?.hasCompletedOnboarding ?? false, projectIds: (dbUser?.projects ?? []).map( (project) => project.projectId ), }; } return token; }, }, events: { async createUser({ user }) { await ProjectService.createProject({ userId: user.id, projectName: "My Project", }); await trackSignup(); }, }, // Configure one or more authentication providers adapter: PrismaAdapter(prisma), providers: [ GithubProvider({ clientId: env.GITHUB_ID, clientSecret: env.GITHUB_SECRET, }), EmailProvider({ from: `Abby <${env.ABBY_FROM_EMAIL}>`, server: env.EMAIL_SERVER, }), // conditionally add Google provider if client ID and secret are set ...(env.GOOGLE_CLIENT_ID && env.GOOGLE_CLIENT_SECRET ? [ GoogleProvider({ clientId: env.GOOGLE_CLIENT_ID, clientSecret: env.GOOGLE_CLIENT_SECRET, }), ] : []), // ...add more providers here ], }; export default (req: NextApiRequest, res: NextApiResponse) => { if ( req.url && new URL(req.url, "https://tryabby.com").pathname === "/api/auth/callback/email" && req.method !== "GET" ) { console.log("Suspicous request to /api/auth/callback/email", req.method); return res.status(200).end(); } return NextAuth(authOptions)(req, res); }; ================================================ FILE: apps/web/src/pages/api/checkout/index.ts ================================================ import { type Stripe, loadStripe } from "@stripe/stripe-js"; let stripePromise: Promise | null = null; const getStripe = () => { if (!stripePromise) { if (!process.env.NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY) return; stripePromise = loadStripe(process.env.NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY); } return stripePromise as Promise; }; export async function checkout({ lineItems, }: { lineItems: { price: string; quantity: number }[]; }) { const stripe = await getStripe(); if (!stripe) return; await stripe.redirectToCheckout({ mode: "payment", lineItems, successUrl: `${window.location.origin}?session_id={CHECKOUT_SESSION_ID}`, cancelUrl: window.location.origin, }); } ================================================ FILE: apps/web/src/pages/api/invalidate-limits.ts ================================================ import dayjs from "dayjs"; import type { NextApiRequest, NextApiResponse } from "next"; import { PLANS } from "server/common/plans"; import { prisma } from "server/db/client"; import { RequestCache } from "server/services/RequestCache"; import { z } from "zod"; const incomingQuerySchema = z.object({ secretKey: z.literal("yfMWV3TC0xyLvEKoHjslTp8GeKFEFRDtfVckg3Y2LHA="), }); export default async function invalidateProjectLimitsHandler( req: NextApiRequest, res: NextApiResponse ) { const { success } = await incomingQuerySchema.spa(req.query); if (!success) { // fail silently console.warn("Invalid request to invalidate project limits"); return res.status(200); } const nonStripeProjectsToUpdate = await prisma.project.findMany({ where: { OR: [ { stripePriceId: { equals: null } }, { stripePriceId: { equals: PLANS.BETA } }, { stripePriceId: { equals: PLANS.STARTUP_LIFETIME } }, ], currentPeriodEnd: { lte: new Date(), }, }, }); if (nonStripeProjectsToUpdate.length === 0) { console.info("No projects to update"); return res.end(); } console.info( `Updating plan for ${nonStripeProjectsToUpdate.length} projects` ); await prisma.project.updateMany({ where: { id: { in: nonStripeProjectsToUpdate.map((p) => p.id), }, }, data: { currentPeriodEnd: dayjs().add(30, "days").toISOString(), }, }); await RequestCache.reset(nonStripeProjectsToUpdate.map((p) => p.id)); res.end(); } ================================================ FILE: apps/web/src/pages/api/stripe.ts ================================================ import dayjs from "dayjs"; import { env as serverEnv } from "env/server.mjs"; import { buffer } from "micro"; import type { NextApiRequest, NextApiResponse } from "next"; import { stripe } from "server/common/stripe"; import { prisma } from "server/db/client"; import { RequestCache } from "server/services/RequestCache"; import type Stripe from "stripe"; const secondsToMsDate = (seconds: number) => new Date(seconds * 1000); // Replace this endpoint secret with your endpoint's unique secret // If you are testing with the CLI, find the secret by running 'stripe listen' // If you are using an endpoint defined with the API or dashboard, look in your webhook settings // at https://dashboard.stripe.com/webhooks const endpointSecret = serverEnv.STRIPE_WEBHOOK_SECRET; interface StripeSession { id: string; customer: string; current_period_end: number; metadata: { projectId: string; }; subscription: string; items: { data: { price: { id: string; }; }[]; }; } export default async function handleStripeWebhook( req: NextApiRequest, res: NextApiResponse ) { const sig = req.headers["stripe-signature"]; if (!sig) { return res.status(400).send("Webhook Error: Missing signature"); } let event: Stripe.Event; try { event = stripe.webhooks.constructEvent( await buffer(req), sig, endpointSecret ); } catch (err) { console.error(err); // On error, log and return the error message console.log( `❌ Error message: ${err instanceof Error ? err.message : err}` ); return res .status(400) .send(`Webhook Error: ${err instanceof Error ? err.message : err}`); } const session = event.data?.object as StripeSession; // Handle the event switch (event.type) { case "checkout.session.completed": { const subscription = await stripe.subscriptions.retrieve( session.subscription ); await RequestCache.reset(session.metadata.projectId); await prisma.project.update({ where: { id: session.metadata.projectId, }, data: { currentPeriodEnd: secondsToMsDate(subscription.current_period_end), stripeSubscriptionId: subscription.id, stripeCustomerId: session.customer, stripePriceId: subscription.items.data[0]?.price.id, }, }); break; } case "customer.subscription.deleted": { await prisma.project.update({ where: { stripeSubscriptionId: session.id, }, data: { currentPeriodEnd: dayjs().add(30, "days").toISOString(), stripePriceId: null, }, }); break; } default: { // Unexpected event type console.log(`Unhandled event type ${event.type}.`); } } // Return a 200 response to acknowledge receipt of the event res.end(); } export const config = { api: { bodyParser: false, }, }; ================================================ FILE: apps/web/src/pages/api/trpc/[trpc].ts ================================================ import { createNextApiHandler } from "@trpc/server/adapters/next"; import { env } from "../../../env/server.mjs"; import { createContext } from "../../../server/trpc/context"; import { appRouter } from "../../../server/trpc/router/_app"; // export API handler export default createNextApiHandler({ router: appRouter, batching: { enabled: false }, createContext, onError: env.NODE_ENV === "development" ? ({ path, error }) => { console.error(`❌ tRPC failed on ${path}: ${error}`); } : undefined, }); ================================================ FILE: apps/web/src/pages/checkout/index.tsx ================================================ import type { NextPage } from "next"; import { checkout } from "pages/api/checkout"; const Projects: NextPage = () => { return ( <> ); }; export default Projects; ================================================ FILE: apps/web/src/pages/contact.tsx ================================================ import clsx from "clsx"; import { Button } from "components/ui/button"; import { Input } from "components/ui/input"; import { Label } from "components/ui/label"; import { useForm } from "react-hook-form"; import { toast } from "react-hot-toast"; import { trpc } from "utils/trpc"; import { MarketingLayout } from "../components/MarketingLayout"; export default function ContactPage() { const { register, handleSubmit, formState } = useForm<{ mailadress: string; message: string; name: string; surname: string; }>(); const sendDataMutation = trpc.misc.contactPageEmail.useMutation(); const sendData = async (values: { mailadress: string; message: string; name: string; surname: string; }) => { await sendDataMutation.mutateAsync(values); }; const onSubmit = handleSubmit(async (values) => { try { const { name, mailadress, surname, message } = values; await sendData({ name, mailadress, surname, message }); toast.success("Send!"); } catch (_error) { toast.error("Please try again!"); } }); const _inputFieldStyle = "text border-2 border-width border-solid rounded w-full pl-2 mr-5 py-1 bg-inherit text-sm"; return ( <>

Contact us

Envelope
Drop your email and we'll get back to you soon.
{formState.errors.name && (

{formState.errors.name.message}

)}
{formState.errors.surname && (

{formState.errors.surname.message}

)}
{formState.errors.mailadress && (

{formState.errors.mailadress.message}

)}