| b69ab31 | | | 1 | /** |
| b69ab31 | | | 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. |
| b69ab31 | | | 3 | * |
| b69ab31 | | | 4 | * This source code is licensed under the MIT license found in the |
| b69ab31 | | | 5 | * LICENSE file in the root directory of this source tree. |
| b69ab31 | | | 6 | */ |
| b69ab31 | | | 7 | |
| b69ab31 | | | 8 | html .dark-theme, |
| b69ab31 | | | 9 | html .vscode-dark { |
| b69ab31 | | | 10 | color-scheme: dark; |
| b69ab31 | | | 11 | |
| b69ab31 | | | 12 | --scm-modified-foreground: #e2c08d; |
| b69ab31 | | | 13 | --scm-added-foreground: #73c991; |
| b69ab31 | | | 14 | --scm-removed-foreground: #f3674f; |
| b69ab31 | | | 15 | --scm-missing-foreground: #b4eaed; |
| b69ab31 | | | 16 | --selected-commit-background: rgba(255, 255, 255, 0.1); |
| b69ab31 | | | 17 | |
| b69ab31 | | | 18 | --error-fg-color: #f3674f; |
| b69ab31 | | | 19 | --error-bg-color: #f3674f20; |
| b69ab31 | | | 20 | |
| b69ab31 | | | 21 | --tooltip-background: var(--vscode-editorWidget-background, #252526); |
| b69ab31 | | | 22 | --tooltip-border: var(--vscode-editorWidget-border, #454545); |
| b69ab31 | | | 23 | |
| b69ab31 | | | 24 | --hover-darken: rgba(255, 255, 255, 0.1); |
| b69ab31 | | | 25 | --subtle-hover-darken: rgba(255, 255, 255, 0.03); |
| b69ab31 | | | 26 | --highlight-foreground: #f0f0f0; |
| b69ab31 | | | 27 | |
| b69ab31 | | | 28 | --selection-mix-mode: lighten; |
| b69ab31 | | | 29 | |
| b69ab31 | | | 30 | /* github PR colors */ |
| b69ab31 | | | 31 | --github-badge-fg: white; |
| b69ab31 | | | 32 | --github-open-bg: #238636; |
| b69ab31 | | | 33 | --github-closed-bg: #da3633; |
| b69ab31 | | | 34 | --github-merged-bg: #8957e5; |
| b69ab31 | | | 35 | --github-neutral-bg: #6e7781; |
| b69ab31 | | | 36 | |
| b69ab31 | | | 37 | /* Editor colors */ |
| b69ab31 | | | 38 | --diffEditor-foreground: rgb(201, 209, 217); |
| b69ab31 | | | 39 | --diffEditor-insertedLineHighlightBackground: var( |
| b69ab31 | | | 40 | --vscode-diffEditor-insertedTextBackground, |
| b69ab31 | | | 41 | rgba(156, 204, 44, 0.2) |
| b69ab31 | | | 42 | ); |
| b69ab31 | | | 43 | --diffEditor-removedLineHighlightBackground: var( |
| b69ab31 | | | 44 | --vscode-diffEditor-removedTextBackground, |
| b69ab31 | | | 45 | rgba(255, 0, 0, 0.2) |
| b69ab31 | | | 46 | ); |
| b69ab31 | | | 47 | --diffEditor-insertedLineBackground: var( |
| b69ab31 | | | 48 | --vscode-diffEditor-insertedLineBackground, |
| b69ab31 | | | 49 | rgba(155, 185, 85, 0.2) |
| b69ab31 | | | 50 | ); |
| b69ab31 | | | 51 | --diffEditor-removedLineBackground: var( |
| b69ab31 | | | 52 | --vscode-diffEditor-removedLineBackground, |
| b69ab31 | | | 53 | rgba(255, 0, 0, 0.2) |
| b69ab31 | | | 54 | ); |
| b69ab31 | | | 55 | |
| b69ab31 | | | 56 | --diffEditor-modifiedLineBackground: #deb94033; |
| b69ab31 | | | 57 | --diffEditor-modifiedLineHighlightBackground: #deb94066; |
| b69ab31 | | | 58 | --editor-selectionBackground: #264f78; |
| b69ab31 | | | 59 | --editor-changedBackground: hsla(212, 90%, 70%, 0.15); |
| b69ab31 | | | 60 | --editor-changedHighlightBackground: hsla(212, 90%, 70%, 0.3); |
| b69ab31 | | | 61 | |
| b69ab31 | | | 62 | --hint-background: rgba(252, 193, 43, 0.2); |
| b69ab31 | | | 63 | |
| b69ab31 | | | 64 | --banner-fg: rgb(235, 236, 237); |
| b69ab31 | | | 65 | --banner-warning-bg: #deb94066; |
| b69ab31 | | | 66 | --banner-error-bg: #fa7e7c55; |
| b69ab31 | | | 67 | --banner-default-bg: #45454577; |
| b69ab31 | | | 68 | --banner-green-bg: #73a280; |
| b69ab31 | | | 69 | |
| b69ab31 | | | 70 | /* Signal colors */ |
| b69ab31 | | | 71 | --signal-good-bg: #2da44e; |
| b69ab31 | | | 72 | --signal-medium-bg: #e0d12d; |
| b69ab31 | | | 73 | --signal-bad-bg: #cf222e; |
| b69ab31 | | | 74 | --signal-fg: white; |
| b69ab31 | | | 75 | |
| b69ab31 | | | 76 | --checkbox-border: var(--vscode-contrastBorder, rgba(255, 255, 255, 0.2)); |
| b69ab31 | | | 77 | } |