| 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 .light-theme, |
| b69ab31 | | | 9 | html .vscode-light { |
| b69ab31 | | | 10 | color-scheme: light; |
| b69ab31 | | | 11 | |
| b69ab31 | | | 12 | /* custom values **/ |
| b69ab31 | | | 13 | --scm-modified-foreground: #895503; |
| b69ab31 | | | 14 | --scm-added-foreground: #007100; |
| b69ab31 | | | 15 | --scm-removed-foreground: #ad0707; |
| b69ab31 | | | 16 | --scm-missing-foreground: #418c91; |
| b69ab31 | | | 17 | --selected-commit-background: rgba(0, 0, 0, 0.1); |
| b69ab31 | | | 18 | --tooltip-background: var(--vscode-editorWidget-background, #f3f3f3); |
| b69ab31 | | | 19 | --tooltip-border: var(--vscode-editorWidget-border, #c8c8c8); |
| b69ab31 | | | 20 | |
| b69ab31 | | | 21 | --error-fg-color: #e35941ff; |
| b69ab31 | | | 22 | --error-bg-color: #e3594120; |
| b69ab31 | | | 23 | |
| b69ab31 | | | 24 | --hover-darken: rgba(0, 0, 0, 0.1); |
| b69ab31 | | | 25 | --subtle-hover-darken: rgba(0, 0, 0, 0.03); |
| b69ab31 | | | 26 | --highlight-foreground: #2a2a2a; |
| b69ab31 | | | 27 | |
| b69ab31 | | | 28 | --selection-mix-mode: darken; |
| b69ab31 | | | 29 | |
| b69ab31 | | | 30 | /* github PR colors */ |
| b69ab31 | | | 31 | --github-badge-fg: white; |
| b69ab31 | | | 32 | --github-open-bg: #2da44e; |
| b69ab31 | | | 33 | --github-closed-bg: #cf222e; |
| b69ab31 | | | 34 | --github-merged-bg: #8250df; |
| b69ab31 | | | 35 | --github-neutral-bg: #6e7781; |
| b69ab31 | | | 36 | |
| b69ab31 | | | 37 | /* Editor colors */ |
| b69ab31 | | | 38 | --diffEditor-foreground: rgb(36, 41, 47); |
| b69ab31 | | | 39 | --diffEditor-insertedLineHighlightBackground: var( |
| b69ab31 | | | 40 | --vscode-diffEditor-insertedTextBackground, |
| b69ab31 | | | 41 | rgba(156, 204, 44, 0.25) |
| 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: #f9ec5633; |
| b69ab31 | | | 57 | --diffEditor-modifiedLineHighlightBackground: #f9ec5666; |
| b69ab31 | | | 58 | --editor-selectionBackground: #add6ff; |
| b69ab31 | | | 59 | --editor-changedBackground: hsla(211, 100%, 87%, 0.3); |
| b69ab31 | | | 60 | --editor-changedHighlightBackground: hsla(211, 100%, 87%, 0.5); |
| b69ab31 | | | 61 | |
| b69ab31 | | | 62 | --hint-background: rgba(241, 168, 23, 0.2); |
| b69ab31 | | | 63 | |
| b69ab31 | | | 64 | --banner-fg: rgb(36, 41, 47); |
| b69ab31 | | | 65 | --banner-warning-bg: #f9ec5666; |
| b69ab31 | | | 66 | --banner-error-bg: #fa7e7c66; |
| b69ab31 | | | 67 | --banner-default-bg: var(--tooltip-background); |
| b69ab31 | | | 68 | --banner-green-bg: #b0ddbd; |
| b69ab31 | | | 69 | |
| b69ab31 | | | 70 | --signal-good-bg: #2da44e; |
| b69ab31 | | | 71 | --signal-medium-bg: #d5b14e; |
| b69ab31 | | | 72 | --signal-bad-bg: #cf222e; |
| b69ab31 | | | 73 | --signal-fg: white; |
| b69ab31 | | | 74 | |
| b69ab31 | | | 75 | --checkbox-border: var(--vscode-contrastBorder, rgba(0, 0, 0, 0.2)); |
| b69ab31 | | | 76 | } |