tinte
Version:
An opinionated tool for generating multi-platform color themes
293 lines (262 loc) • 8.22 kB
text/typescript
import { Abbreviations, MyTheme, SemanticToken } from "../../types.ts";
export const FlexokiVSCodeMappedTokens: Record<SemanticToken, Abbreviations> = {
plain: "tx",
classes: "or",
interfaces: "ye",
structs: "or",
enums: "or",
keys: "or",
methods: "gr",
functions: "or",
variables: "tx",
variablesOther: "gr",
globalVariables: "ma",
localVariables: "ui",
parameters: "tx",
properties: "bl",
strings: "cy",
stringEscapeSequences: "tx",
keywords: "gr",
keywordsControl: "re",
storageModifiers: "bl",
comments: "tx-2",
docComments: "tx-3",
numbers: "pu",
booleans: "ye",
operators: "re",
macros: "bl",
preprocessor: "ma",
urls: "bl",
tags: "bl",
jsxTags: "ma",
attributes: "ye",
types: "ye",
constants: "tx",
labels: "ma",
namespaces: "ye",
modules: "re",
typeParameters: "or",
exceptions: "ma",
decorators: "ye",
calls: "tx",
punctuation: "tx-2",
};
export const OneHunterMappedTokens: Record<SemanticToken, Abbreviations> = {
plain: "tx",
classes: "ye",
interfaces: "ye",
structs: "ye",
enums: "ye",
keys: "ma",
methods: "cy",
functions: "cy",
variables: "tx",
variablesOther: "tx",
globalVariables: "ma",
localVariables: "ui",
parameters: "tx",
properties: "tx",
strings: "gr",
stringEscapeSequences: "tx",
keywords: "ma",
keywordsControl: "re",
storageModifiers: "ma",
comments: "tx-2",
docComments: "tx-2",
numbers: "ye",
booleans: "cy",
operators: "bl",
macros: "bl",
preprocessor: "ma",
urls: "bl",
tags: "bl",
jsxTags: "ma",
attributes: "ye",
types: "bl",
constants: "tx",
labels: "ma",
namespaces: "ye",
modules: "re",
typeParameters: "ye",
exceptions: "ma",
decorators: "ye",
calls: "tx",
punctuation: "tx",
};
export const VSCodeEditorMappedTokens: Record<string, Abbreviations> = {
// Editor Colors
"editor.background": "bg",
"editor.foreground": "tx",
"editor.hoverHighlightBackground": "ui-2",
"editor.lineHighlightBackground": "bg-2",
"editor.selectionBackground": "ui-3",
"editor.wordHighlightBackground": "ui-2",
"editor.wordHighlightStrongBackground": "ui-3",
"editor.findMatchBackground": "ui",
"editor.findMatchHighlightBackground": "ui-2",
"editor.findRangeHighlightBackground": "bg-2",
"editor.inactiveSelectionBackground": "ui",
"editor.lineHighlightBorder": "ui",
"editor.rangeHighlightBackground": "ui-3",
// Gutter Colors
"editorGutter.background": "bg",
"editorGutter.modifiedBackground": "cy",
"editorGutter.addedBackground": "gr",
"editorGutter.deletedBackground": "re",
// Bracket Matching
"editorBracketMatch.background": "ui",
"editorBracketMatch.border": "ui-2",
// Error & Warnings
"editorError.foreground": "re",
"editorWarning.foreground": "or",
"editorInfo.foreground": "bl",
// Diff Editor
"diffEditor.insertedTextBackground": "gr-2",
"diffEditor.removedTextBackground": "re-2",
// Editor Groups & Tabs
"editorGroupHeader.tabsBackground": "bg",
"editorGroup.border": "ui",
"tab.activeBackground": "bg",
"tab.inactiveBackground": "bg-2",
"tab.inactiveForeground": "tx-2",
"tab.activeForeground": "tx",
"tab.border": "ui",
"tab.activeModifiedBorder": "ye",
"tab.inactiveModifiedBorder": "bl",
"tab.unfocusedActiveModifiedBorder": "ye-2",
"tab.unfocusedInactiveModifiedBorder": "bl-2",
// Editor Widget Colors
"editorWidget.background": "bg-2",
"editorWidget.border": "ui-2",
"editorSuggestWidget.background": "bg",
"editorSuggestWidget.border": "ui",
"editorSuggestWidget.foreground": "tx",
"editorSuggestWidget.highlightForeground": "tx-2",
"editorSuggestWidget.selectedBackground": "ui-2",
// Peek View Colors
"peekView.border": "ui",
"peekViewEditor.background": "bg",
"peekViewEditor.matchHighlightBackground": "ui-3",
"peekViewResult.background": "bg-2",
"peekViewResult.fileForeground": "tx",
"peekViewResult.lineForeground": "tx-2",
"peekViewResult.matchHighlightBackground": "ui-3",
"peekViewResult.selectionBackground": "ui",
"peekViewResult.selectionForeground": "tx-3",
"peekViewTitle.background": "ui-2",
"peekViewTitleDescription.foreground": "tx-2",
"peekViewTitleLabel.foreground": "tx",
// Merge Conflicts
"merge.currentHeaderBackground": "gr",
"merge.currentContentBackground": "gr-2",
"merge.incomingHeaderBackground": "cy",
"merge.incomingContentBackground": "cy-2",
"merge.border": "ui",
"merge.commonContentBackground": "ui-3",
"merge.commonHeaderBackground": "ui-2",
// Panel Colors
"panel.background": "bg",
"panel.border": "ui",
"panelTitle.activeBorder": "ui-3",
"panelTitle.activeForeground": "tx",
"panelTitle.inactiveForeground": "tx-2",
// Status Bar Colors
"statusBar.background": "bg",
"statusBar.foreground": "tx",
"statusBar.border": "ui",
"statusBar.debuggingBackground": "re",
"statusBar.debuggingForeground": "tx",
"statusBar.noFolderBackground": "ui-3",
"statusBar.noFolderForeground": "tx-3",
// Title Bar
"titleBar.activeBackground": "bg",
"titleBar.activeForeground": "tx",
"titleBar.inactiveBackground": "bg-2",
"titleBar.inactiveForeground": "tx-2",
"titleBar.border": "ui",
// Menus
"menu.foreground": "tx",
"menu.background": "bg",
"menu.selectionForeground": "tx",
"menu.selectionBackground": "ui-2",
"menu.border": "ui",
// Inlay Hints
"editorInlayHint.foreground": "tx-2",
"editorInlayHint.background": "ui-2",
// Terminal
"terminal.foreground": "tx",
"terminal.background": "bg",
"terminalCursor.foreground": "tx",
"terminalCursor.background": "bg",
"terminal.ansiRed": "re",
"terminal.ansiGreen": "gr",
"terminal.ansiYellow": "ye",
"terminal.ansiBlue": "bl",
"terminal.ansiMagenta": "ma",
"terminal.ansiCyan": "cy",
// Activity Bar
"activityBar.background": "bg",
"activityBar.foreground": "tx",
"activityBar.inactiveForeground": "tx-2",
"activityBar.activeBorder": "ui-3",
"activityBar.border": "ui",
// Sidebar
"sideBar.background": "bg",
"sideBar.foreground": "tx",
"sideBar.border": "ui",
"sideBarTitle.foreground": "tx",
"sideBarSectionHeader.background": "bg-2",
"sideBarSectionHeader.foreground": "tx",
"sideBarSectionHeader.border": "ui",
// SideBar: Highlights & Active items
"sideBar.activeBackground": "ui-3",
"sideBar.activeForeground": "tx",
// Sidebar: Hover
"sideBar.hoverBackground": "ui-2",
"sideBar.hoverForeground": "tx-2",
// File & Folder Icons
"sideBar.folderIcon.foreground": "gr",
"sideBar.fileIcon.foreground": "bl",
// More detailed SideBar items...
"list.warningForeground": "or",
"list.errorForeground": "re",
// Sidebar: Selections
"list.inactiveSelectionBackground": "ui-2",
"list.activeSelectionBackground": "ui-3",
"list.inactiveSelectionForeground": "tx",
"list.activeSelectionForeground": "tx",
"list.hoverForeground": "tx",
"list.hoverBackground": "ui-2",
// Input Controls
"input.background": "bg-2",
"input.foreground": "tx",
"input.border": "ui",
"input.placeholderForeground": "tx-2",
"inputOption.activeBorder": "ui-2",
"inputOption.activeBackground": "ui",
"inputOption.activeForeground": "tx",
// Input Validation
"inputValidation.infoBackground": "cy",
"inputValidation.infoBorder": "cy-2",
"inputValidation.warningBackground": "or",
"inputValidation.warningBorder": "or-2",
"inputValidation.errorBackground": "re",
"inputValidation.errorBorder": "re-2",
// Dropdowns
"dropdown.background": "bg-2",
"dropdown.foreground": "tx",
"dropdown.border": "ui",
"dropdown.listBackground": "bg",
// Badges
"badge.background": "bl",
"activityBarBadge.background": "bl",
// Buttons
"button.background": "bl",
};
export const VSCodeMappedTokens: Record<
MyTheme,
Record<SemanticToken, Abbreviations>
> = {
Flexoki: FlexokiVSCodeMappedTokens,
"One Hunter": OneHunterMappedTokens,
};