addons/components/theme/themeLight.cssblame
View source
b69ab311/**
b69ab312 * Copyright (c) Meta Platforms, Inc. and affiliates.
b69ab313 *
b69ab314 * This source code is licensed under the MIT license found in the
b69ab315 * LICENSE file in the root directory of this source tree.
b69ab316 */
b69ab317
b69ab318html .light-theme,
b69ab319html .vscode-light {
b69ab3110 color-scheme: light;
b69ab3111
b69ab3112 /* custom values **/
b69ab3113 --scm-modified-foreground: #895503;
b69ab3114 --scm-added-foreground: #007100;
b69ab3115 --scm-removed-foreground: #ad0707;
b69ab3116 --scm-missing-foreground: #418c91;
b69ab3117 --selected-commit-background: rgba(0, 0, 0, 0.1);
b69ab3118 --tooltip-background: var(--vscode-editorWidget-background, #f3f3f3);
b69ab3119 --tooltip-border: var(--vscode-editorWidget-border, #c8c8c8);
b69ab3120
b69ab3121 --error-fg-color: #e35941ff;
b69ab3122 --error-bg-color: #e3594120;
b69ab3123
b69ab3124 --hover-darken: rgba(0, 0, 0, 0.1);
b69ab3125 --subtle-hover-darken: rgba(0, 0, 0, 0.03);
b69ab3126 --highlight-foreground: #2a2a2a;
b69ab3127
b69ab3128 --selection-mix-mode: darken;
b69ab3129
b69ab3130 /* github PR colors */
b69ab3131 --github-badge-fg: white;
b69ab3132 --github-open-bg: #2da44e;
b69ab3133 --github-closed-bg: #cf222e;
b69ab3134 --github-merged-bg: #8250df;
b69ab3135 --github-neutral-bg: #6e7781;
b69ab3136
b69ab3137 /* Editor colors */
b69ab3138 --diffEditor-foreground: rgb(36, 41, 47);
b69ab3139 --diffEditor-insertedLineHighlightBackground: var(
b69ab3140 --vscode-diffEditor-insertedTextBackground,
b69ab3141 rgba(156, 204, 44, 0.25)
b69ab3142 );
b69ab3143 --diffEditor-removedLineHighlightBackground: var(
b69ab3144 --vscode-diffEditor-removedTextBackground,
b69ab3145 rgba(255, 0, 0, 0.2)
b69ab3146 );
b69ab3147 --diffEditor-insertedLineBackground: var(
b69ab3148 --vscode-diffEditor-insertedLineBackground,
b69ab3149 rgba(155, 185, 85, 0.2)
b69ab3150 );
b69ab3151 --diffEditor-removedLineBackground: var(
b69ab3152 --vscode-diffEditor-removedLineBackground,
b69ab3153 rgba(255, 0, 0, 0.2)
b69ab3154 );
b69ab3155
b69ab3156 --diffEditor-modifiedLineBackground: #f9ec5633;
b69ab3157 --diffEditor-modifiedLineHighlightBackground: #f9ec5666;
b69ab3158 --editor-selectionBackground: #add6ff;
b69ab3159 --editor-changedBackground: hsla(211, 100%, 87%, 0.3);
b69ab3160 --editor-changedHighlightBackground: hsla(211, 100%, 87%, 0.5);
b69ab3161
b69ab3162 --hint-background: rgba(241, 168, 23, 0.2);
b69ab3163
b69ab3164 --banner-fg: rgb(36, 41, 47);
b69ab3165 --banner-warning-bg: #f9ec5666;
b69ab3166 --banner-error-bg: #fa7e7c66;
b69ab3167 --banner-default-bg: var(--tooltip-background);
b69ab3168 --banner-green-bg: #b0ddbd;
b69ab3169
b69ab3170 --signal-good-bg: #2da44e;
b69ab3171 --signal-medium-bg: #d5b14e;
b69ab3172 --signal-bad-bg: #cf222e;
b69ab3173 --signal-fg: white;
b69ab3174
b69ab3175 --checkbox-border: var(--vscode-contrastBorder, rgba(0, 0, 0, 0.2));
b69ab3176}