addons/components/theme/themeDark.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 .dark-theme,
b69ab319html .vscode-dark {
b69ab3110 color-scheme: dark;
b69ab3111
b69ab3112 --scm-modified-foreground: #e2c08d;
b69ab3113 --scm-added-foreground: #73c991;
b69ab3114 --scm-removed-foreground: #f3674f;
b69ab3115 --scm-missing-foreground: #b4eaed;
b69ab3116 --selected-commit-background: rgba(255, 255, 255, 0.1);
b69ab3117
b69ab3118 --error-fg-color: #f3674f;
b69ab3119 --error-bg-color: #f3674f20;
b69ab3120
b69ab3121 --tooltip-background: var(--vscode-editorWidget-background, #252526);
b69ab3122 --tooltip-border: var(--vscode-editorWidget-border, #454545);
b69ab3123
b69ab3124 --hover-darken: rgba(255, 255, 255, 0.1);
b69ab3125 --subtle-hover-darken: rgba(255, 255, 255, 0.03);
b69ab3126 --highlight-foreground: #f0f0f0;
b69ab3127
b69ab3128 --selection-mix-mode: lighten;
b69ab3129
b69ab3130 /* github PR colors */
b69ab3131 --github-badge-fg: white;
b69ab3132 --github-open-bg: #238636;
b69ab3133 --github-closed-bg: #da3633;
b69ab3134 --github-merged-bg: #8957e5;
b69ab3135 --github-neutral-bg: #6e7781;
b69ab3136
b69ab3137 /* Editor colors */
b69ab3138 --diffEditor-foreground: rgb(201, 209, 217);
b69ab3139 --diffEditor-insertedLineHighlightBackground: var(
b69ab3140 --vscode-diffEditor-insertedTextBackground,
b69ab3141 rgba(156, 204, 44, 0.2)
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: #deb94033;
b69ab3157 --diffEditor-modifiedLineHighlightBackground: #deb94066;
b69ab3158 --editor-selectionBackground: #264f78;
b69ab3159 --editor-changedBackground: hsla(212, 90%, 70%, 0.15);
b69ab3160 --editor-changedHighlightBackground: hsla(212, 90%, 70%, 0.3);
b69ab3161
b69ab3162 --hint-background: rgba(252, 193, 43, 0.2);
b69ab3163
b69ab3164 --banner-fg: rgb(235, 236, 237);
b69ab3165 --banner-warning-bg: #deb94066;
b69ab3166 --banner-error-bg: #fa7e7c55;
b69ab3167 --banner-default-bg: #45454577;
b69ab3168 --banner-green-bg: #73a280;
b69ab3169
b69ab3170 /* Signal colors */
b69ab3171 --signal-good-bg: #2da44e;
b69ab3172 --signal-medium-bg: #e0d12d;
b69ab3173 --signal-bad-bg: #cf222e;
b69ab3174 --signal-fg: white;
b69ab3175
b69ab3176 --checkbox-border: var(--vscode-contrastBorder, rgba(255, 255, 255, 0.2));
b69ab3177}